diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..cedf24f --- /dev/null +++ b/.babelrc @@ -0,0 +1,5 @@ +{ + "presets": [ + "@babel/preset-env" + ] +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index e10acab..0be0fc3 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ node_modules # Users Environment Variables .lock-wscript +.idea # Developpement Directories out diff --git a/README.md b/README.md index 3515a8c..a65ed1a 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,9 @@ var csgoDataParser = new parser(schemaFilePath, langFilePath, itemsFilePath, 'de Must pass schema file (like *schema.txt*), language file (like *csgo_english.txt*) and item file (like *item_data.txt*) at VDF format -- **Schema file** can be find in [Steam API](https://lab.xpaw.me/steam_api_documentation.html#IEconItems_730_GetSchema_v2) -- **Language file** can be find in game data files (*steam-data*/csgo/resource/csgo_*language*.txt) -- **Items File** can be find both in game data files () and in [Steam API](https://lab.xpaw.me/steam_api_documentation.html#IEconItems_730_GetSchemaURL_v2) (Note : You need do get the items_game_url information) +- **Schema file** can be find in [Steam API](https://lab.xpaw.me/steam_api_documentation.html#IEconItems_730_GetSchema_v2) or as a JSON on api.steampowered.com using your web API key (https://api.steampowered.com/IEconItems_730/GetSchema/v2/?key=&language=en) +- **Language file** can be find in game data files (*steam-data*/csgo/resource/csgo_*language*.txt) or on Github [GameTracking-CSGO](https://github.com/SteamDatabase/GameTracking-CSGO/blob/master/csgo/resource/csgo_english.txt) +- **Items File** can be find both in game data files () and in [Steam API](https://lab.xpaw.me/steam_api_documentation.html#IEconItems_730_GetSchemaURL_v2) (Note : You need do get the items_game_url information) or safely on Github [GameTracking-CSGO](https://github.com/SteamDatabase/GameTracking-CSGO/blob/master/csgo/scripts/items/items_game.txt) ### Example @@ -55,6 +55,7 @@ A sample script is at `example.js`. * [.isDatasInitialized()](#CSGODataParser+isDatasInitialized) ⇒ boolean * [.isLangInitialized()](#CSGODataParser+isLangInitialized) ⇒ boolean * [.getLangValue(keyLang)](#CSGODataParser+getLangValue) ⇒ String + * [.getSkinsMap()](#CSGODataParser+getSkinsMap) ⇒ {[key: string]: Weapon} * [.getWeapons()](#CSGODataParser+getWeapons) ⇒ Array.<Weapon> * [.getCollections()](#CSGODataParser+getCollections) ⇒ Array.<Collection> * [.getExteriors()](#CSGODataParser+getExteriors) ⇒ Array.<String> @@ -108,6 +109,14 @@ Get the lang value from valve key i18n values. | --- | --- | --- | | keyLang | String | valve key i18n values (like #PaintKit_aa_fade_Tag) | + +### csgoDataParser.getSkinsMap() ⇒ {[key: string]: Weapon} +Generate a key-value map of all weapon skins (including rifles, knives, gloves and hand wraps). + +**Kind**: instance method of [CSGODataParser](#CSGODataParser) +**Returns**: {[key: string]: Weapon} - key-value map, where key is the skin's `fullName` + (such as `"Desert Eagle | Blaze"`) and the value is the `Weapon` object. +**Access:** public ### csgoDataParser.getWeapons() ⇒ Array.<Weapon> Generate bases Weapons data from schema's data. diff --git a/example.js b/example.js index efdc6da..892f2e7 100644 --- a/example.js +++ b/example.js @@ -1,30 +1,38 @@ 'use strict'; /* jshint node: true */ -var fs = require('fs'), - parser = require('./lib/csgo-data-parser'), - misc = require('./lib/miscHelper'); +const fs = require('fs'), + parser = require('./src/csgo-data-parser'), + misc = require('./src/miscHelper'), + path = require('path'); -var schemaFilePath = './test/test-data/schema.txt', +const schemaFilePath = './test/test-data/schema.txt', langFilePath = './test/test-data/csgo_english.txt', itemsFilePath = './test/test-data/items_game.txt', outDataFilePath = './out/data_' + Date.now() + '.json', outLogFilePath = './out/logs/parser.log'; -var csgoDataParser = new parser(schemaFilePath, langFilePath, itemsFilePath, 'debug', outLogFilePath); +// create the output log directory if it doesn't exist +const outLogDir = path.dirname(outLogFilePath) +if (!fs.existsSync(outLogDir)){ + fs.mkdirSync(outLogDir, { recursive: true }); +} -var timer = misc.generateTimer(); +const csgoDataParser = new parser(schemaFilePath, langFilePath, itemsFilePath, 'debug', outLogFilePath); -var infos={}; -infos.baseWeapons = csgoDataParser.getWeapons(); -infos.exteriors = csgoDataParser.getExteriors(); +const timer = misc.generateTimer(); + +const infos={}; +infos.stickers = csgoDataParser.getStickersMap(); infos.origins = csgoDataParser.getOrigins(); infos.collections = csgoDataParser.getCollections(); infos.cases = csgoDataParser.getCases(); infos.casekeys = csgoDataParser.getCaseKeys(); -infos.stickers = csgoDataParser.getStickers(); infos.musickits = csgoDataParser.getMusicKits(); +infos.exteriors = csgoDataParser.getExteriors(); infos.rarities = csgoDataParser.getRarities(); +infos.baseWeapons = csgoDataParser.getWeapons(); +infos.skins = csgoDataParser.getSkinsMap(); csgoDataParser.getLogger().info(''); csgoDataParser.getLogger().info('-----------------------------------------'); @@ -32,6 +40,12 @@ csgoDataParser.getLogger().info('-----------------------------------------'); csgoDataParser.getLogger().info(''); csgoDataParser.getLogger().info('End Generations [' + misc.resultTimer(timer) +'s]'); -var fd = fs.openSync(outDataFilePath, 'w'); -fs.writeSync(fd, JSON.stringify(infos,null,4)); -fs.closeSync(fd); \ No newline at end of file +// create the output data directory if it doesn't exist +const outDataDir = path.dirname(outDataFilePath) +if (!fs.existsSync(outDataDir)){ + fs.mkdirSync(outDataDir, { recursive: true }); +} + +const fd = fs.openSync(outDataFilePath, 'w'); +fs.writeSync(fd, JSON.stringify(infos)); +fs.closeSync(fd); diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..64aaefb --- /dev/null +++ b/package-lock.json @@ -0,0 +1,10750 @@ +{ + "name": "node-csgo-parser", + "version": "0.0.4", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "node-csgo-parser", + "version": "0.0.4", + "license": "ISC", + "dependencies": { + "simple-vdf": "^1.1.1", + "vdf": "^0.0.2", + "winston": "^2.1.1" + }, + "devDependencies": { + "@babel/cli": "^7.19.3", + "@babel/preset-env": "^7.20.2", + "chai": "*", + "codeclimate-test-reporter": "^0.1.1", + "istanbul": "^0.4.1", + "jsdoc": "^3.4.0", + "jsdoc-to-markdown": "^1.3.2", + "minami": "^1.1.1", + "mocha": "*" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/cli": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.19.3.tgz", + "integrity": "sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.8", + "commander": "^4.0.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + }, + "bin": { + "babel": "bin/babel.js", + "babel-external-helpers": "bin/babel-external-helpers.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "optionalDependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", + "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", + "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", + "dev": true, + "peer": true, + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.2", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.1", + "@babel/parser": "^7.20.2", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", + "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.2", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "dev": true, + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.0", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", + "integrity": "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.19.1", + "@babel/helper-split-export-declaration": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", + "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/regexpu-core": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", + "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsgen": "^0.7.1", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/regjsgen": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", + "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==", + "dev": true + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", + "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.19.1", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", + "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", + "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz", + "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz", + "integrity": "sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", + "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz", + "integrity": "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", + "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", + "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz", + "integrity": "sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz", + "integrity": "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.19.1", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz", + "integrity": "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz", + "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz", + "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-simple-access": "^7.19.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz", + "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-identifier": "^7.19.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", + "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz", + "integrity": "sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", + "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "regenerator-transform": "^0.15.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator/node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", + "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.20.2", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.20.1", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz", + "integrity": "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/@babel/template": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", + "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.1", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.1", + "@babel/types": "^7.20.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz", + "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", + "dev": true, + "optional": true + }, + "node_modules/@types/linkify-it": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz", + "integrity": "sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==", + "dev": true + }, + "node_modules/@types/markdown-it": { + "version": "12.2.3", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz", + "integrity": "sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==", + "dev": true, + "dependencies": { + "@types/linkify-it": "*", + "@types/mdurl": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", + "integrity": "sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==", + "dev": true, + "dependencies": { + "acorn": "^3.0.4" + } + }, + "node_modules/align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg==", + "dev": true, + "optional": true, + "dependencies": { + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", + "dev": true, + "engines": { + "node": ">=0.4.2" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escape-sequences": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-3.0.0.tgz", + "integrity": "sha512-nOj2mwGB2lJzx9YDqaiI77vYh4SWcOCTday6kdtx6ojUk1s1HqSiK604UIq8jlBVC0UBsX7Bph3SfOf9QsJerA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/app-usage-stats": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/app-usage-stats/-/app-usage-stats-0.4.1.tgz", + "integrity": "sha512-elJOSZaWLWycmmQ5R6QvbKe0s3drumsU8JOJNvE4e/Pvjg52g65AAlKsCr65Kd1hAfr0I2E+AWgPlJQ/LZCDEw==", + "dev": true, + "dependencies": { + "array-back": "^1.0.4", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "home-path": "^1.0.3", + "test-value": "^2.1.0", + "usage-stats": "^0.8.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-back": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", + "integrity": "sha512-1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw==", + "dev": true, + "dependencies": { + "typical": "^2.6.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/array-tools": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/array-tools/-/array-tools-1.8.6.tgz", + "integrity": "sha512-x7nT/yV2Mv6whp1BQw2BL2+8bRCu1Wb8sB+F0uNa/ZiP4WjpA6i9JKGtlDlWj2ggo49bPQMM/Du/wMururI/Bg==", + "dev": true, + "dependencies": { + "object-tools": "^1.6.1", + "typical": "^2.1" + }, + "bin": { + "array-tools": "bin/cli.js" + } + }, + "node_modules/array-tools/node_modules/object-tools": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/object-tools/-/object-tools-1.6.7.tgz", + "integrity": "sha512-At5Cw0arQlH/+bXCONl2GXDHuPrWgKsR55aWXjvTM+5gyeHOTYJhMc9q5Vex5uFOpgnA6sG0QSZzsQsSXyCL1Q==", + "dev": true, + "dependencies": { + "array-tools": "^1.8.4", + "typical": "^2.2" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "node_modules/asn1": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz", + "integrity": "sha512-Fh9zh3G2mZ8qM/kwsiKwL2U2FmXxVsboP4x1mXjnhKHv3SmzaBZoYvxEQJz/YS2gnCgd8xlAVWcZnQyC9qZBsA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.4.9" + } + }, + "node_modules/assert-plus": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz", + "integrity": "sha512-brU24g7ryhRwGCI2y+1dGQmQXiZF7TtIj583S96y0jjdajIe6wn8BuXyELYhvD22dtIxDQVFk04YTJwwdwOYJw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/async": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/async/-/async-0.7.0.tgz", + "integrity": "sha512-9GReTNJtSSP+tNXZhlXuzPrRVlhH7Abwgf9qsV4NVLiChZpzFKvWGIwAss+uOUlsLjEnQbbVX1ERDTpjM5EmQg==", + "dev": true + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sign2": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz", + "integrity": "sha512-oqUX0DM5j7aPWPCnpWebiyNIj2wiNI87ZxnOMoGv0aE4TGlBy2N+5iWc6dQ/NOKZaBD2W6PVz8jtOGkWzSC5EA==", + "dev": true, + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-polyfill": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz", + "integrity": "sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "regenerator-runtime": "^0.10.5" + } + }, + "node_modules/babel-polyfill/node_modules/regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==", + "dev": true + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "dev": true, + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/boom": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/boom/-/boom-0.4.2.tgz", + "integrity": "sha512-OvfN8y1oAxxphzkl2SnCS+ztV/uVKTATtgLjWYg/7KwcNyf3rzpHxNQJZCKtsZd4+MteKczhWbSjtEX4bGgU9g==", + "deprecated": "This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).", + "dev": true, + "optional": true, + "dependencies": { + "hoek": "0.9.x" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/cache-point": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/cache-point/-/cache-point-0.3.4.tgz", + "integrity": "sha512-xY7ZTpb6twvkNvsz9ucBaySYmA/NG+lw7qWagtdphqczVqesDzrjaqpEEWEjmMtdtt3f5g4odW9m69Bro8BV4A==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "fs-then-native": "^1.0.2", + "mkdirp": "~0.5.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001431", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz", + "integrity": "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/catharsis": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz", + "integrity": "sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==", + "dev": true, + "dependencies": { + "lodash": "^4.17.15" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==", + "dev": true, + "optional": true, + "dependencies": { + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chai": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", + "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", + "dev": true, + "dependencies": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^4.1.2", + "get-func-name": "^2.0.0", + "loupe": "^2.3.1", + "pathval": "^1.1.1", + "type-detect": "^4.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/cli-commands": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/cli-commands/-/cli-commands-0.1.0.tgz", + "integrity": "sha512-q7sQb4fp+8T7OLlHf0iJoCUFqvgURR/QEj0WmFZVqJZsfEo4jJ0ozSNuCHTDn5Z92WnjCfQlsi2jBjbOMkkNjA==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^3.0.0", + "command-line-args": "^3.0.1", + "command-line-commands": "^1.0.4", + "command-line-usage": "^3.0.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/codeclimate-test-reporter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/codeclimate-test-reporter/-/codeclimate-test-reporter-0.1.1.tgz", + "integrity": "sha512-GSdDaxQzZZd5pwY/me/TBt9AfDB4B6fKkIFxUhsbFyhFWHDdI7QDMy5uWsQHAlx2WOWtX4rF+VX/HWP87xqa6Q==", + "deprecated": "codeclimate-test-reporter has been deprecated in favor of our new unified test-reporter. Please visit https://docs.codeclimate.com/docs/configuring-test-coverage for details on setting up the new test-reporter.", + "dev": true, + "dependencies": { + "async": "~0.7.0", + "lcov-parse": "0.0.6", + "request": "~2.34.0" + }, + "bin": { + "codeclimate-test-reporter": "bin/codeclimate.js" + }, + "engines": { + "node": ">=0.8.6" + } + }, + "node_modules/collect-all": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-1.0.4.tgz", + "integrity": "sha512-RKZhRwJtJEP5FWul+gkSMEnaK6H3AGPTTWOiRimCcs+rc/OmQE3Yhy1Q7A7KsdkG3ZXVdZq68Y6ONSdvkeEcKA==", + "dev": true, + "dependencies": { + "stream-connect": "^1.0.2", + "stream-via": "^1.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collect-json": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/collect-json/-/collect-json-1.0.9.tgz", + "integrity": "sha512-5sGzu8rjhY4uzm4FJOVsNtcAhNiyEsZ70Lz3xv+7mXuLfU41QikE0es3nn2N0knqEKg+r4K7TMFHFmR8OFGpFA==", + "dev": true, + "dependencies": { + "collect-all": "^1.0.4", + "stream-connect": "^1.0.2", + "stream-via": "^1.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/column-layout": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/column-layout/-/column-layout-2.1.4.tgz", + "integrity": "sha512-u0d19HeRqHrs8nK+dBK5yzJ1fcMKXZmhXeKOVZfjbU2PJDMavQn256E262Z1qOD5Esg32dq17cM2pYUnO1WVTw==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "collect-json": "^1.0.8", + "command-line-args": "^2.1.6", + "core-js": "^2.4.0", + "deep-extend": "~0.4.1", + "feature-detect-es6": "^1.2.0", + "object-tools": "^2.0.6", + "typical": "^2.4.2", + "wordwrapjs": "^1.2.0" + }, + "bin": { + "column-layout": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/column-layout/node_modules/ansi-escape-sequences": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", + "integrity": "sha512-8UeLcAdY7X4ZUBiuWoxqHfPGIUwJ5Vz7ujKdMUWbR0DwiBziHJbEMYzTvt7OQNtFb2NHxSxa3COicuPNgvE0XQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "collect-all": "~0.2.1" + }, + "bin": { + "ansi": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/column-layout/node_modules/collect-all": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-0.2.1.tgz", + "integrity": "sha512-DJM6+T8WAUEDVPxvbousmxRvtGW5+Q7JazRYmELEzn+BLGlRrqQ1ENKIpfiUjveCupWgUQd4iTvrMfDo0HiVKw==", + "dev": true, + "dependencies": { + "stream-connect": "^1.0.1", + "stream-via": "~0.1.0", + "typical": "^2.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/column-layout/node_modules/command-line-args": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-2.1.6.tgz", + "integrity": "sha512-qo+q+AcV8vRQCVDCoh3gNbUiVI86ywoKkIUJeNCNZBCw1qv111Dp0F3nZ2PR/92HrGsgsABuAAi7Fe/z/cj8YQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "command-line-usage": "^2", + "core-js": "^2.0.1", + "feature-detect-es6": "^1.2.0", + "find-replace": "^1", + "typical": "^2.3.0" + }, + "bin": { + "command-line-args": "bin/cli.js" + } + }, + "node_modules/column-layout/node_modules/command-line-usage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-2.0.5.tgz", + "integrity": "sha512-xxUZrDySMWQknZRlCKXbuSCR8PUQXLbypmXPv8a1ZaxIGE5SSynjXNZzig8VTcTcXuvIVf9y563nucsRAYnCKA==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "column-layout": "^2.1.1", + "feature-detect-es6": "^1.2.0", + "typical": "^2.4.2", + "wordwrapjs": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/column-layout/node_modules/stream-via": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-0.1.1.tgz", + "integrity": "sha512-1U7icavM/2dRDSevxnJRZfKBWrnhmtdCh0zQTThwYchL2YWjbwZb2PEngEj9HKjgyJ2oDipz6TLud/AU6BAIzQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/column-layout/node_modules/wordwrapjs": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-1.2.1.tgz", + "integrity": "sha512-oHt3LHdyJ2xke7aFYuXXB4QBvfORPZAfwdOW5bKQhCNj2Fa+I/WBz81yle19Cs7gZvaBxoYKOuPW/mFe4X09lg==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "typical": "^2.5.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/combined-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", + "integrity": "sha512-qfexlmLp9MyrkajQVyjEDb0Vj+KhRgR/rxLiVhaihlT+ZkX0lReqtH6Ack40CvMDERR4b5eFp3CreskpBs1Pig==", + "dev": true, + "optional": true, + "dependencies": { + "delayed-stream": "0.0.5" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/command-line-args": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-3.0.5.tgz", + "integrity": "sha512-M29kjOI24VF4HqatnqVyDqyeq3SYYZbq6LWv/AdVZ5LvrcqVNSN2XeYPrBxcO19T8YkGmyCqTUqYR07DFjVhyg==", + "dev": true, + "dependencies": { + "array-back": "^1.0.4", + "feature-detect-es6": "^1.3.1", + "find-replace": "^1.0.2", + "typical": "^2.6.0" + }, + "bin": { + "command-line-args": "bin.js" + } + }, + "node_modules/command-line-commands": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/command-line-commands/-/command-line-commands-1.0.4.tgz", + "integrity": "sha512-l/z6Avh5umBu6grouQAQbvPU87NH4ud1WBMV+P4n+LRQj2MiCfaVXLCo8Klcd9xwOgungPbnpNVuZ6+AX9W+0g==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "feature-detect-es6": "^1.3.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/command-line-tool": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/command-line-tool/-/command-line-tool-0.5.2.tgz", + "integrity": "sha512-TiZWqiRiyG4M6ZwbxKiCnBMDrD+rMNLeV2rf3rjmRH6O1yKvVmRpXlVxprABqks0nI/NU5F5JOCC14XQBFddlw==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "command-line-args": "^3.0.0", + "command-line-usage": "^3.0.3", + "feature-detect-es6": "^1.3.0", + "typical": "^2.4.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/command-line-tool/node_modules/ansi-escape-sequences": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", + "integrity": "sha512-8UeLcAdY7X4ZUBiuWoxqHfPGIUwJ5Vz7ujKdMUWbR0DwiBziHJbEMYzTvt7OQNtFb2NHxSxa3COicuPNgvE0XQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "collect-all": "~0.2.1" + }, + "bin": { + "ansi": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/command-line-tool/node_modules/collect-all": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-0.2.1.tgz", + "integrity": "sha512-DJM6+T8WAUEDVPxvbousmxRvtGW5+Q7JazRYmELEzn+BLGlRrqQ1ENKIpfiUjveCupWgUQd4iTvrMfDo0HiVKw==", + "dev": true, + "dependencies": { + "stream-connect": "^1.0.1", + "stream-via": "~0.1.0", + "typical": "^2.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/command-line-tool/node_modules/stream-via": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-0.1.1.tgz", + "integrity": "sha512-1U7icavM/2dRDSevxnJRZfKBWrnhmtdCh0zQTThwYchL2YWjbwZb2PEngEj9HKjgyJ2oDipz6TLud/AU6BAIzQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/command-line-usage": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-3.0.8.tgz", + "integrity": "sha512-KMWPF8wNWa+wzffE9247hlDB1c9DMMxhwIFzwRn7oNv5CU7auuJ3zKWv756F/9qqlEucC5jI8/3S8qdGKdVelw==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^3.0.0", + "array-back": "^1.0.3", + "feature-detect-es6": "^1.3.1", + "table-layout": "^0.3.0", + "typical": "^2.6.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/common-sequence": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/common-sequence/-/common-sequence-1.0.2.tgz", + "integrity": "sha512-z3ln8PqfoBRwY1X0B1W0NEvfuo3+lZdvVjYaxusK84FPGkBy+ZqfbMhgdGOLr1v1dv13z5KYOtbL/yupL4I8Yw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/config-master": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/config-master/-/config-master-2.0.4.tgz", + "integrity": "sha512-PfeMGMq4TTliwwGkf41u4Dhvk6I5ZzaxdTGYm9NbVqTZcHr20d8VydihyHcCpE/9ZTcN6FdT9vo0FW5rKZZOLw==", + "dev": true, + "dependencies": { + "babel-polyfill": "^6.13.0", + "feature-detect-es6": "^1.3.1", + "walk-back": "^2.0.1" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true + }, + "node_modules/core-js-compat": { + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz", + "integrity": "sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/cryptiles": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.2.2.tgz", + "integrity": "sha512-gvWSbgqP+569DdslUiCelxIv3IYK5Lgmq1UrRnk+s1WxQOQ16j3GPDcjdtgL5Au65DU/xQi6q3xPtf5Kta+3IQ==", + "deprecated": "This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).", + "dev": true, + "optional": true, + "dependencies": { + "boom": "0.4.x" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/ctype": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz", + "integrity": "sha512-T6CEkoSV4q50zW3TlTHMbzy1E5+zlnNcY+yb7tWVYlTwPhx9LpnfAkd4wecpWknDyptp4k97LUZeInlf6jdzBg==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/cycle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", + "integrity": "sha512-TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ddata": { + "version": "0.1.28", + "resolved": "https://registry.npmjs.org/ddata/-/ddata-0.1.28.tgz", + "integrity": "sha512-iHuP9mQjLqQZDSUOqmT/omWBWohJfmBnQj+RzGxHDJlzOIA6HhSjMZFAnIsQ3s+Qx5CzYA3Vq7rAQzDSMCq8Dw==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "core-js": "^2.4.1", + "handlebars": "^3.0.3", + "marked": "~0.3.6", + "object-get": "^2.1.0", + "reduce-flatten": "^1.0.1", + "string-tools": "^1.0.0", + "test-value": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ddata/node_modules/camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ddata/node_modules/cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA==", + "dev": true, + "optional": true, + "dependencies": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "node_modules/ddata/node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ddata/node_modules/handlebars": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-3.0.8.tgz", + "integrity": "sha512-frzSzoxbJZSB719r+lM3UFKrnHIY6VPY/j47+GNOHVnBHxO+r+Y/iDjozAbj1SztmmMpr2CcZY6rLeN5mqX8zA==", + "dev": true, + "dependencies": { + "optimist": "^0.6.1", + "source-map": "^0.1.40" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^2.6" + } + }, + "node_modules/ddata/node_modules/marked": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz", + "integrity": "sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==", + "dev": true, + "bin": { + "marked": "bin/marked" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ddata/node_modules/source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==", + "dev": true, + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/ddata/node_modules/uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==", + "dev": true, + "optional": true, + "dependencies": { + "source-map": "~0.5.1", + "yargs": "~3.10.0" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + }, + "optionalDependencies": { + "uglify-to-browserify": "~1.0.0" + } + }, + "node_modules/ddata/node_modules/uglify-js/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ddata/node_modules/wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ddata/node_modules/yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==", + "dev": true, + "optional": true, + "dependencies": { + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-eql": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.2.tgz", + "integrity": "sha512-gT18+YW4CcW/DBNTwAmqTtkJh7f9qqScu2qFVlx7kCoeY9tlBu9cUcr7+I+Z/noG8INehS3xQgLpTtd/QUTn4w==", + "dev": true, + "dependencies": { + "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-extend": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", + "integrity": "sha512-cQ0iXSEKi3JRNhjUsLWvQ+MVPxLVqpwCd0cFsWbJxlCim2TlCo1JvN5WaPdPvSpUdEnkJ/X+mPGcq5RJ68EK8g==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.12.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/defer-promise": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/defer-promise/-/defer-promise-1.0.2.tgz", + "integrity": "sha512-5a0iWJvnon50nLLqHPW83pX45BLb4MmlSa1sIg05NBhZoK5EZGz1s8qoZ3888dVGGOT0Ni01NdETuAgdJUZknA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/delayed-stream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", + "integrity": "sha512-v+7uBd1pqe5YtgPacIIbZ8HuHeLFVNe4mUEyFDXL6KiqzEykjbw+5mXZXpGFgNVasdL4jWKgaKIXrEHiynN1LA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/diff": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dmd": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/dmd/-/dmd-1.4.2.tgz", + "integrity": "sha512-rOPXEDiT6+dqVvDX6RX1rO4F6nU9a7HHdpXB1qIDL3tKEX52LwWNhGmIUJ8d2V1pX/5bIaFDaJunQt/m/zc0ig==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "command-line-tool": "~0.5.0", + "common-sequence": "^1.0.2", + "ddata": "~0.1.25", + "file-set": "^1.0.0", + "handlebars-array": "^0.2.0", + "handlebars-comparison": "^2.0.0", + "handlebars-json": "^1.0.0", + "handlebars-regexp": "^1.0.0", + "handlebars-string": "^2.0.1", + "object-tools": "^2.0.6", + "reduce-unique": "^1.0.0", + "reduce-without": "^1.0.1", + "stream-handlebars": "~0.1.6", + "string-tools": "^1.0.0", + "walk-back": "^2.0.1" + }, + "bin": { + "dmd": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", + "integrity": "sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A==", + "dev": true, + "dependencies": { + "esprima": "^2.7.1", + "estraverse": "^1.9.1", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=0.12.0" + }, + "optionalDependencies": { + "source-map": "~0.2.0" + } + }, + "node_modules/espree": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.1.7.tgz", + "integrity": "sha512-VF3ZpqctFaefWt4R+7jMidx4BUMbd9rxaUoM1gumrgDWcKByFT2YSV73vT6rvdCNw4ZoOAR2z7bamCg4VN9m0A==", + "dev": true, + "dependencies": { + "acorn": "^3.3.0", + "acorn-jsx": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/estraverse": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", + "integrity": "sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eyes": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", + "integrity": "sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==", + "engines": { + "node": "> 0.1.90" + } + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/feature-detect-es6": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/feature-detect-es6/-/feature-detect-es6-1.5.0.tgz", + "integrity": "sha512-DzWPIGzTnfp3/KK1d/YPfmgLqeDju9F2DQYBL35VusgSApcA7XGqVtXfR4ETOOFEzdFJ3J7zh0Gkk011TiA4uQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/file-set": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/file-set/-/file-set-1.1.2.tgz", + "integrity": "sha512-xDXI09w+l+mXxWDym7dQXy3PLdo7DygHlAtRnQ6XIMa0iY/qX6+1J75jjwCArCd48yCiMx2+fRn50BTFd45+jQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "glob": "^7.1.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-where": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/filter-where/-/filter-where-1.0.1.tgz", + "integrity": "sha512-WR5ZwPkYow93louUCfSeTmn8Q7M/X9uMY6LUqTBr1DgohVd7cYZ+B9MHTsQJ9FHKpvkz32LBppTNXPC/Z/pRHA==", + "dev": true, + "dependencies": { + "test-value": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/filter-where/node_modules/test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-replace": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-1.0.3.tgz", + "integrity": "sha512-KrUnjzDCD9426YnCP56zGYy/eieTnhtK6Vn++j+JJzmlsWWwEkDnsyVF575spT6HJ6Ow9tlbT3TQTDsa+O4UWA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.4", + "test-value": "^2.1.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/forever-agent": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz", + "integrity": "sha512-PDG5Ef0Dob/JsZUxUltJOhm/Y9mlteAE+46y3M9RBz/Rd3QVENJ75aGRhN56yekTUboaBIkd8KVWX2NjF6+91A==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz", + "integrity": "sha512-x8eE+nzFtAMA0YYlSxf/Qhq6vP1f8wSoZ7Aw1GuctBcmudCNuTUmmx45TfEplyb6cjsZO/jvh6+1VpZn24ez+w==", + "dev": true, + "optional": true, + "dependencies": { + "async": "~0.9.0", + "combined-stream": "~0.0.4", + "mime": "~1.2.11" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/form-data/node_modules/async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==", + "dev": true, + "optional": true + }, + "node_modules/fs-readdir-recursive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", + "dev": true + }, + "node_modules/fs-then-native": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fs-then-native/-/fs-then-native-1.0.2.tgz", + "integrity": "sha512-Rbz2Jggj4AHs56esXBzCAmDTthzCisuKOTFulwwu2jztQh07q86FhIwHytQCK6HfkKES2+u1YZU1fyCajPuWKg==", + "dev": true, + "dependencies": { + "feature-detect-es6": "^1.3.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/handlebars-array": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/handlebars-array/-/handlebars-array-0.2.1.tgz", + "integrity": "sha512-qQnsau0d45rzRn5Mm76/JepLDrJkKeJUAn4gf45WIQFl+9+oqA/XtCOHmc705SffS7gYMeGX3gDz/NulL56ptA==", + "dev": true, + "dependencies": { + "array-tools": "^1.1.4" + } + }, + "node_modules/handlebars-comparison": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handlebars-comparison/-/handlebars-comparison-2.0.1.tgz", + "integrity": "sha512-fDBg5FVtj//20jGubGMIJDn68S4cVMl/ZrbZadpG2l8K9T/ITXWdLvidabLkOs2ePhcufuE5zKhf0saUKEExQQ==", + "dev": true, + "dependencies": { + "array-tools": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/handlebars-json": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/handlebars-json/-/handlebars-json-1.0.1.tgz", + "integrity": "sha512-zkqeRv2x0Lc5+pADCB98edilRPjtkz6cYM/ogUK6ZaVbZUbkDhGcXE20gXVW5N7g3m5r5R4nHig9VHcDIIQORQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/handlebars-regexp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/handlebars-regexp/-/handlebars-regexp-1.0.1.tgz", + "integrity": "sha512-htocyMnBYuJZFr6FYMSnwvbkwQWmJO35MT2AQlJEdEP2u5WH2H7rnauNczRcVG4i8YSVhxKxojMUs5X3h3hFIg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/handlebars-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/handlebars-string/-/handlebars-string-2.0.2.tgz", + "integrity": "sha512-Ug7VPR7UbBty+SDCWgaPw2l+ipE39uYpSzdFLz/XdZUQMzOXsSe76xQgKYhm9Rb/bLw24454kFZo+rQEhG0QIw==", + "dev": true, + "dependencies": { + "array-tools": "^1.0.6", + "string-tools": "^0.1.4" + } + }, + "node_modules/handlebars-string/node_modules/string-tools": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/string-tools/-/string-tools-0.1.8.tgz", + "integrity": "sha512-OHaYAjvTq1WPOF4+mAYZy03UpCzhQ5h/fZ/mO+HHJDXMa5jNBB696NBQJ5EX6NQMiX5E971RN8JPZJ1qFxyrQQ==", + "dev": true + }, + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hawk": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-1.0.0.tgz", + "integrity": "sha512-Sg+VzrI7TjUomO0rjD6UXawsj50ykn5sB/xKNW/IenxzRVyw/wt9A2FLzYpGL/r0QG5hyXY8nLx/2m8UutoDcg==", + "deprecated": "This module moved to @hapi/hawk. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues.", + "dev": true, + "optional": true, + "dependencies": { + "boom": "0.4.x", + "cryptiles": "0.2.x", + "hoek": "0.9.x", + "sntp": "0.2.x" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoek": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-0.9.1.tgz", + "integrity": "sha512-ZZ6eGyzGjyMTmpSPYVECXy9uNfqBR7x5CavhUaLOeD6W0vWK1mp/b7O3f86XE0Mtfo9rZ6Bh3fnuw9Xr8MF9zA==", + "deprecated": "This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/home-path": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/home-path/-/home-path-1.0.7.tgz", + "integrity": "sha512-tM1pVa+u3ZqQwIkXcWfhUlY3HWS3TsnKsfi2OHHvnhkX52s9etyktPyy1rQotkr0euWimChDq+QkQuDe8ngUlQ==", + "dev": true + }, + "node_modules/http-signature": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz", + "integrity": "sha512-coK8uR5rq2IMj+Hen+sKPA5ldgbCc1/spPdKCL1Fw6h+D0s/2LzMcRK0Cqufs1h0ryx/niwBHGFu8HC3hwU+lA==", + "dev": true, + "optional": true, + "dependencies": { + "asn1": "0.1.11", + "assert-plus": "^0.1.5", + "ctype": "0.5.3" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true, + "optional": true + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + }, + "node_modules/istanbul": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz", + "integrity": "sha512-nMtdn4hvK0HjUlzr1DrKSUY8ychprt8dzHOgY2KXsIhHu5PuQQEOTM27gV9Xblyon7aUH/TSFIjRHEODF/FRPg==", + "deprecated": "This module is no longer maintained, try this instead:\n npm i nyc\nVisit https://istanbul.js.org/integrations for other alternatives.", + "dev": true, + "dependencies": { + "abbrev": "1.0.x", + "async": "1.x", + "escodegen": "1.8.x", + "esprima": "2.7.x", + "glob": "^5.0.15", + "handlebars": "^4.0.1", + "js-yaml": "3.x", + "mkdirp": "0.5.x", + "nopt": "3.x", + "once": "1.x", + "resolve": "1.1.x", + "supports-color": "^3.1.0", + "which": "^1.1.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "istanbul": "lib/cli.js" + } + }, + "node_modules/istanbul/node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", + "dev": true + }, + "node_modules/istanbul/node_modules/glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", + "dev": true, + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/istanbul/node_modules/has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul/node_modules/supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "dev": true, + "dependencies": { + "has-flag": "^1.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/js-yaml/node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/js2xmlparser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz", + "integrity": "sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==", + "dev": true, + "dependencies": { + "xmlcreate": "^2.0.4" + } + }, + "node_modules/jsdoc": { + "version": "3.6.11", + "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.11.tgz", + "integrity": "sha512-8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.9.4", + "@types/markdown-it": "^12.2.3", + "bluebird": "^3.7.2", + "catharsis": "^0.9.0", + "escape-string-regexp": "^2.0.0", + "js2xmlparser": "^4.0.2", + "klaw": "^3.0.0", + "markdown-it": "^12.3.2", + "markdown-it-anchor": "^8.4.1", + "marked": "^4.0.10", + "mkdirp": "^1.0.4", + "requizzle": "^0.2.3", + "strip-json-comments": "^3.1.0", + "taffydb": "2.6.2", + "underscore": "~1.13.2" + }, + "bin": { + "jsdoc": "jsdoc.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/jsdoc-75lb": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/jsdoc-75lb/-/jsdoc-75lb-3.6.0.tgz", + "integrity": "sha512-m/2YaKZdw2LA0FiC36TJnVtKNGNrPIA1emLLSNwzz8ng5KpgZVV1aPnl/TnqkiVgY0xjREK25IYM9MNGPaBcnA==", + "dev": true, + "dependencies": { + "bluebird": "~3.4.6", + "catharsis": "~0.8.8", + "escape-string-regexp": "~1.0.5", + "espree": "~3.1.7", + "js2xmlparser": "~1.0.0", + "klaw": "~1.3.0", + "marked": "~0.3.6", + "mkdirp": "~0.5.1", + "requizzle": "~0.2.1", + "strip-json-comments": "~2.0.1", + "taffydb": "2.6.2", + "underscore": "~1.8.3" + }, + "bin": { + "jsdoc": "jsdoc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/jsdoc-75lb/node_modules/bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==", + "dev": true + }, + "node_modules/jsdoc-75lb/node_modules/catharsis": { + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz", + "integrity": "sha512-a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jsdoc-75lb/node_modules/js2xmlparser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-1.0.0.tgz", + "integrity": "sha512-k5U3WB58ZbkCqSyrBrNmGtNU87YudbNGTyJNFlVenzzoaKeRXEpQ3E5pYOIidRgQCzxvWIJQK56W7eYkCQqYQA==", + "dev": true + }, + "node_modules/jsdoc-75lb/node_modules/klaw": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", + "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/jsdoc-75lb/node_modules/marked": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz", + "integrity": "sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==", + "dev": true, + "bin": { + "marked": "bin/marked" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-75lb/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-75lb/node_modules/underscore": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", + "integrity": "sha512-5WsVTFcH1ut/kkhAaHf4PVgI8c7++GiVcpCGxPouI6ZVjsqPnSDf8h/8HtVqc0t4fzRXwnMK70EcZeAs3PIddg==", + "dev": true + }, + "node_modules/jsdoc-api": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-1.2.4.tgz", + "integrity": "sha512-cJ8NKrSgAeon6bTY4caWvzBGyAD7UXui4DfbLqrp3YB8hoQXspr5ObZ2sIKA4vexSIhBu4t5X21FQ3fDPHT8uA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "cache-point": "~0.3.3", + "collect-all": "^1.0.2", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "file-set": "^1.0.1", + "jsdoc-75lb": "^3.5.6", + "object-to-spawn-args": "^1.1.0", + "promise.prototype.finally": "^1.0.1", + "temp-path": "^1.0.0", + "then-fs": "^2.0.0", + "walk-back": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-1.2.7.tgz", + "integrity": "sha512-DZyc2k7ooiKrhD8JO+aC4Kif7oPaff7/zeOcysQ/OzpvFdkmM98xIcS3brjDmUXXk7iqXm1Zxfo0VTr1dB05oA==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^2.2.1", + "array-tools": "^2", + "collect-json": "^1.0.1", + "command-line-args": "^2.1.4", + "command-line-tool": "^0.1.0", + "core-js": "^2.0.1", + "feature-detect-es6": "^1.2.0", + "file-set": "~0.2.1", + "jsdoc-api": "^1.0.0", + "object-tools": "^2", + "stream-connect": "^1.0.1", + "test-value": "^1.0.1" + }, + "bin": { + "jsdoc-parse": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse/node_modules/ansi-escape-sequences": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", + "integrity": "sha512-8UeLcAdY7X4ZUBiuWoxqHfPGIUwJ5Vz7ujKdMUWbR0DwiBziHJbEMYzTvt7OQNtFb2NHxSxa3COicuPNgvE0XQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "collect-all": "~0.2.1" + }, + "bin": { + "ansi": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse/node_modules/array-tools": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/array-tools/-/array-tools-2.0.9.tgz", + "integrity": "sha512-R2neDbbXhrU0EaXIDG48RNS9fqdjMkaqZK37d37LaCvxZ4JaQ6ELNbxlQB2FVdQcj7ZlZCi97iZtz0UET6xPrA==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.2", + "collect-json": "^1.0.7", + "filter-where": "^1.0.1", + "object-get": "^2.0.0", + "reduce-extract": "^1.0.0", + "reduce-flatten": "^1.0.0", + "reduce-unique": "^1.0.0", + "reduce-without": "^1.0.0", + "sort-array": "^1.0.0", + "test-value": "^1.0.1" + }, + "bin": { + "array-tools": "bin/cli.js" + } + }, + "node_modules/jsdoc-parse/node_modules/collect-all": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-0.2.1.tgz", + "integrity": "sha512-DJM6+T8WAUEDVPxvbousmxRvtGW5+Q7JazRYmELEzn+BLGlRrqQ1ENKIpfiUjveCupWgUQd4iTvrMfDo0HiVKw==", + "dev": true, + "dependencies": { + "stream-connect": "^1.0.1", + "stream-via": "~0.1.0", + "typical": "^2.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse/node_modules/command-line-args": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-2.1.6.tgz", + "integrity": "sha512-qo+q+AcV8vRQCVDCoh3gNbUiVI86ywoKkIUJeNCNZBCw1qv111Dp0F3nZ2PR/92HrGsgsABuAAi7Fe/z/cj8YQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "command-line-usage": "^2", + "core-js": "^2.0.1", + "feature-detect-es6": "^1.2.0", + "find-replace": "^1", + "typical": "^2.3.0" + }, + "bin": { + "command-line-args": "bin/cli.js" + } + }, + "node_modules/jsdoc-parse/node_modules/command-line-tool": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/command-line-tool/-/command-line-tool-0.1.0.tgz", + "integrity": "sha512-iYnWHIP8pJ4+b5Zv4SWTt+YQeMndbFBA0sj3bH24bbahCrXpZnVFVP5CvcClyYqIPF6RVaDoeqAWdX0GhWG3ZQ==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^2.2.1", + "array-back": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse/node_modules/command-line-usage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-2.0.5.tgz", + "integrity": "sha512-xxUZrDySMWQknZRlCKXbuSCR8PUQXLbypmXPv8a1ZaxIGE5SSynjXNZzig8VTcTcXuvIVf9y563nucsRAYnCKA==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "column-layout": "^2.1.1", + "feature-detect-es6": "^1.2.0", + "typical": "^2.4.2", + "wordwrapjs": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse/node_modules/file-set": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/file-set/-/file-set-0.2.8.tgz", + "integrity": "sha512-t9NO6FHYX8459WTtKzEuGGP/c6BqmeSdtCUhzoBw64Ctq/2x22e9wPjKJDPpGiQt6vRWpu6Mgs+ZneAI1vqg8Q==", + "dev": true, + "dependencies": { + "array-tools": "^2", + "glob": "^4" + } + }, + "node_modules/jsdoc-parse/node_modules/glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha512-I0rTWUKSZKxPSIAIaqhSXTM/DiII6wame+rEC3cFA5Lqmr9YmdL7z6Hj9+bdWtTvoY1Su4/OiMLmb37Y7JzvJQ==", + "dev": true, + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jsdoc-parse/node_modules/minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha512-jQo6o1qSVLEWaw3l+bwYA2X0uLuK2KjNh2wjgO7Q/9UJnXr1Q3yQKR8BI0/Bt/rPg75e6SMW4hW/6cBHVTZUjA==", + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "dev": true, + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jsdoc-parse/node_modules/stream-via": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-0.1.1.tgz", + "integrity": "sha512-1U7icavM/2dRDSevxnJRZfKBWrnhmtdCh0zQTThwYchL2YWjbwZb2PEngEj9HKjgyJ2oDipz6TLud/AU6BAIzQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse/node_modules/test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-parse/node_modules/wordwrapjs": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-1.2.1.tgz", + "integrity": "sha512-oHt3LHdyJ2xke7aFYuXXB4QBvfORPZAfwdOW5bKQhCNj2Fa+I/WBz81yle19Cs7gZvaBxoYKOuPW/mFe4X09lg==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "typical": "^2.5.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdoc-to-markdown": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-1.3.9.tgz", + "integrity": "sha512-cZLtIzmhdkuNi/9Gz8RGQF4eHwS5YHqAopt720Zk18oWI+JXPqhpuXk74KhrzptTq7KI/OyS0zY+L31W4aTHWA==", + "dev": true, + "dependencies": { + "ansi-escape-sequences": "^3.0.0", + "command-line-args": "^3.0.1", + "command-line-usage": "^3.0.5", + "config-master": "^2.0.4", + "dmd": "^1.4.1", + "jsdoc-parse": "^1.2.7", + "jsdoc2md-stats": "^1.0.3", + "object-tools": "^2.0.6", + "stream-connect": "^1.0.2" + }, + "bin": { + "jsdoc2md": "bin/cli.js" + } + }, + "node_modules/jsdoc/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsdoc/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsdoc2md-stats": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/jsdoc2md-stats/-/jsdoc2md-stats-1.0.6.tgz", + "integrity": "sha512-FOGWtVa/VwyNQ1C8t2T3YdFXhd0BZte0jsKk8a282XtOSK6Hyb6zIwlVOG3FLWkMia8l9Vg608hJyK0gD6F1/g==", + "dev": true, + "dependencies": { + "app-usage-stats": "^0.4.0", + "feature-detect-es6": "^1.3.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true, + "peer": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "optional": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klaw": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", + "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lcov-parse": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.6.tgz", + "integrity": "sha512-chuBQJZiBq28YUM6Yr3tf3h5Lxhb+DvhbxxSNpsHURSXiZXOzp49phiWG2pKHboOehJDujivwNQGRP8mAErMvQ==", + "dev": true + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "dev": true, + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loupe": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", + "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.0" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it-anchor": { + "version": "8.6.5", + "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz", + "integrity": "sha512-PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ==", + "dev": true, + "peerDependencies": { + "@types/markdown-it": "*", + "markdown-it": "*" + } + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/marked": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.2.3.tgz", + "integrity": "sha512-slWRdJkbTZ+PjkyJnE30Uid64eHwbwa1Q25INCAYfZlK4o6ylagBy/Le9eWntqJFoFT93ikUKMv47GZ4gTwHkw==", + "dev": true, + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "node_modules/mime": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", + "integrity": "sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw==", + "dev": true + }, + "node_modules/minami": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/minami/-/minami-1.2.3.tgz", + "integrity": "sha512-3f2QqqbUC1usVux0FkQMFYB73yd9JIxmHSn1dWQacizL6hOUaNu6mA3KxZ9SfiCc4qgcgq+5XP59+hP7URa1Dw==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mkdirp2": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.5.tgz", + "integrity": "sha512-xOE9xbICroUDmG1ye2h4bZ8WBie9EGmACaco8K8cx6RlkJJrxGIqjGqztAI+NMhexXBcdGbSEzI6N3EJPevxZw==", + "dev": true + }, + "node_modules/mocha": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.1.0.tgz", + "integrity": "sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==", + "dev": true, + "dependencies": { + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "nanoid": "3.3.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mochajs" + } + }, + "node_modules/mocha/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/mocha/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mocha/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/minimatch/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "node_modules/node-uuid": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", + "integrity": "sha512-TkCET/3rr9mUuRp+CpO7qfgT++aAxfDRaalQhwPFzI9BY/2rCDn6OfpZOVggi1AXfTPpfkTrg5f5WQx5G1uLxA==", + "deprecated": "Use uuid module instead", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==", + "dev": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/oauth-sign": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.3.0.tgz", + "integrity": "sha512-Tr31Sh5FnK9YKm7xTUPyDMsNOvMqkVDND0zvK/Wgj7/H9q8mpye0qG2nVzrnsvLhcsX5DtqXD0la0ks6rkPCGQ==", + "dev": true, + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-get": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-get/-/object-get-2.1.1.tgz", + "integrity": "sha512-7n4IpLMzGGcLEMiQKsNR7vCe+N5E9LORFrtNUVy4sO3dj9a3HedZCxEL2T7QuLhcHN1NBuBsMOKaOsAYI9IIvg==", + "dev": true + }, + "node_modules/object-to-spawn-args": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-to-spawn-args/-/object-to-spawn-args-1.1.1.tgz", + "integrity": "sha512-d6xH8b+QdNj+cdndsL3rVCzwW9PqSSXQBDVj0d8fyaCqMimUEz+sW+Jtxp77bxaSs7C5w7XOH844FG7p2A0cFw==", + "dev": true + }, + "node_modules/object-tools": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object-tools/-/object-tools-2.0.6.tgz", + "integrity": "sha512-Su3j153hgK9Dgd07FTi6y6DJmJtyWxyuoWvl5VZLI6HVL9VQ81ShfT9c2l/eNIZY85axAi0t1AqFjCAATGab0g==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "collect-json": "^1.0.7", + "object-get": "^2.0.2", + "test-value": "^1.1.0", + "typical": "^2.4.2" + }, + "bin": { + "object-tools": "bin/cli.js" + } + }, + "node_modules/object-tools/node_modules/test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha512-snN4O4TkigujZphWLN0E//nQmm7790RYaE53DdL7ZYwee2D8DDo9/EyYiKUfN3rneWUjhJnueija3G9I2i0h3g==", + "dev": true, + "dependencies": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" + } + }, + "node_modules/optimist/node_modules/minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha512-iotkTvxc+TwOm5Ieim8VnSNvCDjCK9S8G3scJ50ZthspSxa7jx50jkhYduuAtAjvfDUwSgOwf8+If99AlOEhyw==", + "dev": true + }, + "node_modules/optimist/node_modules/wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha512-1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/promise.prototype.finally": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-1.0.1.tgz", + "integrity": "sha512-8/BYzHIaMau3J4PfcBIC1YKh3emPEO+/7e1qY5SD5mtmSFGKnoM3Ow4wVlf1ffKveCcaXwp6KcXhsKzWt6mN4w==", + "deprecated": "Please upgrade to v2.0 or higher!", + "dev": true + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true, + "optional": true + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/qs/-/qs-0.6.6.tgz", + "integrity": "sha512-kN+yNdAf29Jgp+AYHUmC7X4QdJPR8czuMWLNLc0aRxkQ7tB3vJQEONKKT9ou/rW7EbqVec11srC9q9BiVbcnHA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "optional": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/reduce-extract": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/reduce-extract/-/reduce-extract-1.0.0.tgz", + "integrity": "sha512-QF8vjWx3wnRSL5uFMyCjDeDc5EBMiryoT9tz94VvgjKfzecHAVnqmXAwQDcr7X4JmLc2cjkjFGCVzhMqDjgR9g==", + "dev": true, + "dependencies": { + "test-value": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reduce-extract/node_modules/test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reduce-flatten": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-1.0.1.tgz", + "integrity": "sha512-j5WfFJfc9CoXv/WbwVLHq74i/hdTUpy+iNC534LxczMRP67vJeK3V9JOdnL0N1cIRbn9mYhE2yVjvvKXDxvNXQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reduce-unique": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/reduce-unique/-/reduce-unique-1.0.0.tgz", + "integrity": "sha512-WQ6qRDbx7NL4CdW6AFjnyX9i0k6FxGiUaGJ5xAEZ8ZLjwisxi3wcKWYzKmULj8s1N8G1KYcREyg0P4PVo2rI/A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reduce-without": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/reduce-without/-/reduce-without-1.0.1.tgz", + "integrity": "sha512-zQv5y/cf85sxvdrKPlfcRzlDn/OqKFThNimYmsS3flmkioKvkUGn2Qg9cJVoQiEvdxFGLE0MQER/9fZ9sUqdxg==", + "dev": true, + "dependencies": { + "test-value": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/req-then": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/req-then/-/req-then-0.5.1.tgz", + "integrity": "sha512-ald8dmP4zgF87wWs1n+/TppCd9LB6zZfAWSqF/RFCQ/ImDoH6ro77vmfOLhwkgH2uB8mcn4fNbwL9DEbpKCwJA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "defer-promise": "^1.0.0", + "feature-detect-es6": "^1.3.1", + "lodash.pick": "^4.4.0", + "typical": "^2.6.0" + }, + "bin": { + "req-then": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/request": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.34.0.tgz", + "integrity": "sha512-mD5mNhfkeaKMg5ZY/hZFbW4lyC/NTn34/ILGQr/XLSuxYOE6vJfL0MTPPXZcZrdt+Nh1Kce+f4B4KbGThIETxQ==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "dependencies": { + "forever-agent": "~0.5.0", + "json-stringify-safe": "~5.0.0", + "mime": "~1.2.9", + "node-uuid": "~1.4.0", + "qs": "~0.6.0" + }, + "optionalDependencies": { + "aws-sign2": "~0.5.0", + "form-data": "~0.1.0", + "hawk": "~1.0.0", + "http-signature": "~0.10.0", + "oauth-sign": "~0.3.0", + "tough-cookie": ">=0.12.0", + "tunnel-agent": "~0.3.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "optional": true + }, + "node_modules/requizzle": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz", + "integrity": "sha512-YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "dev": true + }, + "node_modules/right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg==", + "dev": true, + "optional": true, + "dependencies": { + "align-text": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/simple-vdf": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/simple-vdf/-/simple-vdf-1.1.1.tgz", + "integrity": "sha512-IHz5fiOyWX0etTzlrzpWfKWxkwOhSwbbuZxcig+JuON0id1clnYlINBRbe4M4Pz4VnNvNvNaZiKiS7tdIYyF6g==" + }, + "node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/sntp": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-0.2.4.tgz", + "integrity": "sha512-bDLrKa/ywz65gCl+LmOiIhteP1bhEsAAzhfMedPoiHP3dyYnAevlaJshdqb9Yu0sRifyP/fRqSt8t+5qGIWlGQ==", + "deprecated": "This module moved to @hapi/sntp. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues.", + "dev": true, + "optional": true, + "dependencies": { + "hoek": "0.9.x" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/sort-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-array/-/sort-array-1.1.2.tgz", + "integrity": "sha512-5eLpySAUYxyidyJM6CW/+QP8ymqFr0ZDrO4TmCwxpqPmQRZFMqfZq6L/O7c9jdtjDNJZlKwSR4vzR4sVggjRKw==", + "dev": true, + "dependencies": { + "array-back": "^1.0.4", + "object-get": "^2.1.0", + "typical": "^2.6.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/source-map": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", + "integrity": "sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA==", + "dev": true, + "optional": true, + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "engines": { + "node": "*" + } + }, + "node_modules/stream-connect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-connect/-/stream-connect-1.0.2.tgz", + "integrity": "sha512-68Kl+79cE0RGKemKkhxTSg8+6AGrqBt+cbZAXevg2iJ6Y3zX4JhA/sZeGzLpxW9cXhmqAcE7KnJCisUmIUfnFQ==", + "dev": true, + "dependencies": { + "array-back": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-handlebars": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/stream-handlebars/-/stream-handlebars-0.1.6.tgz", + "integrity": "sha512-i3N3nKsOHucX9NOcj/1pK3Oh+O6uG/9MOCajfVdTlx7l+XuUbl1Zk8KGK4pDBlWswlUGkLAK79QhBQzsXKA6MA==", + "dev": true, + "dependencies": { + "handlebars": "^3.0.0", + "object-tools": "^1.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-handlebars/node_modules/camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-handlebars/node_modules/cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA==", + "dev": true, + "optional": true, + "dependencies": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "node_modules/stream-handlebars/node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-handlebars/node_modules/handlebars": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-3.0.8.tgz", + "integrity": "sha512-frzSzoxbJZSB719r+lM3UFKrnHIY6VPY/j47+GNOHVnBHxO+r+Y/iDjozAbj1SztmmMpr2CcZY6rLeN5mqX8zA==", + "dev": true, + "dependencies": { + "optimist": "^0.6.1", + "source-map": "^0.1.40" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^2.6" + } + }, + "node_modules/stream-handlebars/node_modules/object-tools": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/object-tools/-/object-tools-1.6.7.tgz", + "integrity": "sha512-At5Cw0arQlH/+bXCONl2GXDHuPrWgKsR55aWXjvTM+5gyeHOTYJhMc9q5Vex5uFOpgnA6sG0QSZzsQsSXyCL1Q==", + "dev": true, + "dependencies": { + "array-tools": "^1.8.4", + "typical": "^2.2" + } + }, + "node_modules/stream-handlebars/node_modules/source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==", + "dev": true, + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/stream-handlebars/node_modules/uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==", + "dev": true, + "optional": true, + "dependencies": { + "source-map": "~0.5.1", + "yargs": "~3.10.0" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + }, + "optionalDependencies": { + "uglify-to-browserify": "~1.0.0" + } + }, + "node_modules/stream-handlebars/node_modules/uglify-js/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-handlebars/node_modules/wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/stream-handlebars/node_modules/yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==", + "dev": true, + "optional": true, + "dependencies": { + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" + } + }, + "node_modules/stream-via": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-1.0.4.tgz", + "integrity": "sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-tools": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string-tools/-/string-tools-1.0.0.tgz", + "integrity": "sha512-wN3ILcVQFIf7skV2S9/6tSgK+11RAGDVt8luHaEN/RGOOHQAyBblnfEIVS1qeF+91LlTkp1lqMoglibfWnkIkg==", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/table-layout": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-0.3.0.tgz", + "integrity": "sha512-9ktef9AEZwAjG7f58oKbe2fEbJzEgRaEbfr8Vci/CitCDszCLKZutLcGFswuwcH6X7mpC11x9W8UW7FyJ/uRbA==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "core-js": "^2.4.1", + "deep-extend": "~0.4.1", + "feature-detect-es6": "^1.3.1", + "typical": "^2.6.0", + "wordwrapjs": "^2.0.0-0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/taffydb": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz", + "integrity": "sha512-y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA==", + "dev": true + }, + "node_modules/temp-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-path/-/temp-path-1.0.0.tgz", + "integrity": "sha512-TvmyH7kC6ZVTYkqCODjJIbgvu0FKiwQpZ4D1aknE7xpcDf/qEOB8KZEK5ef2pfbVoiBhNWs3yx4y+ESMtNYmlg==", + "dev": true + }, + "node_modules/test-value": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz", + "integrity": "sha512-+1epbAxtKeXttkGFMTX9H42oqzOTufR1ceCF+GYA5aOmvaPq9wd4PUS8329fn2RRLGNeUkgRLnVpycjx8DsO2w==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "typical": "^2.6.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/then-fs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz", + "integrity": "sha512-5ffcBcU+vFUCYDNi/o507IqjqrTkuGsLVZ1Fp50hwgZRY7ufVFa9jFfTy5uZ2QnSKacKigWKeaXkOqLa4DsjLw==", + "dev": true, + "dependencies": { + "promise": ">=3.2 <8" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dev": true, + "optional": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tunnel-agent": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.3.0.tgz", + "integrity": "sha512-jlGqHGoKzyyjhwv/c9omAgohntThMcGtw8RV/RDLlkbbc08kni/akVxO62N8HaXMVbVsK1NCnpSK3N2xCt22ww==", + "dev": true, + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/typical": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz", + "integrity": "sha512-ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg==", + "dev": true + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q==", + "dev": true, + "optional": true + }, + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", + "dev": true + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "optional": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/usage-stats": { + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/usage-stats/-/usage-stats-0.8.6.tgz", + "integrity": "sha512-QS1r7a1h5g1jo6KulvVGV+eQM+Jfj87AjJBfr1iaIJYz+N7+Qh7ezaVFCulwBGd8T1EidRiSYphG17gra2y0kg==", + "dev": true, + "dependencies": { + "array-back": "^1.0.4", + "cli-commands": "0.1.0", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "home-path": "^1.0.5", + "mkdirp2": "^1.0.3", + "req-then": "0.5.1", + "typical": "^2.6.1", + "uuid": "^3.0.1" + }, + "bin": { + "usage-stats": "bin.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/vdf": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/vdf/-/vdf-0.0.2.tgz", + "integrity": "sha512-iqFbR0zZeXQGaJzr7g8tFdQAgqIO3aTGoTLQGDugbiX4AZGdkbzSS/q9MXbvOSTfdP4TAEYZ124QWwLoueKvSw==", + "dependencies": { + "util": "*" + } + }, + "node_modules/walk-back": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-2.0.1.tgz", + "integrity": "sha512-Nb6GvBR8UWX1D+Le+xUq0+Q1kFmRBIWVrfLnQAOmcpEzA9oAxwJ9gIr36t9TWYfzvWRvuMtjHiVsJYEkXWaTAQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/winston": { + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz", + "integrity": "sha512-vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg==", + "dependencies": { + "async": "^2.6.4", + "colors": "1.0.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "stack-trace": "0.0.x" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/winston/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wordwrapjs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-2.0.0.tgz", + "integrity": "sha512-XNzRwovxCFgLxqmumTWdVAIjtvMKAfjzdB/uWgILQiOPwIFNTq9xk5ZKPvcaVX9MCZueoSV2aGtSbM3irVap3w==", + "dev": true, + "dependencies": { + "array-back": "^1.0.3", + "feature-detect-es6": "^1.3.1", + "reduce-flatten": "^1.0.1", + "typical": "^2.6.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/xmlcreate": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz", + "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "peer": true, + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/cli": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.19.3.tgz", + "integrity": "sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.8", + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0", + "commander": "^4.0.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + } + }, + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", + "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", + "dev": true + }, + "@babel/core": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", + "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", + "dev": true, + "peer": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.2", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.1", + "@babel/parser": "^7.20.2", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + } + }, + "@babel/generator": { + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", + "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", + "dev": true, + "requires": { + "@babel/types": "^7.20.2", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.20.0", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "semver": "^6.3.0" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", + "integrity": "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.19.1", + "@babel/helper-split-export-declaration": "^7.18.6" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", + "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.1.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + }, + "regexpu-core": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", + "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsgen": "^0.7.1", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + } + }, + "regjsgen": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", + "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==", + "dev": true + }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + } + } + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dev": true, + "requires": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", + "dev": true, + "requires": { + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-replace-supers": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", + "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.19.1", + "@babel/types": "^7.19.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dev": true, + "requires": { + "@babel/types": "^7.20.2" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "dev": true, + "requires": { + "@babel/types": "^7.20.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", + "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + } + }, + "@babel/helpers": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", + "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", + "dev": true, + "peer": true, + "requires": { + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.0" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz", + "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", + "dev": true + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz", + "integrity": "sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", + "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz", + "integrity": "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.1" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", + "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", + "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz", + "integrity": "sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz", + "integrity": "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.19.1", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz", + "integrity": "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz", + "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz", + "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-simple-access": "^7.19.4" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz", + "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-identifier": "^7.19.1" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", + "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz", + "integrity": "sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", + "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "regenerator-transform": "^0.15.0" + }, + "dependencies": { + "regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + } + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", + "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/preset-env": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.20.2", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.20.1", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/runtime": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz", + "integrity": "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.10" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + } + } + }, + "@babel/template": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" + } + }, + "@babel/traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", + "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.1", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.1", + "@babel/types": "^7.20.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz", + "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "peer": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", + "dev": true, + "optional": true + }, + "@types/linkify-it": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz", + "integrity": "sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==", + "dev": true + }, + "@types/markdown-it": { + "version": "12.2.3", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz", + "integrity": "sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==", + "dev": true, + "requires": { + "@types/linkify-it": "*", + "@types/mdurl": "*" + } + }, + "@types/mdurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", + "dev": true + }, + "abbrev": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", + "integrity": "sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==", + "dev": true + }, + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==", + "dev": true + }, + "acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==", + "dev": true, + "requires": { + "acorn": "^3.0.4" + } + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg==", + "dev": true, + "optional": true, + "requires": { + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" + } + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", + "dev": true + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-escape-sequences": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-3.0.0.tgz", + "integrity": "sha512-nOj2mwGB2lJzx9YDqaiI77vYh4SWcOCTday6kdtx6ojUk1s1HqSiK604UIq8jlBVC0UBsX7Bph3SfOf9QsJerA==", + "dev": true, + "requires": { + "array-back": "^1.0.3" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "app-usage-stats": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/app-usage-stats/-/app-usage-stats-0.4.1.tgz", + "integrity": "sha512-elJOSZaWLWycmmQ5R6QvbKe0s3drumsU8JOJNvE4e/Pvjg52g65AAlKsCr65Kd1hAfr0I2E+AWgPlJQ/LZCDEw==", + "dev": true, + "requires": { + "array-back": "^1.0.4", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "home-path": "^1.0.3", + "test-value": "^2.1.0", + "usage-stats": "^0.8.2" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-back": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", + "integrity": "sha512-1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw==", + "dev": true, + "requires": { + "typical": "^2.6.0" + } + }, + "array-tools": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/array-tools/-/array-tools-1.8.6.tgz", + "integrity": "sha512-x7nT/yV2Mv6whp1BQw2BL2+8bRCu1Wb8sB+F0uNa/ZiP4WjpA6i9JKGtlDlWj2ggo49bPQMM/Du/wMururI/Bg==", + "dev": true, + "requires": { + "object-tools": "^1.6.1", + "typical": "^2.1" + }, + "dependencies": { + "object-tools": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/object-tools/-/object-tools-1.6.7.tgz", + "integrity": "sha512-At5Cw0arQlH/+bXCONl2GXDHuPrWgKsR55aWXjvTM+5gyeHOTYJhMc9q5Vex5uFOpgnA6sG0QSZzsQsSXyCL1Q==", + "dev": true, + "requires": { + "array-tools": "^1.8.4", + "typical": "^2.2" + } + } + } + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "asn1": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz", + "integrity": "sha512-Fh9zh3G2mZ8qM/kwsiKwL2U2FmXxVsboP4x1mXjnhKHv3SmzaBZoYvxEQJz/YS2gnCgd8xlAVWcZnQyC9qZBsA==", + "dev": true, + "optional": true + }, + "assert-plus": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz", + "integrity": "sha512-brU24g7ryhRwGCI2y+1dGQmQXiZF7TtIj583S96y0jjdajIe6wn8BuXyELYhvD22dtIxDQVFk04YTJwwdwOYJw==", + "dev": true, + "optional": true + }, + "assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true + }, + "async": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/async/-/async-0.7.0.tgz", + "integrity": "sha512-9GReTNJtSSP+tNXZhlXuzPrRVlhH7Abwgf9qsV4NVLiChZpzFKvWGIwAss+uOUlsLjEnQbbVX1ERDTpjM5EmQg==", + "dev": true + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + }, + "aws-sign2": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz", + "integrity": "sha512-oqUX0DM5j7aPWPCnpWebiyNIj2wiNI87ZxnOMoGv0aE4TGlBy2N+5iWc6dQ/NOKZaBD2W6PVz8jtOGkWzSC5EA==", + "dev": true, + "optional": true + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + } + }, + "babel-polyfill": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz", + "integrity": "sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "regenerator-runtime": "^0.10.5" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==", + "dev": true + } + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "dev": true, + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "boom": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/boom/-/boom-0.4.2.tgz", + "integrity": "sha512-OvfN8y1oAxxphzkl2SnCS+ztV/uVKTATtgLjWYg/7KwcNyf3rzpHxNQJZCKtsZd4+MteKczhWbSjtEX4bGgU9g==", + "dev": true, + "optional": true, + "requires": { + "hoek": "0.9.x" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + } + }, + "cache-point": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/cache-point/-/cache-point-0.3.4.tgz", + "integrity": "sha512-xY7ZTpb6twvkNvsz9ucBaySYmA/NG+lw7qWagtdphqczVqesDzrjaqpEEWEjmMtdtt3f5g4odW9m69Bro8BV4A==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "fs-then-native": "^1.0.2", + "mkdirp": "~0.5.1" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001431", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz", + "integrity": "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==", + "dev": true + }, + "catharsis": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz", + "integrity": "sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==", + "dev": true, + "requires": { + "lodash": "^4.17.15" + } + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==", + "dev": true, + "optional": true, + "requires": { + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" + } + }, + "chai": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", + "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", + "dev": true, + "requires": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^4.1.2", + "get-func-name": "^2.0.0", + "loupe": "^2.3.1", + "pathval": "^1.1.1", + "type-detect": "^4.0.5" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "cli-commands": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/cli-commands/-/cli-commands-0.1.0.tgz", + "integrity": "sha512-q7sQb4fp+8T7OLlHf0iJoCUFqvgURR/QEj0WmFZVqJZsfEo4jJ0ozSNuCHTDn5Z92WnjCfQlsi2jBjbOMkkNjA==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^3.0.0", + "command-line-args": "^3.0.1", + "command-line-commands": "^1.0.4", + "command-line-usage": "^3.0.5" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "codeclimate-test-reporter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/codeclimate-test-reporter/-/codeclimate-test-reporter-0.1.1.tgz", + "integrity": "sha512-GSdDaxQzZZd5pwY/me/TBt9AfDB4B6fKkIFxUhsbFyhFWHDdI7QDMy5uWsQHAlx2WOWtX4rF+VX/HWP87xqa6Q==", + "dev": true, + "requires": { + "async": "~0.7.0", + "lcov-parse": "0.0.6", + "request": "~2.34.0" + } + }, + "collect-all": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-1.0.4.tgz", + "integrity": "sha512-RKZhRwJtJEP5FWul+gkSMEnaK6H3AGPTTWOiRimCcs+rc/OmQE3Yhy1Q7A7KsdkG3ZXVdZq68Y6ONSdvkeEcKA==", + "dev": true, + "requires": { + "stream-connect": "^1.0.2", + "stream-via": "^1.0.4" + } + }, + "collect-json": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/collect-json/-/collect-json-1.0.9.tgz", + "integrity": "sha512-5sGzu8rjhY4uzm4FJOVsNtcAhNiyEsZ70Lz3xv+7mXuLfU41QikE0es3nn2N0knqEKg+r4K7TMFHFmR8OFGpFA==", + "dev": true, + "requires": { + "collect-all": "^1.0.4", + "stream-connect": "^1.0.2", + "stream-via": "^1.0.4" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==" + }, + "column-layout": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/column-layout/-/column-layout-2.1.4.tgz", + "integrity": "sha512-u0d19HeRqHrs8nK+dBK5yzJ1fcMKXZmhXeKOVZfjbU2PJDMavQn256E262Z1qOD5Esg32dq17cM2pYUnO1WVTw==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "collect-json": "^1.0.8", + "command-line-args": "^2.1.6", + "core-js": "^2.4.0", + "deep-extend": "~0.4.1", + "feature-detect-es6": "^1.2.0", + "object-tools": "^2.0.6", + "typical": "^2.4.2", + "wordwrapjs": "^1.2.0" + }, + "dependencies": { + "ansi-escape-sequences": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", + "integrity": "sha512-8UeLcAdY7X4ZUBiuWoxqHfPGIUwJ5Vz7ujKdMUWbR0DwiBziHJbEMYzTvt7OQNtFb2NHxSxa3COicuPNgvE0XQ==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "collect-all": "~0.2.1" + } + }, + "collect-all": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-0.2.1.tgz", + "integrity": "sha512-DJM6+T8WAUEDVPxvbousmxRvtGW5+Q7JazRYmELEzn+BLGlRrqQ1ENKIpfiUjveCupWgUQd4iTvrMfDo0HiVKw==", + "dev": true, + "requires": { + "stream-connect": "^1.0.1", + "stream-via": "~0.1.0", + "typical": "^2.3.0" + } + }, + "command-line-args": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-2.1.6.tgz", + "integrity": "sha512-qo+q+AcV8vRQCVDCoh3gNbUiVI86ywoKkIUJeNCNZBCw1qv111Dp0F3nZ2PR/92HrGsgsABuAAi7Fe/z/cj8YQ==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "command-line-usage": "^2", + "core-js": "^2.0.1", + "feature-detect-es6": "^1.2.0", + "find-replace": "^1", + "typical": "^2.3.0" + } + }, + "command-line-usage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-2.0.5.tgz", + "integrity": "sha512-xxUZrDySMWQknZRlCKXbuSCR8PUQXLbypmXPv8a1ZaxIGE5SSynjXNZzig8VTcTcXuvIVf9y563nucsRAYnCKA==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "column-layout": "^2.1.1", + "feature-detect-es6": "^1.2.0", + "typical": "^2.4.2", + "wordwrapjs": "^1.2.0" + } + }, + "stream-via": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-0.1.1.tgz", + "integrity": "sha512-1U7icavM/2dRDSevxnJRZfKBWrnhmtdCh0zQTThwYchL2YWjbwZb2PEngEj9HKjgyJ2oDipz6TLud/AU6BAIzQ==", + "dev": true + }, + "wordwrapjs": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-1.2.1.tgz", + "integrity": "sha512-oHt3LHdyJ2xke7aFYuXXB4QBvfORPZAfwdOW5bKQhCNj2Fa+I/WBz81yle19Cs7gZvaBxoYKOuPW/mFe4X09lg==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "typical": "^2.5.0" + } + } + } + }, + "combined-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", + "integrity": "sha512-qfexlmLp9MyrkajQVyjEDb0Vj+KhRgR/rxLiVhaihlT+ZkX0lReqtH6Ack40CvMDERR4b5eFp3CreskpBs1Pig==", + "dev": true, + "optional": true, + "requires": { + "delayed-stream": "0.0.5" + } + }, + "command-line-args": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-3.0.5.tgz", + "integrity": "sha512-M29kjOI24VF4HqatnqVyDqyeq3SYYZbq6LWv/AdVZ5LvrcqVNSN2XeYPrBxcO19T8YkGmyCqTUqYR07DFjVhyg==", + "dev": true, + "requires": { + "array-back": "^1.0.4", + "feature-detect-es6": "^1.3.1", + "find-replace": "^1.0.2", + "typical": "^2.6.0" + } + }, + "command-line-commands": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/command-line-commands/-/command-line-commands-1.0.4.tgz", + "integrity": "sha512-l/z6Avh5umBu6grouQAQbvPU87NH4ud1WBMV+P4n+LRQj2MiCfaVXLCo8Klcd9xwOgungPbnpNVuZ6+AX9W+0g==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "feature-detect-es6": "^1.3.1" + } + }, + "command-line-tool": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/command-line-tool/-/command-line-tool-0.5.2.tgz", + "integrity": "sha512-TiZWqiRiyG4M6ZwbxKiCnBMDrD+rMNLeV2rf3rjmRH6O1yKvVmRpXlVxprABqks0nI/NU5F5JOCC14XQBFddlw==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "command-line-args": "^3.0.0", + "command-line-usage": "^3.0.3", + "feature-detect-es6": "^1.3.0", + "typical": "^2.4.2" + }, + "dependencies": { + "ansi-escape-sequences": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", + "integrity": "sha512-8UeLcAdY7X4ZUBiuWoxqHfPGIUwJ5Vz7ujKdMUWbR0DwiBziHJbEMYzTvt7OQNtFb2NHxSxa3COicuPNgvE0XQ==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "collect-all": "~0.2.1" + } + }, + "collect-all": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-0.2.1.tgz", + "integrity": "sha512-DJM6+T8WAUEDVPxvbousmxRvtGW5+Q7JazRYmELEzn+BLGlRrqQ1ENKIpfiUjveCupWgUQd4iTvrMfDo0HiVKw==", + "dev": true, + "requires": { + "stream-connect": "^1.0.1", + "stream-via": "~0.1.0", + "typical": "^2.3.0" + } + }, + "stream-via": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-0.1.1.tgz", + "integrity": "sha512-1U7icavM/2dRDSevxnJRZfKBWrnhmtdCh0zQTThwYchL2YWjbwZb2PEngEj9HKjgyJ2oDipz6TLud/AU6BAIzQ==", + "dev": true + } + } + }, + "command-line-usage": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-3.0.8.tgz", + "integrity": "sha512-KMWPF8wNWa+wzffE9247hlDB1c9DMMxhwIFzwRn7oNv5CU7auuJ3zKWv756F/9qqlEucC5jI8/3S8qdGKdVelw==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^3.0.0", + "array-back": "^1.0.3", + "feature-detect-es6": "^1.3.1", + "table-layout": "^0.3.0", + "typical": "^2.6.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "common-sequence": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/common-sequence/-/common-sequence-1.0.2.tgz", + "integrity": "sha512-z3ln8PqfoBRwY1X0B1W0NEvfuo3+lZdvVjYaxusK84FPGkBy+ZqfbMhgdGOLr1v1dv13z5KYOtbL/yupL4I8Yw==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "config-master": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/config-master/-/config-master-2.0.4.tgz", + "integrity": "sha512-PfeMGMq4TTliwwGkf41u4Dhvk6I5ZzaxdTGYm9NbVqTZcHr20d8VydihyHcCpE/9ZTcN6FdT9vo0FW5rKZZOLw==", + "dev": true, + "requires": { + "babel-polyfill": "^6.13.0", + "feature-detect-es6": "^1.3.1", + "walk-back": "^2.0.1" + } + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "dev": true + }, + "core-js-compat": { + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz", + "integrity": "sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==", + "dev": true, + "requires": { + "browserslist": "^4.21.4" + } + }, + "cryptiles": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.2.2.tgz", + "integrity": "sha512-gvWSbgqP+569DdslUiCelxIv3IYK5Lgmq1UrRnk+s1WxQOQ16j3GPDcjdtgL5Au65DU/xQi6q3xPtf5Kta+3IQ==", + "dev": true, + "optional": true, + "requires": { + "boom": "0.4.x" + } + }, + "ctype": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz", + "integrity": "sha512-T6CEkoSV4q50zW3TlTHMbzy1E5+zlnNcY+yb7tWVYlTwPhx9LpnfAkd4wecpWknDyptp4k97LUZeInlf6jdzBg==", + "dev": true, + "optional": true + }, + "cycle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", + "integrity": "sha512-TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA==" + }, + "ddata": { + "version": "0.1.28", + "resolved": "https://registry.npmjs.org/ddata/-/ddata-0.1.28.tgz", + "integrity": "sha512-iHuP9mQjLqQZDSUOqmT/omWBWohJfmBnQj+RzGxHDJlzOIA6HhSjMZFAnIsQ3s+Qx5CzYA3Vq7rAQzDSMCq8Dw==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "core-js": "^2.4.1", + "handlebars": "^3.0.3", + "marked": "~0.3.6", + "object-get": "^2.1.0", + "reduce-flatten": "^1.0.1", + "string-tools": "^1.0.0", + "test-value": "^2.0.0" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==", + "dev": true, + "optional": true + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA==", + "dev": true, + "optional": true, + "requires": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "optional": true + }, + "handlebars": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-3.0.8.tgz", + "integrity": "sha512-frzSzoxbJZSB719r+lM3UFKrnHIY6VPY/j47+GNOHVnBHxO+r+Y/iDjozAbj1SztmmMpr2CcZY6rLeN5mqX8zA==", + "dev": true, + "requires": { + "optimist": "^0.6.1", + "source-map": "^0.1.40", + "uglify-js": "^2.6" + } + }, + "marked": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz", + "integrity": "sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==", + "dev": true + }, + "source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==", + "dev": true, + "requires": { + "amdefine": ">=0.0.4" + } + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==", + "dev": true, + "optional": true, + "requires": { + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "optional": true + } + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==", + "dev": true, + "optional": true + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==", + "dev": true, + "optional": true, + "requires": { + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" + } + } + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true + }, + "deep-eql": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.2.tgz", + "integrity": "sha512-gT18+YW4CcW/DBNTwAmqTtkJh7f9qqScu2qFVlx7kCoeY9tlBu9cUcr7+I+Z/noG8INehS3xQgLpTtd/QUTn4w==", + "dev": true, + "requires": { + "type-detect": "^4.0.0" + } + }, + "deep-extend": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", + "integrity": "sha512-cQ0iXSEKi3JRNhjUsLWvQ+MVPxLVqpwCd0cFsWbJxlCim2TlCo1JvN5WaPdPvSpUdEnkJ/X+mPGcq5RJ68EK8g==", + "dev": true + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "defer-promise": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/defer-promise/-/defer-promise-1.0.2.tgz", + "integrity": "sha512-5a0iWJvnon50nLLqHPW83pX45BLb4MmlSa1sIg05NBhZoK5EZGz1s8qoZ3888dVGGOT0Ni01NdETuAgdJUZknA==", + "dev": true + }, + "delayed-stream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", + "integrity": "sha512-v+7uBd1pqe5YtgPacIIbZ8HuHeLFVNe4mUEyFDXL6KiqzEykjbw+5mXZXpGFgNVasdL4jWKgaKIXrEHiynN1LA==", + "dev": true, + "optional": true + }, + "diff": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true + }, + "dmd": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/dmd/-/dmd-1.4.2.tgz", + "integrity": "sha512-rOPXEDiT6+dqVvDX6RX1rO4F6nU9a7HHdpXB1qIDL3tKEX52LwWNhGmIUJ8d2V1pX/5bIaFDaJunQt/m/zc0ig==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "command-line-tool": "~0.5.0", + "common-sequence": "^1.0.2", + "ddata": "~0.1.25", + "file-set": "^1.0.0", + "handlebars-array": "^0.2.0", + "handlebars-comparison": "^2.0.0", + "handlebars-json": "^1.0.0", + "handlebars-regexp": "^1.0.0", + "handlebars-string": "^2.0.1", + "object-tools": "^2.0.6", + "reduce-unique": "^1.0.0", + "reduce-without": "^1.0.1", + "stream-handlebars": "~0.1.6", + "string-tools": "^1.0.0", + "walk-back": "^2.0.1" + } + }, + "electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "escodegen": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", + "integrity": "sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A==", + "dev": true, + "requires": { + "esprima": "^2.7.1", + "estraverse": "^1.9.1", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.2.0" + } + }, + "espree": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.1.7.tgz", + "integrity": "sha512-VF3ZpqctFaefWt4R+7jMidx4BUMbd9rxaUoM1gumrgDWcKByFT2YSV73vT6rvdCNw4ZoOAR2z7bamCg4VN9m0A==", + "dev": true, + "requires": { + "acorn": "^3.3.0", + "acorn-jsx": "^3.0.0" + } + }, + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==", + "dev": true + }, + "estraverse": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", + "integrity": "sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "eyes": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", + "integrity": "sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "feature-detect-es6": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/feature-detect-es6/-/feature-detect-es6-1.5.0.tgz", + "integrity": "sha512-DzWPIGzTnfp3/KK1d/YPfmgLqeDju9F2DQYBL35VusgSApcA7XGqVtXfR4ETOOFEzdFJ3J7zh0Gkk011TiA4uQ==", + "dev": true, + "requires": { + "array-back": "^1.0.4" + } + }, + "file-set": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/file-set/-/file-set-1.1.2.tgz", + "integrity": "sha512-xDXI09w+l+mXxWDym7dQXy3PLdo7DygHlAtRnQ6XIMa0iY/qX6+1J75jjwCArCd48yCiMx2+fRn50BTFd45+jQ==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "glob": "^7.1.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "filter-where": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/filter-where/-/filter-where-1.0.1.tgz", + "integrity": "sha512-WR5ZwPkYow93louUCfSeTmn8Q7M/X9uMY6LUqTBr1DgohVd7cYZ+B9MHTsQJ9FHKpvkz32LBppTNXPC/Z/pRHA==", + "dev": true, + "requires": { + "test-value": "^1.0.1" + }, + "dependencies": { + "test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + } + } + } + }, + "find-replace": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-1.0.3.tgz", + "integrity": "sha512-KrUnjzDCD9426YnCP56zGYy/eieTnhtK6Vn++j+JJzmlsWWwEkDnsyVF575spT6HJ6Ow9tlbT3TQTDsa+O4UWA==", + "dev": true, + "requires": { + "array-back": "^1.0.4", + "test-value": "^2.1.0" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "forever-agent": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz", + "integrity": "sha512-PDG5Ef0Dob/JsZUxUltJOhm/Y9mlteAE+46y3M9RBz/Rd3QVENJ75aGRhN56yekTUboaBIkd8KVWX2NjF6+91A==", + "dev": true + }, + "form-data": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz", + "integrity": "sha512-x8eE+nzFtAMA0YYlSxf/Qhq6vP1f8wSoZ7Aw1GuctBcmudCNuTUmmx45TfEplyb6cjsZO/jvh6+1VpZn24ez+w==", + "dev": true, + "optional": true, + "requires": { + "async": "~0.9.0", + "combined-stream": "~0.0.4", + "mime": "~1.2.11" + }, + "dependencies": { + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==", + "dev": true, + "optional": true + } + } + }, + "fs-readdir-recursive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", + "dev": true + }, + "fs-then-native": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fs-then-native/-/fs-then-native-1.0.2.tgz", + "integrity": "sha512-Rbz2Jggj4AHs56esXBzCAmDTthzCisuKOTFulwwu2jztQh07q86FhIwHytQCK6HfkKES2+u1YZU1fyCajPuWKg==", + "dev": true, + "requires": { + "feature-detect-es6": "^1.3.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "peer": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dev": true, + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "handlebars-array": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/handlebars-array/-/handlebars-array-0.2.1.tgz", + "integrity": "sha512-qQnsau0d45rzRn5Mm76/JepLDrJkKeJUAn4gf45WIQFl+9+oqA/XtCOHmc705SffS7gYMeGX3gDz/NulL56ptA==", + "dev": true, + "requires": { + "array-tools": "^1.1.4" + } + }, + "handlebars-comparison": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handlebars-comparison/-/handlebars-comparison-2.0.1.tgz", + "integrity": "sha512-fDBg5FVtj//20jGubGMIJDn68S4cVMl/ZrbZadpG2l8K9T/ITXWdLvidabLkOs2ePhcufuE5zKhf0saUKEExQQ==", + "dev": true, + "requires": { + "array-tools": "^1.1.0" + } + }, + "handlebars-json": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/handlebars-json/-/handlebars-json-1.0.1.tgz", + "integrity": "sha512-zkqeRv2x0Lc5+pADCB98edilRPjtkz6cYM/ogUK6ZaVbZUbkDhGcXE20gXVW5N7g3m5r5R4nHig9VHcDIIQORQ==", + "dev": true + }, + "handlebars-regexp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/handlebars-regexp/-/handlebars-regexp-1.0.1.tgz", + "integrity": "sha512-htocyMnBYuJZFr6FYMSnwvbkwQWmJO35MT2AQlJEdEP2u5WH2H7rnauNczRcVG4i8YSVhxKxojMUs5X3h3hFIg==", + "dev": true + }, + "handlebars-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/handlebars-string/-/handlebars-string-2.0.2.tgz", + "integrity": "sha512-Ug7VPR7UbBty+SDCWgaPw2l+ipE39uYpSzdFLz/XdZUQMzOXsSe76xQgKYhm9Rb/bLw24454kFZo+rQEhG0QIw==", + "dev": true, + "requires": { + "array-tools": "^1.0.6", + "string-tools": "^0.1.4" + }, + "dependencies": { + "string-tools": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/string-tools/-/string-tools-0.1.8.tgz", + "integrity": "sha512-OHaYAjvTq1WPOF4+mAYZy03UpCzhQ5h/fZ/mO+HHJDXMa5jNBB696NBQJ5EX6NQMiX5E971RN8JPZJ1qFxyrQQ==", + "dev": true + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "hawk": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-1.0.0.tgz", + "integrity": "sha512-Sg+VzrI7TjUomO0rjD6UXawsj50ykn5sB/xKNW/IenxzRVyw/wt9A2FLzYpGL/r0QG5hyXY8nLx/2m8UutoDcg==", + "dev": true, + "optional": true, + "requires": { + "boom": "0.4.x", + "cryptiles": "0.2.x", + "hoek": "0.9.x", + "sntp": "0.2.x" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hoek": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-0.9.1.tgz", + "integrity": "sha512-ZZ6eGyzGjyMTmpSPYVECXy9uNfqBR7x5CavhUaLOeD6W0vWK1mp/b7O3f86XE0Mtfo9rZ6Bh3fnuw9Xr8MF9zA==", + "dev": true, + "optional": true + }, + "home-path": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/home-path/-/home-path-1.0.7.tgz", + "integrity": "sha512-tM1pVa+u3ZqQwIkXcWfhUlY3HWS3TsnKsfi2OHHvnhkX52s9etyktPyy1rQotkr0euWimChDq+QkQuDe8ngUlQ==", + "dev": true + }, + "http-signature": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz", + "integrity": "sha512-coK8uR5rq2IMj+Hen+sKPA5ldgbCc1/spPdKCL1Fw6h+D0s/2LzMcRK0Cqufs1h0ryx/niwBHGFu8HC3hwU+lA==", + "dev": true, + "optional": true, + "requires": { + "asn1": "0.1.11", + "assert-plus": "^0.1.5", + "ctype": "0.5.3" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true, + "optional": true + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, + "is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + }, + "istanbul": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz", + "integrity": "sha512-nMtdn4hvK0HjUlzr1DrKSUY8ychprt8dzHOgY2KXsIhHu5PuQQEOTM27gV9Xblyon7aUH/TSFIjRHEODF/FRPg==", + "dev": true, + "requires": { + "abbrev": "1.0.x", + "async": "1.x", + "escodegen": "1.8.x", + "esprima": "2.7.x", + "glob": "^5.0.15", + "handlebars": "^4.0.1", + "js-yaml": "3.x", + "mkdirp": "0.5.x", + "nopt": "3.x", + "once": "1.x", + "resolve": "1.1.x", + "supports-color": "^3.1.0", + "which": "^1.1.1", + "wordwrap": "^1.0.0" + }, + "dependencies": { + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", + "dev": true + }, + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", + "dev": true, + "requires": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + } + } + }, + "js2xmlparser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz", + "integrity": "sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==", + "dev": true, + "requires": { + "xmlcreate": "^2.0.4" + } + }, + "jsdoc": { + "version": "3.6.11", + "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.11.tgz", + "integrity": "sha512-8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg==", + "dev": true, + "requires": { + "@babel/parser": "^7.9.4", + "@types/markdown-it": "^12.2.3", + "bluebird": "^3.7.2", + "catharsis": "^0.9.0", + "escape-string-regexp": "^2.0.0", + "js2xmlparser": "^4.0.2", + "klaw": "^3.0.0", + "markdown-it": "^12.3.2", + "markdown-it-anchor": "^8.4.1", + "marked": "^4.0.10", + "mkdirp": "^1.0.4", + "requizzle": "^0.2.3", + "strip-json-comments": "^3.1.0", + "taffydb": "2.6.2", + "underscore": "~1.13.2" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + } + } + }, + "jsdoc-75lb": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/jsdoc-75lb/-/jsdoc-75lb-3.6.0.tgz", + "integrity": "sha512-m/2YaKZdw2LA0FiC36TJnVtKNGNrPIA1emLLSNwzz8ng5KpgZVV1aPnl/TnqkiVgY0xjREK25IYM9MNGPaBcnA==", + "dev": true, + "requires": { + "bluebird": "~3.4.6", + "catharsis": "~0.8.8", + "escape-string-regexp": "~1.0.5", + "espree": "~3.1.7", + "js2xmlparser": "~1.0.0", + "klaw": "~1.3.0", + "marked": "~0.3.6", + "mkdirp": "~0.5.1", + "requizzle": "~0.2.1", + "strip-json-comments": "~2.0.1", + "taffydb": "2.6.2", + "underscore": "~1.8.3" + }, + "dependencies": { + "bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==", + "dev": true + }, + "catharsis": { + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz", + "integrity": "sha512-a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "js2xmlparser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-1.0.0.tgz", + "integrity": "sha512-k5U3WB58ZbkCqSyrBrNmGtNU87YudbNGTyJNFlVenzzoaKeRXEpQ3E5pYOIidRgQCzxvWIJQK56W7eYkCQqYQA==", + "dev": true + }, + "klaw": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", + "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.9" + } + }, + "marked": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz", + "integrity": "sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==", + "dev": true + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true + }, + "underscore": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", + "integrity": "sha512-5WsVTFcH1ut/kkhAaHf4PVgI8c7++GiVcpCGxPouI6ZVjsqPnSDf8h/8HtVqc0t4fzRXwnMK70EcZeAs3PIddg==", + "dev": true + } + } + }, + "jsdoc-api": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-1.2.4.tgz", + "integrity": "sha512-cJ8NKrSgAeon6bTY4caWvzBGyAD7UXui4DfbLqrp3YB8hoQXspr5ObZ2sIKA4vexSIhBu4t5X21FQ3fDPHT8uA==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "cache-point": "~0.3.3", + "collect-all": "^1.0.2", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "file-set": "^1.0.1", + "jsdoc-75lb": "^3.5.6", + "object-to-spawn-args": "^1.1.0", + "promise.prototype.finally": "^1.0.1", + "temp-path": "^1.0.0", + "then-fs": "^2.0.0", + "walk-back": "^2.0.1" + } + }, + "jsdoc-parse": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-1.2.7.tgz", + "integrity": "sha512-DZyc2k7ooiKrhD8JO+aC4Kif7oPaff7/zeOcysQ/OzpvFdkmM98xIcS3brjDmUXXk7iqXm1Zxfo0VTr1dB05oA==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^2.2.1", + "array-tools": "^2", + "collect-json": "^1.0.1", + "command-line-args": "^2.1.4", + "command-line-tool": "^0.1.0", + "core-js": "^2.0.1", + "feature-detect-es6": "^1.2.0", + "file-set": "~0.2.1", + "jsdoc-api": "^1.0.0", + "object-tools": "^2", + "stream-connect": "^1.0.1", + "test-value": "^1.0.1" + }, + "dependencies": { + "ansi-escape-sequences": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", + "integrity": "sha512-8UeLcAdY7X4ZUBiuWoxqHfPGIUwJ5Vz7ujKdMUWbR0DwiBziHJbEMYzTvt7OQNtFb2NHxSxa3COicuPNgvE0XQ==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "collect-all": "~0.2.1" + } + }, + "array-tools": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/array-tools/-/array-tools-2.0.9.tgz", + "integrity": "sha512-R2neDbbXhrU0EaXIDG48RNS9fqdjMkaqZK37d37LaCvxZ4JaQ6ELNbxlQB2FVdQcj7ZlZCi97iZtz0UET6xPrA==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.2", + "collect-json": "^1.0.7", + "filter-where": "^1.0.1", + "object-get": "^2.0.0", + "reduce-extract": "^1.0.0", + "reduce-flatten": "^1.0.0", + "reduce-unique": "^1.0.0", + "reduce-without": "^1.0.0", + "sort-array": "^1.0.0", + "test-value": "^1.0.1" + } + }, + "collect-all": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-0.2.1.tgz", + "integrity": "sha512-DJM6+T8WAUEDVPxvbousmxRvtGW5+Q7JazRYmELEzn+BLGlRrqQ1ENKIpfiUjveCupWgUQd4iTvrMfDo0HiVKw==", + "dev": true, + "requires": { + "stream-connect": "^1.0.1", + "stream-via": "~0.1.0", + "typical": "^2.3.0" + } + }, + "command-line-args": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-2.1.6.tgz", + "integrity": "sha512-qo+q+AcV8vRQCVDCoh3gNbUiVI86ywoKkIUJeNCNZBCw1qv111Dp0F3nZ2PR/92HrGsgsABuAAi7Fe/z/cj8YQ==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "command-line-usage": "^2", + "core-js": "^2.0.1", + "feature-detect-es6": "^1.2.0", + "find-replace": "^1", + "typical": "^2.3.0" + } + }, + "command-line-tool": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/command-line-tool/-/command-line-tool-0.1.0.tgz", + "integrity": "sha512-iYnWHIP8pJ4+b5Zv4SWTt+YQeMndbFBA0sj3bH24bbahCrXpZnVFVP5CvcClyYqIPF6RVaDoeqAWdX0GhWG3ZQ==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^2.2.1", + "array-back": "^1.0.2" + } + }, + "command-line-usage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-2.0.5.tgz", + "integrity": "sha512-xxUZrDySMWQknZRlCKXbuSCR8PUQXLbypmXPv8a1ZaxIGE5SSynjXNZzig8VTcTcXuvIVf9y563nucsRAYnCKA==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^2.2.2", + "array-back": "^1.0.3", + "column-layout": "^2.1.1", + "feature-detect-es6": "^1.2.0", + "typical": "^2.4.2", + "wordwrapjs": "^1.2.0" + } + }, + "file-set": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/file-set/-/file-set-0.2.8.tgz", + "integrity": "sha512-t9NO6FHYX8459WTtKzEuGGP/c6BqmeSdtCUhzoBw64Ctq/2x22e9wPjKJDPpGiQt6vRWpu6Mgs+ZneAI1vqg8Q==", + "dev": true, + "requires": { + "array-tools": "^2", + "glob": "^4" + } + }, + "glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha512-I0rTWUKSZKxPSIAIaqhSXTM/DiII6wame+rEC3cFA5Lqmr9YmdL7z6Hj9+bdWtTvoY1Su4/OiMLmb37Y7JzvJQ==", + "dev": true, + "requires": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1", + "once": "^1.3.0" + } + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha512-jQo6o1qSVLEWaw3l+bwYA2X0uLuK2KjNh2wjgO7Q/9UJnXr1Q3yQKR8BI0/Bt/rPg75e6SMW4hW/6cBHVTZUjA==", + "dev": true, + "requires": { + "brace-expansion": "^1.0.0" + } + }, + "stream-via": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-0.1.1.tgz", + "integrity": "sha512-1U7icavM/2dRDSevxnJRZfKBWrnhmtdCh0zQTThwYchL2YWjbwZb2PEngEj9HKjgyJ2oDipz6TLud/AU6BAIzQ==", + "dev": true + }, + "test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + } + }, + "wordwrapjs": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-1.2.1.tgz", + "integrity": "sha512-oHt3LHdyJ2xke7aFYuXXB4QBvfORPZAfwdOW5bKQhCNj2Fa+I/WBz81yle19Cs7gZvaBxoYKOuPW/mFe4X09lg==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "typical": "^2.5.0" + } + } + } + }, + "jsdoc-to-markdown": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-1.3.9.tgz", + "integrity": "sha512-cZLtIzmhdkuNi/9Gz8RGQF4eHwS5YHqAopt720Zk18oWI+JXPqhpuXk74KhrzptTq7KI/OyS0zY+L31W4aTHWA==", + "dev": true, + "requires": { + "ansi-escape-sequences": "^3.0.0", + "command-line-args": "^3.0.1", + "command-line-usage": "^3.0.5", + "config-master": "^2.0.4", + "dmd": "^1.4.1", + "jsdoc-parse": "^1.2.7", + "jsdoc2md-stats": "^1.0.3", + "object-tools": "^2.0.6", + "stream-connect": "^1.0.2" + } + }, + "jsdoc2md-stats": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/jsdoc2md-stats/-/jsdoc2md-stats-1.0.6.tgz", + "integrity": "sha512-FOGWtVa/VwyNQ1C8t2T3YdFXhd0BZte0jsKk8a282XtOSK6Hyb6zIwlVOG3FLWkMia8l9Vg608hJyK0gD6F1/g==", + "dev": true, + "requires": { + "app-usage-stats": "^0.4.0", + "feature-detect-es6": "^1.3.1" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true, + "peer": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + }, + "klaw": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", + "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.9" + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==", + "dev": true, + "optional": true + }, + "lcov-parse": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.6.tgz", + "integrity": "sha512-chuBQJZiBq28YUM6Yr3tf3h5Lxhb+DvhbxxSNpsHURSXiZXOzp49phiWG2pKHboOehJDujivwNQGRP8mAErMvQ==", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "dev": true, + "requires": { + "uc.micro": "^1.0.1" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==", + "dev": true, + "optional": true + }, + "loupe": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", + "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", + "dev": true, + "requires": { + "get-func-name": "^2.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "dev": true, + "requires": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + } + } + }, + "markdown-it-anchor": { + "version": "8.6.5", + "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz", + "integrity": "sha512-PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ==", + "dev": true, + "requires": {} + }, + "marked": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.2.3.tgz", + "integrity": "sha512-slWRdJkbTZ+PjkyJnE30Uid64eHwbwa1Q25INCAYfZlK4o6ylagBy/Le9eWntqJFoFT93ikUKMv47GZ4gTwHkw==", + "dev": true + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "mime": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", + "integrity": "sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw==", + "dev": true + }, + "minami": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/minami/-/minami-1.2.3.tgz", + "integrity": "sha512-3f2QqqbUC1usVux0FkQMFYB73yd9JIxmHSn1dWQacizL6hOUaNu6mA3KxZ9SfiCc4qgcgq+5XP59+hP7URa1Dw==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "requires": { + "minimist": "^1.2.6" + } + }, + "mkdirp2": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.5.tgz", + "integrity": "sha512-xOE9xbICroUDmG1ye2h4bZ8WBie9EGmACaco8K8cx6RlkJJrxGIqjGqztAI+NMhexXBcdGbSEzI6N3EJPevxZw==", + "dev": true + }, + "mocha": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.1.0.tgz", + "integrity": "sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==", + "dev": true, + "requires": { + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "nanoid": "3.3.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "minimatch": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "nanoid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "node-uuid": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", + "integrity": "sha512-TkCET/3rr9mUuRp+CpO7qfgT++aAxfDRaalQhwPFzI9BY/2rCDn6OfpZOVggi1AXfTPpfkTrg5f5WQx5G1uLxA==", + "dev": true + }, + "nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "oauth-sign": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.3.0.tgz", + "integrity": "sha512-Tr31Sh5FnK9YKm7xTUPyDMsNOvMqkVDND0zvK/Wgj7/H9q8mpye0qG2nVzrnsvLhcsX5DtqXD0la0ks6rkPCGQ==", + "dev": true, + "optional": true + }, + "object-get": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-get/-/object-get-2.1.1.tgz", + "integrity": "sha512-7n4IpLMzGGcLEMiQKsNR7vCe+N5E9LORFrtNUVy4sO3dj9a3HedZCxEL2T7QuLhcHN1NBuBsMOKaOsAYI9IIvg==", + "dev": true + }, + "object-to-spawn-args": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-to-spawn-args/-/object-to-spawn-args-1.1.1.tgz", + "integrity": "sha512-d6xH8b+QdNj+cdndsL3rVCzwW9PqSSXQBDVj0d8fyaCqMimUEz+sW+Jtxp77bxaSs7C5w7XOH844FG7p2A0cFw==", + "dev": true + }, + "object-tools": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object-tools/-/object-tools-2.0.6.tgz", + "integrity": "sha512-Su3j153hgK9Dgd07FTi6y6DJmJtyWxyuoWvl5VZLI6HVL9VQ81ShfT9c2l/eNIZY85axAi0t1AqFjCAATGab0g==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "collect-json": "^1.0.7", + "object-get": "^2.0.2", + "test-value": "^1.1.0", + "typical": "^2.4.2" + }, + "dependencies": { + "test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha512-snN4O4TkigujZphWLN0E//nQmm7790RYaE53DdL7ZYwee2D8DDo9/EyYiKUfN3rneWUjhJnueija3G9I2i0h3g==", + "dev": true, + "requires": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha512-iotkTvxc+TwOm5Ieim8VnSNvCDjCK9S8G3scJ50ZthspSxa7jx50jkhYduuAtAjvfDUwSgOwf8+If99AlOEhyw==", + "dev": true + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha512-1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw==", + "dev": true + } + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "requires": { + "asap": "~2.0.3" + } + }, + "promise.prototype.finally": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-1.0.1.tgz", + "integrity": "sha512-8/BYzHIaMau3J4PfcBIC1YKh3emPEO+/7e1qY5SD5mtmSFGKnoM3Ow4wVlf1ffKveCcaXwp6KcXhsKzWt6mN4w==", + "dev": true + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true, + "optional": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "optional": true + }, + "qs": { + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/qs/-/qs-0.6.6.tgz", + "integrity": "sha512-kN+yNdAf29Jgp+AYHUmC7X4QdJPR8czuMWLNLc0aRxkQ7tB3vJQEONKKT9ou/rW7EbqVec11srC9q9BiVbcnHA==", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "optional": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "reduce-extract": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/reduce-extract/-/reduce-extract-1.0.0.tgz", + "integrity": "sha512-QF8vjWx3wnRSL5uFMyCjDeDc5EBMiryoT9tz94VvgjKfzecHAVnqmXAwQDcr7X4JmLc2cjkjFGCVzhMqDjgR9g==", + "dev": true, + "requires": { + "test-value": "^1.0.1" + }, + "dependencies": { + "test-value": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", + "integrity": "sha512-wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA==", + "dev": true, + "requires": { + "array-back": "^1.0.2", + "typical": "^2.4.2" + } + } + } + }, + "reduce-flatten": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-1.0.1.tgz", + "integrity": "sha512-j5WfFJfc9CoXv/WbwVLHq74i/hdTUpy+iNC534LxczMRP67vJeK3V9JOdnL0N1cIRbn9mYhE2yVjvvKXDxvNXQ==", + "dev": true + }, + "reduce-unique": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/reduce-unique/-/reduce-unique-1.0.0.tgz", + "integrity": "sha512-WQ6qRDbx7NL4CdW6AFjnyX9i0k6FxGiUaGJ5xAEZ8ZLjwisxi3wcKWYzKmULj8s1N8G1KYcREyg0P4PVo2rI/A==", + "dev": true + }, + "reduce-without": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/reduce-without/-/reduce-without-1.0.1.tgz", + "integrity": "sha512-zQv5y/cf85sxvdrKPlfcRzlDn/OqKFThNimYmsS3flmkioKvkUGn2Qg9cJVoQiEvdxFGLE0MQER/9fZ9sUqdxg==", + "dev": true, + "requires": { + "test-value": "^2.0.0" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "optional": true + }, + "req-then": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/req-then/-/req-then-0.5.1.tgz", + "integrity": "sha512-ald8dmP4zgF87wWs1n+/TppCd9LB6zZfAWSqF/RFCQ/ImDoH6ro77vmfOLhwkgH2uB8mcn4fNbwL9DEbpKCwJA==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "defer-promise": "^1.0.0", + "feature-detect-es6": "^1.3.1", + "lodash.pick": "^4.4.0", + "typical": "^2.6.0" + } + }, + "request": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.34.0.tgz", + "integrity": "sha512-mD5mNhfkeaKMg5ZY/hZFbW4lyC/NTn34/ILGQr/XLSuxYOE6vJfL0MTPPXZcZrdt+Nh1Kce+f4B4KbGThIETxQ==", + "dev": true, + "requires": { + "aws-sign2": "~0.5.0", + "forever-agent": "~0.5.0", + "form-data": "~0.1.0", + "hawk": "~1.0.0", + "http-signature": "~0.10.0", + "json-stringify-safe": "~5.0.0", + "mime": "~1.2.9", + "node-uuid": "~1.4.0", + "oauth-sign": "~0.3.0", + "qs": "~0.6.0", + "tough-cookie": ">=0.12.0", + "tunnel-agent": "~0.3.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "optional": true + }, + "requizzle": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz", + "integrity": "sha512-YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "dev": true + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg==", + "dev": true, + "optional": true, + "requires": { + "align-text": "^0.1.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "simple-vdf": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/simple-vdf/-/simple-vdf-1.1.1.tgz", + "integrity": "sha512-IHz5fiOyWX0etTzlrzpWfKWxkwOhSwbbuZxcig+JuON0id1clnYlINBRbe4M4Pz4VnNvNvNaZiKiS7tdIYyF6g==" + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "sntp": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-0.2.4.tgz", + "integrity": "sha512-bDLrKa/ywz65gCl+LmOiIhteP1bhEsAAzhfMedPoiHP3dyYnAevlaJshdqb9Yu0sRifyP/fRqSt8t+5qGIWlGQ==", + "dev": true, + "optional": true, + "requires": { + "hoek": "0.9.x" + } + }, + "sort-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-array/-/sort-array-1.1.2.tgz", + "integrity": "sha512-5eLpySAUYxyidyJM6CW/+QP8ymqFr0ZDrO4TmCwxpqPmQRZFMqfZq6L/O7c9jdtjDNJZlKwSR4vzR4sVggjRKw==", + "dev": true, + "requires": { + "array-back": "^1.0.4", + "object-get": "^2.1.0", + "typical": "^2.6.0" + } + }, + "source-map": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", + "integrity": "sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA==", + "dev": true, + "optional": true, + "requires": { + "amdefine": ">=0.0.4" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" + }, + "stream-connect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-connect/-/stream-connect-1.0.2.tgz", + "integrity": "sha512-68Kl+79cE0RGKemKkhxTSg8+6AGrqBt+cbZAXevg2iJ6Y3zX4JhA/sZeGzLpxW9cXhmqAcE7KnJCisUmIUfnFQ==", + "dev": true, + "requires": { + "array-back": "^1.0.2" + } + }, + "stream-handlebars": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/stream-handlebars/-/stream-handlebars-0.1.6.tgz", + "integrity": "sha512-i3N3nKsOHucX9NOcj/1pK3Oh+O6uG/9MOCajfVdTlx7l+XuUbl1Zk8KGK4pDBlWswlUGkLAK79QhBQzsXKA6MA==", + "dev": true, + "requires": { + "handlebars": "^3.0.0", + "object-tools": "^1.2.1" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==", + "dev": true, + "optional": true + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA==", + "dev": true, + "optional": true, + "requires": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "optional": true + }, + "handlebars": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-3.0.8.tgz", + "integrity": "sha512-frzSzoxbJZSB719r+lM3UFKrnHIY6VPY/j47+GNOHVnBHxO+r+Y/iDjozAbj1SztmmMpr2CcZY6rLeN5mqX8zA==", + "dev": true, + "requires": { + "optimist": "^0.6.1", + "source-map": "^0.1.40", + "uglify-js": "^2.6" + } + }, + "object-tools": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/object-tools/-/object-tools-1.6.7.tgz", + "integrity": "sha512-At5Cw0arQlH/+bXCONl2GXDHuPrWgKsR55aWXjvTM+5gyeHOTYJhMc9q5Vex5uFOpgnA6sG0QSZzsQsSXyCL1Q==", + "dev": true, + "requires": { + "array-tools": "^1.8.4", + "typical": "^2.2" + } + }, + "source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==", + "dev": true, + "requires": { + "amdefine": ">=0.0.4" + } + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==", + "dev": true, + "optional": true, + "requires": { + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "optional": true + } + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==", + "dev": true, + "optional": true + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==", + "dev": true, + "optional": true, + "requires": { + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" + } + } + } + }, + "stream-via": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-1.0.4.tgz", + "integrity": "sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==", + "dev": true + }, + "string-tools": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string-tools/-/string-tools-1.0.0.tgz", + "integrity": "sha512-wN3ILcVQFIf7skV2S9/6tSgK+11RAGDVt8luHaEN/RGOOHQAyBblnfEIVS1qeF+91LlTkp1lqMoglibfWnkIkg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "table-layout": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-0.3.0.tgz", + "integrity": "sha512-9ktef9AEZwAjG7f58oKbe2fEbJzEgRaEbfr8Vci/CitCDszCLKZutLcGFswuwcH6X7mpC11x9W8UW7FyJ/uRbA==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "core-js": "^2.4.1", + "deep-extend": "~0.4.1", + "feature-detect-es6": "^1.3.1", + "typical": "^2.6.0", + "wordwrapjs": "^2.0.0-0" + } + }, + "taffydb": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz", + "integrity": "sha512-y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA==", + "dev": true + }, + "temp-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-path/-/temp-path-1.0.0.tgz", + "integrity": "sha512-TvmyH7kC6ZVTYkqCODjJIbgvu0FKiwQpZ4D1aknE7xpcDf/qEOB8KZEK5ef2pfbVoiBhNWs3yx4y+ESMtNYmlg==", + "dev": true + }, + "test-value": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz", + "integrity": "sha512-+1epbAxtKeXttkGFMTX9H42oqzOTufR1ceCF+GYA5aOmvaPq9wd4PUS8329fn2RRLGNeUkgRLnVpycjx8DsO2w==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "typical": "^2.6.0" + } + }, + "then-fs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz", + "integrity": "sha512-5ffcBcU+vFUCYDNi/o507IqjqrTkuGsLVZ1Fp50hwgZRY7ufVFa9jFfTy5uZ2QnSKacKigWKeaXkOqLa4DsjLw==", + "dev": true, + "requires": { + "promise": ">=3.2 <8" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dev": true, + "optional": true, + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + } + }, + "tunnel-agent": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.3.0.tgz", + "integrity": "sha512-jlGqHGoKzyyjhwv/c9omAgohntThMcGtw8RV/RDLlkbbc08kni/akVxO62N8HaXMVbVsK1NCnpSK3N2xCt22ww==", + "dev": true, + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "typical": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz", + "integrity": "sha512-ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg==", + "dev": true + }, + "uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, + "uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q==", + "dev": true, + "optional": true + }, + "underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", + "dev": true + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true + }, + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "optional": true + }, + "update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "optional": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "usage-stats": { + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/usage-stats/-/usage-stats-0.8.6.tgz", + "integrity": "sha512-QS1r7a1h5g1jo6KulvVGV+eQM+Jfj87AjJBfr1iaIJYz+N7+Qh7ezaVFCulwBGd8T1EidRiSYphG17gra2y0kg==", + "dev": true, + "requires": { + "array-back": "^1.0.4", + "cli-commands": "0.1.0", + "core-js": "^2.4.1", + "feature-detect-es6": "^1.3.1", + "home-path": "^1.0.5", + "mkdirp2": "^1.0.3", + "req-then": "0.5.1", + "typical": "^2.6.1", + "uuid": "^3.0.1" + } + }, + "util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "requires": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "vdf": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/vdf/-/vdf-0.0.2.tgz", + "integrity": "sha512-iqFbR0zZeXQGaJzr7g8tFdQAgqIO3aTGoTLQGDugbiX4AZGdkbzSS/q9MXbvOSTfdP4TAEYZ124QWwLoueKvSw==", + "requires": { + "util": "*" + } + }, + "walk-back": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-2.0.1.tgz", + "integrity": "sha512-Nb6GvBR8UWX1D+Le+xUq0+Q1kFmRBIWVrfLnQAOmcpEzA9oAxwJ9gIr36t9TWYfzvWRvuMtjHiVsJYEkXWaTAQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + } + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==", + "dev": true, + "optional": true + }, + "winston": { + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz", + "integrity": "sha512-vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg==", + "requires": { + "async": "^2.6.4", + "colors": "1.0.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "stack-trace": "0.0.x" + }, + "dependencies": { + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "requires": { + "lodash": "^4.17.14" + } + } + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "wordwrapjs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-2.0.0.tgz", + "integrity": "sha512-XNzRwovxCFgLxqmumTWdVAIjtvMKAfjzdB/uWgILQiOPwIFNTq9xk5ZKPvcaVX9MCZueoSV2aGtSbM3irVap3w==", + "dev": true, + "requires": { + "array-back": "^1.0.3", + "feature-detect-es6": "^1.3.1", + "reduce-flatten": "^1.0.1", + "typical": "^2.6.0" + } + }, + "workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "xmlcreate": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz", + "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true + }, + "yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/package.json b/package.json index a775689..b7a5021 100644 --- a/package.json +++ b/package.json @@ -6,17 +6,19 @@ "readmeFilename": "README.md", "private": false, "directories": {}, + "typings": "types/index.d.ts", "repository": { "type": "git", "url": "git://github.com/Ballrock/node-csgo-parser.git" }, "dependencies": { + "simple-vdf": "^1.1.1", "vdf": "^0.0.2", "winston": "^2.1.1" }, "devDependencies": { - "babel-cli": "^6.4.0", - "babel-preset-es2015": "^6.3.13", + "@babel/cli": "^7.19.3", + "@babel/preset-env": "^7.20.2", "chai": "*", "codeclimate-test-reporter": "^0.1.1", "istanbul": "^0.4.1", @@ -30,7 +32,7 @@ "test": "istanbul cover node_modules/mocha/bin/_mocha ./test/*.js -- -R spec ", "generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose", "generate-docs-md": "node_modules/.bin/jsdoc2md \"src/csgo-data-parser.js\" > out/docs/api.md", - "compile": "node_modules/.bin/babel --presets es2015 src -d lib", + "compile": "node_modules/.bin/babel src -d lib", "prepublish": "npm run compile", "pretest": "npm run compile" }, diff --git a/src/csgo-data-parser.js b/src/csgo-data-parser.js index 81c2c5e..0855ff9 100644 --- a/src/csgo-data-parser.js +++ b/src/csgo-data-parser.js @@ -2,7 +2,7 @@ /* jshint node: true */ //Correct vdf for little endian handle ? -var vdf = require('vdf'), +const simplevdf = require('simple-vdf'), fs = require('fs'), winston = require('winston'), misc = require('./miscHelper'), @@ -18,7 +18,7 @@ var vdf = require('vdf'), * @const {Array} * @private */ -var exteriorsKeysList = ['SFUI_InvTooltip_Wear_Amount_0', +const exteriorsKeysList = ['SFUI_InvTooltip_Wear_Amount_0', 'SFUI_InvTooltip_Wear_Amount_1', 'SFUI_InvTooltip_Wear_Amount_2', 'SFUI_InvTooltip_Wear_Amount_3', @@ -29,21 +29,37 @@ var exteriorsKeysList = ['SFUI_InvTooltip_Wear_Amount_0', * @const {RegExp} * @private */ -var regexItem = /\[(.*)\](.*)/i; +const regexItem = /\[(.*)\](.*)/i; /** * Regex for Icon. * @const {RegExp} * @private */ -var regexIcon = /econ\/default_generated\/(.*)_(light|medium|heavy)$/i; +const regexIcon = /econ\/default_generated\/(.*)_(light|medium|heavy)$/i; /** * Regex for Check Icon. * @const {RegExp} * @private */ -var regexIconCheck = /^(?:_[^_]{2}_)/m; +const regexIconCheck = /^(?:_[^_]{2}_)/m; +/** + * Regex for Check Icon of a gloves. + * @const {RegExp} + * @private + */ +const regexGlovesIconCheck = /^(?:_[^_])/m; +/** + * @const {RegExp} + * @private + */ +const regexWeaponSkinCheck = /(^weapon_)|(_gloves$)|(_handwraps$)/m; +/** + * @const {RegExp} + * @private + */ +const regexGlovesSkinCheck = /(_gloves$)|(_handwraps$)/m; /** * Parser of CSGOData. @@ -52,7 +68,7 @@ var regexIconCheck = /^(?:_[^_]{2}_)/m; * @param {String} itemsFilePath Path to items_game file. * @param {String} logLevel Winston Log Level, if > info no timing data for generations. * @param {String} logFilePath Choosen file path to write logs. - * @constructor + * @constructor * * @todo Refactoring... This file will be too long * @todo Generalization isDatasInitialized @@ -87,21 +103,31 @@ class CSGODataParser { */ _generateObjectDataFromFiles() { // ---- LANG FILE --- - var langFile = fs.readFileSync(this.langFilePath, 'utf16le'); - this.langData = vdf.parse(langFile); - //Hack for tought Little Indian Character in object name after VDF.parse - //Little Indian Character here "-->\"lang\"" - var littleEndianName = '\uFEFF\"lang\"'; - this.langData.lang = this.langData[littleEndianName]; - delete this.langData[littleEndianName]; + const langFile = fs.readFileSync(this.langFilePath, 'utf8'); + try { + this.langData = JSON.parse(langFile); + } catch (e) + { + this.langData = simplevdf.parse(langFile); + } // ---- ITEMGAME FILE --- - var itemsFile = fs.readFileSync(this.itemsFilePath, 'utf8'); - this.itemsData = vdf.parse(itemsFile); + const itemsFile = fs.readFileSync(this.itemsFilePath, 'utf8'); + try { + this.itemsData = JSON.parse(itemsFile); + } catch (e) + { + this.itemsData = simplevdf.parse(itemsFile); + } - // ---- SCHEMA FILE --- - var schemaFile = fs.readFileSync(this.schemaFilePath, 'utf8'); - this.schemaData = vdf.parse(schemaFile); + // ---- SCHEMA FILE --- + const schemaFile = fs.readFileSync(this.schemaFilePath, 'utf8'); + try { + this.schemaData = JSON.parse(schemaFile); + } catch (e) + { + this.schemaData = simplevdf.parse(schemaFile); + } } /** @@ -112,13 +138,13 @@ class CSGODataParser { */ _getWeaponNameFromTechnicalName(techName) { /*jshint camelcase: false */ - var self = this; + const self = this; - var findWeapon; - var items = this.schemaData.result.items; - Object.keys(items).forEach(function(key){ - var element = items[key]; - if (element.name.indexOf('weapon_') > -1) { + let findWeapon; + const items = this.schemaData.result.items; + Object.keys(items).forEach(function(key) { + const element = items[key]; + if (regexWeaponSkinCheck.test(element.name)) { if (element.name === techName) { findWeapon = self.getLangValue(element.item_name); } @@ -127,7 +153,7 @@ class CSGODataParser { return findWeapon; } - /** + /** * Get Paint Name from technical name. * @param {String} techName technical name (like hy_xxx or sp_yyy or ...) * @return {String} Paint Name. @@ -135,13 +161,13 @@ class CSGODataParser { */ _getPaintNameAndDefIndexFromTechnicalName(techName) { /*jshint camelcase: false */ - var self = this; + const self = this; - var findPaint=[]; + const findPaint=[]; findPaint[0] = undefined; findPaint[1] = undefined; - var paintkits = this.itemsData.items_game.paint_kits; - Object.keys(paintkits).forEach(function(key){ + const paintkits = this.itemsData.items_game.paint_kits; + Object.keys(paintkits).forEach(function(key) { if (paintkits[key].name === techName) { findPaint[0] = self.getLangValue(paintkits[key].description_tag); findPaint[1] = key; @@ -159,36 +185,35 @@ class CSGODataParser { */ _getSkinsByWeapon(techName, type, indexed) { /*jshint camelcase: false */ - var self = this; - var skins; - var icons = this.itemsData.items_game.alternate_icons2.weapon_icons; - (indexed ? skins={} : skins=[]); - Object.keys(icons).forEach(function(key){ - var skin = new SkinPaint(); - var datas = self._cleanCompositeIconName(icons[key].icon_path, techName); + const self = this; + const skins = indexed ? {} : []; + const icons = this.itemsData.items_game.alternate_icons2.weapon_icons; + Object.keys(icons).forEach(function(key) { + const skin = new SkinPaint(); + const datas = self._cleanCompositeIconName(icons[key].icon_path, techName); if (datas.status) { - var skinInfo = self._getPaintNameAndDefIndexFromTechnicalName(datas.skinTechName); - if (indexed){ - var i = skinInfo[1]; + const skinInfo = self._getPaintNameAndDefIndexFromTechnicalName(datas.skinTechName); + if (indexed) { + const i = skinInfo[1]; skins[i] = { 'name':skinInfo[0], 'techName':datas.skinTechName, 'weaponTechName':techName - }; - if (type === '#CSGO_Type_Knife') { + }; + if (type === 'Knife' || type === "Gloves") { skins[i].fullName = '★ ' + self._getWeaponNameFromTechnicalName(techName) + ' | ' + skins[i].name; skins[i].rarity = 'unusual'; } else { skins[i].fullName = '' + self._getWeaponNameFromTechnicalName(techName) + ' | ' + skins[i].name; skins[i].rarity = self._getRarityFromPaintTechnicalName(datas.skinTechName); } - }else{ + } else { skin.name = skinInfo[0]; skin.techName = datas.skinTechName; skin.weaponTechName = techName; skin.defIndex = skinInfo[1]; //Hack for melee weapon :s - if (type === '#CSGO_Type_Knife') { + if (type === 'Knife' || type === "Gloves") { skin.fullName = '★ ' + self._getWeaponNameFromTechnicalName(techName) + ' | ' + skin.name; skin.rarity = 'unusual'; } else { @@ -210,7 +235,7 @@ class CSGODataParser { */ _getRarityFromPaintTechnicalName(techName) { /*jshint camelcase: false */ - var paintkitsrarity = this.itemsData.items_game.paint_kits_rarity; + const paintkitsrarity = this.itemsData.items_game.paint_kits_rarity; return paintkitsrarity[techName]; } @@ -223,14 +248,14 @@ class CSGODataParser { * @private */ _cleanCompositeIconName(icon, weaponTechName) { - var result = {}; + const result = {}; result.status = false; - var data = regexIcon.exec(icon)[1]; - var pos = data.indexOf(weaponTechName); + const data = regexIcon.exec(icon)[1]; + const pos = data.indexOf(weaponTechName); if (pos !== -1) { - if (data.slice(weaponTechName.length).match(regexIconCheck)) { + if (data.slice(weaponTechName.length).match(regexGlovesSkinCheck.test(weaponTechName) ? regexGlovesIconCheck : regexIconCheck)) { result.status = true; result.weaponTechName = weaponTechName; result.skinTechName = data.slice(1+weaponTechName.length); @@ -248,31 +273,34 @@ class CSGODataParser { */ _getItemsByPrefabViaSchema(prefab, type, indexed) { /*jshint camelcase: false */ - var self = this; - var timer = misc.generateTimer(); - var itemsReturn; + const self = this; + const timer = misc.generateTimer(); + let itemsReturn; (indexed ? itemsReturn={} : itemsReturn=[]); - var itemsPrefab = this.itemsData.items_game.items; - Object.keys(itemsPrefab).forEach(function(key){ + const itemsPrefab = this.itemsData.items_game.items; + Object.keys(itemsPrefab).forEach(function(key) { if (typeof itemsPrefab[key].prefab === 'string' && itemsPrefab[key].prefab.containsOnSpaceSplit(prefab)) { - if (indexed){ + let name = "" + if (indexed) { itemsReturn[key] = { 'name':self.getLangValue(self._getDefIndexOnSchema(key).item_name), 'techName':self._getDefIndexOnSchema(key).item_name, 'type':type - }; - }else{ - var element = {}; + }; + name = itemsReturn[key].name; + } else { + const element = {}; element.name = self.getLangValue(self._getDefIndexOnSchema(key).item_name); element.techName = self._getDefIndexOnSchema(key).item_name; element.defIndex = key; element.type = type; itemsReturn.pushUniqueNamedObject(element); + name = element.name; } - self.logger.info('Fetch ' + (indexed ? itemsReturn[key].name : element.name ) + ' [' + misc.resultTimer(timer) +'s]'); + self.logger.info('Fetch ' + name + ' [' + misc.resultTimer(timer) +'s]'); } }); - var totalPrefab=Object.keys(itemsReturn).length; + const totalPrefab = Object.keys(itemsReturn).length; self.logger.info('Generate ' + totalPrefab + ' ' + prefab + ' type [' + misc.resultTimer(timer) +'s]'); return itemsReturn; } @@ -286,13 +314,13 @@ class CSGODataParser { */ _getDefIndexOnSchema(id) { /*jshint eqeqeq: false, camelcase: false*/ - var timer = misc.generateTimer(); - var self = this; - var returnelm; + const timer = misc.generateTimer(); + const self = this; + let returnelm; - var items = this.schemaData.result.items; - Object.keys(items).forEach(function(key){ - var element = items[key]; + const items = this.schemaData.result.items; + Object.keys(items).forEach(function(key) { + const element = items[key]; if (element.defindex == id) { returnelm = element; } @@ -305,11 +333,11 @@ class CSGODataParser { * @return {winston.Logger} Winston based Parser's Logger. * @public */ - getLogger(){ + getLogger() { /*jshint eqeqeq: false, eqnull:true, camelcase: false*/ if (this.logger != null) { return this.logger; - } + } } /** @@ -322,10 +350,8 @@ class CSGODataParser { if (this.schemaData == null || this.schemaData.result == null) { return false; } - if (this.itemsData == null || this.itemsData.items_game == null) { - return false; - } - return true; + return !(this.itemsData == null || this.itemsData.items_game == null); + } /** @@ -334,11 +360,8 @@ class CSGODataParser { * @public */ isLangInitialized() { - /*jshint eqeqeq: false, eqnull:true, camelcase: false*/ - if (this.langData == null || this.langData.lang == null) { - return false; - } - return true; + return !(this.langData == null || this.langData.lang == null); + } /** @@ -349,12 +372,12 @@ class CSGODataParser { */ getLangValue(keyLang) { /*jshint eqeqeq: false, eqnull:true*/ - var traduction; - if (this.isLangInitialized()){ + let traduction; + if (this.isLangInitialized()) { traduction = this.langData.lang.Tokens.getValue(keyLang.prepareLang()); if (traduction == null) { traduction = keyLang; - } + } } else { traduction = keyLang; } @@ -366,93 +389,151 @@ class CSGODataParser { * @return {Array.} List of Objects. One object represent one Weapon. * @public */ - getWeapons(indexed) { + getWeapons(indexed = false) { /*jshint camelcase: false */ - var self = this; - var timer = misc.generateTimer(); + const self = this; + const timer = misc.generateTimer(); self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); self.logger.info('-------- Weapons List Generation --------'); self.logger.info('-----------------------------------------'); self.logger.info(''); - var weapons; + let weapons; (indexed ? weapons={} : weapons=[]); - var items = this.schemaData.result.items; - Object.keys(items).forEach(function(key){ - var element = items[key]; - if (element.name.indexOf('weapon_') > -1) { - var timerSkins = misc.generateTimer(); - if (indexed){ - var i = element.defindex; + const items = this.schemaData.result.items; + Object.keys(items).forEach(function(key) { + const element = items[key]; + if (regexWeaponSkinCheck.test(element.name)) { + let count = 0; + const timerSkins = misc.generateTimer(); + let name; + if (indexed) { + const i = element.defindex; weapons[i] = { - 'name':self.getLangValue(element.item_name), - 'techName':element.name, - 'type':self.getLangValue(element.item_type_name) - }; - if (weapons[i].techName !== 'weapon_knife'){ - weapons[i].skins=self._getSkinsByWeapon(element.name, element.item_type_name, indexed); + 'name': self.getLangValue(element.item_name), + 'techName': element.name, + 'type': self.getLangValue(element.item_type_name), + 'skins': {} + }; + if (weapons[i].techName !== 'weapon_knife') { + weapons[i].skins = self._getSkinsByWeapon(element.name, element.item_type_name, indexed); } - }else{ - var weapon = new Weapon(); - weapon.name=self.getLangValue(element.item_name); - weapon.techName=element.name; - weapon.type=self.getLangValue(element.item_type_name); - weapon.defIndex=element.defindex; - if (weapon.techName !== 'weapon_knife'){ + count = Object.keys(weapons[i].skins).length + name = weapons[i].name; + } else { + const weapon = new Weapon(); + weapon.name = self.getLangValue(element.item_name); + weapon.techName = element.name; + weapon.type = self.getLangValue(element.item_type_name); + weapon.defIndex = element.defindex; + weapon.skins = [] + if (weapon.techName !== 'weapon_knife') { weapon.skins=self._getSkinsByWeapon(element.name, element.item_type_name, indexed); } + count = weapon.skins.length weapons.push(weapon); + name = weapon.name; } - self.logger.info('Generate ' + (indexed ? weapons[i].name : weapon.name ) + ' skins list [' + misc.resultTimer(timerSkins) +'s]'); + self.logger.info('Generate ' + (count) + ' ' + (name) + ' skins list [' + misc.resultTimer(timerSkins) +'s]'); } }); - var totalWeapons=Object.keys(weapons).length; + const totalWeapons=Object.keys(weapons).length; self.logger.info('-----------------------------------------'); self.logger.info('Generate ' + totalWeapons + ' weapons [' + misc.resultTimer(timer) +'s]'); return weapons; } - getWeaponsIndexed(){ return this.getWeapons(true);} + getWeaponsIndexed() { return this.getWeapons(true);} + + /** + * Generate all skins (weapons + gloves) from the schema's data and return a key-value map. + * @return {Map.} Map of Objects. One object represent one skin. Where key is the skin's fullName (such as "Desert Eagle | Blaze"). + * @public + */ + getSkinsMap() { + const self = this; + const timer = misc.generateTimer(); + self.logger.info(''); + self.logger.info(''); + self.logger.info('-----------------------------------------'); + self.logger.info('-------- Skins Map Generation --------'); + self.logger.info('-----------------------------------------'); + self.logger.info(''); + + const skins = {} + const items = this.schemaData.result.items; + Object.keys(items).forEach(function(key) { + const element = items[key]; + if (regexWeaponSkinCheck.test(element.name)) { + let count = 0 + const timerSkins = misc.generateTimer(); + const weapon = { + type: self.getLangValue(element.item_type_name), + weaponName: self.getLangValue(element.item_name) + } + + if (weapon.techName !== 'weapon_knife') { + const skinsList = self._getSkinsByWeapon(element.name, element.item_type_name, false); + count = skinsList.length; + for (const skin of skinsList) + skins[skin.fullName] = {...skin, ...weapon}; + } + + self.logger.info('Generate ' + (count) + ' ' + (weapon.weaponName) + ' skins list [' + misc.resultTimer(timerSkins) +'s]'); + } + }) + + + const totalWeapons=Object.keys(skins).length; + self.logger.info('-----------------------------------------'); + self.logger.info('Generate ' + totalWeapons + ' skins [' + misc.resultTimer(timer) +'s]'); + return skins; + } /** * Generate collection's data from itemsgame's data. * @return {Array.} List of Collections. One object represent one Collection. * @public */ - getCollections(indexed) { + getCollections(indexed = false) { /*jshint camelcase: false */ - var self = this; - var timer = misc.generateTimer(); + const self = this; + const timer = misc.generateTimer(); self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); self.logger.info('------ Collections List Generation ------'); self.logger.info('-----------------------------------------'); self.logger.info(''); - var collections=[]; + const collections=[]; + + Object.keys(this.itemsData.items_game.item_sets).forEach(function(keycollection) { + const collection = new Collection(); + const valuecollection = self.itemsData.items_game.item_sets[keycollection]; - Object.keys(this.itemsData.items_game.item_sets).forEach(function(keycollection){ - var collection = new Collection(); - var valuecollection = self.itemsData.items_game.item_sets[keycollection]; collection.name = self.getLangValue(valuecollection.name.prepareLang()); collection.techName = keycollection; (indexed ? collection.content={} : collection.content=[]); - var timerCollections = misc.generateTimer(); - Object.keys(valuecollection.items).forEach(function(keyitem){ - var values = regexItem.exec(keyitem); - var skinInfo = self._getPaintNameAndDefIndexFromTechnicalName(values[1]); - if (indexed){ - var i=skinInfo[1]; + + const timerCollections = misc.generateTimer(); + Object.keys(valuecollection.items).forEach(function(keyitem) { + const values = regexItem.exec(keyitem); + if (values === null) + return + + const skinInfo = self._getPaintNameAndDefIndexFromTechnicalName(values[1]); + if (indexed) { + const i = skinInfo[1]; collection.content[i] = { - 'name':skinInfo[0], - 'techName':values[1], - 'weaponTechName':values[2], - 'fullName':self._getWeaponNameFromTechnicalName(values[2]) + ' | ' + skinInfo[0], - 'rarity':self._getRarityFromPaintTechnicalName(values[1]) - }; - }else{ - var skin=new SkinPaint(); + 'name': skinInfo[0], + 'techName': values[1], + 'weaponTechName': values[2], + 'fullName': self._getWeaponNameFromTechnicalName(values[2]) + ' | ' + skinInfo[0], + 'rarity': self._getRarityFromPaintTechnicalName(values[1]) + }; + } else { + const skin = new SkinPaint(); skin.name = skinInfo[0]; skin.techName = values[1]; skin.weaponTechName = values[2]; @@ -466,12 +547,12 @@ class CSGODataParser { self.logger.info('Generate ' + collection.name + ' collection list [' + misc.resultTimer(timerCollections) +'s]'); }); - var totalCollection=Object.keys(collections).length; + const totalCollection=Object.keys(collections).length; self.logger.info('-----------------------------------------'); self.logger.info('Generate ' + totalCollection + ' collections [' + misc.resultTimer(timer) +'s]'); return collections; } - getCollectionsIndexed(){ return this.getCollections(true);} + getCollectionsIndexed() { return this.getCollections(true);} /** * Generate exteriors. @@ -479,8 +560,8 @@ class CSGODataParser { * @public */ getExteriors() { - var self = this; - var timer = misc.generateTimer(); + const self = this; + const timer = misc.generateTimer(); self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); @@ -488,9 +569,9 @@ class CSGODataParser { self.logger.info('-----------------------------------------'); self.logger.info(''); - var exteriors=[]; - var totalExteriors=exteriorsKeysList.length; - exteriorsKeysList.forEach(function(element){ + const exteriors=[]; + const totalExteriors=exteriorsKeysList.length; + exteriorsKeysList.forEach(function(element) { exteriors.push(self.getLangValue(element)); }); @@ -503,80 +584,81 @@ class CSGODataParser { * @return {Array.} List of Origin objects. One object represent one origin. * @public */ - getOrigins(indexed) { + getOrigins(indexed = false) { /*jshint camelcase: false */ - var self = this; - var timer = misc.generateTimer(); + const self = this; + const timer = misc.generateTimer(); self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); self.logger.info('-------- Origins List Generation --------'); self.logger.info('-----------------------------------------'); self.logger.info(''); - var origins; + let origins; (indexed ? origins={} : origins=[]); - var obj = this.schemaData.result.originNames; - Object.keys(obj).forEach(function(key){ - var element = obj[key]; - if (indexed){ - var i = element.origin; + const obj = this.schemaData.result.originNames; + Object.keys(obj).forEach(function(key) { + const element = obj[key]; + if (indexed) { + const i = element.origin; origins[i] = element.name; - }else{ + } else { origins.push(element.name); } }); - var totalOrigins=Object.keys(origins).length; + const totalOrigins=Object.keys(origins).length; self.logger.info('Generate ' + totalOrigins + ' origins [' + misc.resultTimer(timer) +'s]'); return origins; } - getOriginsIndexed(){ return this.getOrigins(true);} + getOriginsIndexed() { return this.getOrigins(true);} /** * Generate Weapon/Stickers skin Case list. * @return {Array.} List of Object. One object represent one case * @public */ - getCases(indexed) { - var self = this; - + getCases(indexed = false) { + const self = this; + self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); self.logger.info('--------- Cases List Generation ---------'); self.logger.info('-----------------------------------------'); self.logger.info(''); - var case1, + let case1, case2, cases; - if (indexed){ + + if (indexed) { case1 = {}; case2 = {}; cases = {}; - }else{ + } else { case1 = []; case2 = []; cases = []; } case1 = this._getItemsByPrefabViaSchema('weapon_case', 'case', indexed); case2 = this._getItemsByPrefabViaSchema('weapon_case_base', 'case', indexed); - - for (var attrname1 in case1) { if (case1.hasOwnProperty(attrname1)) { cases[attrname1] = case1[attrname1]; }} - for (var attrname2 in case2) { if (case2.hasOwnProperty(attrname2)) { cases[attrname2] = case2[attrname2]; }} + + for (const attrname1 in case1) { if (case1.hasOwnProperty(attrname1)) { cases[attrname1] = case1[attrname1]; }} + for (const attrname2 in case2) { if (case2.hasOwnProperty(attrname2)) { cases[attrname2] = case2[attrname2]; }} return cases; - + } - getCasesIndexed(){ return this.getCases(true);} + getCasesIndexed() { return this.getCases(true);} /** * Generate Weapon/Stickers skin Case keys list. - * @return {Array.} List of Object. One object represent one case key + * @return {Array.} List of Object. One object represent one case key * @public */ - getCaseKeys(indexed) { - var casekeys = []; - var self = this; - + getCaseKeys(indexed = false) { + let casekeys = []; + const self = this; + self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); @@ -588,7 +670,7 @@ class CSGODataParser { return casekeys; } - getCaseKeysIndexed(){ return this.getCaseKeys(true);} + getCaseKeysIndexed() { return this.getCaseKeys(true);} /** * Generate Stickers list. @@ -596,25 +678,26 @@ class CSGODataParser { * @return {Array.} List of Sticker. One object represent one sticker * @public */ - getStickers(indexed) { + getStickers(indexed = false) { /*jshint eqeqeq: false, eqnull:true, camelcase: false */ - var self = this; - var timer = misc.generateTimer(); + const self = this; + const timer = misc.generateTimer(); self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); self.logger.info('------- Stickers List Generation --------'); self.logger.info('-----------------------------------------'); self.logger.info(''); - var stickers; - var rawstickers = this.itemsData.items_game.sticker_kits; + let stickers; + const rawstickers = this.itemsData.items_game.sticker_kits; (indexed ? stickers={} : stickers=[]); - Object.keys(rawstickers).forEach(function(key){ + Object.keys(rawstickers).forEach(function(key) { //Remove the default Sticker by remove 0 key if (key !== '0') { - var timerStickers = misc.generateTimer(); - if (indexed){ - var rarity; + const timerStickers = misc.generateTimer(); + let name; + if (indexed) { + let rarity; if (rawstickers[key].item_rarity == null) { rarity='default'; } else { @@ -624,130 +707,175 @@ class CSGODataParser { 'name':self.getLangValue(rawstickers[key].item_name), 'techName':rawstickers[key].name, 'item_rarity':rarity - }; - }else{ - var sticker=new Sticker(); - sticker.name=self.getLangValue(rawstickers[key].item_name); - sticker.techName=rawstickers[key].name; - sticker.defIndex=key; + }; + name = stickers[key].name; + } else { + const sticker = new Sticker(); + sticker.name = self.getLangValue(rawstickers[key].item_name); + sticker.techName = rawstickers[key].name; + sticker.defIndex = key; if (rawstickers[key].item_rarity == null) { sticker.rarity='default'; } else { sticker.rarity=rawstickers[key].item_rarity; } stickers.pushUniqueNamedObject(sticker); + name = sticker.name; } - self.logger.info('Fetch ' + (indexed ? stickers[key].name : sticker.name )+ ' sticker [' + misc.resultTimer(timerStickers) +'s]'); + self.logger.info('Fetch ' + (name) + ' sticker [' + misc.resultTimer(timerStickers) +'s]'); } }); - var totalStickers=Object.keys(stickers).length; + const totalStickers=Object.keys(stickers).length; self.logger.info('-----------------------------------------'); self.logger.info('Generate ' + totalStickers + ' stickers [' + misc.resultTimer(timer) +'s]'); return stickers; - } - getStickersIndexed(){ return this.getStickers(true);} - + } + getStickersIndexed() { return this.getStickers(true);} + + /** + * @returns {Map.} Stickers map + */ + getStickersMap() { + /*jshint eqeqeq: false, eqnull:true, camelcase: false */ + const self = this; + const timer = misc.generateTimer(); + self.logger.info(''); + self.logger.info(''); + self.logger.info('-----------------------------------------'); + self.logger.info('------- Stickers List Generation --------'); + self.logger.info('-----------------------------------------'); + self.logger.info(''); + const stickers = {}; + const rawstickers = this.itemsData.items_game.sticker_kits; + Object.keys(rawstickers).forEach(function(key) { + //Remove the default Sticker by remove 0 key + if (key !== '0') { + const timerStickers = misc.generateTimer(); + const sticker = new Sticker(); + sticker.name = self.getLangValue(rawstickers[key].item_name); + sticker.techName = rawstickers[key].name; + sticker.defIndex = key; + if (rawstickers[key].item_rarity == null) { + sticker.rarity = 'default'; + } else { + sticker.rarity = rawstickers[key].item_rarity; + } + + stickers[sticker.name] = sticker + self.logger.info('Fetch ' + ( sticker.name )+ ' sticker [' + misc.resultTimer(timerStickers) +'s]'); + } + }); + + const totalStickers=Object.keys(stickers).length; + self.logger.info('-----------------------------------------'); + self.logger.info('Generate ' + totalStickers + ' stickers [' + misc.resultTimer(timer) +'s]'); + return stickers; + } + /** * Generate MusicKits list. * @return {Array.} List of MusicKit. One object represent one music kit * @public */ - getMusicKits(indexed) { + getMusicKits(indexed = false) { /*jshint camelcase: false */ - var self = this; - var timer = misc.generateTimer(); + const self = this; + const timer = misc.generateTimer(); self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); self.logger.info('------- Music Kit List Generation ------'); self.logger.info('-----------------------------------------'); self.logger.info(''); - var rawmusics = this.itemsData.items_game.music_definitions; - var musics; - + const rawmusics = this.itemsData.items_game.music_definitions; + let musics; + (indexed ? musics={} : musics=[]); - Object.keys(rawmusics).forEach(function(key){ + Object.keys(rawmusics).forEach(function(key) { //Remove the default CS:GO Musics by remove 1&2 key if (key !== '1' && key !== '2') { - var timerMusics = misc.generateTimer(); - if (indexed){ + const timerMusics = misc.generateTimer(); + let name; + if (indexed) { musics[key] = { 'name':self.getLangValue(rawmusics[key].loc_name), 'techName':rawmusics[key].name - }; - }else{ - var music = new MusicKit(); + }; + name = musics[key].name + } else { + const music = new MusicKit(); music.name = self.getLangValue(rawmusics[key].loc_name); music.techName = rawmusics[key].name; music.defIndex = key; musics.pushUniqueNamedObject(music); + name = music.name } - self.logger.info('Fetch ' + (indexed ? musics[key].name : music.name ) + ' music kit [' + misc.resultTimer(timerMusics) +'s]'); + self.logger.info('Fetch ' + name + ' music kit [' + misc.resultTimer(timerMusics) +'s]'); } }); - var totalMusics=Object.keys(musics).length; + const totalMusics=Object.keys(musics).length; self.logger.info('-----------------------------------------'); self.logger.info('Generate ' + totalMusics + ' music kits [' + misc.resultTimer(timer) +'s]'); return musics; } - getMusicKitsIndexed(){ return this.getMusicKits(true);} - + getMusicKitsIndexed() { return this.getMusicKits(true);} + /** * Generate Rarities index. * @return {Array.} List of Rarity objects. One object represent one rarity. * @public */ - getRarities(indexed) { + getRarities(indexed = false) { /*jshint camelcase: false */ - var self = this; - var timer = misc.generateTimer(); + const self = this; + const timer = misc.generateTimer(); self.logger.info(''); self.logger.info(''); self.logger.info('-----------------------------------------'); self.logger.info('---------- Rarities Generation ----------'); self.logger.info('-----------------------------------------'); self.logger.info(''); - var rawrarities = this.itemsData.items_game.rarities; - var rawcolors = this.itemsData.items_game.colors; - var rarities; - + const rawrarities = this.itemsData.items_game.rarities; + const rawcolors = this.itemsData.items_game.colors; + let rarities; + (indexed ? rarities={} : rarities=[]); - Object.keys(rawrarities).forEach(function(key){ - var timerRarity = misc.generateTimer(); - //Hack for melee weapon :s - var wepName + Object.keys(rawrarities).forEach(function(key) { + const timerRarity = misc.generateTimer(); + // Hack for melee weapon :s + let wepName if (rawrarities[key].loc_key_weapon === 'Rarity_Unusual') { - wepName = '★ ' + self.getLangValue('RI_M'); + wepName = '★ ' + self.getLangValue('RI_M'); } else { wepName = self.getLangValue(rawrarities[key].loc_key_weapon); } - if (indexed){ - var i = rawrarities[key].value; + if (indexed) { + const i = rawrarities[key].value; rarities[i] = { 'techName':key, 'weaponName':wepName, 'miscName':self.getLangValue(rawrarities[key].loc_key), 'color':rawcolors[rawrarities[key].color].hex_color - }; - }else{ - var rarity = new Rarity(); - rarity.weaponName=wepName; - rarity.techName=key; - rarity.miscName=self.getLangValue(rawrarities[key].loc_key); - rarity.color=rawcolors[rawrarities[key].color].hex_color; - rarity.defIndex=rawrarities[key].value; + }; + } else { + const rarity = new Rarity(); + rarity.weaponName = wepName; + rarity.techName = key; + rarity.miscName = self.getLangValue(rawrarities[key].loc_key); + rarity.color = rawcolors[rawrarities[key].color].hex_color; + rarity.defIndex = rawrarities[key].value; rarities.push(rarity); } self.logger.info('Fetch ' + key + ' rarity [' + misc.resultTimer(timerRarity) +'s]'); }); - var totalRarity=Object.keys(rarities).length; + const totalRarity=Object.keys(rarities).length; self.logger.info('-----------------------------------------'); self.logger.info('Generate ' + totalRarity + ' rarities [' + misc.resultTimer(timer) +'s]'); return rarities; } - getRaritiesIndexed(){ return this.getRarities(true);} + getRaritiesIndexed() { return this.getRarities(true);} } -module.exports = CSGODataParser; \ No newline at end of file +module.exports = CSGODataParser; diff --git a/src/miscHelper.js b/src/miscHelper.js index 5a82288..79b36ef 100644 --- a/src/miscHelper.js +++ b/src/miscHelper.js @@ -10,8 +10,8 @@ */ Object.defineProperty(Object.prototype, 'getValue', { value: function (prop) { - var self = this; - for (var key in self) { + const self = this; + for (const key in self) { if (key.toLowerCase() === prop.toLowerCase()) { return self[key]; } @@ -29,9 +29,9 @@ Object.defineProperty(Object.prototype, 'getValue', { */ Object.defineProperty(String.prototype, 'prepareLang', { value: function() { - var self=this; + let self = this; if (self.charAt(0) === '#') { - self=self.slice(1); + self = self.slice(1); } return self; } @@ -45,9 +45,9 @@ Object.defineProperty(String.prototype, 'prepareLang', { */ Object.defineProperty(Array.prototype, 'pushUnique', { value: function(value) { - var self=this; - var isPresent = false; - for (var key in self) { + const self=this; + let isPresent = false; + for (const key in self) { if (value === self[key]) { isPresent = true; } @@ -66,9 +66,9 @@ Object.defineProperty(Array.prototype, 'pushUnique', { */ Object.defineProperty(Array.prototype, 'pushUniqueNamedObject', { value: function(value) { - var self=this; - var isPresent = false; - for (var key in self) { + const self=this; + let isPresent = false; + for (const key in self) { if (value.name === self[key].name) { isPresent = true; } @@ -89,10 +89,10 @@ Object.defineProperty(Array.prototype, 'pushUniqueNamedObject', { */ Object.defineProperty(String.prototype, 'containsOnSpaceSplit', { value: function(value) { - var self=this; - var splitArray=self.split(' '); - var isPresent = false; - for (var key in splitArray) { + const self=this; + const splitArray=self.split(' '); + let isPresent = false; + for (const key in splitArray) { if (splitArray[key] === value) { isPresent = true; } @@ -117,7 +117,7 @@ exports.generateTimer = function(){ * @private */ exports.resultTimer = function(timer){ - var diff = process.hrtime(timer); + const diff = process.hrtime(timer); return ((diff[0]*1e9+diff[1])*1e-9).toFixed(4); }; diff --git a/test/test-data/csgo_english.txt b/test/test-data/csgo_english.txt index 870f0b3..a2172f0 100644 Binary files a/test/test-data/csgo_english.txt and b/test/test-data/csgo_english.txt differ diff --git a/test/test-data/items_game.txt b/test/test-data/items_game.txt index 358c6cd..8a4e757 100644 --- a/test/test-data/items_game.txt +++ b/test/test-data/items_game.txt @@ -15,6 +15,7 @@ "value" "0" "loc_key" "Rarity_Default" "loc_key_weapon" "Rarity_Default_Weapon" + "loc_key_character" "Rarity_Default_Character" "color" "desc_default" "drop_sound" "EndMatch.ItemRevealRarityCommon" } @@ -23,6 +24,7 @@ "value" "1" "loc_key" "Rarity_Common" "loc_key_weapon" "Rarity_Common_Weapon" + "loc_key_character" "Rarity_Common_Character" "color" "desc_common" "weight" "10000000" "next_rarity" "uncommon" @@ -33,6 +35,7 @@ "value" "2" "loc_key" "Rarity_Uncommon" "loc_key_weapon" "Rarity_Uncommon_Weapon" + "loc_key_character" "Rarity_Uncommon_Character" "color" "desc_uncommon" "weight" "2000000" "next_rarity" "rare" @@ -43,6 +46,7 @@ "value" "3" "loc_key" "Rarity_Rare" "loc_key_weapon" "Rarity_Rare_Weapon" + "loc_key_character" "Rarity_Rare_Character" "color" "desc_rare" "weight" "400000" "next_rarity" "mythical" @@ -53,6 +57,7 @@ "value" "4" "loc_key" "Rarity_Mythical" "loc_key_weapon" "Rarity_Mythical_Weapon" + "loc_key_character" "Rarity_Mythical_Character" "color" "desc_mythical" "weight" "80000" "drop_sound" "EndMatch.ItemRevealRarityMythical" @@ -62,6 +67,7 @@ "value" "5" "loc_key" "Rarity_Legendary" "loc_key_weapon" "Rarity_Legendary_Weapon" + "loc_key_character" "Rarity_Legendary_Character" "color" "desc_legendary" "drop_sound" "EndMatch.ItemRevealRarityLegendary" } @@ -70,6 +76,7 @@ "value" "6" "loc_key" "Rarity_Ancient" "loc_key_weapon" "Rarity_Ancient_Weapon" + "loc_key_character" "Rarity_Ancient_Character" "color" "desc_ancient" "drop_sound" "EndMatch.ItemRevealRarityLegendary" } @@ -78,6 +85,7 @@ "value" "7" "loc_key" "Rarity_Contraband" "loc_key_weapon" "Rarity_Contraband_Weapon" + "loc_key_character" "Rarity_Contraband_Character" "color" "desc_immortal" "drop_sound" "EndMatch.ItemRevealRarityLegendary" } @@ -86,6 +94,7 @@ "value" "99" "loc_key" "Unusual" "loc_key_weapon" "Rarity_Unusual" + "loc_key_character" "Rarity_Unusual" "color" "desc_unusual" } } @@ -94,13 +103,13 @@ "normal" { "value" "0" - "weight" "10" + "weight" "1" "hexColor" "#B2B2B2" } "genuine" { "value" "1" - "weight" "30" + "weight" "180" "hexColor" "#4D7455" } "vintage" @@ -118,13 +127,13 @@ "unique" { "value" "4" - "weight" "20" + "weight" "10" "hexColor" "#D2D2D2" } "community" { "value" "5" - "weight" "100" + "weight" "200" "hexColor" "#70B04A" } "developer" @@ -136,7 +145,7 @@ "selfmade" { "value" "7" - "weight" "200" + "weight" "300" "hexColor" "#70B04A" } "customized" @@ -148,7 +157,7 @@ "strange" { "value" "9" - "weight" "90" + "weight" "150" "hexColor" "#CF6A32" } "completed" @@ -166,7 +175,7 @@ "tournament" { "value" "12" - "weight" "0" + "weight" "50" "hexColor" "#FFD700" } } @@ -273,6 +282,104 @@ "hex_color" "#ffd700" } } + "graffiti_tints" + { + "brick_red" + { + "id" "1" + "hex_color" "#874444" + } + "blood_red" + { + "id" "2" + "hex_color" "#b14d4d" + } + "tiger_orange" + { + "id" "3" + "hex_color" "#b87148" + } + "dust_brown" + { + "id" "4" + "hex_color" "#8f7d5d" + } + "desert_amber" + { + "id" "5" + "hex_color" "#ae833d" + } + "tracer_yellow" + { + "id" "6" + "hex_color" "#d4c95b" + } + "battle_green" + { + "id" "7" + "hex_color" "#789d53" + } + "jungle_green" + { + "id" "8" + "hex_color" "#417a4a" + } + "frog_green" + { + "id" "9" + "hex_color" "#488f80" + } + "cash_green" + { + "id" "10" + "hex_color" "#a6c4a5" + } + "wire_blue" + { + "id" "11" + "hex_color" "#6ba5b2" + } + "monarch_blue" + { + "id" "12" + "hex_color" "#4e7fa9" + } + "swat_blue" + { + "id" "13" + "hex_color" "#4c5b98" + } + "violent_violet" + { + "id" "14" + "hex_color" "#af92df" + } + "monster_purple" + { + "id" "15" + "hex_color" "#6e4f9f" + } + "bazooka_pink" + { + "id" "16" + "hex_color" "#ba68b2" + } + "princess_pink" + { + "id" "17" + "hex_color" "#9d567a" + } + "war_pig_pink" + { + "id" "18" + "hex_color" "#e4ccd5" + } + "shark_white" + { + "id" "19" + "hex_color" "#c1c1c1" + } + } "player_loadout_slots" { "0" "LOADOUT_POSITION_MELEE" @@ -576,6 +683,186 @@ { "icon_path" "econ/default_generated/weapon_deagle_aq_deagle_corinthian_heavy" } + "67644" + { + "icon_path" "econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_light" + } + "67645" + { + "icon_path" "econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_medium" + } + "67646" + { + "icon_path" "econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_heavy" + } + "67948" + { + "icon_path" "econ/default_generated/weapon_deagle_aq_desert_eagle_constable_light" + } + "67949" + { + "icon_path" "econ/default_generated/weapon_deagle_aq_desert_eagle_constable_medium" + } + "67950" + { + "icon_path" "econ/default_generated/weapon_deagle_aq_desert_eagle_constable_heavy" + } + "68116" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_desert_eagle_corroden_light" + } + "68117" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_desert_eagle_corroden_medium" + } + "68118" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_desert_eagle_corroden_heavy" + } + "68380" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_aggressor_light" + } + "68381" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_aggressor_medium" + } + "68382" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_aggressor_heavy" + } + "68564" + { + "icon_path" "econ/default_generated/weapon_deagle_am_jorm_green_light" + } + "68565" + { + "icon_path" "econ/default_generated/weapon_deagle_am_jorm_green_medium" + } + "68566" + { + "icon_path" "econ/default_generated/weapon_deagle_am_jorm_green_heavy" + } + "68592" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_fennec_light" + } + "68593" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_fennec_medium" + } + "68594" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_fennec_heavy" + } + "68756" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_mecha_light" + } + "68757" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_mecha_medium" + } + "68758" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_mecha_heavy" + } + "68900" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_exo_light" + } + "68901" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_exo_medium" + } + "68902" + { + "icon_path" "econ/default_generated/weapon_deagle_gs_deagle_exo_heavy" + } + "69316" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deagle_replica_light" + } + "69317" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deagle_replica_medium" + } + "69318" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deagle_replica_heavy" + } + "69384" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deag_printstream_light" + } + "69385" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deag_printstream_medium" + } + "69386" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deag_printstream_heavy" + } + "69504" + { + "icon_path" "econ/default_generated/weapon_deagle_am_numbers_bronze_light" + } + "69505" + { + "icon_path" "econ/default_generated/weapon_deagle_am_numbers_bronze_medium" + } + "69506" + { + "icon_path" "econ/default_generated/weapon_deagle_am_numbers_bronze_heavy" + } + "69560" + { + "icon_path" "econ/default_generated/weapon_deagle_am_heist_plans_purple_light" + } + "69561" + { + "icon_path" "econ/default_generated/weapon_deagle_am_heist_plans_purple_medium" + } + "69562" + { + "icon_path" "econ/default_generated/weapon_deagle_am_heist_plans_purple_heavy" + } + "69736" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deag_trigger_discipline_light" + } + "69737" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deag_trigger_discipline_medium" + } + "69738" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deag_trigger_discipline_heavy" + } + "69760" + { + "icon_path" "econ/default_generated/weapon_deagle_sp_spacerace_blue_light" + } + "69761" + { + "icon_path" "econ/default_generated/weapon_deagle_sp_spacerace_blue_medium" + } + "69762" + { + "icon_path" "econ/default_generated/weapon_deagle_sp_spacerace_blue_heavy" + } + "69896" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deagle_kitch_light" + } + "69897" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deagle_kitch_medium" + } + "69898" + { + "icon_path" "econ/default_generated/weapon_deagle_cu_deagle_kitch_heavy" + } "131184" { "icon_path" "econ/default_generated/weapon_elite_an_navy_light" @@ -756,6 +1043,18 @@ { "icon_path" "econ/default_generated/weapon_elite_hy_zodiac1_heavy" } + "132884" + { + "icon_path" "econ/default_generated/weapon_elite_an_emerald_light" + } + "132885" + { + "icon_path" "econ/default_generated/weapon_elite_an_emerald_medium" + } + "132886" + { + "icon_path" "econ/default_generated/weapon_elite_an_emerald_heavy" + } "133036" { "icon_path" "econ/default_generated/weapon_elite_cu_dualberretta_dragons_light" @@ -768,6 +1067,210 @@ { "icon_path" "econ/default_generated/weapon_elite_cu_dualberretta_dragons_heavy" } + "133184" + { + "icon_path" "econ/default_generated/weapon_elite_aq_dualberettas_cartel_light" + } + "133185" + { + "icon_path" "econ/default_generated/weapon_elite_aq_dualberettas_cartel_medium" + } + "133186" + { + "icon_path" "econ/default_generated/weapon_elite_aq_dualberettas_cartel_heavy" + } + "133248" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dualberettas_ventilators_light" + } + "133249" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dualberettas_ventilators_medium" + } + "133250" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dualberettas_ventilators_heavy" + } + "133572" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_berettas_golden_venice_light" + } + "133573" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_berettas_golden_venice_medium" + } + "133574" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_berettas_golden_venice_heavy" + } + "133704" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dualberettas_cobra_light" + } + "133705" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dualberettas_cobra_medium" + } + "133706" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dualberettas_cobra_heavy" + } + "133912" + { + "icon_path" "econ/default_generated/weapon_elite_sp_elites_winter_raider_light" + } + "133913" + { + "icon_path" "econ/default_generated/weapon_elite_sp_elites_winter_raider_medium" + } + "133914" + { + "icon_path" "econ/default_generated/weapon_elite_sp_elites_winter_raider_heavy" + } + "134060" + { + "icon_path" "econ/default_generated/weapon_elite_cu_dual_elites_rally_light" + } + "134061" + { + "icon_path" "econ/default_generated/weapon_elite_cu_dual_elites_rally_medium" + } + "134062" + { + "icon_path" "econ/default_generated/weapon_elite_cu_dual_elites_rally_heavy" + } + "134368" + { + "icon_path" "econ/default_generated/weapon_elite_sp_dry_wood_light" + } + "134369" + { + "icon_path" "econ/default_generated/weapon_elite_sp_dry_wood_medium" + } + "134370" + { + "icon_path" "econ/default_generated/weapon_elite_sp_dry_wood_heavy" + } + "134512" + { + "icon_path" "econ/default_generated/weapon_elite_hy_gelpen_dark_light" + } + "134513" + { + "icon_path" "econ/default_generated/weapon_elite_hy_gelpen_dark_medium" + } + "134514" + { + "icon_path" "econ/default_generated/weapon_elite_hy_gelpen_dark_heavy" + } + "134652" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_rose_light" + } + "134653" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_rose_medium" + } + "134654" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_rose_heavy" + } + "134684" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_classic_light" + } + "134685" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_classic_medium" + } + "134686" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_classic_heavy" + } + "134984" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_dezastre_light" + } + "134985" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_dezastre_medium" + } + "134986" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_elites_dezastre_heavy" + } + "135064" + { + "icon_path" "econ/default_generated/weapon_elite_hy_numbers_green_light" + } + "135065" + { + "icon_path" "econ/default_generated/weapon_elite_hy_numbers_green_medium" + } + "135066" + { + "icon_path" "econ/default_generated/weapon_elite_hy_numbers_green_heavy" + } + "135092" + { + "icon_path" "econ/default_generated/weapon_elite_am_heist_plans_green_light" + } + "135093" + { + "icon_path" "econ/default_generated/weapon_elite_am_heist_plans_green_medium" + } + "135094" + { + "icon_path" "econ/default_generated/weapon_elite_am_heist_plans_green_heavy" + } + "135416" + { + "icon_path" "econ/default_generated/weapon_elite_sp_engine_dirty_light" + } + "135417" + { + "icon_path" "econ/default_generated/weapon_elite_sp_engine_dirty_medium" + } + "135418" + { + "icon_path" "econ/default_generated/weapon_elite_sp_engine_dirty_heavy" + } + "135436" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_berettas_tread_light" + } + "135437" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_berettas_tread_medium" + } + "135438" + { + "icon_path" "econ/default_generated/weapon_elite_gs_dual_berettas_tread_heavy" + } + "135576" + { + "icon_path" "econ/default_generated/weapon_elite_cu_elites_beware_light" + } + "135577" + { + "icon_path" "econ/default_generated/weapon_elite_cu_elites_beware_medium" + } + "135578" + { + "icon_path" "econ/default_generated/weapon_elite_cu_elites_beware_heavy" + } + "135696" + { + "icon_path" "econ/default_generated/weapon_elite_cu_dual_elites_evil_flora_light" + } + "135697" + { + "icon_path" "econ/default_generated/weapon_elite_cu_dual_elites_evil_flora_medium" + } + "135698" + { + "icon_path" "econ/default_generated/weapon_elite_cu_dual_elites_evil_flora_heavy" + } "196620" { "icon_path" "econ/default_generated/weapon_fiveseven_so_red_light" @@ -984,6 +1487,198 @@ { "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_retrobution_heavy" } + "198728" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_light" + } + "198729" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_medium" + } + "198730" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_heavy" + } + "198948" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_daimyo_light" + } + "198949" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_daimyo_medium" + } + "198950" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_daimyo_heavy" + } + "199028" + { + "icon_path" "econ/default_generated/weapon_fiveseven_aq_five_seven_scumbria_light" + } + "199029" + { + "icon_path" "econ/default_generated/weapon_fiveseven_aq_five_seven_scumbria_medium" + } + "199030" + { + "icon_path" "econ/default_generated/weapon_fiveseven_aq_five_seven_scumbria_heavy" + } + "199192" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_vein_light" + } + "199193" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_vein_medium" + } + "199194" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_vein_heavy" + } + "199248" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_hyperbeast_light" + } + "199249" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_hyperbeast_medium" + } + "199250" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_hyperbeast_heavy" + } + "199380" + { + "icon_path" "econ/default_generated/weapon_fiveseven_gs_fiveseven_hot_rod_violet_light" + } + "199381" + { + "icon_path" "econ/default_generated/weapon_fiveseven_gs_fiveseven_hot_rod_violet_medium" + } + "199382" + { + "icon_path" "econ/default_generated/weapon_fiveseven_gs_fiveseven_hot_rod_violet_heavy" + } + "199524" + { + "icon_path" "econ/default_generated/weapon_fiveseven_hy_bud_red_light" + } + "199525" + { + "icon_path" "econ/default_generated/weapon_fiveseven_hy_bud_red_medium" + } + "199526" + { + "icon_path" "econ/default_generated/weapon_fiveseven_hy_bud_red_heavy" + } + "199744" + { + "icon_path" "econ/default_generated/weapon_fiveseven_hy_ducts_green_light" + } + "199745" + { + "icon_path" "econ/default_generated/weapon_fiveseven_hy_ducts_green_medium" + } + "199746" + { + "icon_path" "econ/default_generated/weapon_fiveseven_hy_ducts_green_heavy" + } + "199956" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_angry_light" + } + "199957" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_angry_medium" + } + "199958" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_angry_heavy" + } + "200232" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_gsg9_light" + } + "200233" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_gsg9_medium" + } + "200234" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_gsg9_heavy" + } + "200336" + { + "icon_path" "econ/default_generated/weapon_fiveseven_sp_moro_textile_purple_yellow_light" + } + "200337" + { + "icon_path" "econ/default_generated/weapon_fiveseven_sp_moro_textile_purple_yellow_medium" + } + "200338" + { + "icon_path" "econ/default_generated/weapon_fiveseven_sp_moro_textile_purple_yellow_heavy" + } + "200524" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_diary_light" + } + "200525" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_diary_medium" + } + "200526" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_five_seven_diary_heavy" + } + "200616" + { + "icon_path" "econ/default_generated/weapon_fiveseven_aa_fade_red_blue_light" + } + "200617" + { + "icon_path" "econ/default_generated/weapon_fiveseven_aa_fade_red_blue_medium" + } + "200618" + { + "icon_path" "econ/default_generated/weapon_fiveseven_aa_fade_red_blue_heavy" + } + "200936" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_vertigo_fiveseven_light" + } + "200937" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_vertigo_fiveseven_medium" + } + "200938" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_vertigo_fiveseven_heavy" + } + "200980" + { + "icon_path" "econ/default_generated/weapon_fiveseven_gs_five_seven_efusion_light" + } + "200981" + { + "icon_path" "econ/default_generated/weapon_fiveseven_gs_five_seven_efusion_medium" + } + "200982" + { + "icon_path" "econ/default_generated/weapon_fiveseven_gs_five_seven_efusion_heavy" + } + "201120" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_alpha_omega_light" + } + "201121" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_alpha_omega_medium" + } + "201122" + { + "icon_path" "econ/default_generated/weapon_fiveseven_cu_fiveseven_alpha_omega_heavy" + } "262152" { "icon_path" "econ/default_generated/weapon_glock_so_olive_light" @@ -1044,6 +1739,18 @@ { "icon_path" "econ/default_generated/weapon_glock_am_dragon_glock_heavy" } + "262480" + { + "icon_path" "econ/default_generated/weapon_glock_hy_ddpat_pink_light" + } + "262481" + { + "icon_path" "econ/default_generated/weapon_glock_hy_ddpat_pink_medium" + } + "262482" + { + "icon_path" "econ/default_generated/weapon_glock_hy_ddpat_pink_heavy" + } "262780" { "icon_path" "econ/default_generated/weapon_glock_aq_brass_light" @@ -1188,6 +1895,306 @@ { "icon_path" "econ/default_generated/weapon_glock_gs_glock18_wrathys_heavy" } + "264272" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock18_award_light" + } + "264273" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock18_award_medium" + } + "264274" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock18_award_heavy" + } + "264488" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_wasteland_rebel_light" + } + "264489" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_wasteland_rebel_medium" + } + "264490" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_wasteland_rebel_heavy" + } + "264572" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_weasel_light" + } + "264573" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_weasel_medium" + } + "264574" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_weasel_heavy" + } + "264636" + { + "icon_path" "econ/default_generated/weapon_glock_aq_glock_dark-fall_light" + } + "264637" + { + "icon_path" "econ/default_generated/weapon_glock_aq_glock_dark-fall_medium" + } + "264638" + { + "icon_path" "econ/default_generated/weapon_glock_aq_glock_dark-fall_heavy" + } + "264864" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_indigo_light" + } + "264865" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_indigo_medium" + } + "264866" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_indigo_heavy" + } + "264920" + { + "icon_path" "econ/default_generated/weapon_glock_aa_glock_18_urban_moon_fever_light" + } + "264921" + { + "icon_path" "econ/default_generated/weapon_glock_aa_glock_18_urban_moon_fever_medium" + } + "264922" + { + "icon_path" "econ/default_generated/weapon_glock_aa_glock_18_urban_moon_fever_heavy" + } + "264996" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_thunder_dust_light" + } + "264997" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_thunder_dust_medium" + } + "264998" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_thunder_dust_heavy" + } + "265072" + { + "icon_path" "econ/default_generated/weapon_glock_hy_leaf_blue_light" + } + "265073" + { + "icon_path" "econ/default_generated/weapon_glock_hy_leaf_blue_medium" + } + "265074" + { + "icon_path" "econ/default_generated/weapon_glock_hy_leaf_blue_heavy" + } + "265300" + { + "icon_path" "econ/default_generated/weapon_glock_am_nuclear_skulls_green_light" + } + "265301" + { + "icon_path" "econ/default_generated/weapon_glock_am_nuclear_skulls_green_medium" + } + "265302" + { + "icon_path" "econ/default_generated/weapon_glock_am_nuclear_skulls_green_heavy" + } + "265340" + { + "icon_path" "econ/default_generated/weapon_glock_aa_vertigo_blue_light" + } + "265341" + { + "icon_path" "econ/default_generated/weapon_glock_aa_vertigo_blue_medium" + } + "265342" + { + "icon_path" "econ/default_generated/weapon_glock_aa_vertigo_blue_heavy" + } + "265376" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_corroden_light" + } + "265377" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_corroden_medium" + } + "265378" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_corroden_heavy" + } + "265816" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_hero_light" + } + "265817" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_hero_medium" + } + "265818" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_hero_heavy" + } + "265972" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_warmaiden_light" + } + "265973" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_warmaiden_medium" + } + "265974" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock18_warmaiden_heavy" + } + "265996" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_eyecontact_light" + } + "265997" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_eyecontact_medium" + } + "265998" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_eyecontact_heavy" + } + "266096" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_noir_light" + } + "266097" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_noir_medium" + } + "266098" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_noir_heavy" + } + "266208" + { + "icon_path" "econ/default_generated/weapon_glock_cu_money_glock_light" + } + "266209" + { + "icon_path" "econ/default_generated/weapon_glock_cu_money_glock_medium" + } + "266210" + { + "icon_path" "econ/default_generated/weapon_glock_cu_money_glock_heavy" + } + "266300" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_polymer_light" + } + "266301" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_polymer_medium" + } + "266302" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_polymer_heavy" + } + "266460" + { + "icon_path" "econ/default_generated/weapon_glock_sp_tire_tread_red_light" + } + "266461" + { + "icon_path" "econ/default_generated/weapon_glock_sp_tire_tread_red_medium" + } + "266462" + { + "icon_path" "econ/default_generated/weapon_glock_sp_tire_tread_red_heavy" + } + "266544" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_snackattack_light" + } + "266545" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_snackattack_medium" + } + "266546" + { + "icon_path" "econ/default_generated/weapon_glock_cu_glock_snackattack_heavy" + } + "266620" + { + "icon_path" "econ/default_generated/weapon_glock_am_emerald_marbleized_glock_light" + } + "266621" + { + "icon_path" "econ/default_generated/weapon_glock_am_emerald_marbleized_glock_medium" + } + "266622" + { + "icon_path" "econ/default_generated/weapon_glock_am_emerald_marbleized_glock_heavy" + } + "266624" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase1_glock_light" + } + "266625" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase1_glock_medium" + } + "266626" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase1_glock_heavy" + } + "266628" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase2_glock_light" + } + "266629" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase2_glock_medium" + } + "266630" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase2_glock_heavy" + } + "266632" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase3_glock_light" + } + "266633" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase3_glock_medium" + } + "266634" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase3_glock_heavy" + } + "266636" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase4_glock_light" + } + "266637" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase4_glock_medium" + } + "266638" + { + "icon_path" "econ/default_generated/weapon_glock_am_gamma_doppler_phase4_glock_heavy" + } + "266776" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_elite_camo_light" + } + "266777" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_elite_camo_medium" + } + "266778" + { + "icon_path" "econ/default_generated/weapon_glock_gs_glock_elite_camo_heavy" + } "458808" { "icon_path" "econ/default_generated/weapon_ak47_hy_ak47lam_light" @@ -1440,6 +2447,270 @@ { "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_point_disarray_heavy" } + "460848" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_supercharged_light" + } + "460849" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_supercharged_medium" + } + "460850" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_supercharged_heavy" + } + "461152" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_anarchy_light" + } + "461153" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_anarchy_medium" + } + "461154" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_anarchy_heavy" + } + "461308" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_bloodsport_light" + } + "461309" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_bloodsport_medium" + } + "461310" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_bloodsport_heavy" + } + "461376" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak_colony01_red_light" + } + "461377" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak_colony01_red_medium" + } + "461378" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak_colony01_red_heavy" + } + "461452" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_empress_light" + } + "461453" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_empress_medium" + } + "461454" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_empress_heavy" + } + "461580" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_neon_rider_light" + } + "461581" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_neon_rider_medium" + } + "461582" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_neon_rider_heavy" + } + "461648" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_island_floral_light" + } + "461649" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_island_floral_medium" + } + "461650" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_island_floral_heavy" + } + "461732" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_veneto_purple_light" + } + "461733" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_veneto_purple_medium" + } + "461734" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_veneto_purple_heavy" + } + "461932" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_mesh_safetyorange_light" + } + "461933" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_mesh_safetyorange_medium" + } + "461934" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_mesh_safetyorange_heavy" + } + "461956" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_asiimov_light" + } + "461957" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_asiimov_medium" + } + "461958" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_asiimov_heavy" + } + "462096" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_aztec_light" + } + "462097" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_aztec_medium" + } + "462098" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_aztec_heavy" + } + "462292" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_nibbler_light" + } + "462293" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_nibbler_medium" + } + "462294" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_nibbler_heavy" + } + "462436" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_gold_arabesque_light" + } + "462437" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_gold_arabesque_medium" + } + "462438" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_gold_arabesque_heavy" + } + "462516" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak-47_phantom_disruptor_light" + } + "462517" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak-47_phantom_disruptor_medium" + } + "462518" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak-47_phantom_disruptor_heavy" + } + "462588" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_anubis_light" + } + "462589" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_anubis_medium" + } + "462590" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_anubis_heavy" + } + "462768" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_xray_light" + } + "462769" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_xray_medium" + } + "462770" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_xray_heavy" + } + "462824" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_jaguar_light" + } + "462825" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_jaguar_medium" + } + "462826" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak_jaguar_heavy" + } + "462892" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_professional_light" + } + "462893" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_professional_medium" + } + "462894" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_professional_heavy" + } + "463032" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_ak47lam_green_light" + } + "463033" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_ak47lam_green_medium" + } + "463034" + { + "icon_path" "econ/default_generated/weapon_ak47_hy_ak47lam_green_heavy" + } + "463100" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_abstract_light" + } + "463101" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_abstract_medium" + } + "463102" + { + "icon_path" "econ/default_generated/weapon_ak47_gs_ak47_abstract_heavy" + } + "463316" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_nightwish_light" + } + "463317" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_nightwish_medium" + } + "463318" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_nightwish_heavy" + } + "463324" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_cogthings_light" + } + "463325" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_cogthings_medium" + } + "463326" + { + "icon_path" "econ/default_generated/weapon_ak47_cu_ak47_cogthings_heavy" + } "524324" { "icon_path" "econ/default_generated/weapon_aug_hy_tiger_light" @@ -1548,6 +2819,18 @@ { "icon_path" "econ/default_generated/weapon_aug_an_navy_bravo_heavy" } + "525272" + { + "icon_path" "econ/default_generated/weapon_aug_aa_fade_metallic_light" + } + "525273" + { + "icon_path" "econ/default_generated/weapon_aug_aa_fade_metallic_medium" + } + "525274" + { + "icon_path" "econ/default_generated/weapon_aug_aa_fade_metallic_heavy" + } "525408" { "icon_path" "econ/default_generated/weapon_aug_cu_aug_chameleonaire_light" @@ -1620,6 +2903,246 @@ { "icon_path" "econ/default_generated/weapon_aug_am_aug_jumble_heavy" } + "526452" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_swallows_light" + } + "526453" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_swallows_medium" + } + "526454" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_swallows_heavy" + } + "526620" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_aristocrat_light" + } + "526621" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_aristocrat_medium" + } + "526622" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_aristocrat_heavy" + } + "526692" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_syd_mead_light" + } + "526693" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_syd_mead_medium" + } + "526694" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_syd_mead_heavy" + } + "526984" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_orange_triangle_light" + } + "526985" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_orange_triangle_medium" + } + "526986" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_orange_triangle_heavy" + } + "527048" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_stymphalian_birds_light" + } + "527049" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_stymphalian_birds_medium" + } + "527050" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_stymphalian_birds_heavy" + } + "527120" + { + "icon_path" "econ/default_generated/weapon_aug_hy_aug_torn_orange_light" + } + "527121" + { + "icon_path" "econ/default_generated/weapon_aug_hy_aug_torn_orange_medium" + } + "527122" + { + "icon_path" "econ/default_generated/weapon_aug_hy_aug_torn_orange_heavy" + } + "527196" + { + "icon_path" "econ/default_generated/weapon_aug_am_bloom_blue_light" + } + "527197" + { + "icon_path" "econ/default_generated/weapon_aug_am_bloom_blue_medium" + } + "527198" + { + "icon_path" "econ/default_generated/weapon_aug_am_bloom_blue_heavy" + } + "527248" + { + "icon_path" "econ/default_generated/weapon_aug_hy_murano_blue_light" + } + "527249" + { + "icon_path" "econ/default_generated/weapon_aug_hy_murano_blue_medium" + } + "527250" + { + "icon_path" "econ/default_generated/weapon_aug_hy_murano_blue_heavy" + } + "527320" + { + "icon_path" "econ/default_generated/weapon_aug_am_jorm_orange_light" + } + "527321" + { + "icon_path" "econ/default_generated/weapon_aug_am_jorm_orange_medium" + } + "527322" + { + "icon_path" "econ/default_generated/weapon_aug_am_jorm_orange_heavy" + } + "527404" + { + "icon_path" "econ/default_generated/weapon_aug_am_circuitboard_orange_light" + } + "527405" + { + "icon_path" "econ/default_generated/weapon_aug_am_circuitboard_orange_medium" + } + "527406" + { + "icon_path" "econ/default_generated/weapon_aug_am_circuitboard_orange_heavy" + } + "527464" + { + "icon_path" "econ/default_generated/weapon_aug_sp_mesh_safetyblack_light" + } + "527465" + { + "icon_path" "econ/default_generated/weapon_aug_sp_mesh_safetyblack_medium" + } + "527466" + { + "icon_path" "econ/default_generated/weapon_aug_sp_mesh_safetyblack_heavy" + } + "527580" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_sand_storm_light" + } + "527581" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_sand_storm_medium" + } + "527582" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_sand_storm_heavy" + } + "527668" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_momentum_light" + } + "527669" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_momentum_medium" + } + "527670" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_momentum_heavy" + } + "527832" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_whitefang_light" + } + "527833" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_whitefang_medium" + } + "527834" + { + "icon_path" "econ/default_generated/weapon_aug_cu_aug_whitefang_heavy" + } + "527940" + { + "icon_path" "econ/default_generated/weapon_aug_am_aug_death_by_doggy_light" + } + "527941" + { + "icon_path" "econ/default_generated/weapon_aug_am_aug_death_by_doggy_medium" + } + "527942" + { + "icon_path" "econ/default_generated/weapon_aug_am_aug_death_by_doggy_heavy" + } + "527996" + { + "icon_path" "econ/default_generated/weapon_aug_hy_dry_wood_light" + } + "527997" + { + "icon_path" "econ/default_generated/weapon_aug_hy_dry_wood_medium" + } + "527998" + { + "icon_path" "econ/default_generated/weapon_aug_hy_dry_wood_heavy" + } + "528056" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_thunderstorm_light" + } + "528057" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_thunderstorm_medium" + } + "528058" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_thunderstorm_heavy" + } + "528268" + { + "icon_path" "econ/default_generated/weapon_aug_am_intelligence_grey_light" + } + "528269" + { + "icon_path" "econ/default_generated/weapon_aug_am_intelligence_grey_medium" + } + "528270" + { + "icon_path" "econ/default_generated/weapon_aug_am_intelligence_grey_heavy" + } + "528420" + { + "icon_path" "econ/default_generated/weapon_aug_am_jade_light" + } + "528421" + { + "icon_path" "econ/default_generated/weapon_aug_am_jade_medium" + } + "528422" + { + "icon_path" "econ/default_generated/weapon_aug_am_jade_heavy" + } + "528640" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_plague_light" + } + "528641" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_plague_medium" + } + "528642" + { + "icon_path" "econ/default_generated/weapon_aug_gs_aug_plague_heavy" + } "589944" { "icon_path" "econ/default_generated/weapon_awp_sp_snake_light" @@ -1824,201 +3347,657 @@ { "icon_path" "econ/default_generated/weapon_awp_cu_awp_hyper_beast_heavy" } - "655448" + "591924" { - "icon_path" "econ/default_generated/weapon_famas_sp_spray_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_mastery_light" } - "655449" + "591925" { - "icon_path" "econ/default_generated/weapon_famas_sp_spray_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_mastery_medium" } - "655450" + "591926" { - "icon_path" "econ/default_generated/weapon_famas_sp_spray_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_mastery_heavy" } - "655548" + "592160" { - "icon_path" "econ/default_generated/weapon_famas_so_space_marine_light" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_phobos_light" } - "655549" + "592161" { - "icon_path" "econ/default_generated/weapon_famas_so_space_marine_medium" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_phobos_medium" } - "655550" + "592162" { - "icon_path" "econ/default_generated/weapon_famas_so_space_marine_heavy" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_phobos_heavy" } - "655728" + "592384" { - "icon_path" "econ/default_generated/weapon_famas_hy_reef_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_psychopath_light" } - "655729" + "592385" { - "icon_path" "econ/default_generated/weapon_famas_hy_reef_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_psychopath_medium" } - "655730" + "592386" { - "icon_path" "econ/default_generated/weapon_famas_hy_reef_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_psychopath_heavy" } - "655976" + "592472" { - "icon_path" "econ/default_generated/weapon_famas_cu_broken_path_famas_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_hannya_light" } - "655977" + "592473" { - "icon_path" "econ/default_generated/weapon_famas_cu_broken_path_famas_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_hannya_medium" } - "655978" + "592474" { - "icon_path" "econ/default_generated/weapon_famas_cu_broken_path_famas_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_hannya_heavy" } - "656072" + "592588" { - "icon_path" "econ/default_generated/weapon_famas_hy_doomkitty_light" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_death_light" } - "656073" + "592589" { - "icon_path" "econ/default_generated/weapon_famas_hy_doomkitty_medium" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_death_medium" } - "656074" + "592590" { - "icon_path" "econ/default_generated/weapon_famas_hy_doomkitty_heavy" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_death_heavy" } - "656136" + "592696" { - "icon_path" "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_light" + "icon_path" "econ/default_generated/weapon_awp_am_awp_pawpaw_light" } - "656137" + "592697" { - "icon_path" "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_medium" + "icon_path" "econ/default_generated/weapon_awp_am_awp_pawpaw_medium" } - "656138" + "592698" { - "icon_path" "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_heavy" + "icon_path" "econ/default_generated/weapon_awp_am_awp_pawpaw_heavy" } - "656232" + "592768" { - "icon_path" "econ/default_generated/weapon_famas_hy_bluehex_light" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_enamel_light" } - "656233" + "592769" { - "icon_path" "econ/default_generated/weapon_famas_hy_bluehex_medium" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_enamel_medium" } - "656234" + "592770" { - "icon_path" "econ/default_generated/weapon_famas_hy_bluehex_heavy" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_enamel_heavy" } - "656336" + "592848" { - "icon_path" "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_light" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_gungnir_light" } - "656337" + "592849" { - "icon_path" "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_medium" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_gungnir_medium" } - "656338" + "592850" { - "icon_path" "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_heavy" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_gungnir_heavy" } - "656400" + "592976" { - "icon_path" "econ/default_generated/weapon_famas_cu_famas_pulse_light" + "icon_path" "econ/default_generated/weapon_awp_hy_nuclear_skulls_redblue_light" } - "656401" + "592977" { - "icon_path" "econ/default_generated/weapon_famas_cu_famas_pulse_medium" + "icon_path" "econ/default_generated/weapon_awp_hy_nuclear_skulls_redblue_medium" } - "656402" + "592978" { - "icon_path" "econ/default_generated/weapon_famas_cu_famas_pulse_heavy" + "icon_path" "econ/default_generated/weapon_awp_hy_nuclear_skulls_redblue_heavy" } - "656512" + "593036" { - "icon_path" "econ/default_generated/weapon_famas_an_famas_sgt_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_neonoir_light" } - "656513" + "593037" { - "icon_path" "econ/default_generated/weapon_famas_an_famas_sgt_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_neonoir_medium" } - "656514" + "593038" { - "icon_path" "econ/default_generated/weapon_famas_an_famas_sgt_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_neonoir_heavy" } - "656844" + "593100" { - "icon_path" "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_light" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_hydra_light" } - "656845" + "593101" { - "icon_path" "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_medium" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_hydra_medium" } - "656846" + "593102" { - "icon_path" "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_heavy" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_hydra_heavy" } - "657076" + "593176" { - "icon_path" "econ/default_generated/weapon_famas_aq_famas_jinn_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_viper_light" } - "657077" + "593177" { - "icon_path" "econ/default_generated/weapon_famas_aq_famas_jinn_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_viper_medium" } - "657078" + "593178" { - "icon_path" "econ/default_generated/weapon_famas_aq_famas_jinn_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_viper_heavy" } - "657268" + "593372" { - "icon_path" "econ/default_generated/weapon_famas_am_famas_dots_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_virus_light" } - "657269" + "593373" { - "icon_path" "econ/default_generated/weapon_famas_am_famas_dots_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_virus_medium" } - "657270" + "593374" { - "icon_path" "econ/default_generated/weapon_famas_am_famas_dots_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_virus_heavy" } - "657328" + "593492" { - "icon_path" "econ/default_generated/weapon_famas_cu_famas_lenta_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_wildfire_light" } - "657329" + "593493" { - "icon_path" "econ/default_generated/weapon_famas_cu_famas_lenta_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_wildfire_medium" } - "657330" + "593494" { - "icon_path" "econ/default_generated/weapon_famas_cu_famas_lenta_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_wildfire_heavy" } - "720920" + "593596" { - "icon_path" "econ/default_generated/weapon_g3sg1_hy_arctic_light" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_vein_light" } - "720921" + "593597" { - "icon_path" "econ/default_generated/weapon_g3sg1_hy_arctic_medium" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_vein_medium" } - "720922" + "593598" { - "icon_path" "econ/default_generated/weapon_g3sg1_hy_arctic_heavy" + "icon_path" "econ/default_generated/weapon_awp_cu_awp_vein_heavy" } - "720928" + "593724" { - "icon_path" "econ/default_generated/weapon_g3sg1_hy_desert_light" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_exoskeleton_light" } - "720929" + "593725" { - "icon_path" "econ/default_generated/weapon_g3sg1_hy_desert_medium" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_exoskeleton_medium" } - "720930" + "593726" { - "icon_path" "econ/default_generated/weapon_g3sg1_hy_desert_heavy" + "icon_path" "econ/default_generated/weapon_awp_gs_awp_exoskeleton_heavy" } - "721080" + "593928" { - "icon_path" "econ/default_generated/weapon_g3sg1_so_pmc_light" + "icon_path" "econ/default_generated/weapon_awp_aa_awp_fade_light" + } + "593929" + { + "icon_path" "econ/default_generated/weapon_awp_aa_awp_fade_medium" + } + "593930" + { + "icon_path" "econ/default_generated/weapon_awp_aa_awp_fade_heavy" + } + "593940" + { + "icon_path" "econ/default_generated/weapon_awp_am_tigers_blue_light" + } + "593941" + { + "icon_path" "econ/default_generated/weapon_awp_am_tigers_blue_medium" + } + "593942" + { + "icon_path" "econ/default_generated/weapon_awp_am_tigers_blue_heavy" + } + "594056" + { + "icon_path" "econ/default_generated/weapon_awp_hy_technowar_rwb_light" + } + "594057" + { + "icon_path" "econ/default_generated/weapon_awp_hy_technowar_rwb_medium" + } + "594058" + { + "icon_path" "econ/default_generated/weapon_awp_hy_technowar_rwb_heavy" + } + "594400" + { + "icon_path" "econ/default_generated/weapon_awp_cu_awp_chroma_pink_light" + } + "594401" + { + "icon_path" "econ/default_generated/weapon_awp_cu_awp_chroma_pink_medium" + } + "594402" + { + "icon_path" "econ/default_generated/weapon_awp_cu_awp_chroma_pink_heavy" + } + "655448" + { + "icon_path" "econ/default_generated/weapon_famas_sp_spray_light" + } + "655449" + { + "icon_path" "econ/default_generated/weapon_famas_sp_spray_medium" + } + "655450" + { + "icon_path" "econ/default_generated/weapon_famas_sp_spray_heavy" + } + "655548" + { + "icon_path" "econ/default_generated/weapon_famas_so_space_marine_light" + } + "655549" + { + "icon_path" "econ/default_generated/weapon_famas_so_space_marine_medium" + } + "655550" + { + "icon_path" "econ/default_generated/weapon_famas_so_space_marine_heavy" + } + "655600" + { + "icon_path" "econ/default_generated/weapon_famas_am_zebra_dark_light" + } + "655601" + { + "icon_path" "econ/default_generated/weapon_famas_am_zebra_dark_medium" + } + "655602" + { + "icon_path" "econ/default_generated/weapon_famas_am_zebra_dark_heavy" + } + "655728" + { + "icon_path" "econ/default_generated/weapon_famas_hy_reef_light" + } + "655729" + { + "icon_path" "econ/default_generated/weapon_famas_hy_reef_medium" + } + "655730" + { + "icon_path" "econ/default_generated/weapon_famas_hy_reef_heavy" + } + "655976" + { + "icon_path" "econ/default_generated/weapon_famas_cu_broken_path_famas_light" + } + "655977" + { + "icon_path" "econ/default_generated/weapon_famas_cu_broken_path_famas_medium" + } + "655978" + { + "icon_path" "econ/default_generated/weapon_famas_cu_broken_path_famas_heavy" + } + "656072" + { + "icon_path" "econ/default_generated/weapon_famas_hy_doomkitty_light" + } + "656073" + { + "icon_path" "econ/default_generated/weapon_famas_hy_doomkitty_medium" + } + "656074" + { + "icon_path" "econ/default_generated/weapon_famas_hy_doomkitty_heavy" + } + "656136" + { + "icon_path" "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_light" + } + "656137" + { + "icon_path" "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_medium" + } + "656138" + { + "icon_path" "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_heavy" + } + "656232" + { + "icon_path" "econ/default_generated/weapon_famas_hy_bluehex_light" + } + "656233" + { + "icon_path" "econ/default_generated/weapon_famas_hy_bluehex_medium" + } + "656234" + { + "icon_path" "econ/default_generated/weapon_famas_hy_bluehex_heavy" + } + "656320" + { + "icon_path" "econ/default_generated/weapon_famas_hy_varicamo_desert_light" + } + "656321" + { + "icon_path" "econ/default_generated/weapon_famas_hy_varicamo_desert_medium" + } + "656322" + { + "icon_path" "econ/default_generated/weapon_famas_hy_varicamo_desert_heavy" + } + "656336" + { + "icon_path" "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_light" + } + "656337" + { + "icon_path" "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_medium" + } + "656338" + { + "icon_path" "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_heavy" + } + "656400" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_pulse_light" + } + "656401" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_pulse_medium" + } + "656402" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_pulse_heavy" + } + "656512" + { + "icon_path" "econ/default_generated/weapon_famas_an_famas_sgt_light" + } + "656513" + { + "icon_path" "econ/default_generated/weapon_famas_an_famas_sgt_medium" + } + "656514" + { + "icon_path" "econ/default_generated/weapon_famas_an_famas_sgt_heavy" + } + "656844" + { + "icon_path" "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_light" + } + "656845" + { + "icon_path" "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_medium" + } + "656846" + { + "icon_path" "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_heavy" + } + "657076" + { + "icon_path" "econ/default_generated/weapon_famas_aq_famas_jinn_light" + } + "657077" + { + "icon_path" "econ/default_generated/weapon_famas_aq_famas_jinn_medium" + } + "657078" + { + "icon_path" "econ/default_generated/weapon_famas_aq_famas_jinn_heavy" + } + "657268" + { + "icon_path" "econ/default_generated/weapon_famas_am_famas_dots_light" + } + "657269" + { + "icon_path" "econ/default_generated/weapon_famas_am_famas_dots_medium" + } + "657270" + { + "icon_path" "econ/default_generated/weapon_famas_am_famas_dots_heavy" + } + "657328" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_lenta_light" + } + "657329" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_lenta_medium" + } + "657330" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_lenta_heavy" + } + "657476" + { + "icon_path" "econ/default_generated/weapon_famas_aq_famas_contour_light" + } + "657477" + { + "icon_path" "econ/default_generated/weapon_famas_aq_famas_contour_medium" + } + "657478" + { + "icon_path" "econ/default_generated/weapon_famas_aq_famas_contour_heavy" + } + "657776" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_rally_light" + } + "657777" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_rally_medium" + } + "657778" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_rally_heavy" + } + "657864" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_mecha_light" + } + "657865" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_mecha_medium" + } + "657866" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_mecha_heavy" + } + "657996" + { + "icon_path" "econ/default_generated/weapon_famas_sp_famas_macabre_light" + } + "657997" + { + "icon_path" "econ/default_generated/weapon_famas_sp_famas_macabre_medium" + } + "657998" + { + "icon_path" "econ/default_generated/weapon_famas_sp_famas_macabre_heavy" + } + "658252" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_owl_orange_light" + } + "658253" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_owl_orange_medium" + } + "658254" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_owl_orange_heavy" + } + "658700" + { + "icon_path" "econ/default_generated/weapon_famas_sp_famas_ghost_insects_light" + } + "658701" + { + "icon_path" "econ/default_generated/weapon_famas_sp_famas_ghost_insects_medium" + } + "658702" + { + "icon_path" "econ/default_generated/weapon_famas_sp_famas_ghost_insects_heavy" + } + "658812" + { + "icon_path" "econ/default_generated/weapon_famas_sp_knots_blue_light" + } + "658813" + { + "icon_path" "econ/default_generated/weapon_famas_sp_knots_blue_medium" + } + "658814" + { + "icon_path" "econ/default_generated/weapon_famas_sp_knots_blue_heavy" + } + "658836" + { + "icon_path" "econ/default_generated/weapon_famas_sp_palm_sunset_light" + } + "658837" + { + "icon_path" "econ/default_generated/weapon_famas_sp_palm_sunset_medium" + } + "658838" + { + "icon_path" "econ/default_generated/weapon_famas_sp_palm_sunset_heavy" + } + "658976" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_nuke_tension_light" + } + "658977" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_nuke_tension_medium" + } + "658978" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_nuke_tension_heavy" + } + "659036" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_legacy_gold_light" + } + "659037" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_legacy_gold_medium" + } + "659038" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_legacy_gold_heavy" + } + "659356" + { + "icon_path" "econ/default_generated/weapon_famas_am_numbers_magenta_light" + } + "659357" + { + "icon_path" "econ/default_generated/weapon_famas_am_numbers_magenta_medium" + } + "659358" + { + "icon_path" "econ/default_generated/weapon_famas_am_numbers_magenta_heavy" + } + "659572" + { + "icon_path" "econ/default_generated/weapon_famas_am_nuclear_pattern4_famas_light" + } + "659573" + { + "icon_path" "econ/default_generated/weapon_famas_am_nuclear_pattern4_famas_medium" + } + "659574" + { + "icon_path" "econ/default_generated/weapon_famas_am_nuclear_pattern4_famas_heavy" + } + "659624" + { + "icon_path" "econ/default_generated/weapon_famas_aa_wiring_yellow_light" + } + "659625" + { + "icon_path" "econ/default_generated/weapon_famas_aa_wiring_yellow_medium" + } + "659626" + { + "icon_path" "econ/default_generated/weapon_famas_aa_wiring_yellow_heavy" + } + "659728" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_spectron_light" + } + "659729" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_spectron_medium" + } + "659730" + { + "icon_path" "econ/default_generated/weapon_famas_cu_famas_spectron_heavy" + } + "659868" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_rapid_eyes_light" + } + "659869" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_rapid_eyes_medium" + } + "659870" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_rapid_eyes_heavy" + } + "659944" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_corp_meow_light" + } + "659945" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_corp_meow_medium" + } + "659946" + { + "icon_path" "econ/default_generated/weapon_famas_gs_famas_corp_meow_heavy" + } + "720920" + { + "icon_path" "econ/default_generated/weapon_g3sg1_hy_arctic_light" + } + "720921" + { + "icon_path" "econ/default_generated/weapon_g3sg1_hy_arctic_medium" + } + "720922" + { + "icon_path" "econ/default_generated/weapon_g3sg1_hy_arctic_heavy" + } + "720928" + { + "icon_path" "econ/default_generated/weapon_g3sg1_hy_desert_light" + } + "720929" + { + "icon_path" "econ/default_generated/weapon_g3sg1_hy_desert_medium" + } + "720930" + { + "icon_path" "econ/default_generated/weapon_g3sg1_hy_desert_heavy" + } + "721080" + { + "icon_path" "econ/default_generated/weapon_g3sg1_so_pmc_light" } "721081" { @@ -2172,6 +4151,162 @@ { "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_executioner_heavy" } + "723076" + { + "icon_path" "econ/default_generated/weapon_g3sg1_sp_g3sg1_militiaorange_light" + } + "723077" + { + "icon_path" "econ/default_generated/weapon_g3sg1_sp_g3sg1_militiaorange_medium" + } + "723078" + { + "icon_path" "econ/default_generated/weapon_g3sg1_sp_g3sg1_militiaorange_heavy" + } + "723320" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_ventilator_light" + } + "723321" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_ventilator_medium" + } + "723322" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_ventilator_heavy" + } + "723408" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_viper_yellow_light" + } + "723409" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_viper_yellow_medium" + } + "723410" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_viper_yellow_heavy" + } + "723604" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_cetme_redux_light" + } + "723605" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_cetme_redux_medium" + } + "723606" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_cetme_redux_heavy" + } + "723744" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_buccaneer_light" + } + "723745" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_buccaneer_medium" + } + "723746" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_buccaneer_heavy" + } + "723852" + { + "icon_path" "econ/default_generated/weapon_g3sg1_am_murano_violet_light" + } + "723853" + { + "icon_path" "econ/default_generated/weapon_g3sg1_am_murano_violet_medium" + } + "723854" + { + "icon_path" "econ/default_generated/weapon_g3sg1_am_murano_violet_heavy" + } + "724120" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_savage_light" + } + "724121" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_savage_medium" + } + "724122" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_savage_heavy" + } + "724460" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_blacksand_light" + } + "724461" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_blacksand_medium" + } + "724462" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_blacksand_heavy" + } + "724616" + { + "icon_path" "econ/default_generated/weapon_g3sg1_sp_moro_carving_lightblue_light" + } + "724617" + { + "icon_path" "econ/default_generated/weapon_g3sg1_sp_moro_carving_lightblue_medium" + } + "724618" + { + "icon_path" "econ/default_generated/weapon_g3sg1_sp_moro_carving_lightblue_heavy" + } + "724816" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_disrupt_light" + } + "724817" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_disrupt_medium" + } + "724818" + { + "icon_path" "econ/default_generated/weapon_g3sg1_gs_g3sg1_disrupt_heavy" + } + "725032" + { + "icon_path" "econ/default_generated/weapon_g3sg1_am_ancient_wine_light" + } + "725033" + { + "icon_path" "econ/default_generated/weapon_g3sg1_am_ancient_wine_medium" + } + "725034" + { + "icon_path" "econ/default_generated/weapon_g3sg1_am_ancient_wine_heavy" + } + "725276" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_tacticalmap_light" + } + "725277" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_tacticalmap_medium" + } + "725278" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_tacticalmap_heavy" + } + "725412" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_glade_light" + } + "725413" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_glade_medium" + } + "725414" + { + "icon_path" "econ/default_generated/weapon_g3sg1_cu_g3sg1_glade_heavy" + } "852272" { "icon_path" "econ/default_generated/weapon_galilar_hy_forest_winter_light" @@ -2196,6 +4331,18 @@ { "icon_path" "econ/default_generated/weapon_galilar_hy_ddpat_orange_heavy" } + "852372" + { + "icon_path" "econ/default_generated/weapon_galilar_so_tornado_light" + } + "852373" + { + "icon_path" "econ/default_generated/weapon_galilar_so_tornado_medium" + } + "852374" + { + "icon_path" "econ/default_generated/weapon_galilar_so_tornado_heavy" + } "852444" { "icon_path" "econ/default_generated/weapon_galilar_sp_spray_desert_sage_light" @@ -2268,6 +4415,18 @@ { "icon_path" "econ/default_generated/weapon_galilar_sp_mesh_slashes_heavy" } + "852952" + { + "icon_path" "econ/default_generated/weapon_galilar_aa_fade_metallic_light" + } + "852953" + { + "icon_path" "econ/default_generated/weapon_galilar_aa_fade_metallic_medium" + } + "852954" + { + "icon_path" "econ/default_generated/weapon_galilar_aa_fade_metallic_heavy" + } "853024" { "icon_path" "econ/default_generated/weapon_galilar_cu_sandstorm_light" @@ -2376,6 +4535,174 @@ { "icon_path" "econ/default_generated/weapon_galilar_gs_galil_nightwing_heavy" } + "854152" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galilar_incenerator_light" + } + "854153" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galilar_incenerator_medium" + } + "854154" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galilar_incenerator_heavy" + } + "854484" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_ar-camo_light" + } + "854485" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_ar-camo_medium" + } + "854486" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_ar-camo_heavy" + } + "854556" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_wave_light" + } + "854557" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_wave_medium" + } + "854558" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_wave_heavy" + } + "854612" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_candychaos_light" + } + "854613" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_candychaos_medium" + } + "854614" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_candychaos_heavy" + } + "855128" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_nuclear_skulls_aqua_light" + } + "855129" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_nuclear_skulls_aqua_medium" + } + "855130" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_nuclear_skulls_aqua_heavy" + } + "855196" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_galil_signal_red_light" + } + "855197" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_galil_signal_red_medium" + } + "855198" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_galil_signal_red_heavy" + } + "855336" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_akoben_light" + } + "855337" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_akoben_medium" + } + "855338" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_akoben_heavy" + } + "855856" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galil_phoenix_light" + } + "855857" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galil_phoenix_medium" + } + "855858" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galil_phoenix_heavy" + } + "855892" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galil_vandal_light" + } + "855893" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galil_vandal_medium" + } + "855894" + { + "icon_path" "econ/default_generated/weapon_galilar_gs_galil_vandal_heavy" + } + "856020" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_phoenix_tags_purple_light" + } + "856021" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_phoenix_tags_purple_medium" + } + "856022" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_phoenix_tags_purple_heavy" + } + "856096" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_ruins_red_light" + } + "856097" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_ruins_red_medium" + } + "856098" + { + "icon_path" "econ/default_generated/weapon_galilar_hy_ruins_red_heavy" + } + "856120" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_chroma_pink_light" + } + "856121" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_chroma_pink_medium" + } + "856122" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_chroma_pink_heavy" + } + "856252" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_caution_light" + } + "856253" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_caution_medium" + } + "856254" + { + "icon_path" "econ/default_generated/weapon_galilar_sp_galil_caution_heavy" + } + "856556" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_destroyer_light" + } + "856557" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_destroyer_medium" + } + "856558" + { + "icon_path" "econ/default_generated/weapon_galilar_cu_galil_destroyer_heavy" + } "917592" { "icon_path" "econ/default_generated/weapon_m249_sp_spray_light" @@ -2400,6 +4727,30 @@ { "icon_path" "econ/default_generated/weapon_m249_hy_blizzard_heavy" } + "918108" + { + "icon_path" "econ/default_generated/weapon_m249_so_jungle_light" + } + "918109" + { + "icon_path" "econ/default_generated/weapon_m249_so_jungle_medium" + } + "918110" + { + "icon_path" "econ/default_generated/weapon_m249_so_jungle_heavy" + } + "918184" + { + "icon_path" "econ/default_generated/weapon_m249_sp_zebracam_light" + } + "918185" + { + "icon_path" "econ/default_generated/weapon_m249_sp_zebracam_medium" + } + "918186" + { + "icon_path" "econ/default_generated/weapon_m249_sp_zebracam_heavy" + } "918312" { "icon_path" "econ/default_generated/weapon_m249_hy_ddpat_jungle_bravo_light" @@ -2484,6 +4835,114 @@ { "icon_path" "econ/default_generated/weapon_m249_gs_m249_nebula_crusader_heavy" } + "919692" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_spectre_light" + } + "919693" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_spectre_medium" + } + "919694" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_spectre_heavy" + } + "920096" + { + "icon_path" "econ/default_generated/weapon_m249_sp_m249_frog_original_light" + } + "920097" + { + "icon_path" "econ/default_generated/weapon_m249_sp_m249_frog_original_medium" + } + "920098" + { + "icon_path" "econ/default_generated/weapon_m249_sp_m249_frog_original_heavy" + } + "920812" + { + "icon_path" "econ/default_generated/weapon_m249_sp_moro_carving_burnt_light" + } + "920813" + { + "icon_path" "econ/default_generated/weapon_m249_sp_moro_carving_burnt_medium" + } + "920814" + { + "icon_path" "econ/default_generated/weapon_m249_sp_moro_carving_burnt_heavy" + } + "921104" + { + "icon_path" "econ/default_generated/weapon_m249_gs_m249_warbird_veteran_light" + } + "921105" + { + "icon_path" "econ/default_generated/weapon_m249_gs_m249_warbird_veteran_medium" + } + "921106" + { + "icon_path" "econ/default_generated/weapon_m249_gs_m249_warbird_veteran_heavy" + } + "921112" + { + "icon_path" "econ/default_generated/weapon_m249_aq_m249_aztec_light" + } + "921113" + { + "icon_path" "econ/default_generated/weapon_m249_aq_m249_aztec_medium" + } + "921114" + { + "icon_path" "econ/default_generated/weapon_m249_aq_m249_aztec_heavy" + } + "921236" + { + "icon_path" "econ/default_generated/weapon_m249_sp_palm_night_light" + } + "921237" + { + "icon_path" "econ/default_generated/weapon_m249_sp_palm_night_medium" + } + "921238" + { + "icon_path" "econ/default_generated/weapon_m249_sp_palm_night_heavy" + } + "921436" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_deep_relief_light" + } + "921437" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_deep_relief_medium" + } + "921438" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_deep_relief_heavy" + } + "921672" + { + "icon_path" "econ/default_generated/weapon_m249_gs_m249_combine_light" + } + "921673" + { + "icon_path" "econ/default_generated/weapon_m249_gs_m249_combine_medium" + } + "921674" + { + "icon_path" "econ/default_generated/weapon_m249_gs_m249_combine_heavy" + } + "922096" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_downvote_light" + } + "922097" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_downvote_medium" + } + "922098" + { + "icon_path" "econ/default_generated/weapon_m249_cu_m249_downvote_heavy" + } "1048608" { "icon_path" "econ/default_generated/weapon_m4a1_hy_desert_light" @@ -2712,6 +5171,222 @@ { "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_royal_squire_heavy" } + "1050708" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_light" + } + "1050709" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_medium" + } + "1050710" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_heavy" + } + "1050928" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_desolate_space_light" + } + "1050929" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_desolate_space_medium" + } + "1050930" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_desolate_space_heavy" + } + "1051104" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_sector_light" + } + "1051105" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_sector_medium" + } + "1051106" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_sector_heavy" + } + "1051232" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_hellfire_light" + } + "1051233" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_hellfire_medium" + } + "1051234" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_hellfire_heavy" + } + "1051356" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_neo_noir_light" + } + "1051357" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_neo_noir_medium" + } + "1051358" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_neo_noir_heavy" + } + "1051496" + { + "icon_path" "econ/default_generated/weapon_m4a1_sp_bud_blue_light" + } + "1051497" + { + "icon_path" "econ/default_generated/weapon_m4a1_sp_bud_blue_medium" + } + "1051498" + { + "icon_path" "econ/default_generated/weapon_m4a1_sp_bud_blue_heavy" + } + "1051696" + { + "icon_path" "econ/default_generated/weapon_m4a1_am_circuitboard_silver_light" + } + "1051697" + { + "icon_path" "econ/default_generated/weapon_m4a1_am_circuitboard_silver_medium" + } + "1051698" + { + "icon_path" "econ/default_generated/weapon_m4a1_am_circuitboard_silver_heavy" + } + "1051748" + { + "icon_path" "econ/default_generated/weapon_m4a1_hy_red_hex_light" + } + "1051749" + { + "icon_path" "econ/default_generated/weapon_m4a1_hy_red_hex_medium" + } + "1051750" + { + "icon_path" "econ/default_generated/weapon_m4a1_hy_red_hex_heavy" + } + "1051820" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_chopper_ghost_light" + } + "1051821" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_chopper_ghost_medium" + } + "1051822" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_chopper_ghost_heavy" + } + "1051952" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_emperor_light" + } + "1051953" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_emperor_medium" + } + "1051954" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_emperor_heavy" + } + "1052280" + { + "icon_path" "econ/default_generated/weapon_m4a1_hy_ddpat_urban_red_light" + } + "1052281" + { + "icon_path" "econ/default_generated/weapon_m4a1_hy_ddpat_urban_red_medium" + } + "1052282" + { + "icon_path" "econ/default_generated/weapon_m4a1_hy_ddpat_urban_red_heavy" + } + "1052460" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_queenfairy_light" + } + "1052461" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_queenfairy_medium" + } + "1052462" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_queenfairy_heavy" + } + "1052516" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_cyberpunk_light" + } + "1052517" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_cyberpunk_medium" + } + "1052518" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_cyberpunk_heavy" + } + "1052548" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_csgo_camo_light" + } + "1052549" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_csgo_camo_medium" + } + "1052550" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_csgo_camo_heavy" + } + "1052740" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_love_light" + } + "1052741" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_love_medium" + } + "1052742" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_love_heavy" + } + "1052828" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_coalition_light" + } + "1052829" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_coalition_medium" + } + "1052830" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4a4_coalition_heavy" + } + "1052964" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4_flowers_light" + } + "1052965" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4_flowers_medium" + } + "1052966" + { + "icon_path" "econ/default_generated/weapon_m4a1_gs_m4_flowers_heavy" + } + "1053172" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_elite_tactical_light" + } + "1053173" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_elite_tactical_medium" + } + "1053174" + { + "icon_path" "econ/default_generated/weapon_m4a1_cu_m4a4_elite_tactical_heavy" + } "1114124" { "icon_path" "econ/default_generated/weapon_mac10_so_red_light" @@ -2760,6 +5435,18 @@ { "icon_path" "econ/default_generated/weapon_mac10_aa_fade_heavy" } + "1114288" + { + "icon_path" "econ/default_generated/weapon_mac10_aq_oiled_light" + } + "1114289" + { + "icon_path" "econ/default_generated/weapon_mac10_aq_oiled_medium" + } + "1114290" + { + "icon_path" "econ/default_generated/weapon_mac10_aq_oiled_heavy" + } "1114504" { "icon_path" "econ/default_generated/weapon_mac10_so_purple_light" @@ -2928,6 +5615,294 @@ { "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_alekhya_duo_heavy" } + "1116248" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_electricity_light" + } + "1116249" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_electricity_medium" + } + "1116250" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_electricity_heavy" + } + "1116468" + { + "icon_path" "econ/default_generated/weapon_mac10_aq_mac_10_alien_camo_light" + } + "1116469" + { + "icon_path" "econ/default_generated/weapon_mac10_aq_mac_10_alien_camo_medium" + } + "1116470" + { + "icon_path" "econ/default_generated/weapon_mac10_aq_mac_10_alien_camo_heavy" + } + "1116716" + { + "icon_path" "econ/default_generated/weapon_mac10_aa_mac10_the_last_dive_light" + } + "1116717" + { + "icon_path" "econ/default_generated/weapon_mac10_aa_mac10_the_last_dive_medium" + } + "1116718" + { + "icon_path" "econ/default_generated/weapon_mac10_aa_mac10_the_last_dive_heavy" + } + "1116772" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_aloha_light" + } + "1116773" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_aloha_medium" + } + "1116774" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_aloha_heavy" + } + "1116840" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_oceani_light" + } + "1116841" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_oceani_medium" + } + "1116842" + { + "icon_path" "econ/default_generated/weapon_mac10_am_mac10_oceani_heavy" + } + "1117080" + { + "icon_path" "econ/default_generated/weapon_mac10_am_ren_red_light" + } + "1117081" + { + "icon_path" "econ/default_generated/weapon_mac10_am_ren_red_medium" + } + "1117082" + { + "icon_path" "econ/default_generated/weapon_mac10_am_ren_red_heavy" + } + "1117104" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_checker_light" + } + "1117105" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_checker_medium" + } + "1117106" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_checker_heavy" + } + "1117156" + { + "icon_path" "econ/default_generated/weapon_mac10_am_knots_brown_light" + } + "1117157" + { + "icon_path" "econ/default_generated/weapon_mac10_am_knots_brown_medium" + } + "1117158" + { + "icon_path" "econ/default_generated/weapon_mac10_am_knots_brown_heavy" + } + "1117360" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_exo_pipes_light" + } + "1117361" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_exo_pipes_medium" + } + "1117362" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_exo_pipes_heavy" + } + "1117416" + { + "icon_path" "econ/default_generated/weapon_mac10_sp_mirage_flowers_tan_light" + } + "1117417" + { + "icon_path" "econ/default_generated/weapon_mac10_sp_mirage_flowers_tan_medium" + } + "1117418" + { + "icon_path" "econ/default_generated/weapon_mac10_sp_mirage_flowers_tan_heavy" + } + "1117472" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_fish_bait_light" + } + "1117473" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_fish_bait_medium" + } + "1117474" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_fish_bait_heavy" + } + "1117596" + { + "icon_path" "econ/default_generated/weapon_mac10_sp_twigs_beach_light" + } + "1117597" + { + "icon_path" "econ/default_generated/weapon_mac10_sp_twigs_beach_medium" + } + "1117598" + { + "icon_path" "econ/default_generated/weapon_mac10_sp_twigs_beach_heavy" + } + "1117704" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_stalker_light" + } + "1117705" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_stalker_medium" + } + "1117706" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_stalker_heavy" + } + "1117744" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_dust_crate_light" + } + "1117745" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_dust_crate_medium" + } + "1117746" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_dust_crate_heavy" + } + "1117900" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_nacre_light" + } + "1117901" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_nacre_medium" + } + "1117902" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_nacre_heavy" + } + "1117972" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_isoonna_light" + } + "1117973" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_isoonna_medium" + } + "1117974" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_isoonna_heavy" + } + "1118148" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_snake_light" + } + "1118149" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_snake_medium" + } + "1118150" + { + "icon_path" "econ/default_generated/weapon_mac10_gs_mac10_snake_heavy" + } + "1118212" + { + "icon_path" "econ/default_generated/weapon_mac10_am_gold_brick_light" + } + "1118213" + { + "icon_path" "econ/default_generated/weapon_mac10_am_gold_brick_medium" + } + "1118214" + { + "icon_path" "econ/default_generated/weapon_mac10_am_gold_brick_heavy" + } + "1118292" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_portable_light" + } + "1118293" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_portable_medium" + } + "1118294" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_portable_heavy" + } + "1118380" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_propaganda_light" + } + "1118381" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_propaganda_medium" + } + "1118382" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_propaganda_heavy" + } + "1118412" + { + "icon_path" "econ/default_generated/weapon_mac10_hy_vertigospray_blue_light" + } + "1118413" + { + "icon_path" "econ/default_generated/weapon_mac10_hy_vertigospray_blue_medium" + } + "1118414" + { + "icon_path" "econ/default_generated/weapon_mac10_hy_vertigospray_blue_heavy" + } + "1118504" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_toybox_light" + } + "1118505" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_toybox_medium" + } + "1118506" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_toybox_heavy" + } + "1118636" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_pixie_light" + } + "1118637" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_pixie_medium" + } + "1118638" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_pixie_heavy" + } + "1118712" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_monkeyflage_light" + } + "1118713" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_monkeyflage_medium" + } + "1118714" + { + "icon_path" "econ/default_generated/weapon_mac10_cu_mac10_monkeyflage_heavy" + } "1245264" { "icon_path" "econ/default_generated/weapon_p90_hy_zombie_light" @@ -3156,6 +6131,426 @@ { "icon_path" "econ/default_generated/weapon_p90_cu_p90_shapewood_heavy" } + "1247556" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_full_throttle_light" + } + "1247557" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_full_throttle_medium" + } + "1247558" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_full_throttle_heavy" + } + "1247628" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_grimm_light" + } + "1247629" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_grimm_medium" + } + "1247630" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_grimm_heavy" + } + "1247728" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_shallow_grave_light" + } + "1247729" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_shallow_grave_medium" + } + "1247730" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_shallow_grave_heavy" + } + "1247860" + { + "icon_path" "econ/default_generated/weapon_p90_hy_p90_barebones_blue_light" + } + "1247861" + { + "icon_path" "econ/default_generated/weapon_p90_hy_p90_barebones_blue_medium" + } + "1247862" + { + "icon_path" "econ/default_generated/weapon_p90_hy_p90_barebones_blue_heavy" + } + "1248052" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_tread_light" + } + "1248053" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_tread_medium" + } + "1248054" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_tread_heavy" + } + "1248088" + { + "icon_path" "econ/default_generated/weapon_p90_sp_bloom_orange_light" + } + "1248089" + { + "icon_path" "econ/default_generated/weapon_p90_sp_bloom_orange_medium" + } + "1248090" + { + "icon_path" "econ/default_generated/weapon_p90_sp_bloom_orange_heavy" + } + "1248160" + { + "icon_path" "econ/default_generated/weapon_p90_am_veneto_red_light" + } + "1248161" + { + "icon_path" "econ/default_generated/weapon_p90_am_veneto_red_medium" + } + "1248162" + { + "icon_path" "econ/default_generated/weapon_p90_am_veneto_red_heavy" + } + "1248220" + { + "icon_path" "econ/default_generated/weapon_p90_am_jorm_blue_light" + } + "1248221" + { + "icon_path" "econ/default_generated/weapon_p90_am_jorm_blue_medium" + } + "1248222" + { + "icon_path" "econ/default_generated/weapon_p90_am_jorm_blue_heavy" + } + "1248288" + { + "icon_path" "econ/default_generated/weapon_p90_hy_blueprint_aqua_light" + } + "1248289" + { + "icon_path" "econ/default_generated/weapon_p90_hy_blueprint_aqua_medium" + } + "1248290" + { + "icon_path" "econ/default_generated/weapon_p90_hy_blueprint_aqua_heavy" + } + "1248496" + { + "icon_path" "econ/default_generated/weapon_p90_sp_moro_textile_green_vine_light" + } + "1248497" + { + "icon_path" "econ/default_generated/weapon_p90_sp_moro_textile_green_vine_medium" + } + "1248498" + { + "icon_path" "econ/default_generated/weapon_p90_sp_moro_textile_green_vine_heavy" + } + "1248580" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_offworld_light" + } + "1248581" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_offworld_medium" + } + "1248582" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_offworld_heavy" + } + "1248828" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_nostalgia_light" + } + "1248829" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_nostalgia_medium" + } + "1248830" + { + "icon_path" "econ/default_generated/weapon_p90_cu_p90_nostalgia_heavy" + } + "1248884" + { + "icon_path" "econ/default_generated/weapon_p90_hy_ddpat_desert_light" + } + "1248885" + { + "icon_path" "econ/default_generated/weapon_p90_hy_ddpat_desert_medium" + } + "1248886" + { + "icon_path" "econ/default_generated/weapon_p90_hy_ddpat_desert_heavy" + } + "1249060" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_container_light" + } + "1249061" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_container_medium" + } + "1249062" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_container_heavy" + } + "1249092" + { + "icon_path" "econ/default_generated/weapon_p90_hy_p90_dino_rampage_light" + } + "1249093" + { + "icon_path" "econ/default_generated/weapon_p90_hy_p90_dino_rampage_medium" + } + "1249094" + { + "icon_path" "econ/default_generated/weapon_p90_hy_p90_dino_rampage_heavy" + } + "1249184" + { + "icon_path" "econ/default_generated/weapon_p90_cu_jaguar_p90_light" + } + "1249185" + { + "icon_path" "econ/default_generated/weapon_p90_cu_jaguar_p90_medium" + } + "1249186" + { + "icon_path" "econ/default_generated/weapon_p90_cu_jaguar_p90_heavy" + } + "1249244" + { + "icon_path" "econ/default_generated/weapon_p90_am_tigers_brown_light" + } + "1249245" + { + "icon_path" "econ/default_generated/weapon_p90_am_tigers_brown_medium" + } + "1249246" + { + "icon_path" "econ/default_generated/weapon_p90_am_tigers_brown_heavy" + } + "1249264" + { + "icon_path" "econ/default_generated/weapon_p90_aa_ancient_brown_light" + } + "1249265" + { + "icon_path" "econ/default_generated/weapon_p90_aa_ancient_brown_medium" + } + "1249266" + { + "icon_path" "econ/default_generated/weapon_p90_aa_ancient_brown_heavy" + } + "1249480" + { + "icon_path" "econ/default_generated/weapon_p90_hy_vertigogeo_light" + } + "1249481" + { + "icon_path" "econ/default_generated/weapon_p90_hy_vertigogeo_medium" + } + "1249482" + { + "icon_path" "econ/default_generated/weapon_p90_hy_vertigogeo_heavy" + } + "1249800" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_tangled_light" + } + "1249801" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_tangled_medium" + } + "1249802" + { + "icon_path" "econ/default_generated/weapon_p90_gs_p90_tangled_heavy" + } + "1510340" + { + "icon_path" "econ/default_generated/weapon_mp5sd_sp_tape_short_rally_light" + } + "1510341" + { + "icon_path" "econ/default_generated/weapon_mp5sd_sp_tape_short_rally_medium" + } + "1510342" + { + "icon_path" "econ/default_generated/weapon_mp5sd_sp_tape_short_rally_heavy" + } + "1510452" + { + "icon_path" "econ/default_generated/weapon_mp5sd_am_circuitboard_aqua_light" + } + "1510453" + { + "icon_path" "econ/default_generated/weapon_mp5sd_am_circuitboard_aqua_medium" + } + "1510454" + { + "icon_path" "econ/default_generated/weapon_mp5sd_am_circuitboard_aqua_heavy" + } + "1510520" + { + "icon_path" "econ/default_generated/weapon_mp5sd_so_orange_accents3_light" + } + "1510521" + { + "icon_path" "econ/default_generated/weapon_mp5sd_so_orange_accents3_medium" + } + "1510522" + { + "icon_path" "econ/default_generated/weapon_mp5sd_so_orange_accents3_heavy" + } + "1510528" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_labrat_mp5_light" + } + "1510529" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_labrat_mp5_medium" + } + "1510530" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_labrat_mp5_heavy" + } + "1510568" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_festival_drip_light" + } + "1510569" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_festival_drip_medium" + } + "1510570" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_festival_drip_heavy" + } + "1510712" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5sd_astromatic_light" + } + "1510713" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5sd_astromatic_medium" + } + "1510714" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5sd_astromatic_heavy" + } + "1510816" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_bamboo_stmarc_light" + } + "1510817" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_bamboo_stmarc_medium" + } + "1510818" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_bamboo_stmarc_heavy" + } + "1510880" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_etch_light" + } + "1510881" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_etch_medium" + } + "1510882" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_etch_heavy" + } + "1510988" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_fbi_light" + } + "1510989" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_fbi_medium" + } + "1510990" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_fbi_heavy" + } + "1511020" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_neon_flektarn_light" + } + "1511021" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_neon_flektarn_medium" + } + "1511022" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_neon_flektarn_heavy" + } + "1511124" + { + "icon_path" "econ/default_generated/weapon_mp5sd_cu_mp5_desert_strike_light" + } + "1511125" + { + "icon_path" "econ/default_generated/weapon_mp5sd_cu_mp5_desert_strike_medium" + } + "1511126" + { + "icon_path" "econ/default_generated/weapon_mp5sd_cu_mp5_desert_strike_heavy" + } + "1511224" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5sd_wasteland_legacy_light" + } + "1511225" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5sd_wasteland_legacy_medium" + } + "1511226" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5sd_wasteland_legacy_heavy" + } + "1511272" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_conditionzero_light" + } + "1511273" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_conditionzero_medium" + } + "1511274" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_conditionzero_heavy" + } + "1511572" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_trainarchitect_light" + } + "1511573" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_trainarchitect_medium" + } + "1511574" + { + "icon_path" "econ/default_generated/weapon_mp5sd_hy_trainarchitect_heavy" + } + "1511876" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_kid_necronomicon_light" + } + "1511877" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_kid_necronomicon_medium" + } + "1511878" + { + "icon_path" "econ/default_generated/weapon_mp5sd_gs_mp5_kid_necronomicon_heavy" + } "1572924" { "icon_path" "econ/default_generated/weapon_ump45_hy_gelpen_light" @@ -3204,6 +6599,18 @@ { "icon_path" "econ/default_generated/weapon_ump45_am_carbon_fiber_heavy" } + "1573224" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_mottled_sand_light" + } + "1573225" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_mottled_sand_medium" + } + "1573226" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_mottled_sand_heavy" + } "1573236" { "icon_path" "econ/default_generated/weapon_ump45_so_caramel_light" @@ -3252,6 +6659,18 @@ { "icon_path" "econ/default_generated/weapon_ump45_sp_skull_diagram_bravo_heavy" } + "1573864" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_varicamo_red_light" + } + "1573865" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_varicamo_red_medium" + } + "1573866" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_varicamo_red_heavy" + } "1573988" { "icon_path" "econ/default_generated/weapon_ump45_cu_ump_corporal_light" @@ -3336,6 +6755,222 @@ { "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_uproar_heavy" } + "1575088" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_primalsaber_light" + } + "1575089" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_primalsaber_medium" + } + "1575090" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_primalsaber_heavy" + } + "1575324" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_metritera_light" + } + "1575325" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_metritera_medium" + } + "1575326" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_metritera_heavy" + } + "1575472" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_abyss_light" + } + "1575473" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_abyss_medium" + } + "1575474" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_abyss_heavy" + } + "1575552" + { + "icon_path" "econ/default_generated/weapon_ump45_aq_ump45_flameflower_light" + } + "1575553" + { + "icon_path" "econ/default_generated/weapon_ump45_aq_ump45_flameflower_medium" + } + "1575554" + { + "icon_path" "econ/default_generated/weapon_ump45_aq_ump45_flameflower_heavy" + } + "1575616" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_x-ray_machine_light" + } + "1575617" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_x-ray_machine_medium" + } + "1575618" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_x-ray_machine_heavy" + } + "1575680" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_white_fang_light" + } + "1575681" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_white_fang_medium" + } + "1575682" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump45_white_fang_heavy" + } + "1575764" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_bloom_red_light" + } + "1575765" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_bloom_red_medium" + } + "1575766" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_bloom_red_heavy" + } + "1575976" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_blueprint_bluered_light" + } + "1575977" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_blueprint_bluered_medium" + } + "1575978" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_blueprint_bluered_heavy" + } + "1576072" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_arrows_light" + } + "1576073" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_arrows_medium" + } + "1576074" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_arrows_heavy" + } + "1576268" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_ump45_moonrise_sunset_light" + } + "1576269" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_ump45_moonrise_sunset_medium" + } + "1576270" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_ump45_moonrise_sunset_heavy" + } + "1576380" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_fade_ump_light" + } + "1576381" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_fade_ump_medium" + } + "1576382" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_fade_ump_heavy" + } + "1576528" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_bomb_light" + } + "1576529" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_bomb_medium" + } + "1576530" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_bomb_heavy" + } + "1576824" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_gold_bismuth_light" + } + "1576825" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_gold_bismuth_medium" + } + "1576826" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_gold_bismuth_heavy" + } + "1576876" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_crime_scene_light" + } + "1576877" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_crime_scene_medium" + } + "1576878" + { + "icon_path" "econ/default_generated/weapon_ump45_cu_ump_crime_scene_heavy" + } + "1576896" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_houndstooth_brown_light" + } + "1576897" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_houndstooth_brown_medium" + } + "1576898" + { + "icon_path" "econ/default_generated/weapon_ump45_hy_houndstooth_brown_heavy" + } + "1577060" + { + "icon_path" "econ/default_generated/weapon_ump45_am_ump45_electrowave_light" + } + "1577061" + { + "icon_path" "econ/default_generated/weapon_ump45_am_ump45_electrowave_medium" + } + "1577062" + { + "icon_path" "econ/default_generated/weapon_ump45_am_ump45_electrowave_heavy" + } + "1577204" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_engine_performance_light" + } + "1577205" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_engine_performance_medium" + } + "1577206" + { + "icon_path" "econ/default_generated/weapon_ump45_aa_engine_performance_heavy" + } + "1577492" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_roadblock_light" + } + "1577493" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_roadblock_medium" + } + "1577494" + { + "icon_path" "econ/default_generated/weapon_ump45_gs_ump_roadblock_heavy" + } "1638568" { "icon_path" "econ/default_generated/weapon_xm1014_aq_blued_light" @@ -3540,6 +7175,210 @@ { "icon_path" "econ/default_generated/weapon_xm1014_aq_xm1014_hot_rod_heavy" } + "1640628" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_spectrum_light" + } + "1640629" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_spectrum_medium" + } + "1640630" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_spectrum_heavy" + } + "1640864" + { + "icon_path" "econ/default_generated/weapon_xm1014_hy_xm1014_fractal_blue_light" + } + "1640865" + { + "icon_path" "econ/default_generated/weapon_xm1014_hy_xm1014_fractal_blue_medium" + } + "1640866" + { + "icon_path" "econ/default_generated/weapon_xm1014_hy_xm1014_fractal_blue_heavy" + } + "1641016" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm_leaf_fade_light" + } + "1641017" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm_leaf_fade_medium" + } + "1641018" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm_leaf_fade_heavy" + } + "1641156" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm1014_ziggy_anarchy_light" + } + "1641157" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm1014_ziggy_anarchy_medium" + } + "1641158" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm1014_ziggy_anarchy_heavy" + } + "1641224" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_oxide_blaze_light" + } + "1641225" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_oxide_blaze_medium" + } + "1641226" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_oxide_blaze_heavy" + } + "1641324" + { + "icon_path" "econ/default_generated/weapon_xm1014_hy_leaf_green_light" + } + "1641325" + { + "icon_path" "econ/default_generated/weapon_xm1014_hy_leaf_green_medium" + } + "1641326" + { + "icon_path" "econ/default_generated/weapon_xm1014_hy_leaf_green_heavy" + } + "1641440" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_knots_silver_light" + } + "1641441" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_knots_silver_medium" + } + "1641442" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_knots_silver_heavy" + } + "1641684" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_moro_textile_bright_light" + } + "1641685" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_moro_textile_bright_medium" + } + "1641686" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_moro_textile_bright_heavy" + } + "1641800" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_incinerator_light" + } + "1641801" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_incinerator_medium" + } + "1641802" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_incinerator_heavy" + } + "1642280" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_amulet_blue_light" + } + "1642281" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_amulet_blue_medium" + } + "1642282" + { + "icon_path" "econ/default_generated/weapon_xm1014_cu_xm1014_amulet_blue_heavy" + } + "1642376" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_authority_brown_light" + } + "1642377" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_authority_brown_medium" + } + "1642378" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_authority_brown_heavy" + } + "1642484" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_ancient_warm_light" + } + "1642485" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_ancient_warm_medium" + } + "1642486" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_ancient_warm_heavy" + } + "1642584" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm1014_punk_light" + } + "1642585" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm1014_punk_medium" + } + "1642586" + { + "icon_path" "econ/default_generated/weapon_xm1014_aq_xm1014_punk_heavy" + } + "1642712" + { + "icon_path" "econ/default_generated/weapon_xm1014_sp_tire_tread_blue_light" + } + "1642713" + { + "icon_path" "econ/default_generated/weapon_xm1014_sp_tire_tread_blue_medium" + } + "1642714" + { + "icon_path" "econ/default_generated/weapon_xm1014_sp_tire_tread_blue_heavy" + } + "1642812" + { + "icon_path" "econ/default_generated/weapon_xm1014_gs_xm1014_watchdog_light" + } + "1642813" + { + "icon_path" "econ/default_generated/weapon_xm1014_gs_xm1014_watchdog_medium" + } + "1642814" + { + "icon_path" "econ/default_generated/weapon_xm1014_gs_xm1014_watchdog_heavy" + } + "1642940" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_xm_zombie_offensive_light" + } + "1642941" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_xm_zombie_offensive_medium" + } + "1642942" + { + "icon_path" "econ/default_generated/weapon_xm1014_am_xm_zombie_offensive_heavy" + } + "1703948" + { + "icon_path" "econ/default_generated/weapon_bizon_so_red_light" + } + "1703949" + { + "icon_path" "econ/default_generated/weapon_bizon_so_red_medium" + } + "1703950" + { + "icon_path" "econ/default_generated/weapon_bizon_so_red_heavy" + } "1703988" { "icon_path" "econ/default_generated/weapon_bizon_hy_splatter_light" @@ -3684,6 +7523,18 @@ { "icon_path" "econ/default_generated/weapon_bizon_am_turqoise_halftone_heavy" } + "1705108" + { + "icon_path" "econ/default_generated/weapon_bizon_hy_nerodia_light" + } + "1705109" + { + "icon_path" "econ/default_generated/weapon_bizon_hy_nerodia_medium" + } + "1705110" + { + "icon_path" "econ/default_generated/weapon_bizon_hy_nerodia_heavy" + } "1705160" { "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_antique_light" @@ -3744,153 +7595,345 @@ { "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_noxious_heavy" } - "1769600" + "1706040" { - "icon_path" "econ/default_generated/weapon_mag7_an_silver_light" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_citizen_light" } - "1769601" + "1706041" { - "icon_path" "econ/default_generated/weapon_mag7_an_silver_medium" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_citizen_medium" } - "1769602" + "1706042" { - "icon_path" "econ/default_generated/weapon_mag7_an_silver_heavy" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_citizen_heavy" } - "1769608" + "1706104" { - "icon_path" "econ/default_generated/weapon_mag7_am_urban_light" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_Curse_light" } - "1769609" + "1706105" { - "icon_path" "econ/default_generated/weapon_mag7_am_urban_medium" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_Curse_medium" } - "1769610" + "1706106" { - "icon_path" "econ/default_generated/weapon_mag7_am_urban_heavy" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_Curse_heavy" } - "1769628" + "1706312" { - "icon_path" "econ/default_generated/weapon_mag7_so_yellow_light" + "icon_path" "econ/default_generated/weapon_bizon_gs_pp_bizon_harvester_light" } - "1769629" + "1706313" { - "icon_path" "econ/default_generated/weapon_mag7_so_yellow_medium" + "icon_path" "econ/default_generated/weapon_bizon_gs_pp_bizon_harvester_medium" } - "1769630" + "1706314" { - "icon_path" "econ/default_generated/weapon_mag7_so_yellow_heavy" + "icon_path" "econ/default_generated/weapon_bizon_gs_pp_bizon_harvester_heavy" } - "1769868" + "1706500" { - "icon_path" "econ/default_generated/weapon_mag7_so_sand_light" + "icon_path" "econ/default_generated/weapon_bizon_hy_bizon_torn_green_light" } - "1769869" + "1706501" { - "icon_path" "econ/default_generated/weapon_mag7_so_sand_medium" + "icon_path" "econ/default_generated/weapon_bizon_hy_bizon_torn_green_medium" } - "1769870" + "1706502" { - "icon_path" "econ/default_generated/weapon_mag7_so_sand_heavy" + "icon_path" "econ/default_generated/weapon_bizon_hy_bizon_torn_green_heavy" } - "1769872" + "1706640" { - "icon_path" "econ/default_generated/weapon_mag7_so_stormfront_light" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_all_in_light" } - "1769873" + "1706641" { - "icon_path" "econ/default_generated/weapon_mag7_so_stormfront_medium" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_all_in_medium" } - "1769874" + "1706642" { - "icon_path" "econ/default_generated/weapon_mag7_so_stormfront_heavy" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_all_in_heavy" } - "1770156" + "1706704" { - "icon_path" "econ/default_generated/weapon_mag7_sp_nukestripe_brown_light" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_riot_light" } - "1770157" + "1706705" { - "icon_path" "econ/default_generated/weapon_mag7_sp_nukestripe_brown_medium" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_riot_medium" } - "1770158" + "1706706" { - "icon_path" "econ/default_generated/weapon_mag7_sp_nukestripe_brown_heavy" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_riot_heavy" } - "1770180" + "1707036" { - "icon_path" "econ/default_generated/weapon_mag7_hy_icosahedron_light" + "icon_path" "econ/default_generated/weapon_bizon_hy_blueprint_white_light" } - "1770181" + "1707037" { - "icon_path" "econ/default_generated/weapon_mag7_hy_icosahedron_medium" + "icon_path" "econ/default_generated/weapon_bizon_hy_blueprint_white_medium" } - "1770182" + "1707038" { - "icon_path" "econ/default_generated/weapon_mag7_hy_icosahedron_heavy" + "icon_path" "econ/default_generated/weapon_bizon_hy_blueprint_white_heavy" } - "1770264" + "1707252" { - "icon_path" "econ/default_generated/weapon_mag7_sp_hazard_bravo_light" + "icon_path" "econ/default_generated/weapon_bizon_hy_lizard_skin_light" } - "1770265" + "1707253" { - "icon_path" "econ/default_generated/weapon_mag7_sp_hazard_bravo_medium" + "icon_path" "econ/default_generated/weapon_bizon_hy_lizard_skin_medium" } - "1770266" + "1707254" { - "icon_path" "econ/default_generated/weapon_mag7_sp_hazard_bravo_heavy" + "icon_path" "econ/default_generated/weapon_bizon_hy_lizard_skin_heavy" } - "1770636" + "1707428" { - "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_heaven_light" + "icon_path" "econ/default_generated/weapon_bizon_so_aqua_stmarc_light" } - "1770637" + "1707429" { - "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_heaven_medium" + "icon_path" "econ/default_generated/weapon_bizon_so_aqua_stmarc_medium" } - "1770638" + "1707430" { - "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_heaven_heavy" + "icon_path" "econ/default_generated/weapon_bizon_so_aqua_stmarc_heavy" } - "1771012" + "1707472" { - "icon_path" "econ/default_generated/weapon_mag7_sp_mag7_firebitten_light" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_road_warrior_light" } - "1771013" + "1707473" { - "icon_path" "econ/default_generated/weapon_mag7_sp_mag7_firebitten_medium" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_road_warrior_medium" } - "1771014" + "1707474" { - "icon_path" "econ/default_generated/weapon_mag7_sp_mag7_firebitten_heavy" + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_road_warrior_heavy" } - "1771196" + "1707828" { - "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_redhot_light" + "icon_path" "econ/default_generated/weapon_bizon_gs_bizon_hellraider_light" } - "1771197" + "1707829" { - "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_redhot_medium" + "icon_path" "econ/default_generated/weapon_bizon_gs_bizon_hellraider_medium" } - "1771198" + "1707830" { - "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_redhot_heavy" + "icon_path" "econ/default_generated/weapon_bizon_gs_bizon_hellraider_heavy" } - "1771320" + "1708268" { - "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_green_light" + "icon_path" "econ/default_generated/weapon_bizon_aa_wiring_light" } - "1771321" + "1708269" { - "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_green_medium" + "icon_path" "econ/default_generated/weapon_bizon_aa_wiring_medium" } - "1771322" + "1708270" { - "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_green_heavy" + "icon_path" "econ/default_generated/weapon_bizon_aa_wiring_heavy" } - "1771364" + "1708332" { - "icon_path" "econ/default_generated/weapon_mag7_so_aqua_light" + "icon_path" "econ/default_generated/weapon_bizon_gs_bizon_flasher_light" + } + "1708333" + { + "icon_path" "econ/default_generated/weapon_bizon_gs_bizon_flasher_medium" + } + "1708334" + { + "icon_path" "econ/default_generated/weapon_bizon_gs_bizon_flasher_heavy" + } + "1708436" + { + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_spacecat_light" + } + "1708437" + { + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_spacecat_medium" + } + "1708438" + { + "icon_path" "econ/default_generated/weapon_bizon_cu_bizon_spacecat_heavy" + } + "1769600" + { + "icon_path" "econ/default_generated/weapon_mag7_an_silver_light" + } + "1769601" + { + "icon_path" "econ/default_generated/weapon_mag7_an_silver_medium" + } + "1769602" + { + "icon_path" "econ/default_generated/weapon_mag7_an_silver_heavy" + } + "1769608" + { + "icon_path" "econ/default_generated/weapon_mag7_am_urban_light" + } + "1769609" + { + "icon_path" "econ/default_generated/weapon_mag7_am_urban_medium" + } + "1769610" + { + "icon_path" "econ/default_generated/weapon_mag7_am_urban_heavy" + } + "1769628" + { + "icon_path" "econ/default_generated/weapon_mag7_so_yellow_light" + } + "1769629" + { + "icon_path" "econ/default_generated/weapon_mag7_so_yellow_medium" + } + "1769630" + { + "icon_path" "econ/default_generated/weapon_mag7_so_yellow_heavy" + } + "1769752" + { + "icon_path" "econ/default_generated/weapon_mag7_am_carbon_fiber_light" + } + "1769753" + { + "icon_path" "econ/default_generated/weapon_mag7_am_carbon_fiber_medium" + } + "1769754" + { + "icon_path" "econ/default_generated/weapon_mag7_am_carbon_fiber_heavy" + } + "1769868" + { + "icon_path" "econ/default_generated/weapon_mag7_so_sand_light" + } + "1769869" + { + "icon_path" "econ/default_generated/weapon_mag7_so_sand_medium" + } + "1769870" + { + "icon_path" "econ/default_generated/weapon_mag7_so_sand_heavy" + } + "1769872" + { + "icon_path" "econ/default_generated/weapon_mag7_so_stormfront_light" + } + "1769873" + { + "icon_path" "econ/default_generated/weapon_mag7_so_stormfront_medium" + } + "1769874" + { + "icon_path" "econ/default_generated/weapon_mag7_so_stormfront_heavy" + } + "1770156" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_nukestripe_brown_light" + } + "1770157" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_nukestripe_brown_medium" + } + "1770158" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_nukestripe_brown_heavy" + } + "1770180" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_icosahedron_light" + } + "1770181" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_icosahedron_medium" + } + "1770182" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_icosahedron_heavy" + } + "1770264" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_hazard_bravo_light" + } + "1770265" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_hazard_bravo_medium" + } + "1770266" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_hazard_bravo_heavy" + } + "1770636" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_heaven_light" + } + "1770637" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_heaven_medium" + } + "1770638" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_heaven_heavy" + } + "1770780" + { + "icon_path" "econ/default_generated/weapon_mag7_am_chainmail_light" + } + "1770781" + { + "icon_path" "econ/default_generated/weapon_mag7_am_chainmail_medium" + } + "1770782" + { + "icon_path" "econ/default_generated/weapon_mag7_am_chainmail_heavy" + } + "1771012" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_mag7_firebitten_light" + } + "1771013" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_mag7_firebitten_medium" + } + "1771014" + { + "icon_path" "econ/default_generated/weapon_mag7_sp_mag7_firebitten_heavy" + } + "1771196" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_redhot_light" + } + "1771197" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_redhot_medium" + } + "1771198" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_redhot_heavy" + } + "1771320" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_green_light" + } + "1771321" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_green_medium" + } + "1771322" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_green_heavy" + } + "1771364" + { + "icon_path" "econ/default_generated/weapon_mag7_so_aqua_light" } "1771365" { @@ -3912,6 +7955,186 @@ { "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_myrcene_heavy" } + "1771612" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_praetorian_light" + } + "1771613" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_praetorian_medium" + } + "1771614" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_praetorian_heavy" + } + "1771904" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_tribal_light" + } + "1771905" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_tribal_medium" + } + "1771906" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_tribal_heavy" + } + "1772004" + { + "icon_path" "econ/default_generated/weapon_mag7_am_mag7_malform_light" + } + "1772005" + { + "icon_path" "econ/default_generated/weapon_mag7_am_mag7_malform_medium" + } + "1772006" + { + "icon_path" "econ/default_generated/weapon_mag7_am_mag7_malform_heavy" + } + "1772136" + { + "icon_path" "econ/default_generated/weapon_mag7_am_mag7_caustic_light" + } + "1772137" + { + "icon_path" "econ/default_generated/weapon_mag7_am_mag7_caustic_medium" + } + "1772138" + { + "icon_path" "econ/default_generated/weapon_mag7_am_mag7_caustic_heavy" + } + "1772284" + { + "icon_path" "econ/default_generated/weapon_mag7_aq_mag7_swag7_light" + } + "1772285" + { + "icon_path" "econ/default_generated/weapon_mag7_aq_mag7_swag7_medium" + } + "1772286" + { + "icon_path" "econ/default_generated/weapon_mag7_aq_mag7_swag7_heavy" + } + "1772420" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_glass_light" + } + "1772421" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_glass_medium" + } + "1772422" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_glass_heavy" + } + "1772488" + { + "icon_path" "econ/default_generated/weapon_mag7_aq_steel_inferno_light" + } + "1772489" + { + "icon_path" "econ/default_generated/weapon_mag7_aq_steel_inferno_medium" + } + "1772490" + { + "icon_path" "econ/default_generated/weapon_mag7_aq_steel_inferno_heavy" + } + "1772620" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_nuclear_hotorange_light" + } + "1772621" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_nuclear_hotorange_medium" + } + "1772622" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_nuclear_hotorange_heavy" + } + "1772760" + { + "icon_path" "econ/default_generated/weapon_mag7_am_navy_shine_light" + } + "1772761" + { + "icon_path" "econ/default_generated/weapon_mag7_am_navy_shine_medium" + } + "1772762" + { + "icon_path" "econ/default_generated/weapon_mag7_am_navy_shine_heavy" + } + "1773108" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_popdog_light" + } + "1773109" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_popdog_medium" + } + "1773110" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_popdog_heavy" + } + "1773264" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_justice_light" + } + "1773265" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_justice_medium" + } + "1773266" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_justice_heavy" + } + "1773316" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_monster_call_light" + } + "1773317" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_monster_call_medium" + } + "1773318" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_monster_call_heavy" + } + "1773760" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_pearl_light" + } + "1773761" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_pearl_medium" + } + "1773762" + { + "icon_path" "econ/default_generated/weapon_mag7_hy_geometric_steps_pearl_heavy" + } + "1773828" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_bismuth_light" + } + "1773829" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_bismuth_medium" + } + "1773830" + { + "icon_path" "econ/default_generated/weapon_mag7_gs_mag7_bismuth_heavy" + } + "1774000" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_predictor_light" + } + "1774001" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_predictor_medium" + } + "1774002" + { + "icon_path" "econ/default_generated/weapon_mag7_cu_mag7_predictor_heavy" + } "1835120" { "icon_path" "econ/default_generated/weapon_negev_an_navy_light" @@ -4044,6 +8267,138 @@ { "icon_path" "econ/default_generated/weapon_negev_cu_negev_impact_heavy" } + "1837448" + { + "icon_path" "econ/default_generated/weapon_negev_hy_negev_dazzle_light" + } + "1837449" + { + "icon_path" "econ/default_generated/weapon_negev_hy_negev_dazzle_medium" + } + "1837450" + { + "icon_path" "econ/default_generated/weapon_negev_hy_negev_dazzle_heavy" + } + "1837800" + { + "icon_path" "econ/default_generated/weapon_negev_sp_negev_lionfish_light" + } + "1837801" + { + "icon_path" "econ/default_generated/weapon_negev_sp_negev_lionfish_medium" + } + "1837802" + { + "icon_path" "econ/default_generated/weapon_negev_sp_negev_lionfish_heavy" + } + "1838060" + { + "icon_path" "econ/default_generated/weapon_negev_gs_negev_thor_light" + } + "1838061" + { + "icon_path" "econ/default_generated/weapon_negev_gs_negev_thor_medium" + } + "1838062" + { + "icon_path" "econ/default_generated/weapon_negev_gs_negev_thor_heavy" + } + "1838140" + { + "icon_path" "econ/default_generated/weapon_negev_hy_ducts_yellow_light" + } + "1838141" + { + "icon_path" "econ/default_generated/weapon_negev_hy_ducts_yellow_medium" + } + "1838142" + { + "icon_path" "econ/default_generated/weapon_negev_hy_ducts_yellow_heavy" + } + "1838688" + { + "icon_path" "econ/default_generated/weapon_negev_hy_veneto_tan_light" + } + "1838689" + { + "icon_path" "econ/default_generated/weapon_negev_hy_veneto_tan_medium" + } + "1838690" + { + "icon_path" "econ/default_generated/weapon_negev_hy_veneto_tan_heavy" + } + "1838808" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_prototype_light" + } + "1838809" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_prototype_medium" + } + "1838810" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_prototype_heavy" + } + "1838840" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_ultralight_light" + } + "1838841" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_ultralight_medium" + } + "1838842" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_ultralight_heavy" + } + "1839056" + { + "icon_path" "econ/default_generated/weapon_negev_hy_phoenix_tags_red_light" + } + "1839057" + { + "icon_path" "econ/default_generated/weapon_negev_hy_phoenix_tags_red_medium" + } + "1839058" + { + "icon_path" "econ/default_generated/weapon_negev_hy_phoenix_tags_red_heavy" + } + "1839180" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_devtexture_light" + } + "1839181" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_devtexture_medium" + } + "1839182" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_devtexture_heavy" + } + "1839328" + { + "icon_path" "econ/default_generated/weapon_negev_hy_vertigospray_light" + } + "1839329" + { + "icon_path" "econ/default_generated/weapon_negev_hy_vertigospray_medium" + } + "1839330" + { + "icon_path" "econ/default_generated/weapon_negev_hy_vertigospray_heavy" + } + "1839616" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_clear_sky_light" + } + "1839617" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_clear_sky_medium" + } + "1839618" + { + "icon_path" "econ/default_generated/weapon_negev_cu_negev_clear_sky_heavy" + } "1900564" { "icon_path" "econ/default_generated/weapon_sawedoff_hy_ddpat_light" @@ -4248,6 +8603,174 @@ { "icon_path" "econ/default_generated/weapon_sawedoff_gs_sawedoff_necromancer_heavy" } + "1902752" + { + "icon_path" "econ/default_generated/weapon_sawedoff_gs_sawedoff_fubar_light" + } + "1902753" + { + "icon_path" "econ/default_generated/weapon_sawedoff_gs_sawedoff_fubar_medium" + } + "1902754" + { + "icon_path" "econ/default_generated/weapon_sawedoff_gs_sawedoff_fubar_heavy" + } + "1902928" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawed_off_lime_light" + } + "1902929" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawed_off_lime_medium" + } + "1902930" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawed_off_lime_heavy" + } + "1903096" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_wp_sawedoff_light" + } + "1903097" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_wp_sawedoff_medium" + } + "1903098" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_wp_sawedoff_heavy" + } + "1903164" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aq_sawedoff_zander2_light" + } + "1903165" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aq_sawedoff_zander2_medium" + } + "1903166" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aq_sawedoff_zander2_heavy" + } + "1903236" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aq_sawed-off_flower_light" + } + "1903237" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aq_sawed-off_flower_medium" + } + "1903238" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aq_sawed-off_flower_heavy" + } + "1903424" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_devourer_light" + } + "1903425" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_devourer_medium" + } + "1903426" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_devourer_heavy" + } + "1903732" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aa_vertigo_red_light" + } + "1903733" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aa_vertigo_red_medium" + } + "1903734" + { + "icon_path" "econ/default_generated/weapon_sawedoff_aa_vertigo_red_heavy" + } + "1903800" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_black_sand_light" + } + "1903801" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_black_sand_medium" + } + "1903802" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_black_sand_heavy" + } + "1904024" + { + "icon_path" "econ/default_generated/weapon_sawedoff_sp_palm_green_light" + } + "1904025" + { + "icon_path" "econ/default_generated/weapon_sawedoff_sp_palm_green_medium" + } + "1904026" + { + "icon_path" "econ/default_generated/weapon_sawedoff_sp_palm_green_heavy" + } + "1904064" + { + "icon_path" "econ/default_generated/weapon_sawedoff_hy_desert_bloom_light" + } + "1904065" + { + "icon_path" "econ/default_generated/weapon_sawedoff_hy_desert_bloom_medium" + } + "1904066" + { + "icon_path" "econ/default_generated/weapon_sawedoff_hy_desert_bloom_heavy" + } + "1904356" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_apocalypto_light" + } + "1904357" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_apocalypto_medium" + } + "1904358" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_apocalypto_heavy" + } + "1904600" + { + "icon_path" "econ/default_generated/weapon_sawedoff_hy_tigers_tan_light" + } + "1904601" + { + "icon_path" "econ/default_generated/weapon_sawedoff_hy_tigers_tan_medium" + } + "1904602" + { + "icon_path" "econ/default_generated/weapon_sawedoff_hy_tigers_tan_heavy" + } + "1905104" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_ouija_light" + } + "1905105" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_ouija_medium" + } + "1905106" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_ouija_heavy" + } + "1905164" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_kisslove_light" + } + "1905165" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_kisslove_medium" + } + "1905166" + { + "icon_path" "econ/default_generated/weapon_sawedoff_cu_sawedoff_kisslove_heavy" + } "1966088" { "icon_path" "econ/default_generated/weapon_tec9_so_olive_light" @@ -4464,209 +8987,569 @@ { "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_avalanche_heavy" } - "2097236" + "1968236" { - "icon_path" "econ/default_generated/weapon_hkp2000_hy_granite_light" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_jambiya_light" } - "2097237" + "1968237" { - "icon_path" "econ/default_generated/weapon_hkp2000_hy_granite_medium" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_jambiya_medium" } - "2097238" + "1968238" { - "icon_path" "econ/default_generated/weapon_hkp2000_hy_granite_heavy" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_jambiya_heavy" } - "2097280" + "1968300" { - "icon_path" "econ/default_generated/weapon_hkp2000_an_silver_light" + "icon_path" "econ/default_generated/weapon_tec9_am_tec9_redblast_light" } - "2097281" + "1968301" { - "icon_path" "econ/default_generated/weapon_hkp2000_an_silver_medium" + "icon_path" "econ/default_generated/weapon_tec9_am_tec9_redblast_medium" } - "2097282" + "1968302" { - "icon_path" "econ/default_generated/weapon_hkp2000_an_silver_heavy" + "icon_path" "econ/default_generated/weapon_tec9_am_tec9_redblast_heavy" } - "2097436" + "1968476" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_light" + "icon_path" "econ/default_generated/weapon_tec9_am_tec_9_sea_salt_light" } - "2097437" + "1968477" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_medium" + "icon_path" "econ/default_generated/weapon_tec9_am_tec_9_sea_salt_medium" } - "2097438" + "1968478" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_heavy" + "icon_path" "econ/default_generated/weapon_tec9_am_tec_9_sea_salt_heavy" } - "2097532" + "1968536" { - "icon_path" "econ/default_generated/weapon_hkp2000_so_grassland_light" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_supercharged_light" } - "2097533" + "1968537" { - "icon_path" "econ/default_generated/weapon_hkp2000_so_grassland_medium" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_supercharged_medium" } - "2097534" + "1968538" { - "icon_path" "econ/default_generated/weapon_hkp2000_so_grassland_heavy" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_supercharged_heavy" } - "2097568" + "1968764" { - "icon_path" "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_light" + "icon_path" "econ/default_generated/weapon_tec9_aq_tec9_chalk_pattern_light" } - "2097569" + "1968765" { - "icon_path" "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_medium" + "icon_path" "econ/default_generated/weapon_tec9_aq_tec9_chalk_pattern_medium" } - "2097570" + "1968766" { - "icon_path" "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_heavy" + "icon_path" "econ/default_generated/weapon_tec9_aq_tec9_chalk_pattern_heavy" } - "2097888" + "1968816" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_favela_p2000_light" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_cracked_opal_light" } - "2097889" + "1968817" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_favela_p2000_medium" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_cracked_opal_medium" } - "2097890" + "1968818" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_favela_p2000_heavy" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_cracked_opal_heavy" } - "2097996" + "1968968" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_light" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_snake_light" } - "2097997" + "1968969" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_medium" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_snake_medium" } - "2097998" + "1968970" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_heavy" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_snake_heavy" } - "2098136" + "1969012" { - "icon_path" "econ/default_generated/weapon_hkp2000_aa_fade_metallic_light" + "icon_path" "econ/default_generated/weapon_tec9_sp_leaf_orange_light" } - "2098137" + "1969013" { - "icon_path" "econ/default_generated/weapon_hkp2000_aa_fade_metallic_medium" + "icon_path" "econ/default_generated/weapon_tec9_sp_leaf_orange_medium" } - "2098138" + "1969014" { - "icon_path" "econ/default_generated/weapon_hkp2000_aa_fade_metallic_heavy" + "icon_path" "econ/default_generated/weapon_tec9_sp_leaf_orange_heavy" } - "2098252" + "1969032" { - "icon_path" "econ/default_generated/weapon_hkp2000_hy_poly_camo_light" + "icon_path" "econ/default_generated/weapon_tec9_hy_murano_orange_light" } - "2098253" + "1969033" { - "icon_path" "econ/default_generated/weapon_hkp2000_hy_poly_camo_medium" + "icon_path" "econ/default_generated/weapon_tec9_hy_murano_orange_medium" } - "2098254" + "1969034" { - "icon_path" "econ/default_generated/weapon_hkp2000_hy_poly_camo_heavy" + "icon_path" "econ/default_generated/weapon_tec9_hy_murano_orange_heavy" } - "2098460" + "1969244" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_chainmail_light" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_envoy_light" } - "2098461" + "1969245" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_chainmail_medium" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_envoy_medium" } - "2098462" + "1969246" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_chainmail_heavy" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_envoy_heavy" } - "2098504" + "1969260" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_light" + "icon_path" "econ/default_generated/weapon_tec9_hy_mesh_safetyorange_light" } - "2098505" + "1969261" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_medium" + "icon_path" "econ/default_generated/weapon_tec9_hy_mesh_safetyorange_medium" } - "2098506" + "1969262" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_heavy" + "icon_path" "econ/default_generated/weapon_tec9_hy_mesh_safetyorange_heavy" } - "2098536" + "1969344" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_light" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_fubar_light" } - "2098537" + "1969345" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_medium" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_fubar_medium" } - "2098538" + "1969346" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_heavy" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_fubar_heavy" } - "2098580" + "1969436" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_light" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_bamboo_light" } - "2098581" + "1969437" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_medium" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_bamboo_medium" } - "2098582" + "1969438" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_heavy" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_bamboo_heavy" } - "2098708" + "1969636" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_light" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_decimator_light" } - "2098709" + "1969637" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_medium" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_decimator_medium" } - "2098710" + "1969638" { - "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_heavy" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_decimator_heavy" } - "2098924" + "1969700" { - "icon_path" "econ/default_generated/weapon_hkp2000_sp_labyrinth2_light" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_flash_light" } - "2098925" + "1969701" { - "icon_path" "econ/default_generated/weapon_hkp2000_sp_labyrinth2_medium" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_flash_medium" } - "2098926" + "1969702" { - "icon_path" "econ/default_generated/weapon_hkp2000_sp_labyrinth2_heavy" + "icon_path" "econ/default_generated/weapon_tec9_cu_tec9_flash_heavy" } - "2099092" + "1969936" { - "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_boom_light" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_guerilla_light" } - "2099093" + "1969937" { - "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_boom_medium" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_guerilla_medium" } - "2099094" + "1969938" { - "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_boom_heavy" + "icon_path" "econ/default_generated/weapon_tec9_gs_tec9_guerilla_heavy" } - "2099212" + "1970120" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_light" + "icon_path" "econ/default_generated/weapon_tec9_hy_phoenix_tags_lilac_light" } - "2099213" + "1970121" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_medium" + "icon_path" "econ/default_generated/weapon_tec9_hy_phoenix_tags_lilac_medium" } - "2099214" + "1970122" { - "icon_path" "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_heavy" + "icon_path" "econ/default_generated/weapon_tec9_hy_phoenix_tags_lilac_heavy" + } + "1970176" + { + "icon_path" "econ/default_generated/weapon_tec9_hy_ancient_tiles_peach_light" + } + "1970177" + { + "icon_path" "econ/default_generated/weapon_tec9_hy_ancient_tiles_peach_medium" + } + "1970178" + { + "icon_path" "econ/default_generated/weapon_tec9_hy_ancient_tiles_peach_heavy" + } + "2097236" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_granite_light" + } + "2097237" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_granite_medium" + } + "2097238" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_granite_heavy" + } + "2097280" + { + "icon_path" "econ/default_generated/weapon_hkp2000_an_silver_light" + } + "2097281" + { + "icon_path" "econ/default_generated/weapon_hkp2000_an_silver_medium" + } + "2097282" + { + "icon_path" "econ/default_generated/weapon_hkp2000_an_silver_heavy" + } + "2097436" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_light" + } + "2097437" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_medium" + } + "2097438" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_heavy" + } + "2097532" + { + "icon_path" "econ/default_generated/weapon_hkp2000_so_grassland_light" + } + "2097533" + { + "icon_path" "econ/default_generated/weapon_hkp2000_so_grassland_medium" + } + "2097534" + { + "icon_path" "econ/default_generated/weapon_hkp2000_so_grassland_heavy" + } + "2097568" + { + "icon_path" "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_light" + } + "2097569" + { + "icon_path" "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_medium" + } + "2097570" + { + "icon_path" "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_heavy" + } + "2097888" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_favela_p2000_light" + } + "2097889" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_favela_p2000_medium" + } + "2097890" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_favela_p2000_heavy" + } + "2097996" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_light" + } + "2097997" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_medium" + } + "2097998" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_heavy" + } + "2098136" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aa_fade_metallic_light" + } + "2098137" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aa_fade_metallic_medium" + } + "2098138" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aa_fade_metallic_heavy" + } + "2098252" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_poly_camo_light" + } + "2098253" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_poly_camo_medium" + } + "2098254" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_poly_camo_heavy" + } + "2098460" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_chainmail_light" + } + "2098461" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_chainmail_medium" + } + "2098462" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_chainmail_heavy" + } + "2098504" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_light" + } + "2098505" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_medium" + } + "2098506" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_heavy" + } + "2098536" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_light" + } + "2098537" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_medium" + } + "2098538" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_heavy" + } + "2098580" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_light" + } + "2098581" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_medium" + } + "2098582" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_heavy" + } + "2098708" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_light" + } + "2098709" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_medium" + } + "2098710" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_heavy" + } + "2098924" + { + "icon_path" "econ/default_generated/weapon_hkp2000_sp_labyrinth2_light" + } + "2098925" + { + "icon_path" "econ/default_generated/weapon_hkp2000_sp_labyrinth2_medium" + } + "2098926" + { + "icon_path" "econ/default_generated/weapon_hkp2000_sp_labyrinth2_heavy" + } + "2099092" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_boom_light" + } + "2099093" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_boom_medium" + } + "2099094" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_boom_heavy" + } + "2099212" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_light" + } + "2099213" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_medium" + } + "2099214" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_heavy" + } + "2099352" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_p2000_oceani_light" + } + "2099353" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_p2000_oceani_medium" + } + "2099354" + { + "icon_path" "econ/default_generated/weapon_hkp2000_hy_p2000_oceani_heavy" + } + "2099516" + { + "icon_path" "econ/default_generated/weapon_hkp2000_gs_p2000_imperial_dragon_light" + } + "2099517" + { + "icon_path" "econ/default_generated/weapon_hkp2000_gs_p2000_imperial_dragon_medium" + } + "2099518" + { + "icon_path" "econ/default_generated/weapon_hkp2000_gs_p2000_imperial_dragon_heavy" + } + "2099692" + { + "icon_path" "econ/default_generated/weapon_hkp2000_gs_p2000-sport_light" + } + "2099693" + { + "icon_path" "econ/default_generated/weapon_hkp2000_gs_p2000-sport_medium" + } + "2099694" + { + "icon_path" "econ/default_generated/weapon_hkp2000_gs_p2000-sport_heavy" + } + "2099820" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_hunter_light" + } + "2099821" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_hunter_medium" + } + "2099822" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_hunter_heavy" + } + "2099952" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_urban_hazard_light" + } + "2099953" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_urban_hazard_medium" + } + "2099954" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_urban_hazard_heavy" + } + "2100728" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_obsidian_light" + } + "2100729" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_obsidian_medium" + } + "2100730" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2000_obsidian_heavy" + } + "2100956" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_acid_clover_light" + } + "2100957" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_acid_clover_medium" + } + "2100958" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_acid_clover_heavy" + } + "2100992" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_lost_world_light" + } + "2100993" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_lost_world_medium" + } + "2100994" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aq_p2000_lost_world_heavy" + } + "2101140" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_numbers_red_blue_light" + } + "2101141" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_numbers_red_blue_medium" + } + "2101142" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_numbers_red_blue_heavy" + } + "2101228" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_black_panther_light" + } + "2101229" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_black_panther_medium" + } + "2101230" + { + "icon_path" "econ/default_generated/weapon_hkp2000_am_black_panther_heavy" + } + "2101372" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aa_spacerace_orange_light" + } + "2101373" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aa_spacerace_orange_medium" + } + "2101374" + { + "icon_path" "econ/default_generated/weapon_hkp2000_aa_spacerace_orange_heavy" + } + "2101704" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2k_flying_dream_light" + } + "2101705" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2k_flying_dream_medium" + } + "2101706" + { + "icon_path" "econ/default_generated/weapon_hkp2000_cu_p2k_flying_dream_heavy" } "2162708" { @@ -4740,6 +9623,18 @@ { "icon_path" "econ/default_generated/weapon_mp7_sp_tape_orange_heavy" } + "2163388" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_dapple_light" + } + "2163389" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_dapple_medium" + } + "2163390" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_dapple_heavy" + } "2163524" { "icon_path" "econ/default_generated/weapon_mp7_so_olive_bravo_light" @@ -4860,6 +9755,186 @@ { "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_classified_heavy" } + "2164832" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_mp7_impire_light" + } + "2164833" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_mp7_impire_medium" + } + "2164834" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_mp7_impire_heavy" + } + "2165196" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_final_pooldeadv2_light" + } + "2165197" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_final_pooldeadv2_medium" + } + "2165198" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_final_pooldeadv2_heavy" + } + "2165284" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_mp7_tribal_yellow_light" + } + "2165285" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_mp7_tribal_yellow_medium" + } + "2165286" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_mp7_tribal_yellow_heavy" + } + "2165472" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_mp7_bloodsport_light" + } + "2165473" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_mp7_bloodsport_medium" + } + "2165474" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_mp7_bloodsport_heavy" + } + "2165564" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_powercore_mp7_light" + } + "2165565" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_powercore_mp7_medium" + } + "2165566" + { + "icon_path" "econ/default_generated/weapon_mp7_gs_powercore_mp7_heavy" + } + "2165600" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_bud_green_light" + } + "2165601" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_bud_green_medium" + } + "2165602" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_bud_green_heavy" + } + "2165696" + { + "icon_path" "econ/default_generated/weapon_mp7_aa_fade_mp7_light" + } + "2165697" + { + "icon_path" "econ/default_generated/weapon_mp7_aa_fade_mp7_medium" + } + "2165698" + { + "icon_path" "econ/default_generated/weapon_mp7_aa_fade_mp7_heavy" + } + "2165816" + { + "icon_path" "econ/default_generated/weapon_mp7_am_circuitboard_green_light" + } + "2165817" + { + "icon_path" "econ/default_generated/weapon_mp7_am_circuitboard_green_medium" + } + "2165818" + { + "icon_path" "econ/default_generated/weapon_mp7_am_circuitboard_green_heavy" + } + "2166076" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_racketeer_light" + } + "2166077" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_racketeer_medium" + } + "2166078" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_racketeer_heavy" + } + "2166260" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_replica_light" + } + "2166261" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_replica_medium" + } + "2166262" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_replica_heavy" + } + "2166428" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_zebracam_red_light" + } + "2166429" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_zebracam_red_medium" + } + "2166430" + { + "icon_path" "econ/default_generated/weapon_mp7_sp_zebracam_red_heavy" + } + "2166716" + { + "icon_path" "econ/default_generated/weapon_mp7_am_heist_plans_yellow_light" + } + "2166717" + { + "icon_path" "econ/default_generated/weapon_mp7_am_heist_plans_yellow_medium" + } + "2166718" + { + "icon_path" "econ/default_generated/weapon_mp7_am_heist_plans_yellow_heavy" + } + "2166780" + { + "icon_path" "econ/default_generated/weapon_mp7_hy_drywood_green_light" + } + "2166781" + { + "icon_path" "econ/default_generated/weapon_mp7_hy_drywood_green_medium" + } + "2166782" + { + "icon_path" "econ/default_generated/weapon_mp7_hy_drywood_green_heavy" + } + "2167072" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_khaki_light" + } + "2167073" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_khaki_medium" + } + "2167074" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_khaki_heavy" + } + "2167220" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_fear_light" + } + "2167221" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_fear_medium" + } + "2167222" + { + "icon_path" "econ/default_generated/weapon_mp7_cu_mp7_fear_heavy" + } "2228356" { "icon_path" "econ/default_generated/weapon_mp9_an_red_light" @@ -4956,6 +10031,18 @@ { "icon_path" "econ/default_generated/weapon_mp9_am_thorny_rose_mp9_heavy" } + "2229416" + { + "icon_path" "econ/default_generated/weapon_mp9_am_army_shine_light" + } + "2229417" + { + "icon_path" "econ/default_generated/weapon_mp9_am_army_shine_medium" + } + "2229418" + { + "icon_path" "econ/default_generated/weapon_mp9_am_army_shine_heavy" + } "2229540" { "icon_path" "econ/default_generated/weapon_mp9_am_metal_inlay_light" @@ -5040,6 +10127,198 @@ { "icon_path" "econ/default_generated/weapon_mp9_am_mp9_nitrogen_heavy" } + "2230420" + { + "icon_path" "econ/default_generated/weapon_mp9_am_mp9_bioleak_light" + } + "2230421" + { + "icon_path" "econ/default_generated/weapon_mp9_am_mp9_bioleak_medium" + } + "2230422" + { + "icon_path" "econ/default_generated/weapon_mp9_am_mp9_bioleak_heavy" + } + "2230660" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_narcis_light" + } + "2230661" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_narcis_medium" + } + "2230662" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_narcis_heavy" + } + "2230744" + { + "icon_path" "econ/default_generated/weapon_mp9_aa_hide-mp9_light" + } + "2230745" + { + "icon_path" "econ/default_generated/weapon_mp9_aa_hide-mp9_medium" + } + "2230746" + { + "icon_path" "econ/default_generated/weapon_mp9_aa_hide-mp9_heavy" + } + "2230940" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_goo_light" + } + "2230941" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_goo_medium" + } + "2230942" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_goo_heavy" + } + "2231012" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_black_sand_light" + } + "2231013" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_black_sand_medium" + } + "2231014" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_black_sand_heavy" + } + "2231084" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_vein_light" + } + "2231085" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_vein_medium" + } + "2231086" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_vein_heavy" + } + "2231160" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_island_floral_light" + } + "2231161" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_island_floral_medium" + } + "2231162" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_island_floral_heavy" + } + "2231244" + { + "icon_path" "econ/default_generated/weapon_mp9_hy_splatter3_light" + } + "2231245" + { + "icon_path" "econ/default_generated/weapon_mp9_hy_splatter3_medium" + } + "2231246" + { + "icon_path" "econ/default_generated/weapon_mp9_hy_splatter3_heavy" + } + "2231440" + { + "icon_path" "econ/default_generated/weapon_mp9_gs_mp9_colony01_light" + } + "2231441" + { + "icon_path" "econ/default_generated/weapon_mp9_gs_mp9_colony01_medium" + } + "2231442" + { + "icon_path" "econ/default_generated/weapon_mp9_gs_mp9_colony01_heavy" + } + "2231504" + { + "icon_path" "econ/default_generated/weapon_mp9_am_mirage_flowers_metalic_light" + } + "2231505" + { + "icon_path" "econ/default_generated/weapon_mp9_am_mirage_flowers_metalic_medium" + } + "2231506" + { + "icon_path" "econ/default_generated/weapon_mp9_am_mirage_flowers_metalic_heavy" + } + "2231692" + { + "icon_path" "econ/default_generated/weapon_mp9_am_stained_glass_light" + } + "2231693" + { + "icon_path" "econ/default_generated/weapon_mp9_am_stained_glass_medium" + } + "2231694" + { + "icon_path" "econ/default_generated/weapon_mp9_am_stained_glass_heavy" + } + "2231864" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_hydra_light" + } + "2231865" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_hydra_medium" + } + "2231866" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_hydra_heavy" + } + "2231948" + { + "icon_path" "econ/default_generated/weapon_mp9_sp_moro_carving_yellow_light" + } + "2231949" + { + "icon_path" "econ/default_generated/weapon_mp9_sp_moro_carving_yellow_medium" + } + "2231950" + { + "icon_path" "econ/default_generated/weapon_mp9_sp_moro_carving_yellow_heavy" + } + "2232372" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_food_chain_light" + } + "2232373" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_food_chain_medium" + } + "2232374" + { + "icon_path" "econ/default_generated/weapon_mp9_cu_mp9_food_chain_heavy" + } + "2232600" + { + "icon_path" "econ/default_generated/weapon_mp9_aa_mp9_fuji_pink_light" + } + "2232601" + { + "icon_path" "econ/default_generated/weapon_mp9_aa_mp9_fuji_pink_medium" + } + "2232602" + { + "icon_path" "econ/default_generated/weapon_mp9_aa_mp9_fuji_pink_heavy" + } + "2232760" + { + "icon_path" "econ/default_generated/weapon_mp9_gs_mp9_starlight_light" + } + "2232761" + { + "icon_path" "econ/default_generated/weapon_mp9_gs_mp9_starlight_medium" + } + "2232762" + { + "icon_path" "econ/default_generated/weapon_mp9_gs_mp9_starlight_heavy" + } "2293772" { "icon_path" "econ/default_generated/weapon_nova_so_red_light" @@ -5184,6 +10463,18 @@ { "icon_path" "econ/default_generated/weapon_nova_sp_camo_wood_blue_heavy" } + "2294752" + { + "icon_path" "econ/default_generated/weapon_nova_am_crystallized_light" + } + "2294753" + { + "icon_path" "econ/default_generated/weapon_nova_am_crystallized_medium" + } + "2294754" + { + "icon_path" "econ/default_generated/weapon_nova_am_crystallized_heavy" + } "2294812" { "icon_path" "econ/default_generated/weapon_nova_cu_skull_nova_light" @@ -5220,6 +10511,18 @@ { "icon_path" "econ/default_generated/weapon_nova_so_green_heavy" } + "2294952" + { + "icon_path" "econ/default_generated/weapon_nova_am_army_shine_light" + } + "2294953" + { + "icon_path" "econ/default_generated/weapon_nova_am_army_shine_medium" + } + "2294954" + { + "icon_path" "econ/default_generated/weapon_nova_am_army_shine_heavy" + } "2294956" { "icon_path" "econ/default_generated/weapon_nova_am_oval_hex_light" @@ -5232,6 +10535,18 @@ { "icon_path" "econ/default_generated/weapon_nova_am_oval_hex_heavy" } + "2295052" + { + "icon_path" "econ/default_generated/weapon_nova_aq_steel_light" + } + "2295053" + { + "icon_path" "econ/default_generated/weapon_nova_aq_steel_medium" + } + "2295054" + { + "icon_path" "econ/default_generated/weapon_nova_aq_steel_heavy" + } "2295184" { "icon_path" "econ/default_generated/weapon_nova_cu_nova_koi_light" @@ -5268,33 +10583,189 @@ { "icon_path" "econ/default_generated/weapon_nova_cu_nova_ranger_heavy" } - "2359356" + "2295908" { - "icon_path" "econ/default_generated/weapon_p250_hy_gelpen_light" + "icon_path" "econ/default_generated/weapon_nova_cu_nova_hyperbeast_light" } - "2359357" + "2295909" { - "icon_path" "econ/default_generated/weapon_p250_hy_gelpen_medium" + "icon_path" "econ/default_generated/weapon_nova_cu_nova_hyperbeast_medium" } - "2359358" + "2295910" { - "icon_path" "econ/default_generated/weapon_p250_hy_gelpen_heavy" + "icon_path" "econ/default_generated/weapon_nova_cu_nova_hyperbeast_heavy" } - "2359404" + "2296120" { - "icon_path" "econ/default_generated/weapon_p250_sp_tape_light" + "icon_path" "econ/default_generated/weapon_nova_aq_nova_sci_fi_light" } - "2359405" + "2296121" { - "icon_path" "econ/default_generated/weapon_p250_sp_tape_medium" + "icon_path" "econ/default_generated/weapon_nova_aq_nova_sci_fi_medium" } - "2359406" + "2296122" { - "icon_path" "econ/default_generated/weapon_p250_sp_tape_heavy" + "icon_path" "econ/default_generated/weapon_nova_aq_nova_sci_fi_heavy" } - "2359432" + "2296296" { - "icon_path" "econ/default_generated/weapon_p250_am_urban_light" + "icon_path" "econ/default_generated/weapon_nova_am_nova_sand_light" + } + "2296297" + { + "icon_path" "econ/default_generated/weapon_nova_am_nova_sand_medium" + } + "2296298" + { + "icon_path" "econ/default_generated/weapon_nova_am_nova_sand_heavy" + } + "2296556" + { + "icon_path" "econ/default_generated/weapon_nova_gs_nova_anchorite_light" + } + "2296557" + { + "icon_path" "econ/default_generated/weapon_nova_gs_nova_anchorite_medium" + } + "2296558" + { + "icon_path" "econ/default_generated/weapon_nova_gs_nova_anchorite_heavy" + } + "2296624" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_toy_soldier_light" + } + "2296625" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_toy_soldier_medium" + } + "2296626" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_toy_soldier_heavy" + } + "2296744" + { + "icon_path" "econ/default_generated/weapon_nova_am_veneto2_light" + } + "2296745" + { + "icon_path" "econ/default_generated/weapon_nova_am_veneto2_medium" + } + "2296746" + { + "icon_path" "econ/default_generated/weapon_nova_am_veneto2_heavy" + } + "2296900" + { + "icon_path" "econ/default_generated/weapon_nova_hy_ducts_grey_light" + } + "2296901" + { + "icon_path" "econ/default_generated/weapon_nova_hy_ducts_grey_medium" + } + "2296902" + { + "icon_path" "econ/default_generated/weapon_nova_hy_ducts_grey_heavy" + } + "2296996" + { + "icon_path" "econ/default_generated/weapon_nova_gs_nova_hunter_brute_light" + } + "2296997" + { + "icon_path" "econ/default_generated/weapon_nova_gs_nova_hunter_brute_medium" + } + "2296998" + { + "icon_path" "econ/default_generated/weapon_nova_gs_nova_hunter_brute_heavy" + } + "2297320" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_featherswing_light" + } + "2297321" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_featherswing_medium" + } + "2297322" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_featherswing_heavy" + } + "2297476" + { + "icon_path" "econ/default_generated/weapon_nova_hy_torn_camo_paints_light" + } + "2297477" + { + "icon_path" "econ/default_generated/weapon_nova_hy_torn_camo_paints_medium" + } + "2297478" + { + "icon_path" "econ/default_generated/weapon_nova_hy_torn_camo_paints_heavy" + } + "2297708" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_polymer_light" + } + "2297709" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_polymer_medium" + } + "2297710" + { + "icon_path" "econ/default_generated/weapon_nova_cu_nova_polymer_heavy" + } + "2297964" + { + "icon_path" "econ/default_generated/weapon_nova_sp_nova_wind_dispersal_light" + } + "2297965" + { + "icon_path" "econ/default_generated/weapon_nova_sp_nova_wind_dispersal_medium" + } + "2297966" + { + "icon_path" "econ/default_generated/weapon_nova_sp_nova_wind_dispersal_heavy" + } + "2298068" + { + "icon_path" "econ/default_generated/weapon_nova_hy_vertigoillusion_yellow_light" + } + "2298069" + { + "icon_path" "econ/default_generated/weapon_nova_hy_vertigoillusion_yellow_medium" + } + "2298070" + { + "icon_path" "econ/default_generated/weapon_nova_hy_vertigoillusion_yellow_heavy" + } + "2359356" + { + "icon_path" "econ/default_generated/weapon_p250_hy_gelpen_light" + } + "2359357" + { + "icon_path" "econ/default_generated/weapon_p250_hy_gelpen_medium" + } + "2359358" + { + "icon_path" "econ/default_generated/weapon_p250_hy_gelpen_heavy" + } + "2359404" + { + "icon_path" "econ/default_generated/weapon_p250_sp_tape_light" + } + "2359405" + { + "icon_path" "econ/default_generated/weapon_p250_sp_tape_medium" + } + "2359406" + { + "icon_path" "econ/default_generated/weapon_p250_sp_tape_heavy" + } + "2359432" + { + "icon_path" "econ/default_generated/weapon_p250_am_urban_light" } "2359433" { @@ -5316,6 +10787,18 @@ { "icon_path" "econ/default_generated/weapon_p250_hy_forest_boreal_heavy" } + "2359608" + { + "icon_path" "econ/default_generated/weapon_p250_hy_forest_night_light" + } + "2359609" + { + "icon_path" "econ/default_generated/weapon_p250_hy_forest_night_medium" + } + "2359610" + { + "icon_path" "econ/default_generated/weapon_p250_hy_forest_night_heavy" + } "2359692" { "icon_path" "econ/default_generated/weapon_p250_so_sand_light" @@ -5340,6 +10823,18 @@ { "icon_path" "econ/default_generated/weapon_p250_so_whiteout_heavy" } + "2359796" + { + "icon_path" "econ/default_generated/weapon_p250_cu_xray_p250_light" + } + "2359797" + { + "icon_path" "econ/default_generated/weapon_p250_cu_xray_p250_medium" + } + "2359798" + { + "icon_path" "econ/default_generated/weapon_p250_cu_xray_p250_heavy" + } "2359944" { "icon_path" "econ/default_generated/weapon_p250_sp_splash_p250_light" @@ -5544,6 +11039,246 @@ { "icon_path" "econ/default_generated/weapon_p250_hy_p250_crackshot_heavy" } + "2361500" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_asiimov_light" + } + "2361501" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_asiimov_medium" + } + "2361502" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_asiimov_heavy" + } + "2361664" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_metal_panels_light" + } + "2361665" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_metal_panels_medium" + } + "2361666" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_metal_panels_heavy" + } + "2361896" + { + "icon_path" "econ/default_generated/weapon_p250_am_p250_sputnik_light" + } + "2361897" + { + "icon_path" "econ/default_generated/weapon_p250_am_p250_sputnik_medium" + } + "2361898" + { + "icon_path" "econ/default_generated/weapon_p250_am_p250_sputnik_heavy" + } + "2361968" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_axiom_light" + } + "2361969" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_axiom_medium" + } + "2361970" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_axiom_heavy" + } + "2362008" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_cybercroc_light" + } + "2362009" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_cybercroc_medium" + } + "2362010" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_cybercroc_heavy" + } + "2362260" + { + "icon_path" "econ/default_generated/weapon_p250_am_ren_dark_light" + } + "2362261" + { + "icon_path" "econ/default_generated/weapon_p250_am_ren_dark_medium" + } + "2362262" + { + "icon_path" "econ/default_generated/weapon_p250_am_ren_dark_heavy" + } + "2362292" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_checker_light" + } + "2362293" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_checker_medium" + } + "2362294" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_checker_heavy" + } + "2362404" + { + "icon_path" "econ/default_generated/weapon_p250_hy_blueprint_red_light" + } + "2362405" + { + "icon_path" "econ/default_generated/weapon_p250_hy_blueprint_red_medium" + } + "2362406" + { + "icon_path" "econ/default_generated/weapon_p250_hy_blueprint_red_heavy" + } + "2362440" + { + "icon_path" "econ/default_generated/weapon_p250_hy_ducts_blue_light" + } + "2362441" + { + "icon_path" "econ/default_generated/weapon_p250_hy_ducts_blue_medium" + } + "2362442" + { + "icon_path" "econ/default_generated/weapon_p250_hy_ducts_blue_heavy" + } + "2362548" + { + "icon_path" "econ/default_generated/weapon_p250_aa_p250_gravediggers_light" + } + "2362549" + { + "icon_path" "econ/default_generated/weapon_p250_aa_p250_gravediggers_medium" + } + "2362550" + { + "icon_path" "econ/default_generated/weapon_p250_aa_p250_gravediggers_heavy" + } + "2362596" + { + "icon_path" "econ/default_generated/weapon_p250_sp_desert_skulls_dawn_light" + } + "2362597" + { + "icon_path" "econ/default_generated/weapon_p250_sp_desert_skulls_dawn_medium" + } + "2362598" + { + "icon_path" "econ/default_generated/weapon_p250_sp_desert_skulls_dawn_heavy" + } + "2362688" + { + "icon_path" "econ/default_generated/weapon_p250_aq_p250_verdigris_light" + } + "2362689" + { + "icon_path" "econ/default_generated/weapon_p250_aq_p250_verdigris_medium" + } + "2362690" + { + "icon_path" "econ/default_generated/weapon_p250_aq_p250_verdigris_heavy" + } + "2362924" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_inferno_light" + } + "2362925" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_inferno_medium" + } + "2362926" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_inferno_heavy" + } + "2363008" + { + "icon_path" "econ/default_generated/weapon_p250_hy_desert_multicam_light" + } + "2363009" + { + "icon_path" "econ/default_generated/weapon_p250_hy_desert_multicam_medium" + } + "2363010" + { + "icon_path" "econ/default_generated/weapon_p250_hy_desert_multicam_heavy" + } + "2363168" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_cassette_light" + } + "2363169" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_cassette_medium" + } + "2363170" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_cassette_heavy" + } + "2363224" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_infect_light" + } + "2363225" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_infect_medium" + } + "2363226" + { + "icon_path" "econ/default_generated/weapon_p250_cu_p250_infect_heavy" + } + "2363416" + { + "icon_path" "econ/default_generated/weapon_p250_hy_p250_tiger_light" + } + "2363417" + { + "icon_path" "econ/default_generated/weapon_p250_hy_p250_tiger_medium" + } + "2363418" + { + "icon_path" "econ/default_generated/weapon_p250_hy_p250_tiger_heavy" + } + "2363472" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_cybershell_light" + } + "2363473" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_cybershell_medium" + } + "2363474" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_cybershell_heavy" + } + "2363620" + { + "icon_path" "econ/default_generated/weapon_p250_aa_vertigogeo_neon_light" + } + "2363621" + { + "icon_path" "econ/default_generated/weapon_p250_aa_vertigogeo_neon_medium" + } + "2363622" + { + "icon_path" "econ/default_generated/weapon_p250_aa_vertigogeo_neon_heavy" + } + "2363908" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_visions_light" + } + "2363909" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_visions_medium" + } + "2363910" + { + "icon_path" "econ/default_generated/weapon_p250_gs_p250_visions_heavy" + } "2490552" { "icon_path" "econ/default_generated/weapon_scar20_so_pmc_light" @@ -5604,6 +11339,18 @@ { "icon_path" "econ/default_generated/weapon_scar20_sp_palm_heavy" } + "2491004" + { + "icon_path" "econ/default_generated/weapon_scar20_aq_brass_light" + } + "2491005" + { + "icon_path" "econ/default_generated/weapon_scar20_aq_brass_medium" + } + "2491006" + { + "icon_path" "econ/default_generated/weapon_scar20_aq_brass_heavy" + } "2491028" { "icon_path" "econ/default_generated/weapon_scar20_hy_hunter_blaze_pink_light" @@ -5712,6 +11459,126 @@ { "icon_path" "econ/default_generated/weapon_scar20_hy_scar20_jungler_heavy" } + "2492756" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_bloodsport_light" + } + "2492757" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_bloodsport_medium" + } + "2492758" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_bloodsport_heavy" + } + "2492816" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_powercore_light" + } + "2492817" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_powercore_medium" + } + "2492818" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_powercore_heavy" + } + "2492936" + { + "icon_path" "econ/default_generated/weapon_scar20_cu_blueprint_scar_light" + } + "2492937" + { + "icon_path" "econ/default_generated/weapon_scar20_cu_blueprint_scar_medium" + } + "2492938" + { + "icon_path" "econ/default_generated/weapon_scar20_cu_blueprint_scar_heavy" + } + "2493108" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_scar20_jungle_slipstream_light" + } + "2493109" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_scar20_jungle_slipstream_medium" + } + "2493110" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_scar20_jungle_slipstream_heavy" + } + "2493828" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_canals_tile_light" + } + "2493829" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_canals_tile_medium" + } + "2493830" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_canals_tile_heavy" + } + "2493952" + { + "icon_path" "econ/default_generated/weapon_scar20_sp_scar20_striker_dust_light" + } + "2493953" + { + "icon_path" "econ/default_generated/weapon_scar20_sp_scar20_striker_dust_medium" + } + "2493954" + { + "icon_path" "econ/default_generated/weapon_scar20_sp_scar20_striker_dust_heavy" + } + "2494024" + { + "icon_path" "econ/default_generated/weapon_scar20_cu_scar_assault_light" + } + "2494025" + { + "icon_path" "econ/default_generated/weapon_scar20_cu_scar_assault_medium" + } + "2494026" + { + "icon_path" "econ/default_generated/weapon_scar20_cu_scar_assault_heavy" + } + "2494184" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_enforcer_light" + } + "2494185" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_enforcer_medium" + } + "2494186" + { + "icon_path" "econ/default_generated/weapon_scar20_gs_scar20_enforcer_heavy" + } + "2494480" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_authority_purple_light" + } + "2494481" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_authority_purple_medium" + } + "2494482" + { + "icon_path" "econ/default_generated/weapon_scar20_hy_authority_purple_heavy" + } + "2494924" + { + "icon_path" "econ/default_generated/weapon_scar20_sp_scar_chickenfight_light" + } + "2494925" + { + "icon_path" "econ/default_generated/weapon_scar20_sp_scar_chickenfight_medium" + } + "2494926" + { + "icon_path" "econ/default_generated/weapon_scar20_sp_scar_chickenfight_heavy" + } "2556016" { "icon_path" "econ/default_generated/weapon_sg556_an_navy_light" @@ -5736,6 +11603,18 @@ { "icon_path" "econ/default_generated/weapon_sg556_so_yellow_heavy" } + "2556148" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_vertigo_light" + } + "2556149" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_vertigo_medium" + } + "2556150" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_vertigo_heavy" + } "2556296" { "icon_path" "econ/default_generated/weapon_sg556_so_purple_light" @@ -5880,6 +11759,222 @@ { "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_tiger_moth_heavy" } + "2558116" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_atlas_light" + } + "2558117" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_atlas_medium" + } + "2558118" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_atlas_heavy" + } + "2558296" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_aerial_light" + } + "2558297" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_aerial_medium" + } + "2558298" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_aerial_heavy" + } + "2558356" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg556_triarch_light" + } + "2558357" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg556_triarch_medium" + } + "2558358" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg556_triarch_heavy" + } + "2558648" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_phantom_light" + } + "2558649" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_phantom_medium" + } + "2558650" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_phantom_heavy" + } + "2558712" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_sg533_aloha_light" + } + "2558713" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_sg533_aloha_medium" + } + "2558714" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_sg533_aloha_heavy" + } + "2558904" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_rally_light" + } + "2558905" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_rally_medium" + } + "2558906" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_rally_heavy" + } + "2558964" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_desert_bloom_bright_light" + } + "2558965" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_desert_bloom_bright_medium" + } + "2558966" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_desert_bloom_bright_heavy" + } + "2559164" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_over_heated_light" + } + "2559165" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_over_heated_medium" + } + "2559166" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_over_heated_heavy" + } + "2559348" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_asgard_wall_light" + } + "2559349" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_asgard_wall_medium" + } + "2559350" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_asgard_wall_heavy" + } + "2559360" + { + "icon_path" "econ/default_generated/weapon_sg556_so_red_sg553_light" + } + "2559361" + { + "icon_path" "econ/default_generated/weapon_sg556_so_red_sg553_medium" + } + "2559362" + { + "icon_path" "econ/default_generated/weapon_sg556_so_red_sg553_heavy" + } + "2559492" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_reactor_light" + } + "2559493" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_reactor_medium" + } + "2559494" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_reactor_heavy" + } + "2559640" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_desert_skulls_light" + } + "2559641" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_desert_skulls_medium" + } + "2559642" + { + "icon_path" "econ/default_generated/weapon_sg556_sp_desert_skulls_heavy" + } + "2559724" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_darkwing_light" + } + "2559725" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_darkwing_medium" + } + "2559726" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_darkwing_heavy" + } + "2559768" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_rusty_light" + } + "2559769" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_rusty_medium" + } + "2559770" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_rusty_heavy" + } + "2559992" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_ruins_green_light" + } + "2559993" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_ruins_green_medium" + } + "2559994" + { + "icon_path" "econ/default_generated/weapon_sg556_aa_ruins_green_heavy" + } + "2560096" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_deathmetal_light" + } + "2560097" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_deathmetal_medium" + } + "2560098" + { + "icon_path" "econ/default_generated/weapon_sg556_gs_sg553_deathmetal_heavy" + } + "2560240" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_caution_light" + } + "2560241" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_caution_medium" + } + "2560242" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_caution_heavy" + } + "2560508" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_cyber_dragon_light" + } + "2560509" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_cyber_dragon_medium" + } + "2560510" + { + "icon_path" "econ/default_generated/weapon_sg556_cu_sg553_cyber_dragon_heavy" + } "2621544" { "icon_path" "econ/default_generated/weapon_ssg08_sp_short_tape_light" @@ -5904,6 +11999,18 @@ { "icon_path" "econ/default_generated/weapon_ssg08_am_zebra_dark_heavy" } + "2621720" + { + "icon_path" "econ/default_generated/weapon_ssg08_am_carbon_fiber_light" + } + "2621721" + { + "icon_path" "econ/default_generated/weapon_ssg08_am_carbon_fiber_medium" + } + "2621722" + { + "icon_path" "econ/default_generated/weapon_ssg08_am_carbon_fiber_heavy" + } "2621824" { "icon_path" "econ/default_generated/weapon_ssg08_so_moss_light" @@ -5928,6 +12035,18 @@ { "icon_path" "econ/default_generated/weapon_ssg08_so_sand_heavy" } + "2622028" + { + "icon_path" "econ/default_generated/weapon_ssg08_sp_tape_short_jungle_light" + } + "2622029" + { + "icon_path" "econ/default_generated/weapon_ssg08_sp_tape_short_jungle_medium" + } + "2622030" + { + "icon_path" "econ/default_generated/weapon_ssg08_sp_tape_short_jungle_heavy" + } "2622240" { "icon_path" "econ/default_generated/weapon_ssg08_hy_mayan_dreams_bravo_light" @@ -6024,197 +12143,593 @@ { "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_technicality_heavy" } - "3932400" + "2623592" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_necropos_light" } - "3932401" + "2623593" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_necropos_medium" } - "3932402" + "2623594" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_necropos_heavy" } - "3932468" + "2623656" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_light" + "icon_path" "econ/default_generated/weapon_ssg08_gs_ssg08_armacore_light" } - "3932469" + "2623657" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_medium" + "icon_path" "econ/default_generated/weapon_ssg08_gs_ssg08_armacore_medium" } - "3932470" + "2623658" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_gs_ssg08_armacore_heavy" } - "3932916" + "2623936" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_dragonfire_scope_light" } - "3932917" + "2623937" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_dragonfire_scope_medium" } - "3932918" + "2623938" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_dragonfire_scope_heavy" } - "3933028" + "2624120" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_deathshead_light" } - "3933029" + "2624121" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_deathshead_medium" } - "3933030" + "2624122" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_deathshead_heavy" } - "3933100" + "2624412" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_light" + "icon_path" "econ/default_generated/weapon_ssg08_hy_ren_orange_light" } - "3933101" + "2624413" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_medium" + "icon_path" "econ/default_generated/weapon_ssg08_hy_ren_orange_medium" } - "3933102" + "2624414" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_hy_ren_orange_heavy" } - "3933176" + "2624444" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_light" + "icon_path" "econ/default_generated/weapon_ssg08_gs_ssg08_checker_light" } - "3933177" + "2624445" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_medium" + "icon_path" "econ/default_generated/weapon_ssg08_gs_ssg08_checker_medium" } - "3933178" + "2624446" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_gs_ssg08_checker_heavy" } - "3933188" + "2624488" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_light" + "icon_path" "econ/default_generated/weapon_ssg08_so_rune_stone_light" } - "3933189" + "2624489" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_medium" + "icon_path" "econ/default_generated/weapon_ssg08_so_rune_stone_medium" } - "3933190" + "2624490" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_so_rune_stone_heavy" } - "3933364" + "2624912" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_light" + "icon_path" "econ/default_generated/weapon_ssg08_hy_flowers_stmarc_light" } - "3933365" + "2624913" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_medium" + "icon_path" "econ/default_generated/weapon_ssg08_hy_flowers_stmarc_medium" } - "3933366" + "2624914" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_hy_flowers_stmarc_heavy" } - "3933444" + "2625036" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_tickler_light" } - "3933445" + "2625037" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_tickler_medium" } - "3933446" + "2625038" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_tickler_heavy" } - "3933464" + "2625180" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_metals_light" + "icon_path" "econ/default_generated/weapon_ssg08_sp_zebracam_red_light" } - "3933465" + "2625181" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_metals_medium" + "icon_path" "econ/default_generated/weapon_ssg08_sp_zebracam_red_medium" } - "3933466" + "2625182" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_metals_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_sp_zebracam_red_heavy" } - "3933600" + "2625264" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_fever_dream_light" } - "3933601" + "2625265" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_fever_dream_medium" } - "3933602" + "2625266" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_fever_dream_heavy" } - "3933692" + "2625308" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_mainframe_light" } - "3933693" + "2625309" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_mainframe_medium" } - "3933694" + "2625310" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_mainframe_heavy" } - "3933880" + "2625396" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_chromatic_light" } - "3933881" + "2625397" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_chromatic_medium" } - "3933882" + "2625398" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_chromatic_heavy" } - "3933920" + "2625424" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_icarus_light" + "icon_path" "econ/default_generated/weapon_ssg08_am_intelligence_orange_light" } - "3933921" + "2625425" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_icarus_medium" + "icon_path" "econ/default_generated/weapon_ssg08_am_intelligence_orange_medium" } - "3933922" + "2625426" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_icarus_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_am_intelligence_orange_heavy" } - "3933940" + "2625648" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_light" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_scorpion_light" } - "3933941" + "2625649" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_medium" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_scorpion_medium" } - "3933942" + "2625650" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg08_scorpion_heavy" } - "3934148" + "2625680" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_light" + "icon_path" "econ/default_generated/weapon_ssg08_hy_trainarchitect_green_light" } - "3934149" + "2625681" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_medium" + "icon_path" "econ/default_generated/weapon_ssg08_hy_trainarchitect_green_medium" } - "3934150" + "2625682" { - "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_heavy" + "icon_path" "econ/default_generated/weapon_ssg08_hy_trainarchitect_green_heavy" + } + "2625844" + { + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg_overtake_light" + } + "2625845" + { + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg_overtake_medium" + } + "2625846" + { + "icon_path" "econ/default_generated/weapon_ssg08_cu_ssg_overtake_heavy" + } + "3932400" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_light" + } + "3932401" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_medium" + } + "3932402" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_heavy" + } + "3932468" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_light" + } + "3932469" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_medium" + } + "3932470" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_heavy" + } + "3932916" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_light" + } + "3932917" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_medium" + } + "3932918" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_heavy" + } + "3933028" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_light" + } + "3933029" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_medium" + } + "3933030" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_heavy" + } + "3933100" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_light" + } + "3933101" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_medium" + } + "3933102" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_heavy" + } + "3933176" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_light" + } + "3933177" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_medium" + } + "3933178" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_heavy" + } + "3933188" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_light" + } + "3933189" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_medium" + } + "3933190" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_heavy" + } + "3933364" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_light" + } + "3933365" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_medium" + } + "3933366" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_heavy" + } + "3933444" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_light" + } + "3933445" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_medium" + } + "3933446" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_heavy" + } + "3933464" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_metals_light" + } + "3933465" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_metals_medium" + } + "3933466" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_metals_heavy" + } + "3933600" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_light" + } + "3933601" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_medium" + } + "3933602" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_heavy" + } + "3933692" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_light" + } + "3933693" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_medium" + } + "3933694" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_heavy" + } + "3933880" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_light" + } + "3933881" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_medium" + } + "3933882" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_heavy" + } + "3933920" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_icarus_light" + } + "3933921" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_icarus_medium" + } + "3933922" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_hy_icarus_heavy" + } + "3933940" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_light" + } + "3933941" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_medium" + } + "3933942" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_heavy" + } + "3934148" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_light" + } + "3934149" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_medium" + } + "3934150" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_heavy" + } + "3934352" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_soultaker_light" + } + "3934353" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_soultaker_medium" + } + "3934354" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_soultaker_heavy" + } + "3934508" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_mecha_industries_light" + } + "3934509" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_mecha_industries_medium" + } + "3934510" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_mecha_industries_heavy" + } + "3934684" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_flashback_light" + } + "3934685" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_flashback_medium" + } + "3934686" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_flashback_heavy" + } + "3934736" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_decimator_light" + } + "3934737" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_decimator_medium" + } + "3934738" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_decimator_heavy" + } + "3934812" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_metritera_light" + } + "3934813" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_metritera_medium" + } + "3934814" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_metritera_heavy" + } + "3934884" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_shatter_light" + } + "3934885" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_shatter_medium" + } + "3934886" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_shatter_heavy" + } + "3935016" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_nightmare_light" + } + "3935017" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_nightmare_medium" + } + "3935018" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_nightmare_heavy" + } + "3935328" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_operator_light" + } + "3935329" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_operator_medium" + } + "3935330" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_operator_heavy" + } + "3935608" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_crystallized_dark_green_light" + } + "3935609" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_crystallized_dark_green_medium" + } + "3935610" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_crystallized_dark_green_heavy" + } + "3935944" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_csgo2048_light" + } + "3935945" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_csgo2048_medium" + } + "3935946" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_csgo2048_heavy" + } + "3936096" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_printstream_light" + } + "3936097" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_printstream_medium" + } + "3936098" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_printstream_heavy" + } + "3936164" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_snake_light" + } + "3936165" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_snake_medium" + } + "3936166" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_snake_heavy" + } + "3936228" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1s_bluesmoke_light" + } + "3936229" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1s_bluesmoke_medium" + } + "3936230" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_am_m4a1s_bluesmoke_heavy" + } + "3936396" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_sp_technowar_red_light" + } + "3936397" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_sp_technowar_red_medium" + } + "3936398" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_sp_technowar_red_heavy" + } + "3936452" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_vertigo_light" + } + "3936453" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_vertigo_medium" + } + "3936454" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1_vertigo_heavy" + } + "3936680" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_insomnia_light" + } + "3936681" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_insomnia_medium" + } + "3936682" + { + "icon_path" "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_insomnia_heavy" } "3997796" { @@ -6372,6 +12887,18 @@ { "icon_path" "econ/default_generated/weapon_usp_silencer_cu_luggage_usp-s_heavy" } + "3999468" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_labyrinth2_light" + } + "3999469" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_labyrinth2_medium" + } + "3999470" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_labyrinth2_heavy" + } "3999512" { "icon_path" "econ/default_generated/weapon_usp_silencer_so_khaki_green_light" @@ -6408,6 +12935,210 @@ { "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_kill_confirmed_heavy" } + "3999856" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_gs_usp_voltage_light" + } + "3999857" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_gs_usp_voltage_medium" + } + "3999858" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_gs_usp_voltage_heavy" + } + "4000244" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_cyrex_light" + } + "4000245" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_cyrex_medium" + } + "4000246" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_cyrex_heavy" + } + "4000308" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usps_noir_light" + } + "4000309" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usps_noir_medium" + } + "4000310" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usps_noir_heavy" + } + "4000324" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usps_blueprint_light" + } + "4000325" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usps_blueprint_medium" + } + "4000326" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usps_blueprint_heavy" + } + "4000516" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_cut_light" + } + "4000517" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_cut_medium" + } + "4000518" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_cut_heavy" + } + "4000880" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_mesh_safetyred_light" + } + "4000881" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_mesh_safetyred_medium" + } + "4000882" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_mesh_safetyred_heavy" + } + "4000964" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_flashback_light" + } + "4000965" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_flashback_medium" + } + "4000966" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_flashback_heavy" + } + "4000968" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_ddpat_purple_light" + } + "4000969" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_ddpat_purple_medium" + } + "4000970" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_ddpat_purple_heavy" + } + "4001384" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_lizard_red_light" + } + "4001385" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_lizard_red_medium" + } + "4001386" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_lizard_red_heavy" + } + "4001660" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_krokos_light" + } + "4001661" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_krokos_medium" + } + "4001662" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_krokos_heavy" + } + "4001804" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_intelligence_magenta_light" + } + "4001805" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_intelligence_magenta_medium" + } + "4001806" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_am_intelligence_magenta_heavy" + } + "4001820" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_ancient_bright_light" + } + "4001821" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_ancient_bright_medium" + } + "4001822" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_sp_ancient_bright_heavy" + } + "4001856" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_gs_usps_hangedman_light" + } + "4001857" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_gs_usps_hangedman_medium" + } + "4001858" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_gs_usps_hangedman_heavy" + } + "4001956" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_so_whiteout_riptide_light" + } + "4001957" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_so_whiteout_riptide_medium" + } + "4001958" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_so_whiteout_riptide_heavy" + } + "4002104" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_black_lotus_light" + } + "4002105" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_black_lotus_medium" + } + "4002106" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_black_lotus_heavy" + } + "4002240" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_to_hell_light" + } + "4002241" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_to_hell_medium" + } + "4002242" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_to_hell_heavy" + } + "4002264" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_printstream_light" + } + "4002265" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_printstream_medium" + } + "4002266" + { + "icon_path" "econ/default_generated/weapon_usp_silencer_cu_usp_printstream_heavy" + } "4128816" { "icon_path" "econ/default_generated/weapon_cz75a_hy_webs_light" @@ -6420,6 +13151,30 @@ { "icon_path" "econ/default_generated/weapon_cz75a_hy_webs_heavy" } + "4128896" + { + "icon_path" "econ/default_generated/weapon_cz75a_an_silver_light" + } + "4128897" + { + "icon_path" "econ/default_generated/weapon_cz75a_an_silver_medium" + } + "4128898" + { + "icon_path" "econ/default_generated/weapon_cz75a_an_silver_heavy" + } + "4129356" + { + "icon_path" "econ/default_generated/weapon_cz75a_sp_tape_short_jungle_light" + } + "4129357" + { + "icon_path" "econ/default_generated/weapon_cz75a_sp_tape_short_jungle_medium" + } + "4129358" + { + "icon_path" "econ/default_generated/weapon_cz75a_sp_tape_short_jungle_heavy" + } "4129640" { "icon_path" "econ/default_generated/weapon_cz75a_hy_bluehex_light" @@ -6528,6 +13283,18 @@ { "icon_path" "econ/default_generated/weapon_cz75a_am_royal_heavy" } + "4130100" + { + "icon_path" "econ/default_generated/weapon_cz75a_so_indigo_and_grey_light" + } + "4130101" + { + "icon_path" "econ/default_generated/weapon_cz75a_so_indigo_and_grey_medium" + } + "4130102" + { + "icon_path" "econ/default_generated/weapon_cz75a_so_indigo_and_grey_heavy" + } "4130104" { "icon_path" "econ/default_generated/weapon_cz75a_am_gyrate_light" @@ -6600,175 +13367,511 @@ { "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75a_chastizer_heavy" } - "4194352" + "4130940" { - "icon_path" "econ/default_generated/weapon_revolver_hy_webs_light" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75a_redastor_light" } - "4194353" + "4130941" { - "icon_path" "econ/default_generated/weapon_revolver_hy_webs_medium" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75a_redastor_medium" } - "4194354" + "4130942" { - "icon_path" "econ/default_generated/weapon_revolver_hy_webs_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75a_redastor_heavy" } - "4194412" + "4131176" { - "icon_path" "econ/default_generated/weapon_revolver_sp_tape_light" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_tread_light" } - "4194413" + "4131177" { - "icon_path" "econ/default_generated/weapon_revolver_sp_tape_medium" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_tread_medium" } - "4194414" + "4131178" { - "icon_path" "econ/default_generated/weapon_revolver_sp_tape_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_tread_heavy" } - "4196392" + "4131256" { - "icon_path" "econ/default_generated/weapon_revolver_aa_fade_revolver_light" + "icon_path" "econ/default_generated/weapon_cz75a_am_czv2_mf_light" } - "4196393" + "4131257" { - "icon_path" "econ/default_generated/weapon_revolver_aa_fade_revolver_medium" + "icon_path" "econ/default_generated/weapon_cz75a_am_czv2_mf_medium" } - "4196394" + "4131258" { - "icon_path" "econ/default_generated/weapon_revolver_aa_fade_revolver_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_am_czv2_mf_heavy" } - "4196396" + "4131340" { - "icon_path" "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_light" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz_snakes_purple_light" } - "4196397" + "4131341" { - "icon_path" "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_medium" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz_snakes_purple_medium" } - "4196398" + "4131342" { - "icon_path" "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz_snakes_purple_heavy" } - "32768020" + "4131516" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_ddpat_light" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_tacticat_light" } - "32768021" + "4131517" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_ddpat_medium" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_tacticat_medium" } - "32768022" + "4131518" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_ddpat_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_tacticat_heavy" } - "32768048" + "4131604" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_webs_light" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_eco_light" } - "32768049" + "4131605" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_webs_medium" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_eco_medium" } - "32768050" + "4131606" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_webs_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_eco_heavy" } - "32768152" + "4132204" { - "icon_path" "econ/default_generated/weapon_bayonet_aa_fade_light" + "icon_path" "econ/default_generated/weapon_cz75a_am_crystallized_green_light" } - "32768153" + "4132205" { - "icon_path" "econ/default_generated/weapon_bayonet_aa_fade_medium" + "icon_path" "econ/default_generated/weapon_cz75a_am_crystallized_green_medium" } - "32768154" + "4132206" { - "icon_path" "econ/default_generated/weapon_bayonet_aa_fade_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_am_crystallized_green_heavy" } - "32768160" + "4132500" { - "icon_path" "econ/default_generated/weapon_bayonet_so_night_light" + "icon_path" "econ/default_generated/weapon_cz75a_sp_palm_night_light" } - "32768161" + "4132501" { - "icon_path" "econ/default_generated/weapon_bayonet_so_night_medium" + "icon_path" "econ/default_generated/weapon_cz75a_sp_palm_night_medium" } - "32768162" + "4132502" { - "icon_path" "econ/default_generated/weapon_bayonet_so_night_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_sp_palm_night_heavy" } - "32768168" + "4132544" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_blued_light" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_cerakote_light" } - "32768169" + "4132545" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_blued_medium" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_cerakote_medium" } - "32768170" + "4132546" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_blued_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_cerakote_heavy" } - "32768172" + "4132672" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_forced_light" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_vendetta_light" } - "32768173" + "4132673" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_forced_medium" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_vendetta_medium" } - "32768174" + "4132674" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_forced_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_gs_cz75_vendetta_heavy" } - "32768176" + "4132912" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_oiled_light" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_whirlwind_light" } - "32768177" + "4132913" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_oiled_medium" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_whirlwind_medium" } - "32768178" + "4132914" { - "icon_path" "econ/default_generated/weapon_bayonet_aq_oiled_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_cu_cz75_whirlwind_heavy" } - "32768236" + "4133024" { - "icon_path" "econ/default_generated/weapon_bayonet_am_zebra_light" + "icon_path" "econ/default_generated/weapon_cz75a_gs_train_cz75_light" } - "32768237" + "4133025" { - "icon_path" "econ/default_generated/weapon_bayonet_am_zebra_medium" + "icon_path" "econ/default_generated/weapon_cz75a_gs_train_cz75_medium" } - "32768238" + "4133026" { - "icon_path" "econ/default_generated/weapon_bayonet_am_zebra_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_gs_train_cz75_heavy" } - "32768288" + "4133072" { - "icon_path" "econ/default_generated/weapon_bayonet_sp_mesh_tan_light" + "icon_path" "econ/default_generated/weapon_cz75a_hy_vertigoillusion_light" } - "32768289" + "4133073" { - "icon_path" "econ/default_generated/weapon_bayonet_sp_mesh_tan_medium" + "icon_path" "econ/default_generated/weapon_cz75a_hy_vertigoillusion_medium" } - "32768290" + "4133074" { - "icon_path" "econ/default_generated/weapon_bayonet_sp_mesh_tan_heavy" + "icon_path" "econ/default_generated/weapon_cz75a_hy_vertigoillusion_heavy" } - "32768308" + "4194352" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_forest_boreal_light" + "icon_path" "econ/default_generated/weapon_revolver_hy_webs_light" } - "32768309" + "4194353" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_forest_boreal_medium" + "icon_path" "econ/default_generated/weapon_revolver_hy_webs_medium" } - "32768310" + "4194354" { - "icon_path" "econ/default_generated/weapon_bayonet_hy_forest_boreal_heavy" + "icon_path" "econ/default_generated/weapon_revolver_hy_webs_heavy" } - "32768392" + "4194412" + { + "icon_path" "econ/default_generated/weapon_revolver_sp_tape_light" + } + "4194413" + { + "icon_path" "econ/default_generated/weapon_revolver_sp_tape_medium" + } + "4194414" + { + "icon_path" "econ/default_generated/weapon_revolver_sp_tape_heavy" + } + "4194452" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_flames_light" + } + "4194453" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_flames_medium" + } + "4194454" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_flames_heavy" + } + "4194464" + { + "icon_path" "econ/default_generated/weapon_revolver_so_night_light" + } + "4194465" + { + "icon_path" "econ/default_generated/weapon_revolver_so_night_medium" + } + "4194466" + { + "icon_path" "econ/default_generated/weapon_revolver_so_night_heavy" + } + "4196392" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_fade_revolver_light" + } + "4196393" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_fade_revolver_medium" + } + "4196394" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_fade_revolver_heavy" + } + "4196396" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_light" + } + "4196397" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_medium" + } + "4196398" + { + "icon_path" "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_heavy" + } + "4196684" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_r8_cybersport_light" + } + "4196685" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_r8_cybersport_medium" + } + "4196686" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_r8_cybersport_heavy" + } + "4197036" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_llamacannon_light" + } + "4197037" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_llamacannon_medium" + } + "4197038" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_llamacannon_heavy" + } + "4197108" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_revolver_tread_light" + } + "4197109" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_revolver_tread_medium" + } + "4197110" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_revolver_tread_heavy" + } + "4197188" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_r8_survivalist_light" + } + "4197189" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_r8_survivalist_medium" + } + "4197190" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_r8_survivalist_heavy" + } + "4197496" + { + "icon_path" "econ/default_generated/weapon_revolver_so_orange_accents3_light" + } + "4197497" + { + "icon_path" "econ/default_generated/weapon_revolver_so_orange_accents3_medium" + } + "4197498" + { + "icon_path" "econ/default_generated/weapon_revolver_so_orange_accents3_heavy" + } + "4197676" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_revolver_oppressor_light" + } + "4197677" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_revolver_oppressor_medium" + } + "4197678" + { + "icon_path" "econ/default_generated/weapon_revolver_cu_revolver_oppressor_heavy" + } + "4197768" + { + "icon_path" "econ/default_generated/weapon_revolver_sp_spray_water_light" + } + "4197769" + { + "icon_path" "econ/default_generated/weapon_revolver_sp_spray_water_medium" + } + "4197770" + { + "icon_path" "econ/default_generated/weapon_revolver_sp_spray_water_heavy" + } + "4197872" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_memento_light" + } + "4197873" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_memento_medium" + } + "4197874" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_memento_heavy" + } + "4198000" + { + "icon_path" "econ/default_generated/weapon_revolver_hy_brush_camo_tan_light" + } + "4198001" + { + "icon_path" "econ/default_generated/weapon_revolver_hy_brush_camo_tan_medium" + } + "4198002" + { + "icon_path" "econ/default_generated/weapon_revolver_hy_brush_camo_tan_heavy" + } + "4198112" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_leviathan_light" + } + "4198113" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_leviathan_medium" + } + "4198114" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_leviathan_heavy" + } + "4198348" + { + "icon_path" "econ/default_generated/weapon_revolver_am_phoenix_tags_blue_light" + } + "4198349" + { + "icon_path" "econ/default_generated/weapon_revolver_am_phoenix_tags_blue_medium" + } + "4198350" + { + "icon_path" "econ/default_generated/weapon_revolver_am_phoenix_tags_blue_heavy" + } + "4198492" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_rustking_light" + } + "4198493" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_rustking_medium" + } + "4198494" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_r8_rustking_heavy" + } + "4198884" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_revolver_purple_elite_light" + } + "4198885" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_revolver_purple_elite_medium" + } + "4198886" + { + "icon_path" "econ/default_generated/weapon_revolver_gs_revolver_purple_elite_heavy" + } + "32768020" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_ddpat_light" + } + "32768021" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_ddpat_medium" + } + "32768022" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_ddpat_heavy" + } + "32768048" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_webs_light" + } + "32768049" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_webs_medium" + } + "32768050" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_webs_heavy" + } + "32768152" + { + "icon_path" "econ/default_generated/weapon_bayonet_aa_fade_light" + } + "32768153" + { + "icon_path" "econ/default_generated/weapon_bayonet_aa_fade_medium" + } + "32768154" + { + "icon_path" "econ/default_generated/weapon_bayonet_aa_fade_heavy" + } + "32768160" + { + "icon_path" "econ/default_generated/weapon_bayonet_so_night_light" + } + "32768161" + { + "icon_path" "econ/default_generated/weapon_bayonet_so_night_medium" + } + "32768162" + { + "icon_path" "econ/default_generated/weapon_bayonet_so_night_heavy" + } + "32768168" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_blued_light" + } + "32768169" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_blued_medium" + } + "32768170" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_blued_heavy" + } + "32768172" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_forced_light" + } + "32768173" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_forced_medium" + } + "32768174" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_forced_heavy" + } + "32768176" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_oiled_light" + } + "32768177" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_oiled_medium" + } + "32768178" + { + "icon_path" "econ/default_generated/weapon_bayonet_aq_oiled_heavy" + } + "32768236" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_zebra_light" + } + "32768237" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_zebra_medium" + } + "32768238" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_zebra_heavy" + } + "32768288" + { + "icon_path" "econ/default_generated/weapon_bayonet_sp_mesh_tan_light" + } + "32768289" + { + "icon_path" "econ/default_generated/weapon_bayonet_sp_mesh_tan_medium" + } + "32768290" + { + "icon_path" "econ/default_generated/weapon_bayonet_sp_mesh_tan_heavy" + } + "32768308" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_forest_boreal_light" + } + "32768309" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_forest_boreal_medium" + } + "32768310" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_forest_boreal_heavy" + } + "32768392" { "icon_path" "econ/default_generated/weapon_bayonet_so_purple_light" } @@ -6936,6 +14039,270 @@ { "icon_path" "econ/default_generated/weapon_bayonet_am_doppler_phase4_heavy" } + "32770232" + { + "icon_path" "econ/default_generated/weapon_bayonet_cu_bayonet_lore_light" + } + "32770233" + { + "icon_path" "econ/default_generated/weapon_bayonet_cu_bayonet_lore_medium" + } + "32770234" + { + "icon_path" "econ/default_generated/weapon_bayonet_cu_bayonet_lore_heavy" + } + "32770252" + { + "icon_path" "econ/default_generated/weapon_bayonet_cu_bayonet_stonewash_light" + } + "32770253" + { + "icon_path" "econ/default_generated/weapon_bayonet_cu_bayonet_stonewash_medium" + } + "32770254" + { + "icon_path" "econ/default_generated/weapon_bayonet_cu_bayonet_stonewash_heavy" + } + "32770272" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_emerald_marbleized_light" + } + "32770273" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_emerald_marbleized_medium" + } + "32770274" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_emerald_marbleized_heavy" + } + "32770276" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase1_light" + } + "32770277" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase1_medium" + } + "32770278" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase1_heavy" + } + "32770280" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase2_light" + } + "32770281" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase2_medium" + } + "32770282" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase2_heavy" + } + "32770284" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase3_light" + } + "32770285" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase3_medium" + } + "32770286" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase3_heavy" + } + "32770288" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase4_light" + } + "32770289" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase4_medium" + } + "32770290" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_gamma_doppler_phase4_heavy" + } + "32770292" + { + "icon_path" "econ/default_generated/weapon_bayonet_gs_bayonet_autotronic_light" + } + "32770293" + { + "icon_path" "econ/default_generated/weapon_bayonet_gs_bayonet_autotronic_medium" + } + "32770294" + { + "icon_path" "econ/default_generated/weapon_bayonet_gs_bayonet_autotronic_heavy" + } + "32770312" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_ocean_knife_light" + } + "32770313" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_ocean_knife_medium" + } + "32770314" + { + "icon_path" "econ/default_generated/weapon_bayonet_hy_ocean_knife_heavy" + } + "32770320" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_marked_up_light" + } + "32770321" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_marked_up_medium" + } + "32770322" + { + "icon_path" "econ/default_generated/weapon_bayonet_am_marked_up_heavy" + } + "32964628" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_ddpat_light" + } + "32964629" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_ddpat_medium" + } + "32964630" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_ddpat_heavy" + } + "32964656" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_webs_light" + } + "32964657" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_webs_medium" + } + "32964658" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_webs_heavy" + } + "32964760" + { + "icon_path" "econ/default_generated/weapon_knife_css_aa_fade_light" + } + "32964761" + { + "icon_path" "econ/default_generated/weapon_knife_css_aa_fade_medium" + } + "32964762" + { + "icon_path" "econ/default_generated/weapon_knife_css_aa_fade_heavy" + } + "32964776" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_blued_light" + } + "32964777" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_blued_medium" + } + "32964778" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_blued_heavy" + } + "32964780" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_forced_light" + } + "32964781" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_forced_medium" + } + "32964782" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_forced_heavy" + } + "32964784" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_oiled_light" + } + "32964785" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_oiled_medium" + } + "32964786" + { + "icon_path" "econ/default_generated/weapon_knife_css_aq_oiled_heavy" + } + "32964844" + { + "icon_path" "econ/default_generated/weapon_knife_css_am_zebra_light" + } + "32964845" + { + "icon_path" "econ/default_generated/weapon_knife_css_am_zebra_medium" + } + "32964846" + { + "icon_path" "econ/default_generated/weapon_knife_css_am_zebra_heavy" + } + "32964896" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_mesh_tan_light" + } + "32964897" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_mesh_tan_medium" + } + "32964898" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_mesh_tan_heavy" + } + "32964916" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_forest_boreal_light" + } + "32964917" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_forest_boreal_medium" + } + "32964918" + { + "icon_path" "econ/default_generated/weapon_knife_css_hy_forest_boreal_heavy" + } + "32965180" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_tape_urban_light" + } + "32965181" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_tape_urban_medium" + } + "32965182" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_tape_urban_heavy" + } + "32965308" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_dapple_light" + } + "32965309" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_dapple_medium" + } + "32965310" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_dapple_heavy" + } + "32967548" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_nightstripe_light" + } + "32967549" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_nightstripe_medium" + } + "32967550" + { + "icon_path" "econ/default_generated/weapon_knife_css_sp_nightstripe_heavy" + } "33095700" { "icon_path" "econ/default_generated/weapon_knife_flip_hy_ddpat_light" @@ -7224,6 +14591,126 @@ { "icon_path" "econ/default_generated/weapon_knife_flip_am_doppler_phase4_heavy" } + "33097916" + { + "icon_path" "econ/default_generated/weapon_knife_flip_cu_flip_lore_light" + } + "33097917" + { + "icon_path" "econ/default_generated/weapon_knife_flip_cu_flip_lore_medium" + } + "33097918" + { + "icon_path" "econ/default_generated/weapon_knife_flip_cu_flip_lore_heavy" + } + "33097936" + { + "icon_path" "econ/default_generated/weapon_knife_flip_cu_flip_stonewash_light" + } + "33097937" + { + "icon_path" "econ/default_generated/weapon_knife_flip_cu_flip_stonewash_medium" + } + "33097938" + { + "icon_path" "econ/default_generated/weapon_knife_flip_cu_flip_stonewash_heavy" + } + "33097952" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_emerald_marbleized_light" + } + "33097953" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_emerald_marbleized_medium" + } + "33097954" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_emerald_marbleized_heavy" + } + "33097956" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase1_light" + } + "33097957" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase1_medium" + } + "33097958" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase1_heavy" + } + "33097960" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase2_light" + } + "33097961" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase2_medium" + } + "33097962" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase2_heavy" + } + "33097964" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase3_light" + } + "33097965" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase3_medium" + } + "33097966" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase3_heavy" + } + "33097968" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase4_light" + } + "33097969" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase4_medium" + } + "33097970" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase4_heavy" + } + "33097976" + { + "icon_path" "econ/default_generated/weapon_knife_flip_gs_flip_autotronic_light" + } + "33097977" + { + "icon_path" "econ/default_generated/weapon_knife_flip_gs_flip_autotronic_medium" + } + "33097978" + { + "icon_path" "econ/default_generated/weapon_knife_flip_gs_flip_autotronic_heavy" + } + "33097992" + { + "icon_path" "econ/default_generated/weapon_knife_flip_hy_ocean_knife_light" + } + "33097993" + { + "icon_path" "econ/default_generated/weapon_knife_flip_hy_ocean_knife_medium" + } + "33097994" + { + "icon_path" "econ/default_generated/weapon_knife_flip_hy_ocean_knife_heavy" + } + "33098000" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_marked_up_light" + } + "33098001" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_marked_up_medium" + } + "33098002" + { + "icon_path" "econ/default_generated/weapon_knife_flip_am_marked_up_heavy" + } "33161236" { "icon_path" "econ/default_generated/weapon_knife_gut_hy_ddpat_light" @@ -7512,6 +14999,126 @@ { "icon_path" "econ/default_generated/weapon_knife_gut_am_doppler_phase4_heavy" } + "33163456" + { + "icon_path" "econ/default_generated/weapon_knife_gut_cu_gut_lore_light" + } + "33163457" + { + "icon_path" "econ/default_generated/weapon_knife_gut_cu_gut_lore_medium" + } + "33163458" + { + "icon_path" "econ/default_generated/weapon_knife_gut_cu_gut_lore_heavy" + } + "33163476" + { + "icon_path" "econ/default_generated/weapon_knife_gut_cu_gut_stonewash_light" + } + "33163477" + { + "icon_path" "econ/default_generated/weapon_knife_gut_cu_gut_stonewash_medium" + } + "33163478" + { + "icon_path" "econ/default_generated/weapon_knife_gut_cu_gut_stonewash_heavy" + } + "33163488" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_emerald_marbleized_light" + } + "33163489" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_emerald_marbleized_medium" + } + "33163490" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_emerald_marbleized_heavy" + } + "33163492" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase1_light" + } + "33163493" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase1_medium" + } + "33163494" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase1_heavy" + } + "33163496" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase2_light" + } + "33163497" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase2_medium" + } + "33163498" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase2_heavy" + } + "33163500" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase3_light" + } + "33163501" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase3_medium" + } + "33163502" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase3_heavy" + } + "33163504" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase4_light" + } + "33163505" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase4_medium" + } + "33163506" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase4_heavy" + } + "33163516" + { + "icon_path" "econ/default_generated/weapon_knife_gut_gs_gut_autotronic_light" + } + "33163517" + { + "icon_path" "econ/default_generated/weapon_knife_gut_gs_gut_autotronic_medium" + } + "33163518" + { + "icon_path" "econ/default_generated/weapon_knife_gut_gs_gut_autotronic_heavy" + } + "33163528" + { + "icon_path" "econ/default_generated/weapon_knife_gut_hy_ocean_knife_light" + } + "33163529" + { + "icon_path" "econ/default_generated/weapon_knife_gut_hy_ocean_knife_medium" + } + "33163530" + { + "icon_path" "econ/default_generated/weapon_knife_gut_hy_ocean_knife_heavy" + } + "33163536" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_marked_up_light" + } + "33163537" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_marked_up_medium" + } + "33163538" + { + "icon_path" "econ/default_generated/weapon_knife_gut_am_marked_up_heavy" + } "33226772" { "icon_path" "econ/default_generated/weapon_knife_karambit_hy_ddpat_light" @@ -7800,6 +15407,126 @@ { "icon_path" "econ/default_generated/weapon_knife_karambit_am_doppler_phase4_heavy" } + "33228996" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_cu_karam_lore_light" + } + "33228997" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_cu_karam_lore_medium" + } + "33228998" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_cu_karam_lore_heavy" + } + "33229016" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_cu_karam_stonewash_light" + } + "33229017" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_cu_karam_stonewash_medium" + } + "33229018" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_cu_karam_stonewash_heavy" + } + "33229024" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_emerald_marbleized_light" + } + "33229025" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_emerald_marbleized_medium" + } + "33229026" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_emerald_marbleized_heavy" + } + "33229028" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase1_light" + } + "33229029" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase1_medium" + } + "33229030" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase1_heavy" + } + "33229032" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase2_light" + } + "33229033" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase2_medium" + } + "33229034" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase2_heavy" + } + "33229036" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase3_light" + } + "33229037" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase3_medium" + } + "33229038" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase3_heavy" + } + "33229040" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase4_light" + } + "33229041" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase4_medium" + } + "33229042" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase4_heavy" + } + "33229056" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_gs_karam_autotronic_light" + } + "33229057" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_gs_karam_autotronic_medium" + } + "33229058" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_gs_karam_autotronic_heavy" + } + "33229064" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_hy_ocean_knife_light" + } + "33229065" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_hy_ocean_knife_medium" + } + "33229066" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_hy_ocean_knife_heavy" + } + "33229080" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_marked_up_fine_light" + } + "33229081" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_marked_up_fine_medium" + } + "33229082" + { + "icon_path" "econ/default_generated/weapon_knife_karambit_am_marked_up_fine_heavy" + } "33292308" { "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_hy_ddpat_light" @@ -8088,6 +15815,126 @@ { "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase4_heavy" } + "33294536" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_lore_light" + } + "33294537" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_lore_medium" + } + "33294538" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_lore_heavy" + } + "33294556" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_stonewash_light" + } + "33294557" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_stonewash_medium" + } + "33294558" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_stonewash_heavy" + } + "33294560" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_emerald_marbleized_light" + } + "33294561" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_emerald_marbleized_medium" + } + "33294562" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_emerald_marbleized_heavy" + } + "33294564" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase1_light" + } + "33294565" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase1_medium" + } + "33294566" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase1_heavy" + } + "33294568" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase2_light" + } + "33294569" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase2_medium" + } + "33294570" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase2_heavy" + } + "33294572" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase3_light" + } + "33294573" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase3_medium" + } + "33294574" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase3_heavy" + } + "33294576" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase4_light" + } + "33294577" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase4_medium" + } + "33294578" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase4_heavy" + } + "33294596" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_gs_m9_bay_autotronic_light" + } + "33294597" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_gs_m9_bay_autotronic_medium" + } + "33294598" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_gs_m9_bay_autotronic_heavy" + } + "33294604" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_hy_ocean_knife_90_light" + } + "33294605" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_hy_ocean_knife_90_medium" + } + "33294606" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_hy_ocean_knife_90_heavy" + } + "33294612" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_marked_up_90_light" + } + "33294613" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_marked_up_90_medium" + } + "33294614" + { + "icon_path" "econ/default_generated/weapon_knife_m9_bayonet_am_marked_up_90_heavy" + } "33357844" { "icon_path" "econ/default_generated/weapon_knife_tactical_hy_ddpat_light" @@ -8232,6 +16079,270 @@ { "icon_path" "econ/default_generated/weapon_knife_tactical_sp_dapple_heavy" } + "33359460" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_an_tiger_orange_light" + } + "33359461" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_an_tiger_orange_medium" + } + "33359462" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_an_tiger_orange_heavy" + } + "33359468" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_aq_damascus_90_light" + } + "33359469" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_aq_damascus_90_medium" + } + "33359470" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_aq_damascus_90_heavy" + } + "33359476" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_marble_fade_light" + } + "33359477" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_marble_fade_medium" + } + "33359478" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_marble_fade_heavy" + } + "33359480" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_aq_steel_knife_light" + } + "33359481" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_aq_steel_knife_medium" + } + "33359482" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_aq_steel_knife_heavy" + } + "33359484" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_ruby_marbleized_light" + } + "33359485" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_ruby_marbleized_medium" + } + "33359486" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_ruby_marbleized_heavy" + } + "33359488" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_sapphire_marbleized_light" + } + "33359489" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_sapphire_marbleized_medium" + } + "33359490" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_sapphire_marbleized_heavy" + } + "33359492" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_blackpearl_marbleized_light" + } + "33359493" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_blackpearl_marbleized_medium" + } + "33359494" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_blackpearl_marbleized_heavy" + } + "33359496" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase1_light" + } + "33359497" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase1_medium" + } + "33359498" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase1_heavy" + } + "33359500" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase2_light" + } + "33359501" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase2_medium" + } + "33359502" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase2_heavy" + } + "33359504" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase3_light" + } + "33359505" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase3_medium" + } + "33359506" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase3_heavy" + } + "33359508" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase4_light" + } + "33359509" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase4_medium" + } + "33359510" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_doppler_phase4_heavy" + } + "33360096" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_emerald_marbleized_light" + } + "33360097" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_emerald_marbleized_medium" + } + "33360098" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_emerald_marbleized_heavy" + } + "33360100" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase1_light" + } + "33360101" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase1_medium" + } + "33360102" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase1_heavy" + } + "33360104" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase2_light" + } + "33360105" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase2_medium" + } + "33360106" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase2_heavy" + } + "33360108" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase3_light" + } + "33360109" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase3_medium" + } + "33360110" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase3_heavy" + } + "33360112" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase4_light" + } + "33360113" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase4_medium" + } + "33360114" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase4_heavy" + } + "33360140" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_hy_ocean_knife_90_light" + } + "33360141" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_hy_ocean_knife_90_medium" + } + "33360142" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_hy_ocean_knife_90_heavy" + } + "33360148" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_marked_up_90_light" + } + "33360149" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_marked_up_90_medium" + } + "33360150" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_am_marked_up_90_heavy" + } + "33360304" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_cu_purple_huntsman_light" + } + "33360305" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_cu_purple_huntsman_medium" + } + "33360306" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_cu_purple_huntsman_heavy" + } + "33362252" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_cu_huntsman_lore_light" + } + "33362253" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_cu_huntsman_lore_medium" + } + "33362254" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_cu_huntsman_lore_heavy" + } + "33362272" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_gs_huntsman_black_laminate_light" + } + "33362273" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_gs_huntsman_black_laminate_medium" + } + "33362274" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_gs_huntsman_black_laminate_heavy" + } + "33362292" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_gs_huntsman_autotronic_light" + } + "33362293" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_gs_huntsman_autotronic_medium" + } + "33362294" + { + "icon_path" "econ/default_generated/weapon_knife_tactical_gs_huntsman_autotronic_heavy" + } "33554452" { "icon_path" "econ/default_generated/weapon_knife_falchion_hy_ddpat_light" @@ -8376,46108 +16487,200420 @@ { "icon_path" "econ/default_generated/weapon_knife_falchion_sp_dapple_heavy" } - "33751060" + "33556068" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ddpat_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_an_tiger_orange_light" } - "33751061" + "33556069" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ddpat_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_an_tiger_orange_medium" } - "33751062" + "33556070" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ddpat_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_an_tiger_orange_heavy" } - "33751088" + "33556076" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_webs_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_aq_damascus_90_light" } - "33751089" + "33556077" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_webs_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_aq_damascus_90_medium" } - "33751090" + "33556078" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_webs_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_aq_damascus_90_heavy" } - "33751192" + "33556084" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aa_fade_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_marble_fade_light" } - "33751193" + "33556085" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aa_fade_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_marble_fade_medium" } - "33751194" + "33556086" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aa_fade_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_marble_fade_heavy" } - "33751200" + "33556088" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_so_night_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_aq_steel_knife_light" } - "33751201" + "33556089" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_so_night_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_aq_steel_knife_medium" } - "33751202" + "33556090" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_so_night_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_aq_steel_knife_heavy" } - "33751208" + "33556092" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_blued_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_ruby_marbleized_light" } - "33751209" + "33556093" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_blued_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_ruby_marbleized_medium" } - "33751210" + "33556094" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_blued_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_ruby_marbleized_heavy" } - "33751212" + "33556096" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_forced_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_sapphire_marbleized_light" } - "33751213" + "33556097" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_forced_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_sapphire_marbleized_medium" } - "33751214" + "33556098" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_forced_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_sapphire_marbleized_heavy" } - "33751216" + "33556100" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_oiled_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_blackpearl_marbleized_light" } - "33751217" + "33556101" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_oiled_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_blackpearl_marbleized_medium" } - "33751218" + "33556102" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_oiled_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_blackpearl_marbleized_heavy" } - "33751276" + "33556104" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_am_zebra_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase1_light" } - "33751277" + "33556105" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_am_zebra_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase1_medium" } - "33751278" + "33556106" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_am_zebra_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase1_heavy" } - "33751328" + "33556108" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase2_light" } - "33751329" + "33556109" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase2_medium" } - "33751330" + "33556110" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase2_heavy" } - "33751348" + "33556112" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase3_light" } - "33751349" + "33556113" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase3_medium" } - "33751350" + "33556114" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase3_heavy" } - "33751612" + "33556116" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase4_light" } - "33751613" + "33556117" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase4_medium" } - "33751614" + "33556118" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_doppler_phase4_heavy" } - "33751740" + "33556704" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_dapple_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_emerald_marbleized_light" } - "33751741" + "33556705" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_dapple_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_emerald_marbleized_medium" } - "33751742" + "33556706" { - "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_dapple_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_emerald_marbleized_heavy" } - "33816596" + "33556708" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_ddpat_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase1_light" } - "33816597" + "33556709" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_ddpat_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase1_medium" } - "33816598" + "33556710" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_ddpat_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase1_heavy" } - "33816624" + "33556712" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_webs_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase2_light" } - "33816625" + "33556713" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_webs_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase2_medium" } - "33816626" + "33556714" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_webs_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase2_heavy" } - "33816728" + "33556716" { - "icon_path" "econ/default_generated/weapon_knife_push_aa_fade_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase3_light" } - "33816729" + "33556717" { - "icon_path" "econ/default_generated/weapon_knife_push_aa_fade_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase3_medium" } - "33816730" + "33556718" { - "icon_path" "econ/default_generated/weapon_knife_push_aa_fade_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase3_heavy" } - "33816736" + "33556720" { - "icon_path" "econ/default_generated/weapon_knife_push_so_night_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase4_light" } - "33816737" + "33556721" { - "icon_path" "econ/default_generated/weapon_knife_push_so_night_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase4_medium" } - "33816738" + "33556722" { - "icon_path" "econ/default_generated/weapon_knife_push_so_night_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase4_heavy" } - "33816744" + "33556748" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_blued_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_hy_ocean_knife_90_light" } - "33816745" + "33556749" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_blued_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_hy_ocean_knife_90_medium" } - "33816746" + "33556750" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_blued_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_hy_ocean_knife_90_heavy" } - "33816748" + "33556756" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_forced_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_marked_up_90_light" } - "33816749" + "33556757" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_forced_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_marked_up_90_medium" } - "33816750" + "33556758" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_forced_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_am_marked_up_90_heavy" } - "33816752" + "33556916" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_oiled_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_so_purple_falchion_light" } - "33816753" + "33556917" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_oiled_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_so_purple_falchion_medium" } - "33816754" + "33556918" { - "icon_path" "econ/default_generated/weapon_knife_push_aq_oiled_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_so_purple_falchion_heavy" } - "33816812" + "33558856" { - "icon_path" "econ/default_generated/weapon_knife_push_am_zebra_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_cu_falchion_lore_light" } - "33816813" + "33558857" { - "icon_path" "econ/default_generated/weapon_knife_push_am_zebra_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_cu_falchion_lore_medium" } - "33816814" + "33558858" { - "icon_path" "econ/default_generated/weapon_knife_push_am_zebra_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_cu_falchion_lore_heavy" } - "33816864" + "33558876" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_mesh_tan_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_gs_falchion_black_laminate_light" } - "33816865" + "33558877" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_mesh_tan_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_gs_falchion_black_laminate_medium" } - "33816866" + "33558878" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_mesh_tan_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_gs_falchion_black_laminate_heavy" } - "33816884" + "33558896" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_forest_boreal_light" + "icon_path" "econ/default_generated/weapon_knife_falchion_gs_falchion_autotronic_light" } - "33816885" + "33558897" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_forest_boreal_medium" + "icon_path" "econ/default_generated/weapon_knife_falchion_gs_falchion_autotronic_medium" } - "33816886" + "33558898" { - "icon_path" "econ/default_generated/weapon_knife_push_hy_forest_boreal_heavy" + "icon_path" "econ/default_generated/weapon_knife_falchion_gs_falchion_autotronic_heavy" } - "33817148" + "33685524" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_tape_urban_light" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_light" } - "33817149" + "33685525" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_tape_urban_medium" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_medium" } - "33817150" + "33685526" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_tape_urban_heavy" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_heavy" } - "33817276" + "33685552" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_dapple_light" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_webs_light" } - "33817277" + "33685553" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_dapple_medium" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_webs_medium" } - "33817278" + "33685554" { - "icon_path" "econ/default_generated/weapon_knife_push_sp_dapple_heavy" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_webs_heavy" } - } - } - "prefabs" - { - "quest_prefab" - { - "name" "quest_item" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Quest" - "item_name" "#CSGO_Type_Quest" - "item_description" "#CSGO_Quest_Desc" - "icon_default_image" "materials/icons/inventory_icon_quest.vtf" - "image_inventory" "econ/tools/mission" - "item_quality" "unique" - "item_rarity" "common" - "min_ilevel" "1" - "max_ilevel" "1" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "mouse_pressed_sound" "ui/item_paper_pickup.wav" - "drop_sound" "ui/item_paper_pickup.wav" - "capabilities" + "33685656" { - "can_delete" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aa_fade_light" } - } - "musickit_prefab" - { - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_MusicKit" - "item_name" "#CSGO_Type_MusicKit" - "item_description" "#CSGO_MusicKit_Desc" - "item_slot" "musickit" - "item_sub_position" "musickit" - "item_rarity" "rare" - "item_quality" "unique" - "min_ilevel" "1" - "max_ilevel" "1" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "mouse_pressed_sound" "ui/item_paper_pickup.wav" - "drop_sound" "ui/item_paper_pickup.wav" - "used_by_classes" + "33685657" { - "noteam" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aa_fade_medium" } - "capabilities" + "33685658" { - "can_stattrack_swap" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aa_fade_heavy" } - } - "bundle_base" - { - "item_class" "bundle" - "item_type_name" "#CSGO_Type_StoreBundle" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "item_quality" "unique" - "min_ilevel" "50" - "max_ilevel" "50" - "mouse_pressed_sound" "ui/item_paper_pickup.wav" - "drop_sound" "ui/item_paper_pickup.wav" - } - "weapon_case_base" - { - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_WeaponCase_Standard" - "image_inventory" "econ/weapon_cases/weapon_case_generic" - "item_quality" "unique" - "item_rarity" "common" - "min_ilevel" "1" - "max_ilevel" "1" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "mouse_pressed_sound" "physics/plastic/plastic_box_impact_soft1.wav" - "drop_sound" "physics/plastic/plastic_box_impact_hard1.wav" - "tool" + "33685664" { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_so_night_light" } - "capabilities" + "33685665" { - "decodable" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_so_night_medium" } - "image_unusual_item" "econ/weapon_cases/default_rare_item" - "loot_list_rare_item_name" "#Exceedingly_Rare_Item" - "loot_list_rare_item_footer" "#Econ_Revolving_Loot_List_Rare_Item" - } - "weapon_case" - { - "prefab" "weapon_case_base" - "associated_item" "1203" - "capabilities" + "33685666" { - "can_delete" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_so_night_heavy" } - } - "csgo_tool" - { - "item_class" "tool" - "craft_class" "tool" - "craft_material_type" "tool" - "item_type_name" "#CSGO_Type_Tool" - "item_quality" "unique" - "item_rarity" "common" - "min_ilevel" "1" - "max_ilevel" "1" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "mouse_pressed_sound" "weapons/c4/c4_disarm.wav" - "drop_sound" "weapons/c4/c4_disarm.wav" - } - "weapon_case_key" - { - "prefab" "csgo_tool" - "item_name" "#CSGO_Tool_WeaponCase_Key" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_description" "#CSGO_Tool_WeaponCase_Key_Desc" - "image_inventory" "econ/tools/weapon_case_key" - "mouse_pressed_sound" "doors/door_lock_1.wav" - "drop_sound" "doors/handle_pushbar_locked1.wav" - "tool" + "33685672" { - "type" "decoder_ring" - "use_string" "#UnlockUse" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_blued_light" } - } - "recipe" - { - "prefab" "csgo_tool" - "item_type_name" "#CSGO_Type_recipe" - "image_inventory" "econ/tools/crafting_contract" - "tool" + "33685673" { - "type" "recipe" - "usage_capabilities" - { - "recipe" "1" - "usable_out_of_game" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_blued_medium" } - } - "collectible" - { - "item_class" "collectible_item" - "craft_class" "collectable" - "craft_material_type" "tool" - "item_type_name" "#CSGO_Type_Collectible" - "item_quality" "unique" - "item_rarity" "ancient" - "min_ilevel" "1" - "max_ilevel" "1" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "mouse_pressed_sound" "physics/meta/chain_impact_hard1.wav" - "drop_sound" "physics/meta/chain_impact_hard1.wav" - "item_slot" "flair0" - "item_sub_position" "flair0" - "used_by_classes" + "33685674" { - "noteam" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_blued_heavy" } - } - "collectible_untradable" - { - "prefab" "collectible" - "attributes" + "33685676" { - "cannot trade" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_forced_light" } - } - "operation_coin" - { - "prefab" "collectible_untradable" - "item_type" "operation_coin" - } - "prestige_coin" - { - "prefab" "collectible_untradable" - "item_type" "prestige_coin" - } - "attendance_pin" - { - "prefab" "collectible_untradable" - "item_quality" "genuine" - } - "season1_coin" - { - "prefab" "operation_coin" - "attributes" + "33685677" { - "season access" "0" - "minutes played" - { - "attribute_class" "minutes_played" - "value" "1" - "force_gc_to_generate" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_forced_medium" } - } - "season2_coin" - { - "prefab" "operation_coin" - "attributes" + "33685678" { - "season access" "1" - "minutes played" - { - "attribute_class" "minutes_played" - "value" "1" - "force_gc_to_generate" "1" - } - "match wins" - { - "attribute_class" "match_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive minutes played" - { - "attribute_class" "competitive_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive wins" - { - "attribute_class" "competitive_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive kills" - { - "attribute_class" "competitive_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 3k" - { - "attribute_class" "competitive_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 4k" - { - "attribute_class" "competitive_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 5k" - { - "attribute_class" "competitive_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive hsp" - { - "attribute_class" "competitive_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive mvps" - { - "attribute_class" "competitive_mvps" - "value" "0" - "force_gc_to_generate" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_forced_heavy" } - } - "season3_coin" - { - "prefab" "operation_coin" - "attributes" + "33685680" { - "season access" "2" - "minutes played" - { - "attribute_class" "minutes_played" - "value" "1" - "force_gc_to_generate" "1" - } - "match wins" - { - "attribute_class" "match_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive minutes played" - { - "attribute_class" "competitive_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive wins" - { - "attribute_class" "competitive_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive kills" - { - "attribute_class" "competitive_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 3k" - { - "attribute_class" "competitive_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 4k" - { - "attribute_class" "competitive_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 5k" - { - "attribute_class" "competitive_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive hsp" - { - "attribute_class" "competitive_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive mvps" - { - "attribute_class" "competitive_mvps" - "value" "0" - "force_gc_to_generate" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_oiled_light" } - } - "season4_coin" - { - "prefab" "operation_coin" - "attributes" + "33685681" { - "season access" "3" - "minutes played" - { - "attribute_class" "minutes_played" - "value" "1" - } - "operation minutes played" - { - "attribute_class" "operation_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "operation wins" - { - "attribute_class" "operation_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "operation kills" - { - "attribute_class" "operation_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 3k" - { - "attribute_class" "operation_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 4k" - { - "attribute_class" "operation_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 5k" - { - "attribute_class" "operation_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation hsp" - { - "attribute_class" "operation_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "operation mvps" - { - "attribute_class" "operation_mvps" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive minutes played" - { - "attribute_class" "competitive_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive wins" - { - "attribute_class" "competitive_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive kills" - { - "attribute_class" "competitive_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 3k" - { - "attribute_class" "competitive_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 4k" - { - "attribute_class" "competitive_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 5k" - { - "attribute_class" "competitive_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive hsp" - { - "attribute_class" "competitive_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive mvps" - { - "attribute_class" "competitive_mvps" - "value" "0" - "force_gc_to_generate" "1" - } - "quests complete" - { - "attribute_class" "quests_complete" - "value" "0" - "force_gc_to_generate" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_oiled_medium" } - } - "season5_coin" - { - "prefab" "operation_coin" - "attributes" + "33685682" { - "season access" "4" - "minutes played" - { - "attribute_class" "minutes_played" - "value" "1" - } - "operation minutes played" - { - "attribute_class" "operation_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "operation wins" - { - "attribute_class" "operation_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "operation kills" - { - "attribute_class" "operation_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 3k" - { - "attribute_class" "operation_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 4k" - { - "attribute_class" "operation_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 5k" - { - "attribute_class" "operation_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation hsp" - { - "attribute_class" "operation_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "operation mvps" - { - "attribute_class" "operation_mvps" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive minutes played" - { - "attribute_class" "competitive_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive wins" - { - "attribute_class" "competitive_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive kills" - { - "attribute_class" "competitive_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 3k" - { - "attribute_class" "competitive_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 4k" - { - "attribute_class" "competitive_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 5k" - { - "attribute_class" "competitive_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive hsp" - { - "attribute_class" "competitive_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive mvps" - { - "attribute_class" "competitive_mvps" - "value" "0" - "force_gc_to_generate" "1" - } - "quests complete" - { - "attribute_class" "quests_complete" - "value" "0" - "force_gc_to_generate" "1" - } - "operation points" - { - "attribute_class" "operation_points" - "value" "0" - "force_gc_to_generate" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_oiled_heavy" } - } - "season6_coin" - { - "prefab" "operation_coin" - "attributes" + "33685740" { - "season access" "5" - "minutes played" - { - "attribute_class" "minutes_played" - "value" "1" - } - "operation minutes played" - { - "attribute_class" "operation_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "operation wins" - { - "attribute_class" "operation_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "operation kills" - { - "attribute_class" "operation_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 3k" - { - "attribute_class" "operation_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 4k" - { - "attribute_class" "operation_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation 5k" - { - "attribute_class" "operation_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "operation hsp" - { - "attribute_class" "operation_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "operation mvps" - { - "attribute_class" "operation_mvps" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive minutes played" - { - "attribute_class" "competitive_minutes_played" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive wins" - { - "attribute_class" "competitive_wins" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive kills" - { - "attribute_class" "competitive_kills" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 3k" - { - "attribute_class" "competitive_3k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 4k" - { - "attribute_class" "competitive_4k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive 5k" - { - "attribute_class" "competitive_5k" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive hsp" - { - "attribute_class" "competitive_hsp" - "value" "0" - "force_gc_to_generate" "1" - } - "competitive mvps" - { - "attribute_class" "competitive_mvps" - "value" "0" - "force_gc_to_generate" "1" - } - "quests complete" - { - "attribute_class" "quests_complete" - "value" "0" - "force_gc_to_generate" "1" - } - "operation points" - { - "attribute_class" "operation_points" - "value" "0" - "force_gc_to_generate" "1" - } - "quest id" - { - "attribute_class" "quest_id" - "value" "0" - "force_gc_to_generate" "1" - } - "campaign 5 completion bitfield" - { - "attribute_class" "campaign_completion_bitfield" - "value" "0" - "force_gc_to_generate" "1" - } - "campaign 5 last completed quest" - { - "attribute_class" "campaign_last_completed_quest" - "value" "0" - "force_gc_to_generate" "1" - } - "campaign 6 completion bitfield" - { - "attribute_class" "campaign_completion_bitfield" - "value" "0" - "force_gc_to_generate" "1" - } - "campaign 6 last completed quest" - { - "attribute_class" "campaign_last_completed_quest" - "value" "0" - "force_gc_to_generate" "1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_zebra_light" } - } - "prestige_2015" - { - "prefab" "prestige_coin" - "attributes" + "33685741" { - "prestige year" "2015" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_zebra_medium" } - } - "map_token" - { - "prefab" "collectible" - "item_class" "map_token" - "armory_desc" "maptoken" - } - "steam_badge" - { - "prefab" "collectible_untradable" - } - "flair_pin" - { - "prefab" "collectible" - } - "weapon_base" - { - "craft_class" "weapon" - "craft_material_type" "weapon" - "item_quality" "unique" - "item_rarity" "common" - "min_ilevel" "1" - "max_ilevel" "1" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "mouse_pressed_sound" "weapons/m4a1/m4a1_clipout.wav" - "drop_sound" "weapons/m4a1/m4a1_clipint.wav" - "inventory_image_data" + "33685742" { - "camera_angles" "2.0 -130.0 0.0" - "camera_offset" "0.0 1.0 -2.0" - "camera_fov" "35.000000" - "override_default_light" "1" - "spot_light_key" - { - "position" "-120 120 180" - "color" "2 2.1 2.3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "10.0 -90.0 -60.0" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_zebra_heavy" } - } - "equipment" - { - "prefab" "weapon_base" - "item_type_name" "#CSGO_Type_Equipment" - "item_slot" "equipment" - "visuals" + "33685792" { - "weapon_type" "Equipment" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_light" } - } - "grenade" - { - "prefab" "weapon_base" - "item_type_name" "#CSGO_Type_Grenade" - "item_slot" "grenade" - "mouse_pressed_sound" "weapons/hegrenade/he_draw.wav" - "drop_sound" "weapons/hegrenade/pinpull.wav" - "visuals" + "33685793" { - "weapon_type" "Grenade" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_medium" } - "inventory_image_data" + "33685794" { - "camera_angles" "0.0 -130.0 -10.0" - "camera_offset" "0.0 0.0 -1.5" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_heavy" } - } - "c4" - { - "prefab" "weapon_base" - "capabilities" + "33685812" { - "nameable" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_light" } - "item_class" "weapon_c4" - "item_type_name" "#CSGO_Type_C4" - "item_slot" "c4" - "item_name" "#SFUI_WPNHUD_C4" - "item_description" "#CSGO_Item_Desc_C4" - "icon_default_image" "materials/icons/inventory_icon_weapon_c4.vtf" - "model_player" "models/weapons/v_ied.mdl" - "model_world" "models/weapons/w_ied.mdl" - "mouse_pressed_sound" "weapons/c4/c4_draw.wav" - "drop_sound" "weapons/c4/c4_plant.wav" - "visuals" + "33685813" { - "weapon_type" "C4" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_medium" } - "used_by_classes" + "33685814" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_heavy" } - } - "melee" - { - "prefab" "weapon_base" - "capabilities" + "33685896" { - "nameable" "1" - "can_stattrack_swap" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_so_purple_light" } - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_slot" "melee" - "item_sub_position" "melee" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife.vtf" - "mouse_pressed_sound" "weapons/knife/knife_deploy1.wav" - "drop_sound" "weapons/knife/knife_hit1.wav" - "attributes" + "33685897" { - "stattrak model" "models/weapons/stattrack_cut.mdl" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_so_purple_medium" } - "inventory_image_data" + "33685898" { - "camera_angles" "30.0 -90.0 25.0" - "camera_offset" "7.0 2.0 -1.5" - "spot_light_key" - { - "position" "-60 90 60" - "color" "1.5 1.55 1.6" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "0 -30 -120" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "15 7 4" - "color" "0.5 0.5 0.5" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_so_purple_heavy" } - "visuals" + "33686076" { - "weapon_type" "Knife" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_light" } - "attributes" + "33686077" { - "flinch velocity modifier large" "0.300000" - "flinch velocity modifier small" "0.300000" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_medium" } - } - "melee_unusual" - { - "prefab" "melee" - "capabilities" + "33686078" { - "paintable" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_heavy" } - "item_rarity" "ancient" - } - "secondary" - { - "prefab" "weapon_base" - "capabilities" + "33686204" { - "nameable" "1" - "paintable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_dapple_light" } - "item_type_name" "#CSGO_Type_Pistol" - "item_slot" "secondary" - "mouse_pressed_sound" "weapons/DEagle/de_clipout.wav" - "drop_sound" "weapons/DEagle/de_clipin.wav" - "attributes" + "33686205" { - "stattrak model" "models/weapons/stattrack.mdl" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_dapple_medium" } - "visuals" + "33686206" { - "weapon_type" "Pistol" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_sp_dapple_heavy" } - "attributes" + "33687140" { - "flinch velocity modifier large" "0.560000" - "flinch velocity modifier small" "0.050000" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_an_tiger_orange_light" } - } - "primary" - { - "prefab" "weapon_base" - "capabilities" + "33687141" { - "nameable" "1" - "paintable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_an_tiger_orange_medium" } - "attributes" + "33687142" { - "stattrak model" "models/weapons/stattrack.mdl" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_an_tiger_orange_heavy" } - } - "smg" - { - "prefab" "primary" - "item_type_name" "#CSGO_Type_SMG" - "item_slot" "smg" - "mouse_pressed_sound" "weapons/p90/p90_clipout.wav" - "drop_sound" "weapons/p90/p90_clipin.wav" - "visuals" + "33687148" { - "weapon_type" "SubMachinegun" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_damascus_90_light" } - "attributes" + "33687149" { - "flinch velocity modifier large" "0.530000" - "flinch velocity modifier small" "0.300000" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_damascus_90_medium" } - } - "rifle" - { - "prefab" "primary" - "item_type_name" "#CSGO_Type_Rifle" - "item_slot" "rifle" - "mouse_pressed_sound" "weapons/m4a1/m4a1_clipout.wav" - "drop_sound" "weapons/m4a1/m4a1_clipin.wav" - "visuals" + "33687150" { - "weapon_type" "Rifle" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_damascus_90_heavy" } - "attributes" + "33687156" { - "flinch velocity modifier large" "0.440000" - "flinch velocity modifier small" "0.100000" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_marble_fade_light" } - } - "sniper_rifle" - { - "prefab" "primary" - "item_type_name" "#CSGO_Type_SniperRifle" - "item_slot" "rifle" - "mouse_pressed_sound" "weapons/awp/awp_clipout.wav" - "drop_sound" "weapons/awp/awp_clipin.wav" - "visuals" + "33687157" { - "weapon_type" "SniperRifle" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_marble_fade_medium" } - "attributes" + "33687158" { - "flinch velocity modifier large" "0.390000" - "flinch velocity modifier small" "0.500000" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_marble_fade_heavy" } - } - "shotgun" - { - "prefab" "primary" - "item_type_name" "#CSGO_Type_Shotgun" - "item_slot" "heavy" - "mouse_pressed_sound" "weapons/sawedoff/sawedoff_draw.wav" - "drop_sound" "weapons/sawedoff/sawedoff_pump.wav" - "visuals" + "33687160" { - "weapon_type" "Shotgun" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_steel_knife_light" } - "attributes" + "33687161" { - "flinch velocity modifier large" "0.350000" - "flinch velocity modifier small" "0.100000" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_steel_knife_medium" } - } - "machinegun" - { - "prefab" "primary" - "item_type_name" "#CSGO_Type_Machinegun" - "item_slot" "heavy" - "mouse_pressed_sound" "weapons/m249/m249_boxout.wav" - "drop_sound" "weapons/m249/m249_boxin.wav" - "visuals" + "33687162" { - "weapon_type" "Machinegun" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_aq_steel_knife_heavy" } - "attributes" + "33687164" { - "flinch velocity modifier large" "0.400000" - "flinch velocity modifier small" "0.220000" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_ruby_marbleized_light" } - } - "weapon_deagle_prefab" - { - "prefab" "secondary" - "item_class" "weapon_deagle" - "item_name" "#SFUI_WPNHUD_DesertEagle" - "item_description" "#CSGO_Item_Desc_DesertEagle" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_deagle" - "model_player" "models/weapons/v_pist_deagle.mdl" - "model_world" "models/weapons/w_pist_deagle.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_deagle.vtf" - "stickers" + "33687165" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_a.mdl" - "worldmodel_decal_pos" "2.53443 -3.22857 -1.90564" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_b.mdl" - "worldmodel_decal_pos" "2.53443 -0.989865 -1.12229" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_c.mdl" - "worldmodel_decal_pos" "2.53443 -0.955564 1.77999" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_d.mdl" - "worldmodel_decal_pos" "2.53443 -0.929928 4.8028" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_ruby_marbleized_medium" } - "used_by_classes" + "33687166" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_ruby_marbleized_heavy" } - "attributes" + "33687168" { - "magazine model" "models/weapons/w_pist_deagle_mag.mdl" - "primary reserve ammo max" "35" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_sapphire_marbleized_light" } - "inventory_image_data" + "33687169" { - "camera_angles" "-2.0 -130.0 0.0" - "camera_offset" "4.0 1.0 -1.3" - "point_light_accent" - { - "position" "-8 50 -8" - "color" "0.3 0.3 0.3" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_sapphire_marbleized_medium" } - "paint_data" + "33687170" { - "PaintableMaterial0" - { - "Name" "pist_deagle" - "ViewmodelDim" "1024" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "11.360100" - "UVScale" "0.300000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_sapphire_marbleized_heavy" } - "visuals" + "33687172" { - "taunt_sequence" "taunt_pistolSpin01" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_blackpearl_marbleized_light" } - } - "weapon_elite_prefab" - { - "prefab" "secondary" - "item_class" "weapon_elite" - "item_name" "#SFUI_WPNHUD_Elites" - "item_description" "#CSGO_Item_Desc_Elites" - "image_inventory" "econ/weapons/base_weapons/weapon_elite" - "model_player" "models/weapons/v_pist_elite.mdl" - "model_world" "models/weapons/w_pist_elite.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_elite.vtf" - "stickers" + "33687173" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_a.mdl" - "worldmodel_decal_pos" "2.00 1.50 3.30" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_b.mdl" - "worldmodel_decal_pos" "2.00 2.80 5.40" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_c.mdl" - "worldmodel_decal_pos" "4.0 2.80 -3.40" - "worldmodel_decal_end" "4.0 -2.80 -2.40" - "worldmodel_decal_bone" "ValveBiped.Bip01_L_Hand" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_d.mdl" - "worldmodel_decal_pos" "7.5 2.80 -3.40" - "worldmodel_decal_end" "7.5 -2.80 -2.40" - "worldmodel_decal_bone" "ValveBiped.Bip01_L_Hand" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_blackpearl_marbleized_medium" } - "used_by_classes" + "33687174" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_blackpearl_marbleized_heavy" } - "attributes" + "33687176" { - "icon display model" "models/weapons/w_pist_elite_icon.mdl" - "buymenu display model" "models/weapons/w_pist_elite_buymenu.mdl" - "primary reserve ammo max" "120" - "magazine model" "models/weapons/w_pist_elite_mag.mdl" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase1_light" } - "inventory_image_data" + "33687177" { - "camera_angles" "0.0 -90.0 0.0" - "camera_offset" "2.0 0.5 -2.0" - "point_light_accent" - { - "position" "0 20 20" - "color" "1 1 1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase1_medium" } - "paint_data" + "33687178" { - "PaintableMaterial0" - { - "Name" "pist_elite" - "OrigMat" "m9a1" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "10.408200" - "UVScale" "0.282000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase1_heavy" } - } - "weapon_fiveseven_prefab" - { - "prefab" "secondary" - "item_class" "weapon_fiveseven" - "item_name" "#SFUI_WPNHUD_FiveSeven" - "item_description" "#CSGO_Item_Desc_FiveSeven" - "image_inventory" "econ/weapons/base_weapons/weapon_fiveseven" - "model_player" "models/weapons/v_pist_fiveseven.mdl" - "model_world" "models/weapons/w_pist_fiveseven.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_fiveseven.vtf" - "stickers" + "33687180" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_a.mdl" - "worldmodel_decal_pos" "3.99388 -1.26199 -1.90926" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_b.mdl" - "worldmodel_decal_pos" "3.99388 -1.15953 0.562159" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_c.mdl" - "worldmodel_decal_pos" "3.99388 -1.15953 3.3738" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_d.mdl" - "worldmodel_decal_pos" "3.99388 -3.97353 -2.19972" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase2_light" } - "used_by_classes" + "33687181" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase2_medium" } - "attributes" + "33687182" { - "magazine model" "models/weapons/w_pist_fiveseven_mag.mdl" - "primary reserve ammo max" "100" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase2_heavy" } - "inventory_image_data" + "33687184" { - "camera_offset" "1.0 1.0 -1.3" - "camera_fov" "55.000000" - "point_light_accent" - { - "position" "40 30 10" - "color" "1 1 1" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase3_light" } - "paint_data" + "33687185" { - "PaintableMaterial0" - { - "Name" "pist_fiveseven" - "OrigMat" "fiveseven" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "8.093060" - "UVScale" "0.264000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase3_medium" } - "visuals" + "33687186" { - "taunt_sequence" "taunt_pistolSpin01" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase3_heavy" } - } - "weapon_glock_prefab" - { - "prefab" "secondary" - "item_class" "weapon_glock" - "item_name" "#SFUI_WPNHUD_Glock18" - "item_description" "#CSGO_Item_Desc_Glock18" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_glock" - "model_player" "models/weapons/v_pist_glock18.mdl" - "model_world" "models/weapons/w_pist_glock18.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_glock.vtf" - "stickers" + "33687188" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_a.mdl" - "worldmodel_decal_pos" "1.74152 -1.1069 -2.00371" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_b.mdl" - "worldmodel_decal_pos" "1.74152 -0.997365 -0.0349085" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_c.mdl" - "worldmodel_decal_pos" "1.74152 -0.997365 2.59865" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_d.mdl" - "worldmodel_decal_pos" "1.74152 -3.20111 -2.18992" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase4_light" } - "used_by_classes" + "33687189" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase4_medium" } - "inventory_image_data" + "33687190" { - "camera_offset" "2.0 0.7 -1.0" - "point_light_accent" - { - "position" "-15 20 -15" - "color" "0.3 0.3 0.3" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase4_heavy" } - "attributes" + "33687776" { - "uid model" "models/weapons/uid_small.mdl" - "has burst mode" "1" - "cycletime when in burst mode" "0.500000" - "time between burst shots" "0.050000" - "primary reserve ammo max" "120" - "magazine model" "models/weapons/w_pist_glock18_mag.mdl" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_emerald_marbleized_light" } - "paint_data" + "33687777" { - "PaintableMaterial0" - { - "Name" "pist_glock18" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "7.976940" - "UVScale" "0.446000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_emerald_marbleized_medium" } - "visuals" + "33687778" { - "taunt_sequence" "taunt_pistolSpin01" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_emerald_marbleized_heavy" } - } - "weapon_hkp2000_prefab" - { - "prefab" "secondary" - "item_class" "weapon_hkp2000" - "item_name" "#SFUI_WPNHUD_HKP2000" - "item_description" "#CSGO_Item_Desc_HKP2000" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_hkp2000" - "model_player" "models/weapons/v_pist_hkp2000.mdl" - "model_world" "models/weapons/w_pist_hkp2000.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_hkp2000.vtf" - "stickers" + "33687780" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_a.mdl" - "worldmodel_decal_pos" "2.80535 -1.33829 -1.86912" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_b.mdl" - "worldmodel_decal_pos" "2.80535 -1.07812 0.305017" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_c.mdl" - "worldmodel_decal_pos" "2.80535 -1.01071 2.49434" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_d.mdl" - "worldmodel_decal_pos" "2.80535 -3.52435 -2.21698" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase1_light" } - "used_by_classes" + "33687781" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase1_medium" } - "attributes" + "33687782" { - "magazine model" "models/weapons/w_pist_hkp2000_mag.mdl" - "uid model" "models/weapons/uid_small.mdl" - "primary reserve ammo max" "52" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase1_heavy" } - "inventory_image_data" + "33687784" { - "camera_offset" "1.4 1.0 -1.0" - "spot_light_key" - { - "position" "-100 120 90" - "color" "1.5 1.55 1.6" - "lookat" "-30.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "0 -80 -120" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "-15 20 -15" - "color" "0.3 0.3 0.3" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase2_light" } - "paint_data" + "33687785" { - "PaintableMaterial0" - { - "Name" "pist_hkp2000" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "7.553070" - "UVScale" "0.288000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase2_medium" } - "visuals" + "33687786" { - "taunt_sequence" "taunt_pistolSpin01" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase2_heavy" } - } - "weapon_p250_prefab" - { - "prefab" "secondary" - "item_class" "weapon_p250" - "item_name" "#SFUI_WPNHUD_P250" - "item_description" "#CSGO_Item_Desc_P250" - "image_inventory" "econ/weapons/base_weapons/weapon_p250" - "model_player" "models/weapons/v_pist_p250.mdl" - "model_world" "models/weapons/w_pist_p250.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_p250.vtf" - "stickers" + "33687788" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_a.mdl" - "worldmodel_decal_pos" "4.15176 -1.13887 -1.69286" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_b.mdl" - "worldmodel_decal_pos" "4.15176 -1.13887 0.526864" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_c.mdl" - "worldmodel_decal_pos" "4.15176 -1.00962 2.95341" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_d.mdl" - "worldmodel_decal_pos" "4.15176 -3.54077 -2.10545" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase3_light" } - "used_by_classes" + "33687789" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase3_medium" } - "attributes" + "33687790" { - "magazine model" "models/weapons/w_pist_p250_mag.mdl" - "primary reserve ammo max" "26" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase3_heavy" } - "inventory_image_data" + "33687792" { - "camera_angles" "-1.2 -130.0 0.0" - "camera_offset" "1.4 1.0 -1.0" - "point_light_accent" - { - "position" "40 30 10" - "color" "0.25 0.25 0.25" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase4_light" } - "paint_data" + "33687793" { - "PaintableMaterial0" - { - "Name" "pist_p250" - "OrigMat" "p250" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "7.966500" - "UVScale" "0.371000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase4_medium" } - "visuals" + "33687794" { - "taunt_sequence" "taunt_pistolSpin01" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase4_heavy" } - } - "weapon_cz75a_prefab" - { - "prefab" "weapon_p250_prefab" - "item_name" "#SFUI_WPNHUD_CZ75" - "item_description" "#CSGO_Item_Desc_cz75a" - "model_player" "models/weapons/v_pist_cz_75.mdl" - "model_world" "models/weapons/w_pist_cz_75.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_cz75a.vtf" - "image_inventory" "econ/weapons/base_weapons/weapon_cz75a" - "attributes" + "33687820" { - "damage" "33" - "is full auto" "1" - "in game price" "500" - "cycletime" "0.100000" - "recoil angle" "0" - "recoil angle variance" "180" - "recoil magnitude" "27" - "recoil magnitude variance" "12" - "spread" "3" - "primary clip size" "12" - "magazine model" "models/weapons/w_pist_cz_75_mag.mdl" - "inaccuracy stand" "10.430000" - "inaccuracy fire" "25.000000" - "inaccuracy crouch" "7.600000" - "kill award" "100" - "primary reserve ammo max" "12" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_ocean_knife_90_light" } - "stickers" + "33687821" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_a.mdl" - "worldmodel_decal_pos" "4.48833 -0.638561 1.82505" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_b.mdl" - "worldmodel_decal_pos" "4.48833 -0.670694 -0.409493" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_c.mdl" - "worldmodel_decal_pos" "4.48833 -1.2847 -2.19901" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_d.mdl" - "worldmodel_decal_pos" "4.48833 -3.99455 -3.27462" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_ocean_knife_90_medium" } - "inventory_image_data" + "33687822" { - "spot_light_key" - { - "position" "-180 120 120" - "color" "3.5 3.6 3.8" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_hy_ocean_knife_90_heavy" } - "paint_data" + "33687828" { - "PaintableMaterial0" - { - "Name" "pist_cz_75" - "OrigMat" "pist_cz_75" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "10.787000" - "UVScale" "0.400000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_marked_up_90_light" } - "visuals" + "33687829" { - "sound_single_shot" "Weapon_CZ75A.Single" - "primary_ammo" "BULLET_PLAYER_357SIG_MIN" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_marked_up_90_medium" } - } - "weapon_tec9_prefab" - { - "prefab" "secondary" - "item_class" "weapon_tec9" - "item_name" "#SFUI_WPNHUD_Tec9" - "item_description" "#CSGO_Item_Desc_Tec9" - "image_inventory" "econ/weapons/base_weapons/weapon_tec9" - "model_player" "models/weapons/v_pist_tec9.mdl" - "model_world" "models/weapons/w_pist_tec9.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_tec9.vtf" - "stickers" + "33687830" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_a.mdl" - "worldmodel_decal_pos" "3.56948 -1.2587 -1.39832" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_b.mdl" - "worldmodel_decal_pos" "3.56948 -1.2587 1.8176" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_c.mdl" - "worldmodel_decal_pos" "3.56948 -1.44876 4.78239" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_d.mdl" - "worldmodel_decal_pos" "-1.37183 -1.05785 -4.82885" - "worldmodel_decal_end" "-1.37183 -1.05785 0.557401" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_am_marked_up_90_heavy" } - "used_by_classes" + "33689920" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_cu_bowie_lore_light" } - "inventory_image_data" + "33689921" { - "camera_angles" "0.0 -125.0 0.0" - "camera_offset" "1.0 1.0 -1.6" - "camera_fov" "50.000000" - "spot_light_key" - { - "position" "-120 120 120" - "color" "1.5 1.55 1.6" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "60 -80 -120" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "0 2 30" - "color" "6 6 6" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_cu_bowie_lore_medium" } - "paint_data" + "33689922" { - "PaintableMaterial0" - { - "Name" "pist_tec9" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "13.340000" - "UVScale" "0.427000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_cu_bowie_lore_heavy" } - "attributes" + "33689940" { - "primary reserve ammo max" "120" - "magazine model" "models/weapons/w_pist_tec9_mag.mdl" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_gs_bowie_black_laminate_light" } - } - "weapon_bizon_prefab" - { - "prefab" "smg" - "item_class" "weapon_bizon" - "item_name" "#SFUI_WPNHUD_Bizon" - "item_description" "#CSGO_Item_Desc_Bizon" - "image_inventory" "econ/weapons/base_weapons/weapon_bizon" - "model_player" "models/weapons/v_smg_bizon.mdl" - "model_world" "models/weapons/w_smg_bizon.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_bizon.vtf" - "stickers" + "33689941" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_a.mdl" - "worldmodel_decal_pos" "4.72935 -0.869963 -1.26802" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_b.mdl" - "worldmodel_decal_pos" "4.72935 -0.9665 2.12768" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_c.mdl" - "worldmodel_decal_pos" "4.72935 -0.549397 5.92998" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_d.mdl" - "worldmodel_decal_pos" "4.72935 -3.19411 7.76426" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_gs_bowie_black_laminate_medium" } - "used_by_classes" + "33689942" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_gs_bowie_black_laminate_heavy" } - "attributes" + "33689960" { - "primary reserve ammo max" "120" - "magazine model" "models/weapons/w_smg_bizon_mag.mdl" + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_gs_bowie_autotronic_light" } - "inventory_image_data" + "33689961" { - "camera_angles" "-4.0 -130.0 0.0" - "camera_offset" "16.0 3.0 -2.0" - "point_light_accent" - { - "position" "0 20 10" - "color" "0.7 0.7 0.7" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_gs_bowie_autotronic_medium" } - "paint_data" + "33689962" { - "PaintableMaterial0" - { - "Name" "smg_bizon" - "OrigMat" "bizon" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "29.743700" - "UVScale" "0.596000" - } + "icon_path" "econ/default_generated/weapon_knife_survival_bowie_gs_bowie_autotronic_heavy" } - } - "weapon_mac10_prefab" - { - "prefab" "smg" - "item_class" "weapon_mac10" - "item_name" "#SFUI_WPNHUD_MAC10" - "item_description" "#CSGO_Item_Desc_Mac10" - "image_inventory" "econ/weapons/base_weapons/weapon_mac10" - "model_player" "models/weapons/v_smg_mac10.mdl" - "model_world" "models/weapons/w_smg_mac10.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_mac10.vtf" - "stickers" + "33751060" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_a.mdl" - "worldmodel_decal_pos" "3.83975 -0.466896 -3.83529" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_b.mdl" - "worldmodel_decal_pos" "3.83975 -3.5075 -1.68665" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_c.mdl" - "worldmodel_decal_pos" "3.83975 -0.740954 -1.11418" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_d.mdl" - "worldmodel_decal_pos" "3.83975 -0.942943 3.0487" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ddpat_light" } - "used_by_classes" + "33751061" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ddpat_medium" } - "attributes" + "33751062" { - "magazine model" "models/weapons/w_smg_mac10_mag.mdl" - "primary reserve ammo max" "100" + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ddpat_heavy" } - "inventory_image_data" + "33751088" { - "camera_angles" "-3.0 -125.0 -3.0" - "camera_offset" "3.0 0.5 -2.0" - "point_light_accent" - { - "position" "50 10 20" - "color" "2.5 2.5 2.5" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_webs_light" } - "paint_data" + "33751089" { - "PaintableMaterial0" - { - "Name" "smg_mac10" - "OrigMat" "smg_mac10_1" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "12.834300" - "UVScale" "0.495000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_webs_medium" } - } - "weapon_mp7_prefab" - { - "prefab" "smg" - "item_class" "weapon_mp7" - "item_name" "#SFUI_WPNHUD_MP7" - "item_description" "#CSGO_Item_Desc_MP7" - "image_inventory" "econ/weapons/base_weapons/weapon_mp7" - "model_player" "models/weapons/v_smg_mp7.mdl" - "model_world" "models/weapons/w_smg_mp7.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_mp7.vtf" - "stickers" + "33751090" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_a.mdl" - "worldmodel_decal_pos" "3.91874 -1.18899 -5.60001" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_b.mdl" - "worldmodel_decal_pos" "3.91874 -1.48012 -2.12288" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_c.mdl" - "worldmodel_decal_pos" "3.91874 -5.15067 -2.52061" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_d.mdl" - "worldmodel_decal_pos" "3.91874 -2.58889 -7.63391" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_webs_heavy" } - "used_by_classes" + "33751192" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_aa_fade_light" } - "attributes" + "33751193" { - "magazine model" "models/weapons/w_smg_mp7_mag.mdl" - "primary reserve ammo max" "120" + "icon_path" "econ/default_generated/weapon_knife_butterfly_aa_fade_medium" } - "inventory_image_data" + "33751194" { - "camera_angles" "0.0 -135.0 0.0" - "camera_offset" "7.0 1.0 -1.7" - "point_light_accent" - { - "position" "40 30 10" - "color" "1 1 1" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aa_fade_heavy" } - "paint_data" + "33751200" { - "PaintableMaterial0" - { - "Name" "smg_mp7" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "15.676800" - "UVScale" "0.446000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_so_night_light" } - } - "weapon_mp9_prefab" - { - "prefab" "smg" - "item_class" "weapon_mp9" - "item_name" "#SFUI_WPNHUD_MP9" - "item_description" "#CSGO_Item_Desc_MP9" - "image_inventory" "econ/weapons/base_weapons/weapon_mp9" - "model_player" "models/weapons/v_smg_mp9.mdl" - "model_world" "models/weapons/w_smg_mp9.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_mp9.vtf" - "stickers" + "33751201" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_a.mdl" - "worldmodel_decal_pos" "2.72058 -1.42886 -4.87973" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_b.mdl" - "worldmodel_decal_pos" "2.72058 -2.22002 -1.71083" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_c.mdl" - "worldmodel_decal_pos" "2.72058 -1.62016 2.65378" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_d.mdl" - "worldmodel_decal_pos" "2.72058 -5.68715 -2.01963" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_so_night_medium" } - "used_by_classes" + "33751202" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_so_night_heavy" } - "attributes" + "33751208" { - "magazine model" "models/weapons/w_smg_mp9_mag.mdl" - "primary reserve ammo max" "120" + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_blued_light" } - "inventory_image_data" + "33751209" { - "camera_offset" "10.0 3.0 -1.7" - "camera_fov" "45" - "spot_light_key" - { - "position" "-120 120 120" - "color" "2 2.1 2.3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "point_light_accent" - { - "position" "30 30 20" - "color" "0.25 0.25 0.25" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_blued_medium" } - "paint_data" + "33751210" { - "PaintableMaterial0" - { - "Name" "smg_mp9" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "22.126101" - "UVScale" "0.485000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_blued_heavy" } - } - "weapon_p90_prefab" - { - "prefab" "smg" - "item_class" "weapon_p90" - "item_name" "#SFUI_WPNHUD_P90" - "item_description" "#CSGO_Item_Desc_P90" - "image_inventory" "econ/weapons/base_weapons/weapon_p90" - "model_player" "models/weapons/v_smg_p90.mdl" - "model_world" "models/weapons/w_smg_p90.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_p90.vtf" - "stickers" + "33751212" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_a.mdl" - "worldmodel_decal_pos" "5.69832 -1.70705 -7.82337" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_b.mdl" - "worldmodel_decal_pos" "5.69832 -2.37658 -0.608743" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_c.mdl" - "worldmodel_decal_pos" "5.69832 -1.53075 3.86454" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_d.mdl" - "worldmodel_decal_pos" "5.69832 -2.26662 -11.4784" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_forced_light" } - "used_by_classes" + "33751213" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_forced_medium" } - "attributes" + "33751214" { - "magazine model" "models/weapons/w_smg_p90_mag.mdl" - "primary reserve ammo max" "100" + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_forced_heavy" } - "inventory_image_data" + "33751216" { - "camera_angles" "-3.0 -125.0 0.0" - "camera_offset" "9.0 1.6 -2.7" - "spot_light_key" - { - "position" "-120 120 120" - "color" "2 2.1 2.3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "-90 -120 -75" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "120 40 120" - "color" "0.25 0.25 0.25" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_oiled_light" } - "paint_data" + "33751217" { - "PaintableMaterial0" - { - "Name" "smg_p90" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "19.637100" - "UVScale" "0.537000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_oiled_medium" } - } - "weapon_ump45_prefab" - { - "prefab" "smg" - "item_class" "weapon_ump45" - "item_name" "#SFUI_WPNHUD_UMP45" - "item_description" "#CSGO_Item_Desc_UMP45" - "image_inventory" "econ/weapons/base_weapons/weapon_ump45" - "model_player" "models/weapons/v_smg_ump45.mdl" - "model_world" "models/weapons/w_smg_ump45.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_ump45.vtf" - "stickers" + "33751218" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_a.mdl" - "worldmodel_decal_pos" "5.50499 0.125392 -4.81061" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_b.mdl" - "worldmodel_decal_pos" "5.50499 -0.425925 -1.94732" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_c.mdl" - "worldmodel_decal_pos" "5.50499 -0.246568 1.68466" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_d.mdl" - "worldmodel_decal_pos" "5.50499 0.0477725 5.71236" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_oiled_heavy" } - "used_by_classes" + "33751276" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_zebra_light" } - "attributes" + "33751277" { - "magazine model" "models/weapons/w_smg_ump45_mag.mdl" - "primary reserve ammo max" "100" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_zebra_medium" } - "inventory_image_data" + "33751278" { - "camera_angles" "-4.0 -130.0 0.0" - "camera_offset" "16.0 2.5 -2.0" - "point_light_accent" - { - "position" "40 30 10" - "color" "0.25 0.25 0.25" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_zebra_heavy" } - "paint_data" + "33751328" { - "PaintableMaterial0" - { - "Name" "smg_ump45" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "29.215599" - "UVScale" "0.882000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_light" } - "visuals" + "33751329" { - "taunt_sequence" "taunt_rife01" + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_medium" } - } - "weapon_ak47_prefab" - { - "prefab" "rifle" - "item_class" "weapon_ak47" - "item_name" "#SFUI_WPNHUD_AK47" - "item_description" "#CSGO_Item_Desc_AK47" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_ak47" - "model_player" "models/weapons/v_rif_ak47.mdl" - "model_world" "models/weapons/w_rif_ak47.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_ak47.vtf" - "stickers" + "33751330" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_a.mdl" - "worldmodel_decal_pos" "6.43516 -1.26887 -0.743033" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_b.mdl" - "worldmodel_decal_pos" "6.43516 -1.47404 3.01389" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_c.mdl" - "worldmodel_decal_pos" "6.43516 -1.34147 7.33494" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_d.mdl" - "worldmodel_decal_pos" "6.43516 -1.31489 11.8284" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_heavy" } - "used_by_classes" + "33751348" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_light" } - "attributes" + "33751349" { - "magazine model" "models/weapons/w_rif_ak47_mag.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_medium" } - "inventory_image_data" + "33751350" { - "camera_angles" "-2.0 -135.0 0.0" - "camera_offset" "18.0 3.7 -2.5" + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_heavy" } - "paint_data" + "33751432" { - "PaintableMaterial0" - { - "Name" "rif_ak47" - "OrigMat" "ak47" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "37.746201" - "UVScale" "0.549000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_so_purple_light" } - "visuals" + "33751433" { - "taunt_sequence" "taunt_rife01" + "icon_path" "econ/default_generated/weapon_knife_butterfly_so_purple_medium" } - } - "weapon_aug_prefab" - { - "prefab" "rifle" - "item_class" "weapon_aug" - "item_name" "#SFUI_WPNHUD_Aug" - "item_description" "#CSGO_Item_Desc_Aug" - "item_rarity" "common" - "image_inventory" "econ/weapons/base_weapons/weapon_aug" - "model_player" "models/weapons/v_rif_aug.mdl" - "model_world" "models/weapons/w_rif_aug.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_aug.vtf" - "stickers" + "33751434" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_a.mdl" - "worldmodel_decal_pos" "5.94244 -0.866151 -12.1983" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_b.mdl" - "worldmodel_decal_pos" "5.94244 -0.651087 -7.01863" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_c.mdl" - "worldmodel_decal_pos" "5.94244 -0.537151 -1.69533" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_d.mdl" - "worldmodel_decal_pos" "5.94244 0.0485253 2.80582" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_so_purple_heavy" } - "used_by_classes" + "33751612" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_light" } - "attributes" + "33751613" { - "magazine model" "models/weapons/w_rif_aug_mag.mdl" - "aimsight capable" "1" - "aimsight speed up" "10.000000" - "aimsight speed down" "8.000000" - "aimsight looseness" "0.030000" - "aimsight eye pos" "-1.56 -3.6 -0.07" - "aimsight pivot angle" "0.78 -0.1 -0.03" - "aimsight fov" "45" - "aimsight pivot forward" "10" - "aimsight lens mask" "models/weapons/v_rif_aug_scopelensmask.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_medium" } - "inventory_image_data" + "33751614" { - "camera_angles" "-4.0 -130.0 0.0" - "camera_offset" "19.0 3.4 -3.2" - "spot_light_rim" - { - "position" "0 -80 -30" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "-10 30 -60" - "color" "0.15 0.15 0.15" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_heavy" } - "paint_data" + "33751740" { - "PaintableMaterial0" - { - "Name" "rif_aug" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "31.066900" - "UVScale" "0.763000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_dapple_light" } - "visuals" + "33751741" { - "taunt_sequence" "taunt_rife01" + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_dapple_medium" } - } - "weapon_famas_prefab" - { - "prefab" "rifle" - "item_class" "weapon_famas" - "item_name" "#SFUI_WPNHUD_Famas" - "item_description" "#CSGO_Item_Desc_Famas" - "item_rarity" "common" - "image_inventory" "econ/weapons/base_weapons/weapon_famas" - "model_player" "models/weapons/v_rif_famas.mdl" - "model_world" "models/weapons/w_rif_famas.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_famas.vtf" - "stickers" + "33751742" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_a.mdl" - "worldmodel_decal_pos" "5.62099 -1.58238 -7.33913" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_b.mdl" - "worldmodel_decal_pos" "5.62099 -1.06851 -3.05935" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_c.mdl" - "worldmodel_decal_pos" "5.62099 -1.41951 0.954913" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_d.mdl" - "worldmodel_decal_pos" "5.62099 -1.36689 4.66046" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_sp_dapple_heavy" } - "used_by_classes" + "33752676" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_an_tiger_orange_light" } - "attributes" + "33752677" { - "magazine model" "models/weapons/w_rif_famas_mag.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_an_tiger_orange_medium" } - "inventory_image_data" + "33752678" { - "camera_angles" "-3.0 -130.0 0.0" - "camera_offset" "20.0 3.7 -3" + "icon_path" "econ/default_generated/weapon_knife_butterfly_an_tiger_orange_heavy" } - "attributes" + "33752684" { - "has burst mode" "1" - "cycletime when in burst mode" "0.550000" - "time between burst shots" "0.075000" + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_damascus_90_light" } - "paint_data" + "33752685" { - "PaintableMaterial0" - { - "Name" "rif_famas" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "29.799999" - "UVScale" "0.660000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_damascus_90_medium" } - } - "weapon_galilar_prefab" - { - "prefab" "rifle" - "item_class" "weapon_galilar" - "item_name" "#SFUI_WPNHUD_GalilAR" - "item_description" "#CSGO_Item_Desc_GalilAR" - "item_rarity" "common" - "image_inventory" "econ/weapons/base_weapons/weapon_galilar" - "model_player" "models/weapons/v_rif_galilar.mdl" - "model_world" "models/weapons/w_rif_galilar.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_galilar.vtf" - "stickers" + "33752686" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_a.mdl" - "worldmodel_decal_pos" "4.56555 -1.10028 0.274424" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_b.mdl" - "worldmodel_decal_pos" "4.56555 -1.24267 3.98293" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_c.mdl" - "worldmodel_decal_pos" "4.56555 -0.371284 8.53896" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_d.mdl" - "worldmodel_decal_pos" "4.56555 -2.11272 -8.68949" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_damascus_90_heavy" } - "used_by_classes" + "33752692" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_marble_fade_light" } - "attributes" + "33752693" { - "magazine model" "models/weapons/w_rif_galilar_mag.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_marble_fade_medium" } - "inventory_image_data" + "33752694" { - "camera_angles" "-3.0 -130.0 0.0" - "camera_offset" "18.0 3.8 -2.4" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_marble_fade_heavy" } - "paint_data" + "33752696" { - "PaintableMaterial0" - { - "Name" "rif_galilar" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "32.973701" - "UVScale" "0.750000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_steel_knife_light" } - "visuals" + "33752697" { - "taunt_sequence" "taunt_rife01" + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_steel_knife_medium" } - } - "weapon_m4a1_prefab" - { - "prefab" "rifle" - "item_class" "weapon_m4a1" - "item_name" "#SFUI_WPNHUD_M4A1" - "item_description" "#CSGO_Item_Desc_M4A4" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_m4a1" - "model_player" "models/weapons/v_rif_m4a1.mdl" - "model_world" "models/weapons/w_rif_m4a1.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_m4a1.vtf" - "stickers" + "33752698" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_a.mdl" - "worldmodel_decal_pos" "4.68044 -1.48398 -1.69485" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_b.mdl" - "worldmodel_decal_pos" "4.68044 -0.142594 1.60586" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_c.mdl" - "worldmodel_decal_pos" "4.68044 -2.99986 3.05251" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_d.mdl" - "worldmodel_decal_pos" "4.68044 -0.615597 -10.4655" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_aq_steel_knife_heavy" } - "used_by_classes" + "33752700" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_ruby_marbleized_light" } - "attributes" + "33752701" { - "magazine model" "models/weapons/w_rif_m4a1_mag.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_ruby_marbleized_medium" } - "inventory_image_data" + "33752702" { - "camera_angles" "-2.0 -135.0 0.0" - "camera_offset" "22.0 3.9 -3.0" - "point_light_accent" - { - "position" "20 3 7" - "color" "0.25 0.25 0.25" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_ruby_marbleized_heavy" } - "paint_data" + "33752712" { - "PaintableMaterial0" - { - "Name" "rif_m4a1" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "35.322601" - "UVScale" "0.425000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase1_light" } - "visuals" + "33752713" { - "taunt_sequence" "taunt_M4_s01" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase1_medium" } - } - "weapon_sg556_prefab" - { - "prefab" "rifle" - "item_class" "weapon_sg556" - "item_name" "#SFUI_WPNHUD_SG556" - "item_description" "#CSGO_Item_Desc_SG553" - "item_rarity" "common" - "image_inventory" "econ/weapons/base_weapons/weapon_sg556" - "model_player" "models/weapons/v_rif_sg556.mdl" - "model_world" "models/weapons/w_rif_sg556.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_sg556.vtf" - "stickers" + "33752714" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_a.mdl" - "worldmodel_decal_pos" "3.98088 -0.973739 -1.78859" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_b.mdl" - "worldmodel_decal_pos" "3.98088 -0.320671 1.4664" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_c.mdl" - "worldmodel_decal_pos" "3.98088 -1.23097 4.69249" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_d.mdl" - "worldmodel_decal_pos" "3.98088 2.35159 2.18556" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase1_heavy" } - "used_by_classes" + "33752720" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase3_light" } - "attributes" + "33752721" { - "magazine model" "models/weapons/w_rif_sg556_mag.mdl" - "aimsight capable" "1" - "aimsight speed up" "10.000000" - "aimsight speed down" "8.000000" - "aimsight looseness" "0.030000" - "aimsight eye pos" "0.72 -5.12 -1.33" - "aimsight pivot angle" "0.52 0.04 0.72" - "aimsight fov" "45" - "aimsight pivot forward" "8" - "aimsight lens mask" "models/weapons/v_rif_sg556_scopelensmask.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase3_medium" } - "inventory_image_data" + "33752722" { - "camera_angles" "-12.0 -130.0 0.0" - "camera_offset" "17.0 3.3 -3.4" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase3_heavy" } - "paint_data" + "33752724" { - "PaintableMaterial0" - { - "Name" "rif_sg556" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "36.341801" - "UVScale" "0.809000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase4_light" } - "visuals" + "33752725" { - "taunt_sequence" "taunt_rife01" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase4_medium" } - } - "weapon_awp_prefab" - { - "prefab" "sniper_rifle" - "item_class" "weapon_awp" - "item_name" "#SFUI_WPNHUD_AWP" - "item_description" "#CSGO_Item_Desc_AWP" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_awp" - "model_player" "models/weapons/v_snip_awp.mdl" - "model_world" "models/weapons/w_snip_awp.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_awp.vtf" - "stickers" + "33752726" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_a.mdl" - "worldmodel_decal_pos" "6.59995 -3.74073 -8.22526" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_b.mdl" - "worldmodel_decal_pos" "6.59995 -2.05448 0.438974" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_c.mdl" - "worldmodel_decal_pos" "6.59995 -2.45321 5.47063" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_d.mdl" - "worldmodel_decal_pos" "6.59995 1.43277 9.50265" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase4_heavy" } - "used_by_classes" + "33753312" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_emerald_marbleized_light" } - "inventory_image_data" + "33753313" { - "camera_angles" "-5.0 -140.0 0.0" - "camera_offset" "25.0 0.6 -3.5" - "spot_light_key" - { - "position" "-90 80 220" - "color" "2 2.1 2.3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "0 -130 -80" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "0 20 25" - "color" "3 3 3" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_emerald_marbleized_medium" } - "attributes" + "33753314" { - "unzoom after shot" "1" - "primary reserve ammo max" "30" - "icon display model" "models/weapons/w_snip_awp_icon.mdl" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_emerald_marbleized_heavy" } - "paint_data" + "33753316" { - "PaintableMaterial0" - { - "Name" "snip_awp" - "OrigMat" "awp" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "53.803902" - "UVScale" "1.029000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase1_light" } - } - "weapon_g3sg1_prefab" - { - "prefab" "sniper_rifle" - "item_class" "weapon_g3sg1" - "item_name" "#SFUI_WPNHUD_G3SG1" - "item_description" "#CSGO_Item_Desc_G3SG1" - "item_rarity" "common" - "image_inventory" "econ/weapons/base_weapons/weapon_g3sg1" - "model_player" "models/weapons/v_snip_g3sg1.mdl" - "model_world" "models/weapons/w_snip_g3sg1.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_g3sg1.vtf" - "stickers" + "33753317" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_a.mdl" - "worldmodel_decal_pos" "4.26159 -1.47014 -13.3375" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_b.mdl" - "worldmodel_decal_pos" "4.26159 -1.09835 -9.70334" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_c.mdl" - "worldmodel_decal_pos" "4.26159 -0.343464 -4.5291" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_d.mdl" - "worldmodel_decal_pos" "4.26159 3.07904 -5.97134" - } - "4" - { - "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_e.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_e.mdl" - "worldmodel_decal_pos" "4.26159 -0.172825 7.0548" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase1_medium" } - "used_by_classes" + "33753318" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase1_heavy" } - "attributes" + "33753320" { - "magazine model" "models/weapons/w_snip_g3sg1_mag.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase2_light" } - "inventory_image_data" + "33753321" { - "camera_angles" "-5.0 -140.0 0.0" - "camera_offset" "28.0 2.7 -2.3" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase2_medium" } - "paint_data" + "33753322" { - "PaintableMaterial0" - { - "Name" "snip_g3sg1" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "41.975601" - "UVScale" "0.703000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase2_heavy" } - "visuals" + "33753324" { - "taunt_sequence" "taunt_rife01" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase3_light" } - } - "weapon_scar20_prefab" - { - "prefab" "sniper_rifle" - "item_class" "weapon_scar20" - "item_name" "#SFUI_WPNHUD_SCAR20" - "item_description" "#CSGO_Item_Desc_SCAR20" - "item_rarity" "common" - "image_inventory" "econ/weapons/base_weapons/weapon_scar20" - "model_player" "models/weapons/v_snip_scar20.mdl" - "model_world" "models/weapons/w_snip_scar20.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_scar20.vtf" - "stickers" + "33753325" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_a.mdl" - "worldmodel_decal_pos" "6.21142 -0.729553 -5.89217" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_b.mdl" - "worldmodel_decal_pos" "6.21142 -1.42952 -0.795702" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_c.mdl" - "worldmodel_decal_pos" "6.21142 -2.36369 3.14003" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_d.mdl" - "worldmodel_decal_pos" "6.21142 0.828503 4.35461" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase3_medium" } - "used_by_classes" + "33753326" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase3_heavy" } - "attributes" + "33753328" { - "magazine model" "models/weapons/w_snip_scar20_mag.mdl" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase4_light" } - "inventory_image_data" + "33753329" { - "camera_angles" "-5.0 -140.0 0.0" - "camera_offset" "30.0 2.0 -3.0" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase4_medium" } - "paint_data" + "33753330" { - "PaintableMaterial0" - { - "Name" "snip_scar20" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "44.051601" - "UVScale" "0.840000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase4_heavy" } - } - "weapon_ssg08_prefab" - { - "prefab" "sniper_rifle" - "item_class" "weapon_ssg08" - "item_name" "#SFUI_WPNHUD_SSG08" - "item_description" "#CSGO_Item_Desc_SSG08" - "item_rarity" "common" - "image_inventory" "econ/weapons/base_weapons/weapon_ssg08" - "model_player" "models/weapons/v_snip_ssg08.mdl" - "model_world" "models/weapons/w_snip_ssg08.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_ssg08.vtf" - "stickers" + "33753356" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_a.mdl" - "worldmodel_decal_pos" "8.63116 -2.90587 0.500683" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_b.mdl" - "worldmodel_decal_pos" "8.63116 -2.62622 4.20457" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_c.mdl" - "worldmodel_decal_pos" "8.63116 -4.04614 7.6089" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_d.mdl" - "worldmodel_decal_pos" "8.63116 -2.43748 11.1247" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ocean_knife_90_light" } - "used_by_classes" + "33753357" { - "counter-terrorists" "1" - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ocean_knife_90_medium" } - "inventory_image_data" + "33753358" { - "camera_angles" "-5.0 -140.0 0.0" - "camera_offset" "20.0 4.0 -2.4" - "spot_light_key" - { - "position" "-120 120 120" - "color" "2 2.1 2.3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_hy_ocean_knife_90_heavy" } - "attributes" + "33753364" { - "unzoom after shot" "1" - "primary reserve ammo max" "90" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_marked_up_90_light" } - "paint_data" + "33753365" { - "PaintableMaterial0" - { - "Name" "snip_ssg08" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "49.181999" - "UVScale" "1.084000" - } - "PaintableMaterial1" - { - "Name" "snip_ssg08_scope" - "FolderName" "snip_ssg08" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "13.859800" - "UVScale" "0.424000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_marked_up_90_medium" } - } - "weapon_mag7_prefab" - { - "prefab" "shotgun" - "item_class" "weapon_mag7" - "item_name" "#SFUI_WPNHUD_Mag7" - "item_description" "#CSGO_Item_Desc_Mag7" - "image_inventory" "econ/weapons/base_weapons/weapon_mag7" - "model_player" "models/weapons/v_shot_mag7.mdl" - "model_world" "models/weapons/w_shot_mag7.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_mag7.vtf" - "stickers" + "33753366" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_a.mdl" - "worldmodel_decal_pos" "3.00839 -0.899957 -3.85738" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_b.mdl" - "worldmodel_decal_pos" "3.00839 -1.55638 -1.16337" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_c.mdl" - "worldmodel_decal_pos" "3.00839 -0.992867 1.63766" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_d.mdl" - "worldmodel_decal_pos" "3.00839 -0.953268 4.99879" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_marked_up_90_heavy" } - "used_by_classes" + "33753508" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_blackpearl_marbleized_b_light" } - "attributes" + "33753509" { - "magazine model" "models/weapons/w_shot_mag7_mag.mdl" - "primary reserve ammo max" "32" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_blackpearl_marbleized_b_medium" } - "inventory_image_data" + "33753510" { - "camera_angles" "-3.0 -130.0 0.0" - "camera_offset" "13.0 2.3 -1.7" - "spot_light_key" - { - "position" "-120 120 120" - "color" "2 2.1 2.3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "point_light_accent" - { - "position" "40 30 10" - "color" "0.25 0.25 0.25" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_blackpearl_marbleized_b_heavy" } - "paint_data" + "33753512" { - "PaintableMaterial0" - { - "Name" "shot_mag7" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "26.356800" - "UVScale" "0.612000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase2_b_light" } - } - "weapon_nova_prefab" - { - "prefab" "shotgun" - "item_class" "weapon_nova" - "item_name" "#SFUI_WPNHUD_Nova" - "item_description" "#CSGO_Item_Desc_Nova" - "image_inventory" "econ/weapons/base_weapons/weapon_nova" - "model_player" "models/weapons/v_shot_nova.mdl" - "model_world" "models/weapons/w_shot_nova.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_nova.vtf" - "stickers" + "33753513" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_a.mdl" - "worldmodel_decal_pos" "-0.834116 1.96027 -2.80232" - "worldmodel_decal_end" "-0.834116 -3.23734 2.3953" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_b.mdl" - "worldmodel_decal_pos" "2.84688 -0.472176 0.0710886" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_c.mdl" - "worldmodel_decal_pos" "2.84688 -0.174112 3.68293" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_d.mdl" - "worldmodel_decal_pos" "2.84688 -0.0459781 7.01211" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase2_b_medium" } - "used_by_classes" + "33753514" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_doppler_phase2_b_heavy" } - "attributes" + "33753516" { - "primary reserve ammo max" "32" + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_sapphire_marbleized_b_light" } - "inventory_image_data" + "33753517" { - "camera_angles" "-5.0 -137.0 0.0" - "camera_offset" "15.0 5.7 -2.5" - "camera_fov" "45" - "spot_light_key" - { - "position" "-190 120 80" - "color" "3 3.15 3.45" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "0 -80 -110" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "90 0 0" - "color" "6 6 6" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_sapphire_marbleized_b_medium" } - "paint_data" + "33753518" { - "PaintableMaterial0" - { - "Name" "shot_nova" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "39.695000" - "UVScale" "0.744000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_am_sapphire_marbleized_b_heavy" } - } - "weapon_sawedoff_prefab" - { - "prefab" "shotgun" - "item_class" "weapon_sawedoff" - "item_name" "#SFUI_WPNHUD_Sawedoff" - "item_description" "#CSGO_Item_Desc_SawedOff" - "image_inventory" "econ/weapons/base_weapons/weapon_sawedoff" - "model_player" "models/weapons/v_shot_sawedoff.mdl" - "model_world" "models/weapons/w_shot_sawedoff.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_sawedoff.vtf" - "stickers" + "33755460" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_a.mdl" - "worldmodel_decal_pos" "3.83262 -0.159466 0.515205" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_b.mdl" - "worldmodel_decal_pos" "3.83262 -0.578349 3.14057" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_c.mdl" - "worldmodel_decal_pos" "3.83262 0.148002 6.48249" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_d.mdl" - "worldmodel_decal_pos" "3.83262 -0.00703843 13.8387" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_cu_butterfly_lore_light" } - "used_by_classes" + "33755461" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_cu_butterfly_lore_medium" } - "attributes" + "33755462" { - "primary reserve ammo max" "32" + "icon_path" "econ/default_generated/weapon_knife_butterfly_cu_butterfly_lore_heavy" } - "inventory_image_data" + "33755480" { - "camera_angles" "-3.0 -130.0 0.0" - "camera_offset" "11.0 2.6 -2.3" - "spot_light_rim" - { - "position" "0 -80 -100" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "90 0 0" - "color" "2 2 2" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_gs_butterfly_black_laminate_light" } - "paint_data" + "33755481" { - "PaintableMaterial0" - { - "Name" "shot_sawedoff" - "OrigMat" "shot_sawedoff_01" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "26.486500" - "UVScale" "0.445000" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_gs_butterfly_black_laminate_medium" } - } - "weapon_xm1014_prefab" - { - "prefab" "shotgun" - "item_class" "weapon_xm1014" - "item_name" "#SFUI_WPNHUD_xm1014" - "item_description" "#CSGO_Item_Desc_XM1014" - "image_inventory" "econ/weapons/base_weapons/weapon_xm1014" - "model_player" "models/weapons/v_shot_xm1014.mdl" - "model_world" "models/weapons/w_shot_xm1014.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_xm1014.vtf" - "stickers" + "33755482" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_a.mdl" - "worldmodel_decal_pos" "4.07802 -2.0993 0.558244" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_b.mdl" - "worldmodel_decal_pos" "4.07802 -1.42846 3.59596" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_c.mdl" - "worldmodel_decal_pos" "4.07802 -1.42846 6.83013" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_d.mdl" - "worldmodel_decal_pos" "4.07802 -1.63849 10.201" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_gs_butterfly_black_laminate_heavy" } - "used_by_classes" + "33755500" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_butterfly_gs_butterfly_autotronic_light" } - "attributes" + "33755501" { - "primary reserve ammo max" "32" + "icon_path" "econ/default_generated/weapon_knife_butterfly_gs_butterfly_autotronic_medium" } - "inventory_image_data" + "33755502" { - "camera_angles" "-4.0 -137.0 0.0" - "camera_offset" "22.0 4.5 -2.5" - "spot_light_key" - { - "position" "-190 120 80" - "color" "3 3.15 3.45" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "spot_light_rim" - { - "position" "0 -80 -110" - "color" "3 5 5" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.040000" - "outer_cone" "0.500000" - } - "point_light_accent" - { - "position" "90 0 0" - "color" "6 6 6" - } + "icon_path" "econ/default_generated/weapon_knife_butterfly_gs_butterfly_autotronic_heavy" } - "paint_data" + "33816596" { - "PaintableMaterial0" - { - "Name" "shot_xm1014" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "37.179401" - "UVScale" "0.540000" - } + "icon_path" "econ/default_generated/weapon_knife_push_hy_ddpat_light" } - } - "weapon_m249_prefab" - { - "prefab" "machinegun" - "item_class" "weapon_m249" - "item_name" "#SFUI_WPNHUD_M249" - "item_description" "#CSGO_Item_Desc_M249" - "image_inventory" "econ/weapons/base_weapons/weapon_m249" - "model_player" "models/weapons/v_mach_m249para.mdl" - "model_world" "models/weapons/w_mach_m249.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_m249.vtf" - "stickers" + "33816597" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_a.mdl" - "worldmodel_decal_pos" "2.54733 1.61972 -4.21781" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_b.mdl" - "worldmodel_decal_pos" "2.54733 -0.737351 -1.1101" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_c.mdl" - "worldmodel_decal_pos" "2.54733 0.422171 2.34458" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_d.mdl" - "worldmodel_decal_pos" "1.39755 -2.96088 3.20752" - "worldmodel_decal_end" "1.39755 -2.96088 12.263" - } + "icon_path" "econ/default_generated/weapon_knife_push_hy_ddpat_medium" } - "used_by_classes" + "33816598" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_hy_ddpat_heavy" } - "attributes" + "33816624" { - "primary reserve ammo max" "200" + "icon_path" "econ/default_generated/weapon_knife_push_hy_webs_light" } - "inventory_image_data" + "33816625" { - "camera_angles" "-12.0 -142.0 0.0" - "camera_offset" "15.0 6.6 -2.0" - "point_light_accent" - { - "position" "40 30 10" - "color" "0.25 0.25 0.25" - } + "icon_path" "econ/default_generated/weapon_knife_push_hy_webs_medium" } - "paint_data" + "33816626" { - "PaintableMaterial0" - { - "Name" "mach_m249para" - "OrigMat" "m249" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "47.733200" - "UVScale" "1.151000" - } + "icon_path" "econ/default_generated/weapon_knife_push_hy_webs_heavy" } - } - "weapon_negev_prefab" - { - "prefab" "machinegun" - "item_class" "weapon_negev" - "item_name" "#SFUI_WPNHUD_Negev" - "item_description" "#CSGO_Item_Desc_Negev" - "image_inventory" "econ/weapons/base_weapons/weapon_negev" - "model_player" "models/weapons/v_mach_negev.mdl" - "model_world" "models/weapons/w_mach_negev.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_negev.vtf" - "stickers" + "33816728" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_a.mdl" - "worldmodel_decal_pos" "2.05443 0.308304 -3.33488" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_b.mdl" - "worldmodel_decal_pos" "2.05443 0.0774615 0.03991" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_c.mdl" - "worldmodel_decal_pos" "3.41455 -4.0248 5.52676" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_d.mdl" - "worldmodel_decal_pos" "1.92214 0.210319 9.16643" - } + "icon_path" "econ/default_generated/weapon_knife_push_aa_fade_light" } - "used_by_classes" + "33816729" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aa_fade_medium" } - "attributes" + "33816730" { - "primary reserve ammo max" "200" + "icon_path" "econ/default_generated/weapon_knife_push_aa_fade_heavy" } - "inventory_image_data" + "33816736" { - "camera_angles" "-6.0 -146.0 0.0" - "camera_offset" "24.0 5.4 -1.5" - "spot_light_key" - { - "position" "-120 120 120" - "color" "2 2.1 2.3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "point_light_accent" - { - "position" "40 30 30" - "color" "0.5 0.5 0.5" - } + "icon_path" "econ/default_generated/weapon_knife_push_so_night_light" } - "paint_data" + "33816737" { - "PaintableMaterial0" - { - "Name" "mach_negev" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "42.354000" - "UVScale" "0.740000" - } + "icon_path" "econ/default_generated/weapon_knife_push_so_night_medium" } - } - "weapon_decoy_prefab" - { - "prefab" "grenade" - "item_class" "weapon_decoy" - "item_name" "#SFUI_WPNHUD_DECOY" - "item_description" "#CSGO_Item_Desc_Decoy_Grenade" - "image_inventory" "econ/weapons/base_weapons/weapon_decoy" - "icon_default_image" "materials/icons/inventory_icon_weapon_decoy.vtf" - "model_player" "models/weapons/v_eq_decoy.mdl" - "model_world" "models/weapons/w_eq_decoy.mdl" - "used_by_classes" + "33816738" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_so_night_heavy" } - } - "weapon_flashbang_prefab" - { - "prefab" "grenade" - "item_class" "weapon_flashbang" - "item_name" "#SFUI_WPNHUD_FLASHBANG" - "item_description" "#CSGO_Item_Desc_Flashbang" - "image_inventory" "econ/weapons/base_weapons/weapon_flashbang" - "icon_default_image" "materials/icons/inventory_icon_weapon_flashbang.vtf" - "model_player" "models/weapons/v_eq_flashbang.mdl" - "model_world" "models/weapons/w_eq_flashbang.mdl" - "used_by_classes" + "33816744" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_blued_light" } - } - "weapon_hegrenade_prefab" - { - "prefab" "grenade" - "item_class" "weapon_hegrenade" - "item_name" "#SFUI_WPNHUD_HE_Grenade" - "item_description" "#CSGO_Item_Desc_HE_Grenade" - "image_inventory" "econ/weapons/base_weapons/weapon_hegrenade" - "icon_default_image" "materials/icons/inventory_icon_weapon_hegrenade.vtf" - "model_player" "models/weapons/v_eq_fraggrenade.mdl" - "model_world" "models/weapons/w_eq_fraggrenade.mdl" - "used_by_classes" + "33816745" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_blued_medium" } - } - "weapon_incgrenade_prefab" - { - "prefab" "grenade" - "item_class" "weapon_incgrenade" - "item_name" "#SFUI_WPNHUD_IncGrenade" - "item_description" "#CSGO_Item_Desc_Incindiary_Grenade" - "image_inventory" "econ/weapons/base_weapons/weapon_incgrenade" - "icon_default_image" "materials/icons/inventory_icon_weapon_incgrenade.vtf" - "model_player" "models/weapons/v_eq_incendiarygrenade.mdl" - "model_world" "models/weapons/w_eq_incendiarygrenade.mdl" - "used_by_classes" + "33816746" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_blued_heavy" } - } - "weapon_molotov_prefab" - { - "prefab" "grenade" - "item_class" "weapon_molotov" - "item_name" "#SFUI_WPNHUD_MOLOTOV" - "item_description" "#CSGO_Item_Desc_Molotov" - "image_inventory" "econ/weapons/base_weapons/weapon_molotov" - "icon_default_image" "materials/icons/inventory_icon_weapon_molotov.vtf" - "model_player" "models/weapons/v_eq_molotov.mdl" - "model_world" "models/weapons/w_eq_molotov.mdl" - "used_by_classes" + "33816748" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_forced_light" } - } - "weapon_smokegrenade_prefab" - { - "prefab" "grenade" - "item_class" "weapon_smokegrenade" - "item_name" "#SFUI_WPNHUD_Smoke_Grenade" - "item_description" "#CSGO_Item_Desc_Smoke_Grenade" - "image_inventory" "econ/weapons/base_weapons/weapon_smokegrenade" - "icon_default_image" "materials/icons/inventory_icon_weapon_smokegrenade.vtf" - "model_player" "models/weapons/v_eq_smokegrenade.mdl" - "model_world" "models/weapons/w_eq_smokegrenade.mdl" - "used_by_classes" + "33816749" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_forced_medium" } - } - "weapon_m4a1_silencer_prefab" - { - "prefab" "rifle" - "item_class" "weapon_m4a1" - "item_name" "#SFUI_WPNHUD_M4_SILENCER" - "item_description" "#CSGO_Item_Desc_m4a1_silencer" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_m4a1_silencer" - "model_player" "models/weapons/v_rif_m4a1_s.mdl" - "model_world" "models/weapons/w_rif_m4a1_s.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_m4a1_silencer.vtf" - "stickers" + "33816750" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_a.mdl" - "worldmodel_decal_pos" "5.84555 -0.430558 -2.30653" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_b.mdl" - "worldmodel_decal_pos" "5.84555 -3.0645 3.20751" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_c.mdl" - "worldmodel_decal_pos" "5.84555 -1.2629 0.385118" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_d.mdl" - "worldmodel_decal_pos" "5.84555 0.245251 7.90765" - } + "icon_path" "econ/default_generated/weapon_knife_push_aq_forced_heavy" } - "used_by_classes" + "33816752" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_oiled_light" } - "inventory_image_data" + "33816753" { - "camera_angles" "2.0 -135.0 0.0" - "camera_offset" "13.0 5.1 -4.0" + "icon_path" "econ/default_generated/weapon_knife_push_aq_oiled_medium" } - "attributes" + "33816754" { - "icon display model" "models/weapons/w_rif_m4a1_s_icon.mdl" - "magazine model" "models/weapons/w_rif_m4a1_s_mag.mdl" - "primary reserve ammo max" "40" - "is full auto" "1" - "time between burst shots" "0.090000" - "has silencer" "1" - "in game price" "3100" - "primary clip size" "20" - "heat per shot" "0.350000" - "addon scale" "0.900000" - "tracer frequency" "3" - "tracer frequency alt" "0" - "max player speed" "225" - "max player speed alt" "225" - "crosshair min distance" "4" - "crosshair delta distance" "3" - "penetration" "2" - "damage" "33" - "range" "8192" - "range modifier" "0.990000" - "bullets" "1" - "cycletime" "0.100000" - "time to idle" "1.500000" - "idle interval" "60" - "flinch velocity modifier large" "0.400000" - "flinch velocity modifier small" "0.400000" - "spread" "0.600000" - "inaccuracy crouch" "3.680000" - "inaccuracy stand" "4.900000" - "inaccuracy jump" "0.656000" - "inaccuracy land" "0.197000" - "inaccuracy ladder" "110.994003" - "inaccuracy fire" "12.000000" - "inaccuracy move" "92.879997" - "spread alt" "0.500000" - "inaccuracy crouch alt" "3.680000" - "inaccuracy stand alt" "4.900000" - "inaccuracy jump alt" "0.656000" - "inaccuracy land alt" "0.197000" - "inaccuracy ladder alt" "113.671997" - "inaccuracy fire alt" "7.000000" - "inaccuracy move alt" "122.000000" - "recovery time crouch" "0.302625" - "recovery time stand" "0.423676" - "recoil seed" "38965" - "recoil angle" "0" - "recoil angle alt" "0" - "recoil angle variance" "65" - "recoil angle variance alt" "65" - "recoil magnitude" "25" - "recoil magnitude variance" "3" - "recoil magnitude alt" "21" - "recoil magnitude variance alt" "0" + "icon_path" "econ/default_generated/weapon_knife_push_aq_oiled_heavy" } - "paint_data" + "33816812" { - "PaintableMaterial0" - { - "Name" "rif_m4a1_s" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "47.460999" - "UVScale" "0.916700" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_zebra_light" } - "visuals" + "33816813" { - "primary_ammo" "BULLET_PLAYER_556MM_SMALL" - "weapon_type" "Rifle" - "addon_location" "primary_rifle" - "eject_brass_effect" "weapon_shell_casing_rifle" - "tracer_effect" "weapon_tracers_assrifle" - "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" - "muzzle_flash_effect_1st_person_alt" "weapon_muzzle_flash_assaultrifle_silenced" - "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" - "muzzle_flash_effect_3rd_person_alt" "weapon_muzzle_flash_assaultrifle_silenced" - "heat_effect" "weapon_muzzle_smoke" - "player_animation_extension" "m4_s" - "taunt_sequence" "taunt_M4_s01" - "sound_single_shot" "Weapon_M4A1.SilencedSingle" - "sound_special1" "Weapon_M4A1.Silenced" + "icon_path" "econ/default_generated/weapon_knife_push_am_zebra_medium" } - } - "weapon_usp_silencer_prefab" - { - "prefab" "secondary" - "item_class" "weapon_hkp2000" - "item_name" "#SFUI_WPNHUD_USP_SILENCER" - "item_description" "#CSGO_Item_Desc_usp_silencer" - "item_rarity" "uncommon" - "image_inventory" "econ/weapons/base_weapons/weapon_usp_silencer" - "model_player" "models/weapons/v_pist_223.mdl" - "model_world" "models/weapons/w_pist_223.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_usp_silencer.vtf" - "stickers" + "33816814" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_a.mdl" - "worldmodel_decal_pos" "3.91123 -3.83728 -2.80839" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_b.mdl" - "worldmodel_decal_pos" "3.91123 -0.668155 -2.19396" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_c.mdl" - "worldmodel_decal_pos" "3.91123 -0.53261 0.751452" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_d.mdl" - "worldmodel_decal_pos" "3.91123 -0.617352 3.43111" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_zebra_heavy" } - "used_by_classes" + "33816864" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_sp_mesh_tan_light" } - "inventory_image_data" + "33816865" { - "camera_angles" "-1.0 -125.0 0.0" - "camera_offset" "12.0 1.5 -1.8" - "camera_fov" "30.000000" + "icon_path" "econ/default_generated/weapon_knife_push_sp_mesh_tan_medium" } - "attributes" + "33816866" { - "magazine model" "models/weapons/w_pist_223_mag.mdl" - "has silencer" "1" - "spread" "2.500000" - "spread alt" "1.500000" - "inaccuracy fire" "71.000000" - "inaccuracy fire alt" "52.000000" - "inaccuracy move" "13.870000" - "recoil magnitude" "29" - "recoil magnitude alt" "23" - "tracer frequency" "1" - "tracer frequency alt" "0" - "primary clip size" "12" - "primary reserve ammo max" "24" + "icon_path" "econ/default_generated/weapon_knife_push_sp_mesh_tan_heavy" } - "paint_data" + "33816884" { - "PaintableMaterial0" - { - "Name" "pist_223" - "FolderName" "pist_223" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "18.016001" - "UVScale" "0.516000" - } + "icon_path" "econ/default_generated/weapon_knife_push_hy_forest_boreal_light" } - "visuals" + "33816885" { - "taunt_sequence" "taunt_pistolSpin01" - "sound_single_shot" "Weapon_USP.Single" - "sound_special1" "Weapon_USP.SilencedShot" - "primary_ammo" "BULLET_PLAYER_357SIG_SMALL" + "icon_path" "econ/default_generated/weapon_knife_push_hy_forest_boreal_medium" } - } - "weapon_revolver_prefab" - { - "prefab" "secondary" - "item_class" "weapon_deagle" - "item_name" "#SFUI_WPNHUD_REVOLVER" - "item_description" "#CSGO_Item_Desc_Revolver" - "image_inventory" "econ/weapons/base_weapons/weapon_revolver" - "item_rarity" "common" - "model_player" "models/weapons/v_pist_revolver.mdl" - "model_world" "models/weapons/w_pist_revolver.mdl" - "model_dropped" "models/weapons/w_pist_revolver_dropped.mdl" - "icon_default_image" "materials/icons/inventory_icon_weapon_revolver.vtf" - "used_by_classes" + "33816886" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_hy_forest_boreal_heavy" } - "stickers" + "33816968" { - "0" - { - "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_a.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_a.mdl" - "worldmodel_decal_pos" "2.53443 -3.22857 -1.90564" - } - "1" - { - "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_b.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_b.mdl" - "worldmodel_decal_pos" "2.53443 -0.989865 -1.12229" - } - "2" - { - "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_c.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_c.mdl" - "worldmodel_decal_pos" "2.53443 -0.955564 1.77999" - } - "3" - { - "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_d.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_d.mdl" - "worldmodel_decal_pos" "2.53443 -0.929928 4.8028" - } - "4" - { - "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_e.vmt" - "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_e.mdl" - "worldmodel_decal_pos" "2.53443 -0.955564 1.77999" - "worldmodel_decal_end" "2.53443 -0.955564 -1.77999" - } + "icon_path" "econ/default_generated/weapon_knife_push_so_purple_light" } - "inventory_image_data" + "33816969" { - "camera_angles" "0.0 -130.0 0.0" - "camera_offset" "5.0 1.2 -1.2" + "icon_path" "econ/default_generated/weapon_knife_push_so_purple_medium" } - "attributes" + "33816970" { - "icon display model" "models/weapons/w_pist_revolver_icon.mdl" - "is revolver" "1" - "is full auto" "1" - "in game price" "850" - "primary clip size" "8" - "primary reserve ammo max" "8" - "crosshair min distance" "4" - "crosshair delta distance" "3" - "penetration" "2" - "damage" "86" - "range modifier" "0.940000" - "bullets" "1" - "time to idle" "1.500000" - "idle interval" "60" - "flinch velocity modifier large" "0.400000" - "flinch velocity modifier small" "0.400000" - "spread" "0.520000" - "inaccuracy crouch" "1.000000" - "inaccuracy stand" "2.000000" - "inaccuracy jump" "0.240000" - "inaccuracy land" "0.130000" - "inaccuracy ladder" "12.000000" - "inaccuracy fire" "50.000000" - "inaccuracy move" "6.500000" - "max player speed" "180" - "cycletime" "0.500000" - "spread alt" "68.000000" - "inaccuracy crouch alt" "5.000000" - "inaccuracy stand alt" "12.000000" - "inaccuracy jump alt" "0.320000" - "inaccuracy land alt" "0.150000" - "inaccuracy ladder alt" "35.000000" - "inaccuracy fire alt" "55.000000" - "inaccuracy move alt" "36.000000" - "max player speed alt" "220" - "cycletime alt" "0.400000" - "recovery time crouch" "0.700000" - "recovery time stand" "0.900000" - "recoil seed" "12345" - "recoil angle" "0" - "recoil angle variance" "40" - "recoil magnitude" "20" - "recoil magnitude variance" "0" - "recoil angle alt" "3" - "recoil angle variance alt" "50" - "recoil magnitude alt" "45" - "recoil magnitude variance alt" "6" + "icon_path" "econ/default_generated/weapon_knife_push_so_purple_heavy" } - "paint_data" + "33817148" { - "PaintableMaterial0" - { - "Name" "pist_revolver" - "FolderName" "pist_revolver" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "12.182200" - "UVScale" "0.500000" - } + "icon_path" "econ/default_generated/weapon_knife_push_sp_tape_urban_light" } - "visuals" + "33817149" { - "sound_single_shot" "Weapon_Revolver.Single" - "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" - "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" - "heat_effect" "weapon_muzzle_smoke" + "icon_path" "econ/default_generated/weapon_knife_push_sp_tape_urban_medium" } - } - "coupon_prefab" - { - "prefab" "weapon_case_base" - "item_name" "#CSGO_Tool_Coupon" - "item_description" "#CSGO_Tool_Coupon" - "image_inventory" "econ/coupon/offer" - "item_type" "coupon" - "tool" + "33817150" { - "usage_capabilities" - { - "usable_out_of_game" "1" - } + "icon_path" "econ/default_generated/weapon_knife_push_sp_tape_urban_heavy" } - "attributes" + "33817276" { - "cannot trade" "1" - "expiration date" - { - "attribute_class" "expiration_date" - "force_gc_to_generate" "1" - "use_custom_logic" "expiration_period_days_from_now" - "value" "2" - } + "icon_path" "econ/default_generated/weapon_knife_push_sp_dapple_light" } - } - "coupon_enfu_capsule_prefab" - { - "prefab" "coupon_prefab" - } - "coupon_pinups_capsule_prefab" - { - "prefab" "coupon_prefab" - } - "coupon_slid3_capsule_prefab" - { - "prefab" "coupon_prefab" - } - "coupon_team_roles_capsule_prefab" - { - "prefab" "coupon_prefab" - } - "dhw14_sticker_capsule_prefab" - { - "first_sale_date" "2014/11/20" - "prefab" "weapon_case_base" - "item_type" "self_opening_purchase" - "attributes" + "33817277" { - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_push_sp_dapple_medium" } - } - "eslkatowice2015_sticker_capsule_prefab" - { - "first_sale_date" "2015/2/27" - "prefab" "weapon_case_base" - "item_type" "self_opening_purchase" - "attributes" + "33817278" { - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_push_sp_dapple_heavy" } - } - "eslcologne2015_sticker_capsule_prefab" - { - "first_sale_date" "2015/8/10" - "prefab" "weapon_case_base" - "item_type" "self_opening_purchase" - "attributes" + "33818212" { - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_push_an_tiger_orange_light" } - } - "cluj2015_sticker_capsule_prefab" - { - "first_sale_date" "2015/10/20" - "prefab" "weapon_case_base" - "item_type" "self_opening_purchase" - "attributes" + "33818213" { - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_push_an_tiger_orange_medium" } - } - "campaign_prefab" - { - "image_inventory" "econ/tools/campaign" - "attributes" + "33818214" { - "cannot trade" "1" - "campaign completion bitfield" - { - "attribute_class" "campaign_completion_bitfield" - "force_gc_to_generate" "1" - "value" "0" - } + "icon_path" "econ/default_generated/weapon_knife_push_an_tiger_orange_heavy" } - "capabilities" + "33818220" { - "can_delete" "0" + "icon_path" "econ/default_generated/weapon_knife_push_aq_damascus_90_light" } - "item_class" "collectible_item" - "item_type" "campaign" - "item_type_name" "#campaign" - "icon_default_image" "materials/icons/inventory_icon_campaign.vtf" - "image_inventory" "backpack/crafting/campaign" - "item_quality" "unique" - "item_rarity" "common" - "min_ilevel" "1" - "max_ilevel" "1" - "image_inventory_size_w" "128" - "image_inventory_size_h" "82" - "mouse_pressed_sound" "ui/item_paper_pickup.wav" - "drop_sound" "ui/item_paper_pickup.wav" - } - } - "items" - { - "default" - { - "name" "default" - "item_class" "weapon_knife" - "hidden" "1" - "item_name" "#SFUI_WPNHUD_Knife" - "item_slot" "melee" - "item_quality" "unique" - "min_ilevel" "1" - "max_ilevel" "1" - } - "1" - { - "name" "weapon_deagle" - "prefab" "weapon_deagle_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "secondary4" - } - "2" - { - "name" "weapon_elite" - "prefab" "weapon_elite_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "secondary1" - } - "3" - { - "name" "weapon_fiveseven" - "prefab" "weapon_fiveseven_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "secondary3" - "item_shares_equip_slot" "1" - } - "4" - { - "name" "weapon_glock" - "prefab" "weapon_glock_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "secondary0" - } - "7" - { - "name" "weapon_ak47" - "prefab" "weapon_ak47_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle1" - } - "8" - { - "name" "weapon_aug" - "prefab" "weapon_aug_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle3" - } - "9" - { - "name" "weapon_awp" - "prefab" "weapon_awp_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle4" - } - "10" - { - "name" "weapon_famas" - "prefab" "weapon_famas_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle0" - } - "11" - { - "name" "weapon_g3sg1" - "prefab" "weapon_g3sg1_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle5" - } - "13" - { - "name" "weapon_galilar" - "prefab" "weapon_galilar_prefab" - "baseitem" "1" - "default_slot_item" "1" - "item_quality" "normal" - "item_sub_position" "rifle0" - } - "14" - { - "name" "weapon_m249" - "prefab" "weapon_m249_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "heavy3" - } - "16" - { - "name" "weapon_m4a1" - "prefab" "weapon_m4a1_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle1" - "item_shares_equip_slot" "1" - } - "17" - { - "name" "weapon_mac10" - "prefab" "weapon_mac10_prefab" - "baseitem" "1" - "default_slot_item" "1" - "item_quality" "normal" - "item_sub_position" "smg0" - } - "19" - { - "name" "weapon_p90" - "prefab" "weapon_p90_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "smg3" - } - "24" - { - "name" "weapon_ump45" - "prefab" "weapon_ump45_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "smg2" - } - "25" - { - "name" "weapon_xm1014" - "prefab" "weapon_xm1014_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "heavy1" - } - "26" - { - "name" "weapon_bizon" - "prefab" "weapon_bizon_prefab" - "baseitem" "1" - "default_slot_item" "1" - "item_quality" "normal" - "item_sub_position" "smg4" - } - "27" - { - "name" "weapon_mag7" - "prefab" "weapon_mag7_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "heavy2" - } - "28" - { - "name" "weapon_negev" - "prefab" "weapon_negev_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "heavy4" - } - "29" - { - "name" "weapon_sawedoff" - "prefab" "weapon_sawedoff_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "heavy2" - } - "30" - { - "name" "weapon_tec9" - "prefab" "weapon_tec9_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "secondary3" - "item_shares_equip_slot" "1" - } - "31" - { - "name" "weapon_taser" - "prefab" "equipment" - "item_class" "weapon_taser" - "item_name" "#SFUI_WPNHUD_Taser" - "item_description" "#CSGO_Item_Desc_Taser" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "equipment2" - "image_inventory" "econ/weapons/base_weapons/weapon_taser" - "icon_default_image" "materials/icons/inventory_icon_weapon_taser.vtf" - "model_player" "models/weapons/v_eq_taser.mdl" - "model_world" "models/weapons/w_eq_taser.mdl" - "used_by_classes" + "33818221" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_damascus_90_medium" } - } - "32" - { - "name" "weapon_hkp2000" - "prefab" "weapon_hkp2000_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "secondary0" - } - "33" - { - "name" "weapon_mp7" - "prefab" "weapon_mp7_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "smg1" - } - "34" - { - "name" "weapon_mp9" - "prefab" "weapon_mp9_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "smg0" - } - "35" - { - "name" "weapon_nova" - "prefab" "weapon_nova_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "heavy0" - } - "36" - { - "name" "weapon_p250" - "prefab" "weapon_p250_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "secondary2" - } - "38" - { - "name" "weapon_scar20" - "prefab" "weapon_scar20_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle5" - } - "39" - { - "name" "weapon_sg556" - "prefab" "weapon_sg556_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle3" - } - "40" - { - "name" "weapon_ssg08" - "prefab" "weapon_ssg08_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "rifle2" - } - "42" - { - "name" "weapon_knife" - "prefab" "melee" - "item_name" "#SFUI_WPNHUD_Knife" - "item_description" "#CSGO_Item_desc_Knife" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "melee" - "image_inventory" "econ/weapons/base_weapons/weapon_knife" - "model_player" "models/weapons/v_knife_default_ct.mdl" - "model_world" "models/weapons/w_knife_default_ct.mdl" - "used_by_classes" + "33818222" { - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_damascus_90_heavy" } - "inventory_image_data" + "33818228" { - "camera_angles" "0.0 -70.0 25.0" - "camera_offset" "5.0 0 -2.5" + "icon_path" "econ/default_generated/weapon_knife_push_am_marble_fade_light" } - "attributes" + "33818229" { - "icon display model" "models/weapons/w_knife_default_ct.mdl" - "pedestal display model" "models/weapons/v_knife_default_ct_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_marble_fade_medium" } - } - "43" - { - "name" "weapon_flashbang" - "prefab" "weapon_flashbang_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "grenade2" - } - "44" - { - "name" "weapon_hegrenade" - "prefab" "weapon_hegrenade_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "grenade3" - } - "45" - { - "name" "weapon_smokegrenade" - "prefab" "weapon_smokegrenade_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "grenade4" - } - "46" - { - "name" "weapon_molotov" - "prefab" "weapon_molotov_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "grenade0" - } - "47" - { - "name" "weapon_decoy" - "prefab" "weapon_decoy_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "grenade1" - } - "48" - { - "name" "weapon_incgrenade" - "prefab" "weapon_incgrenade_prefab" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "grenade0" - } - "49" - { - "name" "weapon_c4" - "prefab" "c4" - "item_name" "#SFUI_WPNHUD_C4" - "item_description" "#CSGO_Item_Desc_C4" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "c4" - "image_inventory" "econ/weapons/base_weapons/weapon_c4" - "model_player" "models/weapons/v_ied.mdl" - "model_world" "models/weapons/w_ied.mdl" - "paint_data" + "33818230" { - "PaintableMaterial0" - { - "Name" "c4" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "10.825500" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_marble_fade_heavy" } - } - "58" - { - "name" "musickit_default" - "prefab" "musickit_prefab" - "item_name" "#CSGO_Type_MusicKit" - "item_description" "#CSGO_MusicKit_Desc" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "attributes" + "33818232" { - "music id" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_steel_knife_light" } - } - "59" - { - "name" "weapon_knife_t" - "prefab" "melee" - "item_name" "#SFUI_WPNHUD_Knife_T" - "item_description" "#CSGO_Item_desc_Knife_T" - "item_quality" "normal" - "baseitem" "1" - "default_slot_item" "1" - "item_sub_position" "melee" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_t" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_t.vtf" - "model_player" "models/weapons/v_knife_default_t.mdl" - "model_world" "models/weapons/w_knife_default_t.mdl" - "used_by_classes" + "33818233" { - "terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_aq_steel_knife_medium" } - "inventory_image_data" + "33818234" { - "camera_angles" "0.0 -70.0 25.0" - "camera_offset" "7.0 0 -2" + "icon_path" "econ/default_generated/weapon_knife_push_aq_steel_knife_heavy" } - "attributes" + "33818236" { - "icon display model" "models/weapons/w_knife_default_t.mdl" - "pedestal display model" "models/weapons/v_knife_default_t_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_ruby_marbleized_light" } - } - "60" - { - "name" "weapon_m4a1_silencer" - "prefab" "weapon_m4a1_silencer_prefab" - "item_quality" "normal" - "baseitem" "1" - "item_sub_position" "rifle1" - "item_shares_equip_slot" "1" - } - "61" - { - "name" "weapon_usp_silencer" - "prefab" "weapon_usp_silencer_prefab" - "item_quality" "normal" - "baseitem" "1" - "item_sub_position" "secondary0" - } - "62" - { - "name" "Recipe Trade Up" - "prefab" "recipe" - "baseitem" "1" - "item_name" "#CSGO_Recipe_TradeUp" - "item_description" "#CSGO_Recipe_TradeUp_Desc" - "attributes" + "33818237" { - "recipe filter" "-3" - "preferred sort" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_ruby_marbleized_medium" } - } - "63" - { - "name" "weapon_cz75a" - "prefab" "weapon_cz75a_prefab" - "item_quality" "normal" - "baseitem" "1" - "item_sub_position" "secondary3" - "item_shares_equip_slot" "1" - } - "64" - { - "name" "weapon_revolver" - "prefab" "weapon_revolver_prefab" - "item_quality" "normal" - "baseitem" "1" - "item_sub_position" "secondary4" - "item_shares_equip_slot" "1" - } - "500" - { - "name" "weapon_bayonet" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_KnifeBayonet" - "item_description" "#CSGO_Item_Desc_Knife_Bayonet" - "image_inventory" "econ/weapons/base_weapons/weapon_bayonet" - "icon_default_image" "materials/icons/inventory_icon_weapon_bayonet.vtf" - "model_player" "models/weapons/v_knife_bayonet.mdl" - "model_world" "models/weapons/w_knife_bayonet.mdl" - "used_by_classes" + "33818238" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_ruby_marbleized_heavy" } - "attributes" + "33818248" { - "pedestal display model" "models/weapons/v_knife_bayonet_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase1_light" } - "paint_data" + "33818249" { - "PaintableMaterial0" - { - "Name" "knife_bayonet" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "14.518000" - "UVScale" "0.505000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase1_medium" } - } - "505" - { - "name" "weapon_knife_flip" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_KnifeFlip" - "item_description" "#CSGO_Item_Desc_Knife_Flip" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_flip" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_flip.vtf" - "model_player" "models/weapons/v_knife_flip.mdl" - "model_world" "models/weapons/w_knife_flip.mdl" - "used_by_classes" + "33818250" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase1_heavy" } - "attributes" + "33818256" { - "pedestal display model" "models/weapons/v_knife_flip_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase3_light" } - "inventory_image_data" + "33818257" { - "camera_angles" "30.0 -95.0 29.0" - "camera_offset" "9.0 1.0 -1.5" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase3_medium" } - "paint_data" + "33818258" { - "PaintableMaterial0" - { - "Name" "knife_flip" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "12.900000" - "UVScale" "0.411000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase3_heavy" } - } - "506" - { - "name" "weapon_knife_gut" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_KnifeGut" - "item_description" "#CSGO_Item_Desc_Knife_Gut" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_gut" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_gut.vtf" - "model_player" "models/weapons/v_knife_gut.mdl" - "model_world" "models/weapons/w_knife_gut.mdl" - "used_by_classes" + "33818260" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase4_light" } - "attributes" + "33818261" { - "pedestal display model" "models/weapons/v_knife_gut_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase4_medium" } - "inventory_image_data" + "33818262" { - "camera_angles" "30.0 -95.0 23.0" - "camera_offset" "10.0 1.2 -2" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase4_heavy" } - "paint_data" + "33818848" { - "PaintableMaterial0" - { - "Name" "knife_gut" - "OrigMat" "knife_gut" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "14.610000" - "UVScale" "0.733000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_emerald_marbleized_light" } - } - "507" - { - "name" "weapon_knife_karambit" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_KnifeKaram" - "item_description" "#CSGO_Item_Desc_Knife_Karam" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_karambit" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_karambit.vtf" - "model_player" "models/weapons/v_knife_karam.mdl" - "model_world" "models/weapons/w_knife_karam.mdl" - "used_by_classes" + "33818849" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_emerald_marbleized_medium" } - "attributes" + "33818850" { - "pedestal display model" "models/weapons/v_knife_karam_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_emerald_marbleized_heavy" } - "inventory_image_data" + "33818852" { - "camera_angles" "30.0 -95.0 -5.0" - "camera_offset" "10.0 1.5 -3.2" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase1_light" } - "paint_data" + "33818853" { - "PaintableMaterial0" - { - "Name" "knife_karam" - "OrigMat" "karam" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "9.813000" - "UVScale" "0.438000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase1_medium" } - } - "508" - { - "name" "weapon_knife_m9_bayonet" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_KnifeM9" - "item_description" "#CSGO_Item_Desc_KnifeM9" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_m9_bayonet" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_m9_bayonet.vtf" - "model_player" "models/weapons/v_knife_m9_bay.mdl" - "model_world" "models/weapons/w_knife_m9_bay.mdl" - "used_by_classes" + "33818854" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase1_heavy" } - "attributes" + "33818856" { - "pedestal display model" "models/weapons/v_knife_m9_bay_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase2_light" } - "inventory_image_data" + "33818857" { - "camera_angles" "30.0 -95.0 29.0" - "camera_offset" "7.0 1.5 -1.5" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase2_medium" } - "paint_data" + "33818858" { - "PaintableMaterial0" - { - "Name" "knife_m9_bay" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "15.300000" - "UVScale" "0.506000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase2_heavy" } - } - "509" - { - "name" "weapon_knife_tactical" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_KnifeTactical" - "item_description" "#CSGO_Item_Desc_KnifeTactical" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_tactical" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_tactical.vtf" - "model_player" "models/weapons/v_knife_tactical.mdl" - "model_world" "models/weapons/w_knife_tactical.mdl" - "used_by_classes" + "33818860" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase3_light" } - "attributes" + "33818861" { - "pedestal display model" "models/weapons/v_knife_tactical_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase3_medium" } - "inventory_image_data" + "33818862" { - "camera_angles" "30.0 -95.0 29.0" - "camera_offset" "7.0 1.5 -1.5" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase3_heavy" } - "paint_data" + "33818864" { - "PaintableMaterial0" - { - "Name" "knife_tactical" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "15.300000" - "UVScale" "0.506000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase4_light" } - "tags" + "33818865" { - "ItemSet" - { - "tag_value" "set_community_3" - "tag_text" "#CSGO_set_community_3" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase4_medium" } - } - "512" - { - "name" "weapon_knife_falchion" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_knife_falchion_advanced" - "item_description" "#CSGO_Item_Desc_knife_falchion_advanced" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_falchion" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_falchion.vtf" - "model_player" "models/weapons/v_knife_falchion_advanced.mdl" - "model_world" "models/weapons/w_knife_falchion_advanced.mdl" - "used_by_classes" + "33818866" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_gamma_doppler_phase4_heavy" } - "attributes" + "33818892" { - "pedestal display model" "models/weapons/v_knife_falchion_advanced_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_hy_ocean_knife_90_light" } - "inventory_image_data" + "33818893" { - "camera_angles" "0 0 0" - "camera_offset" "0 0 0" + "icon_path" "econ/default_generated/weapon_knife_push_hy_ocean_knife_90_medium" } - "paint_data" + "33818894" { - "PaintableMaterial0" - { - "Name" "knife_falchion_advanced" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "12.570000" - "UVScale" "0.360000" - } + "icon_path" "econ/default_generated/weapon_knife_push_hy_ocean_knife_90_heavy" } - "tags" + "33818900" { - "ItemSet" - { - "tag_value" "set_community_8" - "tag_text" "#CSGO_set_community_8" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_marked_up_90_light" } - } - "515" - { - "name" "weapon_knife_butterfly" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_Knife_Butterfly" - "item_description" "#CSGO_Item_Desc_Knife_Butterfly" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_butterfly" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_butterfly.vtf" - "model_player" "models/weapons/v_knife_butterfly.mdl" - "model_world" "models/weapons/w_knife_butterfly.mdl" - "used_by_classes" + "33818901" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_marked_up_90_medium" } - "attributes" + "33818902" { - "pedestal display model" "models/weapons/v_knife_butterfly_inspect.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_marked_up_90_heavy" } - "inventory_image_data" + "33819044" { - "camera_angles" "30.0 -95.0 29.0" - "camera_offset" "9.0 1.5 -1.5" - "spot_light_key" - { - "position" "-10 30 0" - "color" "2.98 2.98 3" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_blackpearl_marbleized_b_light" } - "paint_data" + "33819045" { - "PaintableMaterial0" - { - "Name" "knife_butterfly" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "0" - "WeaponLength" "15.300000" - "UVScale" "0.506000" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_blackpearl_marbleized_b_medium" } - "tags" + "33819046" { - "ItemSet" - { - "tag_value" "set_community_4" - "tag_text" "#CSGO_set_community_4" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_blackpearl_marbleized_b_heavy" } - } - "516" - { - "name" "weapon_knife_push" - "prefab" "melee_unusual" - "item_name" "#SFUI_WPNHUD_knife_push" - "item_description" "#CSGO_Item_Desc_knife_push" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_push" - "icon_default_image" "materials/icons/inventory_icon_weapon_knife_push.vtf" - "model_player" "models/weapons/v_knife_push.mdl" - "model_world" "models/weapons/w_knife_push.mdl" - "model_dropped" "models/weapons/w_knife_push_dropped.mdl" - "used_by_classes" + "33819048" { - "terrorists" "1" - "counter-terrorists" "1" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase2_b_light" } - "attributes" + "33819049" { - "pedestal display model" "models/weapons/v_knife_push_inspect.mdl" - "icon display model" "models/weapons/w_knife_push_icon.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase2_b_medium" } - "inventory_image_data" + "33819050" { - "spot_light_key" - { - "position" "0 -30 40" - "color" "0.95 0.98 1" - "lookat" "0.0 0.0 0.0" - "inner_cone" "0.500000" - "outer_cone" "1.000000" - } - "point_light_accent" - { - "position" "0 0 -50" - "color" "1 1 1" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_doppler_phase2_b_heavy" } - "paint_data" + "33819052" { - "PaintableMaterial0" - { - "Name" "knife_push" - "ViewmodelDim" "2048" - "WorldDim" "512" - "BaseTextureOverride" "1" - "WeaponLength" "5.884990" - "UVScale" "0.583642" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_sapphire_marbleized_b_light" } - "tags" + "33819053" { - "ItemSet" - { - "tag_value" "set_community_9" - "tag_text" "#CSGO_set_community_9" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_push_am_sapphire_marbleized_b_medium" } - } - "874" - { - "name" "Five Year Service Coin" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_FiveYearService" - "item_description" "#CSGO_CollectibleCoin_FiveYearService_Desc" - "image_inventory" "econ/status_icons/5yearcoin" - "attributes" + "33819054" { - "pedestal display model" "models/inventory_items/5_year_coin.mdl" + "icon_path" "econ/default_generated/weapon_knife_push_am_sapphire_marbleized_b_heavy" } - } - "875" - { - "name" "DreamHack SteelSeries 2013 CS:GO Champion" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DH2013_Champion" - "item_description" "#CSGO_CollectibleCoin_DH2013_Champion_Desc" - "image_inventory" "econ/status_icons/dreamhack_2013_champion" - "attributes" + "33821008" { - "pedestal display model" "models/inventory_items/dreamhack_trophy_champion.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_push_cu_push_lore_light" } - } - "876" - { - "name" "DreamHack SteelSeries 2013 CS:GO Finalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DH2013_Finalist" - "item_description" "#CSGO_CollectibleCoin_DH2013_Finalist_Desc" - "image_inventory" "econ/status_icons/dreamhack_2013_finalist" - "attributes" + "33821009" { - "pedestal display model" "models/inventory_items/dreamhack_trophy_finalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_push_cu_push_lore_medium" } - } - "877" - { - "name" "DreamHack SteelSeries 2013 CS:GO Semifinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DH2013_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_DH2013_SemiFinalist_Desc" - "image_inventory" "econ/status_icons/dreamhack_2013_semifinalist" - "attributes" + "33821010" { - "pedestal display model" "models/inventory_items/dreamhack_trophy_semifinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_push_cu_push_lore_heavy" } - } - "878" - { - "name" "DreamHack SteelSeries 2013 CS:GO Quarterfinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DH2013_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_DH2013_QuarterFinalist_Desc" - "image_inventory" "econ/status_icons/dreamhack_2013_quarterfinalist" - "attributes" + "33821028" { - "pedestal display model" "models/inventory_items/dreamhack_trophy_quarterfinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_push_gs_push_black_laminate_light" } - } - "879" - { - "name" "EMS One Katowice 2014 CS:GO Champion" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2014_Champion" - "item_description" "#CSGO_CollectibleCoin_Kat2014_Champion_Desc" - "image_inventory" "econ/status_icons/katowice_2014_champion" - "attributes" + "33821029" { - "pedestal display model" "models/inventory_items/katowice_trophy_champion.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_push_gs_push_black_laminate_medium" } - } - "880" - { - "name" "EMS One Katowice 2014 CS:GO Finalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2014_Finalist" - "item_description" "#CSGO_CollectibleCoin_Kat2014_Finalist_Desc" - "image_inventory" "econ/status_icons/katowice_2014_finalist" - "attributes" + "33821030" { - "pedestal display model" "models/inventory_items/katowice_trophy_finalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_push_gs_push_black_laminate_heavy" } - } - "881" - { - "name" "EMS One Katowice 2014 CS:GO Semifinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2014_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2014_SemiFinalist_Desc" - "image_inventory" "econ/status_icons/katowice_2014_semifinalist" - "attributes" + "33821048" { - "pedestal display model" "models/inventory_items/katowice_trophy_semifinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_push_gs_push_autotronic_light" } - } - "882" - { - "name" "EMS One Katowice 2014 CS:GO Quarterfinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist_Desc" - "image_inventory" "econ/status_icons/katowice_2014_quarterfinalist" - "attributes" + "33821049" { - "pedestal display model" "models/inventory_items/katowice_trophy_quarterfinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_push_gs_push_autotronic_medium" } - } - "883" - { - "name" "ESL One Cologne 2014 CS:GO Champion" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_Champion" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_Champion_Desc" - "image_inventory" "econ/status_icons/cologne_trophy_champion" - "attributes" + "33821050" { - "pedestal display model" "models/inventory_items/cologne_trophy_champion.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_push_gs_push_autotronic_heavy" } - } - "884" - { - "name" "ESL One Cologne 2014 CS:GO Finalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_Finalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_Finalist_Desc" - "image_inventory" "econ/status_icons/cologne_trophy_finalist" - "attributes" + "33882132" { - "pedestal display model" "models/inventory_items/cologne_trophy_finalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_ddpat_light" } - } - "885" - { - "name" "ESL One Cologne 2014 CS:GO Semifinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist_Desc" - "image_inventory" "econ/status_icons/cologne_trophy_semifinalist" - "attributes" + "33882133" { - "pedestal display model" "models/inventory_items/cologne_trophy_semifinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_ddpat_medium" } - } - "886" - { - "name" "ESL One Cologne 2014 CS:GO Quarterfinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist_Desc" - "image_inventory" "econ/status_icons/cologne_trophy_quarterfinalist" - "attributes" + "33882134" { - "pedestal display model" "models/inventory_items/cologne_trophy_quarterfinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_ddpat_heavy" } - } - "887" - { - "name" "ESL One Cologne 2014 Pick 'Em Challenge Bronze" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze_Desc" - "image_inventory" "econ/status_icons/cologne_prediction_bronze" - "attributes" + "33882160" { - "pedestal display model" "models/inventory_items/cologne_prediction_bronze.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_webs_light" } - } - "888" - { - "name" "ESL One Cologne 2014 Pick 'Em Challenge Silver" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver_Desc" - "image_inventory" "econ/status_icons/cologne_prediction_silver" - "attributes" + "33882161" { - "pedestal display model" "models/inventory_items/cologne_prediction_silver.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_webs_medium" } - } - "889" - { - "name" "ESL One Cologne 2014 Pick 'Em Challenge Gold" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmGold_Desc" - "image_inventory" "econ/status_icons/cologne_prediction_gold" - "attributes" + "33882162" { - "pedestal display model" "models/inventory_items/cologne_prediction_gold.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_webs_heavy" } - } - "890" - { - "name" "DreamHack Winter 2014 CS:GO Champion" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DHW2014_Champion" - "item_description" "#CSGO_CollectibleCoin_DHW2014_Champion_Desc" - "image_inventory" "econ/status_icons/dhw_2014_champion" - "attributes" + "33882264" { - "pedestal display model" "models/inventory_items/dhw_2014_champion.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aa_fade_light" } - } - "891" - { - "name" "DreamHack Winter 2014 CS:GO Finalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DHW2014_Finalist" - "item_description" "#CSGO_CollectibleCoin_DHW2014_Finalist_Desc" - "image_inventory" "econ/status_icons/dhw_2014_finalist" - "attributes" + "33882265" { - "pedestal display model" "models/inventory_items/dhw_2014_finalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aa_fade_medium" } - } - "892" - { - "name" "DreamHack Winter 2014 CS:GO Semifinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DHW2014_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_DHW2014_SemiFinalist_Desc" - "image_inventory" "econ/status_icons/dhw_2014_semifinalist" - "attributes" + "33882266" { - "pedestal display model" "models/inventory_items/dhw_2014_semifinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aa_fade_heavy" } - } - "893" - { - "name" "DreamHack Winter 2014 CS:GO Quarterfinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist_Desc" - "image_inventory" "econ/status_icons/dhw_2014_quarterfinalist" - "attributes" + "33882280" { - "pedestal display model" "models/inventory_items/dhw_2014_quarterfinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_blued_light" } - } - "894" - { - "name" "DreamHack Winter 2014 Pick 'Em Challenge Bronze" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmBronze_Desc" - "image_inventory" "econ/status_icons/dhw14_prediction_bronze" - "attributes" + "33882281" { - "pedestal display model" "models/inventory_items/dhw_2014_pickem_bronze.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_blued_medium" } - } - "895" - { - "name" "DreamHack Winter 2014 Pick 'Em Challenge Silver" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmSilver_Desc" - "image_inventory" "econ/status_icons/dhw14_prediction_silver" - "attributes" + "33882282" { - "pedestal display model" "models/inventory_items/dhw_2014_pickem_silver.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_blued_heavy" } - } - "896" - { - "name" "DreamHack Winter 2014 Pick 'Em Challenge Gold" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmGold_Desc" - "image_inventory" "econ/status_icons/dhw14_prediction_gold" - "attributes" + "33882284" { - "pedestal display model" "models/inventory_items/dhw_2014_pickem_gold.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_forced_light" } - } - "897" - { - "name" "ESL One Katowice 2015 CS:GO Champion" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2015_Champion" - "item_description" "#CSGO_CollectibleCoin_Kat2015_Champion_Desc" - "image_inventory" "econ/status_icons/kat_2015_champion" - "attributes" + "33882285" { - "pedestal display model" "models/inventory_items/katowice2015_trophy_champion.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_forced_medium" } - } - "898" - { - "name" "ESL One Katowice 2015 CS:GO Finalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2015_Finalist" - "item_description" "#CSGO_CollectibleCoin_Kat2015_Finalist_Desc" - "image_inventory" "econ/status_icons/kat_2015_finalist" - "attributes" + "33882286" { - "pedestal display model" "models/inventory_items/katowice2015_trophy_finalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_forced_heavy" } - } - "899" - { - "name" "ESL One Katowice 2015 CS:GO Semifinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2015_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2015_SemiFinalist_Desc" - "image_inventory" "econ/status_icons/kat_2015_semifinalist" - "attributes" + "33882288" { - "pedestal display model" "models/inventory_items/katowice2015_trophy_semifinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_oiled_light" } - } - "900" - { - "name" "ESL One Katowice 2015 CS:GO Quarterfinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist_Desc" - "image_inventory" "econ/status_icons/kat_2015_quarterfinalist" - "attributes" + "33882289" { - "pedestal display model" "models/inventory_items/katowice2015_trophy_quarterfinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_oiled_medium" } - } - "901" - { - "name" "ESL One Katowice 2015 Pick 'Em Challenge Bronze" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmBronze_Desc" - "image_inventory" "econ/status_icons/kat_2015_prediction_bronze" - "attributes" + "33882290" { - "pedestal display model" "models/inventory_items/kat_2015_pickem_bronze.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_cord_aq_oiled_heavy" } - } - "902" - { - "name" "ESL One Katowice 2015 Pick 'Em Challenge Silver" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmSilver_Desc" - "image_inventory" "econ/status_icons/kat_2015_prediction_silver" - "attributes" + "33882348" { - "pedestal display model" "models/inventory_items/kat_2015_pickem_silver.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_cord_am_zebra_light" } - } - "903" - { - "name" "ESL One Katowice 2015 Pick 'Em Challenge Gold" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmGold_Desc" - "image_inventory" "econ/status_icons/kat_2015_prediction_gold" - "attributes" + "33882349" { - "pedestal display model" "models/inventory_items/kat_2015_pickem_gold.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_cord_am_zebra_medium" } - } - "904" - { - "name" "ESL One Cologne 2015 CS:GO Champion" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_Champion" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_Champion_Desc" - "image_inventory" "econ/status_icons/col_2015_champion" - "attributes" + "33882350" { - "pedestal display model" "models/inventory_items/col2015_trophy_champion.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_cord_am_zebra_heavy" } - } - "905" - { - "name" "ESL One Cologne 2015 CS:GO Finalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_Finalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_Finalist_Desc" - "image_inventory" "econ/status_icons/col_2015_finalist" - "attributes" + "33882400" { - "pedestal display model" "models/inventory_items/col2015_trophy_finalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_mesh_tan_light" } - } - "906" - { - "name" "ESL One Cologne 2015 CS:GO Semifinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist_Desc" - "image_inventory" "econ/status_icons/col_2015_semifinalist" - "attributes" + "33882401" { - "pedestal display model" "models/inventory_items/col2015_trophy_semifinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_mesh_tan_medium" } - } - "907" - { - "name" "ESL One Cologne 2015 CS:GO Quarterfinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist_Desc" - "image_inventory" "econ/status_icons/col_2015_quarterfinalist" - "attributes" + "33882402" { - "pedestal display model" "models/inventory_items/col2015_trophy_quarterfinalist.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_mesh_tan_heavy" } - } - "908" - { - "name" "ESL One Cologne 2015 Pick 'Em Challenge Bronze" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze_Desc" - "image_inventory" "econ/status_icons/col_2015_prediction_bronze" - "attributes" + "33882420" { - "pedestal display model" "models/inventory_items/cologne_pickem_2015_bronze.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_forest_boreal_light" } - } - "909" - { - "name" "ESL One Cologne 2015 Pick 'Em Challenge Silver" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver_Desc" - "image_inventory" "econ/status_icons/col_2015_prediction_silver" - "attributes" + "33882421" { - "pedestal display model" "models/inventory_items/cologne_pickem_2015_silver.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_forest_boreal_medium" } - } - "910" - { - "name" "ESL One Cologne 2015 Pick 'Em Challenge Gold" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmGold_Desc" - "image_inventory" "econ/status_icons/col_2015_prediction_gold" - "attributes" + "33882422" { - "pedestal display model" "models/inventory_items/cologne_pickem_2015_gold.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_cord_hy_forest_boreal_heavy" } - } - "911" - { - "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Bronze" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze_Desc" - "image_inventory" "econ/status_icons/cluj_2015_prediction_bronze" - "attributes" + "33882684" { - "pedestal display model" "models/inventory_items/cluj_pickem_2015_bronze.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_tape_urban_light" } - } - "912" - { - "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Silver" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver_Desc" - "image_inventory" "econ/status_icons/cluj_2015_prediction_silver" - "attributes" + "33882685" { - "pedestal display model" "models/inventory_items/cluj_pickem_2015_silver.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_tape_urban_medium" } - } - "913" - { - "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Gold" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmGold_Desc" - "image_inventory" "econ/status_icons/cluj_2015_prediction_gold" - "attributes" + "33882686" { - "pedestal display model" "models/inventory_items/cluj_pickem_2015_gold.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_tape_urban_heavy" } - } - "914" - { - "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Bronze" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze_Desc" - "image_inventory" "econ/status_icons/cluj_2015_fantasy_bronze" - "attributes" + "33882812" { - "pedestal display model" "models/inventory_items/cluj_fantasy_2015_bronze.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_dapple_light" } - } - "915" - { - "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Silver" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasySilver" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasySilver_Desc" - "image_inventory" "econ/status_icons/cluj_2015_fantasy_silver" - "attributes" + "33882813" { - "pedestal display model" "models/inventory_items/cluj_fantasy_2015_silver.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_dapple_medium" } - } - "916" - { - "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Gold" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasyGold" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasyGold_Desc" - "image_inventory" "econ/status_icons/cluj_2015_fantasy_gold" - "attributes" + "33882814" { - "pedestal display model" "models/inventory_items/cluj_fantasy_2015_gold.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_dapple_heavy" } - } - "917" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Champion" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_Champion" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_Champion_Desc" - "image_inventory" "econ/status_icons/trophy_majors" - "attributes" + "33885052" { - "pedestal display model" "models/inventory_items/trophy_majors.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_nightstripe_light" } - } - "918" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Finalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_Finalist" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_Finalist_Desc" - "image_inventory" "econ/status_icons/trophy_majors_finalists" - "attributes" + "33885053" { - "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_nightstripe_medium" } - } - "919" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Semifinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_SemiFinalist_Desc" - "image_inventory" "econ/status_icons/trophy_majors_finalists" - "attributes" + "33885054" { - "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_cord_sp_nightstripe_heavy" } - } - "920" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Quarterfinalist" - "prefab" "collectible_untradable" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_QuarterFinalist_Desc" - "image_inventory" "econ/status_icons/trophy_majors_finalists" - "attributes" + "33947668" { - "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_canis_hy_ddpat_light" } - } - "1000" - { - "name" "Community Season One Spring 2013" - "first_sale_date" "2013/04/24" - "prefab" "csgo_tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonOneSpring2013" - "item_description" "#CSGO_Ticket_CommunitySeasonOneSpring2013_Desc" - "image_inventory" "econ/status_icons/community_support_pass" - "capabilities" + "33947669" { - "usable_gc" "1" - "usable_out_of_game" "1" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_ddpat_medium" } - "tool" + "33947670" { - "type" "season_pass" - "use_string" "#ConsumeItem" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_ddpat_heavy" } - "attributes" + "33947696" { - "season access" "0" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_webs_light" } - } - "1001" - { - "name" "Community Season One Spring 2013 Coin 1" - "prefab" "season1_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1_Desc" - "image_inventory" "econ/status_icons/community_support_pass_coin1" - "min_ilevel" "1" - "max_ilevel" "1" - "attributes" + "33947697" { - "pedestal display model" "models/inventory_items/payback_bronze_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_webs_medium" } - } - "1002" - { - "name" "Community Season One Spring 2013 Coin 2" - "prefab" "season1_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2_Desc" - "image_inventory" "econ/status_icons/community_support_pass_coin2" - "min_ilevel" "2" - "max_ilevel" "2" - "attributes" + "33947698" { - "pedestal display model" "models/inventory_items/payback_silver_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_webs_heavy" } - } - "1003" - { - "name" "Community Season One Spring 2013 Coin 3" - "prefab" "season1_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3_Desc" - "image_inventory" "econ/status_icons/community_support_pass_coin3" - "min_ilevel" "3" - "max_ilevel" "3" - "attributes" + "33947800" { - "pedestal display model" "models/inventory_items/payback_gold_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aa_fade_light" } - } - "1004" - { - "name" "Map Token Museum" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenMuseum" - "item_description" "#CSGO_Collectible_MapTokenMuseum_Desc" - "image_inventory" "econ/status_icons/maptoken_museum" - "map_name" "#SFUI_Map_cs_museum" - "attributes" + "33947801" { - "pedestal display model" "models/inventory_items/maptoken_museum.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aa_fade_medium" } - } - "1005" - { - "name" "Map Token Downtown" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenDowntown" - "item_description" "#CSGO_Collectible_MapTokenDowntown_Desc" - "image_inventory" "econ/status_icons/maptoken_downtown" - "map_name" "#SFUI_Map_cs_downtown" - "attributes" + "33947802" { - "pedestal display model" "models/inventory_items/maptoken_downtown.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aa_fade_heavy" } - } - "1006" - { - "name" "Map Token Thunder" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenThunder" - "item_description" "#CSGO_Collectible_MapTokenThunder_Desc" - "image_inventory" "econ/status_icons/maptoken_thunder" - "map_name" "#SFUI_Map_cs_thunder_go" - "attributes" + "33947816" { - "pedestal display model" "models/inventory_items/maptoken_thunder.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_blued_light" } - } - "1007" - { - "name" "Map Token Favela" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenFavela" - "item_description" "#CSGO_Collectible_MapTokenFavela_Desc" - "image_inventory" "econ/status_icons/maptoken_favela" - "map_name" "#SFUI_Map_de_favela" - "attributes" + "33947817" { - "pedestal display model" "models/inventory_items/maptoken_favela.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_blued_medium" } - } - "1008" - { - "name" "Map Token Motel" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenMotel" - "item_description" "#CSGO_Collectible_MapTokenMotel_Desc" - "image_inventory" "econ/status_icons/maptoken_motel" - "map_name" "#SFUI_Map_cs_motel" - "attributes" + "33947818" { - "pedestal display model" "models/inventory_items/maptoken_motel.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_blued_heavy" } - } - "1009" - { - "name" "Map Token Seaside" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenSeaside" - "item_description" "#CSGO_Collectible_MapTokenSeaside_Desc" - "image_inventory" "econ/status_icons/maptoken_seaside" - "map_name" "#SFUI_Map_de_seaside" - "attributes" + "33947820" { - "pedestal display model" "models/inventory_items/maptoken_seaside.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_forced_light" } - } - "1010" - { - "name" "Map Token Library" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenLibrary" - "item_description" "#CSGO_Collectible_MapTokenLibrary_Desc" - "image_inventory" "econ/status_icons/maptoken_library" - "map_name" "#SFUI_Map_de_library" - "attributes" + "33947821" { - "pedestal display model" "models/inventory_items/maptoken_library.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_forced_medium" } - } - "1012" - { - "name" "Community Season Two Autumn 2013" - "first_sale_date" "2013/09/19" - "prefab" "csgo_tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonTwoAutumn2013" - "item_description" "#CSGO_Ticket_CommunitySeasonTwoAutumn2013_Desc" - "image_inventory" "econ/status_icons/operation_bravo_pass" - "capabilities" + "33947822" { - "usable_gc" "1" - "usable_out_of_game" "1" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_forced_heavy" } - "tool" + "33947824" { - "type" "season_pass" - "use_string" "#ConsumeItem" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_oiled_light" } - "attributes" + "33947825" { - "season access" "1" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_oiled_medium" } - } - "1013" - { - "name" "Community Season Two Autumn 2013 Coin 1" - "prefab" "season2_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1_Desc" - "image_inventory" "econ/status_icons/operation_bravo_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "attributes" + "33947826" { - "pedestal display model" "models/inventory_items/bravo_bronze_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_aq_oiled_heavy" } - } - "1014" - { - "name" "Community Season Two Autumn 2013 Coin 2" - "prefab" "season2_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2_Desc" - "image_inventory" "econ/status_icons/operation_bravo_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "attributes" + "33947884" { - "pedestal display model" "models/inventory_items/bravo_silver_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_am_zebra_light" } - } - "1015" - { - "name" "Community Season Two Autumn 2013 Coin 3" - "prefab" "season2_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3_Desc" - "image_inventory" "econ/status_icons/operation_bravo_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "attributes" + "33947885" { - "pedestal display model" "models/inventory_items/bravo_gold_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_am_zebra_medium" } - } - "1016" - { - "name" "Map Token Agency" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenAgency" - "item_description" "#CSGO_Collectible_MapTokenAgency_Desc" - "image_inventory" "econ/status_icons/maptoken_agency" - "map_name" "#SFUI_Map_cs_agency" - "attributes" + "33947886" { - "pedestal display model" "models/inventory_items/maptoken_agency.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_am_zebra_heavy" } - } - "1017" - { - "name" "Map Token Ali" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenAli" - "item_description" "#CSGO_Collectible_MapTokenAli_Desc" - "image_inventory" "econ/status_icons/maptoken_ali" - "map_name" "#SFUI_Map_de_ali" - "attributes" + "33947936" { - "pedestal display model" "models/inventory_items/maptoken_ali.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_mesh_tan_light" } - } - "1018" - { - "name" "Map Token Cache" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenCache" - "item_description" "#CSGO_Collectible_MapTokenCache_Desc" - "image_inventory" "econ/status_icons/maptoken_cache" - "map_name" "#SFUI_Map_de_cache" - "attributes" + "33947937" { - "pedestal display model" "models/inventory_items/maptoken_cache.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_mesh_tan_medium" } - } - "1019" - { - "name" "Map Token Chinatown" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenChinatown" - "item_description" "#CSGO_Collectible_MapTokenChinatown_Desc" - "image_inventory" "econ/status_icons/maptoken_chinatown" - "map_name" "#SFUI_Map_de_chinatown" - "attributes" + "33947938" { - "pedestal display model" "models/inventory_items/maptoken_chinatown.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_mesh_tan_heavy" } - } - "1020" - { - "name" "Map Token Gwalior" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenGwalior" - "item_description" "#CSGO_Collectible_MapTokenGwalior_Desc" - "image_inventory" "econ/status_icons/maptoken_gwalior" - "map_name" "#SFUI_Map_de_gwalior" - "attributes" + "33947956" { - "pedestal display model" "models/inventory_items/maptoken_gwalior.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_forest_boreal_light" } - } - "1021" - { - "name" "Map Token Ruins" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenRuins" - "item_description" "#CSGO_Collectible_MapTokenRuins_Desc" - "image_inventory" "econ/status_icons/maptoken_ruins" - "map_name" "#SFUI_Map_de_ruins" - "attributes" + "33947957" { - "pedestal display model" "models/inventory_items/maptoken_ruins.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_forest_boreal_medium" } - } - "1022" - { - "name" "Map Token Siege" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenSiege" - "item_description" "#CSGO_Collectible_MapTokenSiege_Desc" - "image_inventory" "econ/status_icons/maptoken_siege" - "map_name" "#SFUI_Map_cs_siege" - "attributes" + "33947958" { - "pedestal display model" "models/inventory_items/maptoken_siege.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_hy_forest_boreal_heavy" } - } - "1023" - { - "name" "Community Season Three Spring 2014" - "first_sale_date" "2014/03/20" - "prefab" "csgo_tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonThreeSpring2014" - "item_description" "#CSGO_Ticket_CommunitySeasonThreeSpring2014_Desc" - "image_inventory" "econ/status_icons/operation_phoenix_pass" - "capabilities" + "33948220" { - "usable_gc" "1" - "usable_out_of_game" "1" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_tape_urban_light" } - "tool" + "33948221" { - "type" "season_pass" - "use_string" "#ConsumeItem" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_tape_urban_medium" } - "attributes" + "33948222" { - "season access" "2" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_tape_urban_heavy" } - } - "1024" - { - "name" "Community Season Three Spring 2014 Coin 1" - "prefab" "season3_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1_Desc" - "image_inventory" "econ/status_icons/operation_phoenix_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "attributes" + "33948348" { - "pedestal display model" "models/inventory_items/phoenix_bronze_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_dapple_light" } - } - "1025" - { - "name" "Community Season Three Spring 2014 Coin 2" - "prefab" "season3_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2_Desc" - "image_inventory" "econ/status_icons/operation_phoenix_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "attributes" + "33948349" { - "pedestal display model" "models/inventory_items/phoenix_silver_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_dapple_medium" } - } - "1026" - { - "name" "Community Season Three Spring 2014 Coin 3" - "prefab" "season3_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3_Desc" - "image_inventory" "econ/status_icons/operation_phoenix_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "attributes" + "33948350" { - "pedestal display model" "models/inventory_items/phoenix_gold_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_dapple_heavy" } - } - "1027" - { - "name" "Community Season Four Summer 2014" - "first_sale_date" "2014/07/01" - "prefab" "csgo_tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonFourSummer2014" - "item_description" "#CSGO_Ticket_CommunitySeasonFourSummer2014_Desc" - "image_inventory" "econ/status_icons/operation_breakout_pass" - "capabilities" + "33950588" { - "usable_gc" "1" - "usable_out_of_game" "1" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_nightstripe_light" } - "tool" + "33950589" { - "type" "season_pass" - "use_string" "#ConsumeItem" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_nightstripe_medium" } - "attributes" + "33950590" { - "season access" "3" + "icon_path" "econ/default_generated/weapon_knife_canis_sp_nightstripe_heavy" } - } - "1028" - { - "name" "Community Season Four Summer 2014 Coin 1" - "prefab" "season4_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1_Desc" - "image_inventory" "econ/status_icons/operation_breakout_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "attributes" + "34013204" { - "pedestal display model" "models/inventory_items/breakout_bronze_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_ddpat_light" } - } - "1029" - { - "name" "Community Season Four Summer 2014 Coin 2" - "prefab" "season4_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2_Desc" - "image_inventory" "econ/status_icons/operation_breakout_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "attributes" + "34013205" { - "pedestal display model" "models/inventory_items/breakout_silver_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_ddpat_medium" } - } - "1030" - { - "name" "Community Season Four Summer 2014 Coin 3" - "prefab" "season4_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3_Desc" - "image_inventory" "econ/status_icons/operation_breakout_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "attributes" + "34013206" { - "pedestal display model" "models/inventory_items/breakout_gold_01.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_ddpat_heavy" } - } - "1031" - { - "name" "Map Token Castle" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenCastle" - "item_description" "#CSGO_Collectible_MapTokenCastle_Desc" - "image_inventory" "econ/status_icons/maptoken_castle" - "map_name" "#SFUI_Map_de_castle" - "attributes" + "34013232" { - "pedestal display model" "models/inventory_items/maptoken_castle.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_webs_light" } - } - "1032" - { - "name" "Map Token Black Gold" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenBlackgold" - "item_description" "#CSGO_Collectible_MapTokenBlackgold_Desc" - "image_inventory" "econ/status_icons/maptoken_blackgold" - "map_name" "#SFUI_Map_de_blackgold" - "attributes" + "34013233" { - "pedestal display model" "models/inventory_items/maptoken_blackgold.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_webs_medium" } - } - "1033" - { - "name" "Map Token Rush" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenRush" - "item_description" "#CSGO_Collectible_MapTokenRush_Desc" - "image_inventory" "econ/status_icons/maptoken_rush" - "map_name" "#SFUI_Map_cs_rush" - "attributes" + "34013234" { - "pedestal display model" "models/inventory_items/maptoken_rush.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_webs_heavy" } - } - "1034" - { - "name" "Map Token Mist" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenMist" - "item_description" "#CSGO_Collectible_MapTokenMist_Desc" - "image_inventory" "econ/status_icons/maptoken_mist" - "map_name" "#SFUI_Map_de_mist" - "attributes" + "34013336" { - "pedestal display model" "models/inventory_items/maptoken_mist.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aa_fade_light" } - } - "1035" - { - "name" "Map Token Insertion" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenInsertion" - "item_description" "#CSGO_Collectible_MapTokenInsertion_Desc" - "image_inventory" "econ/status_icons/maptoken_insertion" - "map_name" "#SFUI_Map_cs_insertion" - "attributes" + "34013337" { - "pedestal display model" "models/inventory_items/maptoken_insertion.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aa_fade_medium" } - } - "1036" - { - "name" "Map Token Overgrown" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenOvergrown" - "item_description" "#CSGO_Collectible_MapTokenOvergrown_Desc" - "image_inventory" "econ/status_icons/maptoken_overgrown" - "map_name" "#SFUI_Map_de_overgrown" - "attributes" + "34013338" { - "pedestal display model" "models/inventory_items/maptoken_overgrown.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aa_fade_heavy" } - } - "1037" - { - "name" "Map Token Marquis" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenMarquis" - "item_description" "#CSGO_Collectible_MapTokenMarquis_Desc" - "image_inventory" "econ/status_icons/maptoken_marquis" - "map_name" "#SFUI_Map_de_marquis" - "attributes" + "34013352" { - "pedestal display model" "models/inventory_items/maptoken_marquis.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_blued_light" } - } - "1038" - { - "name" "Map Token Workout" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenWorkout" - "item_description" "#CSGO_Collectible_MapTokenWorkout_Desc" - "image_inventory" "econ/status_icons/maptoken_workout" - "map_name" "#SFUI_Map_cs_workout" - "attributes" + "34013353" { - "pedestal display model" "models/inventory_items/maptoken_workout.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_blued_medium" } - } - "1039" - { - "name" "Map Token Backalley" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenBackalley" - "item_description" "#CSGO_Collectible_MapTokenBackalley_Desc" - "image_inventory" "econ/status_icons/maptoken_backalley" - "map_name" "#SFUI_Map_cs_backalley" - "attributes" + "34013354" { - "pedestal display model" "models/inventory_items/maptoken_backalley.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_blued_heavy" } - } - "1040" - { - "name" "Map Token Season" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenSeason" - "item_description" "#CSGO_Collectible_MapTokenSeason_Desc" - "image_inventory" "econ/status_icons/maptoken_season" - "map_name" "#SFUI_Map_de_season" - "attributes" + "34013356" { - "pedestal display model" "models/inventory_items/maptoken_season.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_forced_light" } - } - "1041" - { - "name" "Map Token Bazaar" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenBazaar" - "item_description" "#CSGO_Collectible_MapTokenBazaar_Desc" - "image_inventory" "econ/status_icons/maptoken_bazaar" - "map_name" "#SFUI_Map_de_bazaar" - "attributes" + "34013357" { - "pedestal display model" "models/inventory_items/maptoken_bazaar.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_forced_medium" } - } - "1042" - { - "name" "Map Token Facade" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenFacade" - "item_description" "#CSGO_Collectible_MapTokenFacade_Desc" - "image_inventory" "econ/status_icons/maptoken_facade" - "map_name" "#SFUI_Map_de_facade" - "attributes" + "34013358" { - "pedestal display model" "models/inventory_items/maptoken_facade.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_forced_heavy" } - } - "1043" - { - "name" "Map Token Log" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenLog" - "item_description" "#CSGO_Collectible_MapTokenLog_Desc" - "image_inventory" "econ/status_icons/maptoken_log" - "map_name" "#SFUI_Map_de_log" - "attributes" + "34013360" { - "pedestal display model" "models/inventory_items/maptoken_log.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_oiled_light" } - } - "1044" - { - "name" "Map Token Rails" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenRails" - "item_description" "#CSGO_Collectible_MapTokenRails_Desc" - "image_inventory" "econ/status_icons/maptoken_rails" - "map_name" "#SFUI_Map_de_rails" - "attributes" + "34013361" { - "pedestal display model" "models/inventory_items/maptoken_rails.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_oiled_medium" } - } - "1045" - { - "name" "Map Token Resort" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenResort" - "item_description" "#CSGO_Collectible_MapTokenResort_Desc" - "image_inventory" "econ/status_icons/maptoken_resort" - "map_name" "#SFUI_Map_de_resort" - "attributes" + "34013362" { - "pedestal display model" "models/inventory_items/maptoken_resort.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_oiled_heavy" } - } - "1046" - { - "name" "Map Token Zoo" - "prefab" "map_token" - "item_name" "#CSGO_Collectible_MapTokenZoo" - "item_description" "#CSGO_Collectible_MapTokenZoo_Desc" - "image_inventory" "econ/status_icons/maptoken_zoo" - "map_name" "#SFUI_Map_de_zoo" - "attributes" + "34013420" { - "pedestal display model" "models/inventory_items/maptoken_zoo.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_zebra_light" } - } - "1200" - { - "name" "Name Tag" - "first_sale_date" "2013/08/28" - "prefab" "valve csgo_tool" - "item_name" "#CSGO_Tool_Name_Tag" - "item_type_name" "#CSGO_Tool_Name_TagTag" - "item_description" "#CSGO_Tool_Name_Tag_Desc" - "image_inventory" "econ/tools/tag" - "tool" + "34013421" { - "type" "name" - "usage_capabilities" - { - "nameable" "1" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_am_zebra_medium" } - } - "1203" - { - "name" "Weapon Case Key" - "first_sale_date" "2013/09/20" - "prefab" "valve weapon_case_key" - "image_inventory" "econ/tools/weapon_case_key" - "tool" + "34013422" { - "restriction" "generic_valve_key" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_zebra_heavy" } - } - "1204" - { - "name" "E-Sports Weapon Case Key 1" - "item_name" "#CSGO_esports_crate_key_1" - "item_description" "#CSGO_esports_crate_key_1_desc" - "first_sale_date" "2014/07/09" - "prefab" "valve weapon_case_key" - "image_inventory" "econ/tools/weapon_case_key_special_1" - "tool" + "34013472" { - "restriction" "esports_crate_key" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_mesh_tan_light" } - } - "1209" - { - "name" "sticker" - "first_sale_date" "2014/01/29" - "prefab" "csgo_tool" - "item_name" "#CSGO_Tool_Sticker" - "item_type_name" "#CSGO_Tool_Sticker" - "item_description" "#CSGO_Tool_Sticker_Desc" - "tool" + "34013473" { - "type" "sticker" - "usage_capabilities" - { - "can_sticker" "1" - "usable_out_of_game" "1" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_mesh_tan_medium" } - } - "1210" - { - "name" "Gift - 1 Player" - "first_sale_date" "2013/12/17" - "prefab" "valve csgo_tool" - "item_name" "#CSGO_Tool_Gift1Player" - "item_type_name" "#CSGO_Tool_GiftTag" - "item_description" "#CSGO_Tool_Gift1Player_Desc" - "image_inventory" "econ/weapon_cases/gift1player" - "capabilities" + "34013474" { - "usable_gc" "1" - "usable_out_of_game" "0" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_mesh_tan_heavy" } - "tool" + "34013492" { - "type" "gift" - "usage" - { - "num_items" "1" - "max_recipients" "1" - "target_rule" "only_other_players" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_forest_boreal_light" } - "attributes" + "34013493" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_forest_boreal_medium" } - } - "1211" - { - "name" "Gift - 9 Players" - "first_sale_date" "2013/12/16" - "prefab" "valve csgo_tool" - "item_name" "#CSGO_Tool_Gift9Players" - "item_type_name" "#CSGO_Tool_GiftTag" - "item_description" "#CSGO_Tool_Gift9Players_Desc" - "image_inventory" "econ/weapon_cases/gift9players" - "capabilities" + "34013494" { - "usable_gc" "1" - "usable_out_of_game" "0" + "icon_path" "econ/default_generated/weapon_knife_ursus_hy_forest_boreal_heavy" } - "tool" + "34013576" { - "type" "gift" - "usage" - { - "num_items" "1" - "max_recipients" "9" - "target_rule" "only_other_players" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_so_purple_light" } - "attributes" + "34013577" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_so_purple_medium" } - } - "1212" - { - "name" "Sticker Crate Key" - "item_name" "#CSGO_sticker_crate_key_1" - "item_description" "#CSGO_sticker_crate_key_1_desc" - "first_sale_date" "2014/01/29" - "prefab" "valve weapon_case_key" - "image_inventory" "econ/tools/sticker_crate_key" - "tool" + "34013578" { - "restriction" "sticker_crate_key" + "icon_path" "econ/default_generated/weapon_knife_ursus_so_purple_heavy" } - } - "1214" - { - "name" "Community Case Key 1" - "item_name" "#CSGO_community_crate_key_1" - "item_description" "#CSGO_community_crate_key_1_desc" - "first_sale_date" "2013/12/18" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_1" - "tool" + "34013756" { - "restriction" "community_case_1" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_tape_urban_light" } - } - "1215" - { - "name" "Gift - 25 Spectators" - "first_sale_date" "2013/12/16" - "prefab" "valve csgo_tool" - "item_name" "#CSGO_Tool_Gift25Spectators" - "item_type_name" "#CSGO_Tool_GiftTag" - "item_description" "#CSGO_Tool_Gift25Spectators_Desc" - "image_inventory" "econ/weapon_cases/gift25spectators" - "capabilities" + "34013757" { - "usable_gc" "1" - "usable_out_of_game" "0" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_tape_urban_medium" } - "tool" + "34013758" { - "type" "gift" - "usage" - { - "num_items" "1" - "max_recipients" "25" - "target_rule" "only_other_spectators" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_tape_urban_heavy" } - "attributes" + "34013884" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_dapple_light" } - } - "1303" - { - "name" "Community Case Key 2" - "item_name" "#CSGO_community_crate_key_2" - "item_description" "#CSGO_community_crate_key_2_desc" - "first_sale_date" "2014/2/19" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_2" - "tool" + "34013885" { - "restriction" "community_case_2" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_dapple_medium" } - } - "1304" - { - "name" "Community Sticker Capsule 1 Key May 2014" - "item_name" "#CSGO_sticker_crate_key_community01" - "item_description" "#CSGO_sticker_crate_key_community01_desc" - "first_sale_date" "2014/04/30" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/sticker_crate_key_community01" - "tool" + "34013886" { - "restriction" "sticker_pack_community01_key" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_dapple_heavy" } - } - "1305" - { - "name" "Community Case Key 3 May 2014" - "item_name" "#CSGO_community_crate_key_3" - "item_description" "#CSGO_community_crate_key_3_desc" - "first_sale_date" "2014/4/30" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_3" - "tool" + "34014820" { - "restriction" "community_case_3" + "icon_path" "econ/default_generated/weapon_knife_ursus_an_tiger_orange_light" } - } - "1306" - { - "name" "quest" - "item_name" "#quest" - "item_description" "#quest_desc" - "prefab" "quest_prefab" - "attributes" + "34014821" { - "cannot trade" "1" + "icon_path" "econ/default_generated/weapon_knife_ursus_an_tiger_orange_medium" } - } - "1307" - { - "name" "Community Case Key 3 June 2014" - "item_name" "#CSGO_community_crate_key_3" - "item_description" "#CSGO_community_crate_key_3_desc" - "first_sale_date" "2014/06/11" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_3" - "tool" + "34014822" { - "restriction" "community_case_3" + "icon_path" "econ/default_generated/weapon_knife_ursus_an_tiger_orange_heavy" } - } - "1308" - { - "name" "Community Sticker Capsule 1 Key June 2014" - "item_name" "#CSGO_sticker_crate_key_community01" - "item_description" "#CSGO_sticker_crate_key_community01_desc" - "first_sale_date" "2014/06/11" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/sticker_crate_key_community01" - "tool" + "34014836" { - "restriction" "sticker_pack_community01_key" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_marble_fade_light" } - } - "1309" - { - "name" "Community Case Key 4 July 2014" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "first_sale_date" "2014/06/23" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_4" - "tool" + "34014837" { - "restriction" "community_case_4" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_marble_fade_medium" } - } - "1310" - { - "name" "Community Case Key 4 August 2014" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "first_sale_date" "2014/06/23" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_4" - "tool" + "34014838" { - "restriction" "community_case_4" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_marble_fade_heavy" } - } - "1311" - { - "name" "Community Case Key September 4" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "first_sale_date" "2014/07/01" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_4" - "tool" + "34014840" { - "restriction" "community_case_4" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_steel_knife_light" } - } - "1313" - { - "name" "Community Case Key 4" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "first_sale_date" "2014/06/23" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_4" - "tool" + "34014841" { - "restriction" "community_case_4" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_steel_knife_medium" } - } - "1314" - { - "name" "musickit" - "prefab" "musickit_prefab" - } - "1315" - { - "name" "Community Season Five Summer 2014" - "first_sale_date" "2014/10/29" - "prefab" "csgo_tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonFiveSummer2014" - "item_description" "#CSGO_Ticket_CommunitySeasonFiveSummer2014_Desc" - "image_inventory" "econ/status_icons/operation_vanguard_pass" - "capabilities" + "34014842" { - "usable_gc" "1" - "usable_out_of_game" "1" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_steel_knife_heavy" } - "tool" + "34014844" { - "type" "season_pass" - "use_string" "#ConsumeItem" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_ruby_marbleized_light" } - "attributes" + "34014845" { - "season access" "4" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_ruby_marbleized_medium" } - } - "1316" - { - "name" "Community Season Five Summer 2014 Coin 1" - "prefab" "season5_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1_Desc" - "image_inventory" "econ/status_icons/operation_vanguard_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "attributes" + "34014846" { - "pedestal display model" "models/inventory_items/vanguard_bronze.mdl" - "upgrade threshold" "3" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_ruby_marbleized_heavy" } - } - "1317" - { - "name" "Community Season Five Summer 2014 Coin 2" - "prefab" "season5_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2_Desc" - "image_inventory" "econ/status_icons/operation_vanguard_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "attributes" + "34014848" { - "pedestal display model" "models/inventory_items/vanguard_silver.mdl" - "upgrade threshold" "4" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_sapphire_marbleized_light" } - } - "1318" - { - "name" "Community Season Five Summer 2014 Coin 3" - "prefab" "season5_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3_Desc" - "image_inventory" "econ/status_icons/operation_vanguard_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "attributes" + "34014849" { - "pedestal display model" "models/inventory_items/vanguard_gold.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_sapphire_marbleized_medium" } - } - "1320" - { - "name" "campaign magrheb" - "item_name" "#csgo_campaign_maghreb" - "item_description" "#csgo_campaign_maghreb_desc" - "prefab" "valve campaign_prefab" - "attributes" + "34014850" { - "campaign id" "3" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_sapphire_marbleized_heavy" } - } - "1321" - { - "name" "campaign eurasia" - "item_name" "#csgo_campaign_eurasia" - "item_description" "#csgo_campaign_eurasia_desc" - "prefab" "valve campaign_prefab" - "attributes" + "34014852" { - "campaign id" "1" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_blackpearl_marbleized_light" } - } - "1322" - { - "name" "Community Case Key 5" - "item_name" "#CSGO_community_crate_key_5" - "item_description" "#CSGO_community_crate_key_5_desc" - "first_sale_date" "2014/11/5" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_5" - "tool" + "34014853" { - "restriction" "community_case_5" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_blackpearl_marbleized_medium" } - } - "1323" - { - "name" "Community Case Key 6" - "item_name" "#CSGO_community_crate_key_6" - "item_description" "#CSGO_community_crate_key_6_desc" - "first_sale_date" "2015/1/8" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_6" - "tool" + "34014854" { - "restriction" "community_case_6" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_blackpearl_marbleized_heavy" } - } - "1324" - { - "name" "stattrak_swap_tool" - "first_sale_date" "2015/3/30" - "prefab" "csgo_tool" - "item_name" "#CSGO_tool_stattrak_swap" - "item_description" "#CSGO_tool_stattrak_swap_desc" - "image_inventory" "econ/tools/stattrak_swap_tool" - "tool" + "34014856" { - "type" "stattrak_swap" - "usage_capabilities" - { - "can_stattrack_swap" "1" - } + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase1_light" } - } - "1325" - { - "name" "Community Case Key 7" - "item_name" "#CSGO_community_crate_key_7" - "item_description" "#CSGO_community_crate_key_7_desc" - "first_sale_date" "2015/4/15" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_7" - "tool" + "34014857" { - "restriction" "community_case_7" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase1_medium" } - } - "1326" - { - "name" "Community Season Six 2015" - "first_sale_date" "2015/05/01" - "prefab" "csgo_tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonSix2015" - "item_description" "#CSGO_Ticket_CommunitySeasonSix2015_Desc" - "image_inventory" "econ/status_icons/operation_6_pass" - "capabilities" + "34014858" { - "usable_gc" "1" - "usable_out_of_game" "1" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase1_heavy" } - "tool" + "34014860" { - "type" "season_pass" - "use_string" "#ConsumeItem" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase2_light" } - "attributes" + "34014861" { - "season access" "5" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase2_medium" } - } - "1327" - { - "name" "Community Season Six 2015 Coin 1" - "prefab" "season6_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin1_Desc" - "image_inventory" "econ/status_icons/operation_6_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "attributes" + "34014862" { - "pedestal display model" "models/inventory_items/bloodhound_bronze.mdl" - "upgrade threshold" "9" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase2_heavy" } - } - "1328" - { - "name" "Community Season Six 2015 Coin 2" - "prefab" "season6_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin2_Desc" - "image_inventory" "econ/status_icons/operation_6_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "attributes" + "34014864" { - "pedestal display model" "models/inventory_items/bloodhound_silver.mdl" - "upgrade threshold" "14" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase3_light" } - } - "1329" - { - "name" "Community Season Six 2015 Coin 3" - "prefab" "season6_coin" - "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin3_Desc" - "image_inventory" "econ/status_icons/operation_6_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "attributes" + "34014865" { - "pedestal display model" "models/inventory_items/bloodhound_gold.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase3_medium" } - } - "1330" - { - "name" "Falchion Case Key" - "item_name" "#CSGO_community_crate_key_8" - "item_description" "#CSGO_community_crate_key_8_desc" - "first_sale_date" "2015/5/19" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_8" - "tool" + "34014866" { - "restriction" "community_case_8" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase3_heavy" } - } - "1331" - { - "name" "prestige coin 2015" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2015" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2015" - "image_inventory" "econ/status_icons/service_medal_2015" - "attributes" + "34014868" { - "prestige year" "2015" - "pedestal display model" "models/inventory_items/service_medal_2015.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase4_light" } - } - "1332" - { - "name" "prestige coin 2015 level 2" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2015" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2015" - "image_inventory" "econ/status_icons/service_medal_2015_2" - "attributes" + "34014869" { - "prestige year" "2015" - "pedestal display model" "models/inventory_items/service_medal_2015_2.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase4_medium" } - } - "1333" - { - "name" "Community Case Key 9" - "item_name" "#CSGO_community_crate_key_9" - "item_description" "#CSGO_community_crate_key_9_desc" - "first_sale_date" "2015/9/15" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_9" - "tool" + "34014870" { - "restriction" "community_case_9" + "icon_path" "econ/default_generated/weapon_knife_ursus_am_doppler_phase4_heavy" } - } - "1334" - { - "name" "crate_community_10 Key" - "item_name" "#CSGO_crate_community_10_key" - "item_description" "#CSGO_crate_community_10_key_desc" - "first_sale_date" "2015-11-30" - "prefab" "weapon_case_key" - "image_inventory" "econ/tools/crate_key_community_10" - "tool" + "34016124" { - "restriction" "crate_community_10" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_nightstripe_light" } - } - "1339" - { - "name" "prestige coin 2016" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "image_inventory" "econ/status_icons/service_medal_2016_lvl1" - "attributes" + "34016125" { - "prestige year" "2016" - "pedestal display model" "models/inventory_items/service_medal_2016_lvl1.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_nightstripe_medium" } - } - "1340" - { - "name" "prestige coin 2016 level 2" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "image_inventory" "econ/status_icons/service_medal_2016_lvl2" - "attributes" + "34016126" { - "prestige year" "2016" - "pedestal display model" "models/inventory_items/service_medal_2016_lvl2.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_sp_nightstripe_heavy" } - } - "1341" - { - "name" "prestige coin 2016 level 3" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "image_inventory" "econ/status_icons/service_medal_2016_lvl3" - "attributes" + "34016612" { - "prestige year" "2016" - "pedestal display model" "models/inventory_items/service_medal_2016_lvl3.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_damascus_prisma_light" } - } - "1342" - { - "name" "prestige coin 2016 level 4" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "image_inventory" "econ/status_icons/service_medal_2016_lvl4" - "attributes" + "34016613" { - "prestige year" "2016" - "pedestal display model" "models/inventory_items/service_medal_2016_lvl4.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_damascus_prisma_medium" } - } - "1343" - { - "name" "prestige coin 2016 level 5" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "image_inventory" "econ/status_icons/service_medal_2016_lvl5" - "attributes" + "34016614" { - "prestige year" "2016" - "pedestal display model" "models/inventory_items/service_medal_2016_lvl5.mdl" + "icon_path" "econ/default_generated/weapon_knife_ursus_aq_damascus_prisma_heavy" } - } - "1344" - { - "name" "prestige coin 2016 level 6" - "prefab" "prestige_coin" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "image_inventory" "econ/status_icons/service_medal_2016_lvl6" - "attributes" + "34078740" { - "prestige year" "2016" - "pedestal display model" "models/inventory_items/service_medal_2016_lvl6.mdl" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_ddpat_light" } - } - "4001" - { - "item_name" "#CSGO_crate_valve_1" - "name" "crate_valve_1" - "image_inventory" "econ/weapon_cases/crate_valve_1" - "prefab" "weapon_case" - "associated_items" + "34078741" { - "1203" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_ddpat_medium" } - "tool" + "34078742" { - "restriction" "generic_valve_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_ddpat_heavy" } - "attributes" + "34078768" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_webs_light" } - "tags" + "34078769" { - "ItemSet" - { - "tag_value" "set_weapons_i" - "tag_text" "#CSGO_set_weapons_i" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_webs_medium" } - } - "4002" - { - "item_name" "#CSGO_crate_esports_2013" - "item_description" "#CSGO_crate_esports_2013_desc" - "name" "crate_esports_2013" - "image_inventory" "econ/weapon_cases/crate_esports_2013" - "prefab" "weapon_case" - "associated_items" + "34078770" { - "1204" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_webs_heavy" } - "tool" + "34078872" { - "restriction" "esports_crate_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aa_fade_light" } - "attributes" + "34078873" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "2" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aa_fade_medium" } - "tags" + "34078874" { - "ItemSet" - { - "tag_value" "set_esports" - "tag_text" "#CSGO_set_esports" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aa_fade_heavy" } - } - "4004" - { - "item_name" "#CSGO_crate_valve_2" - "name" "crate_valve_2" - "image_inventory" "econ/weapon_cases/crate_valve_2" - "prefab" "weapon_case" - "associated_items" + "34078888" { - "1203" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_blued_light" } - "tool" + "34078889" { - "restriction" "generic_valve_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_blued_medium" } - "attributes" + "34078890" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_blued_heavy" } - "tags" + "34078892" { - "ItemSet" - { - "tag_value" "set_weapons_ii" - "tag_text" "#CSGO_set_weapons_ii" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_forced_light" } - } - "4003" - { - "item_name" "#CSGO_crate_operation_ii" - "name" "crate_operation_ii" - "image_inventory" "econ/weapon_cases/crate_operation_ii" - "prefab" "weapon_case" - "associated_items" + "34078893" { - "1203" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_forced_medium" } - "tool" + "34078894" { - "restriction" "generic_valve_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_forced_heavy" } - "attributes" + "34078896" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_oiled_light" } - "tags" + "34078897" { - "ItemSet" - { - "tag_value" "set_bravo_i" - "tag_text" "#CSGO_set_bravo_i" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_oiled_medium" } - } - "4005" - { - "item_name" "#CSGO_crate_esports_2013_winter" - "item_description" "#CSGO_crate_esports_2013_winter_desc" - "name" "crate_esports_2013_winter" - "image_inventory" "econ/weapon_cases/crate_esports_2013_14" - "prefab" "weapon_case" - "associated_items" + "34078898" { - "1204" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_oiled_heavy" } - "tool" + "34078956" { - "restriction" "esports_crate_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_zebra_light" } - "attributes" + "34078957" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_zebra_medium" } - "tags" + "34078958" { - "ItemSet" - { - "tag_value" "set_esports_ii" - "tag_text" "#CSGO_set_esports_ii" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_zebra_heavy" } - } - "4006" - { - "item_name" "#CSGO_crate_dhw13_promo" - "name" "crate_dhw13_promo" - "image_inventory" "econ/weapon_cases/crate_dhw13_promo" - "prefab" "weapon_case_base" - "attributes" + "34079008" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "6" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_mesh_tan_light" } - } - "4007" - { - "item_name" "#CSGO_crate_sticker_pack01" - "name" "crate_sticker_pack01" - "image_inventory" "econ/weapon_cases/crate_sticker_pack01" - "prefab" "weapon_case" - "associated_items" + "34079009" { - "1212" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_mesh_tan_medium" } - "tool" + "34079010" { - "restriction" "sticker_crate_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_mesh_tan_heavy" } - "attributes" + "34079028" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "9" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_forest_boreal_light" } - "tags" + "34079029" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack01" - "tag_text" "#CSGO_crate_sticker_pack01" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_forest_boreal_medium" } - } - "4009" - { - "item_name" "#CSGO_crate_community_1" - "name" "crate_community_1" - "image_inventory" "econ/weapon_cases/crate_community_1" - "prefab" "weapon_case" - "associated_items" + "34079030" { - "1214" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_hy_forest_boreal_heavy" } - "tool" + "34079112" { - "restriction" "community_case_1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_so_purple_light" } - "attributes" + "34079113" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_so_purple_medium" } - "tags" + "34079114" { - "ItemSet" - { - "tag_value" "set_community_1" - "tag_text" "#CSGO_set_community_1" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_so_purple_heavy" } - } - "4010" - { - "item_name" "#CSGO_crate_valve_3" - "name" "crate_valve_3" - "image_inventory" "econ/weapon_cases/crate_valve_3" - "prefab" "weapon_case" - "associated_items" + "34079292" { - "1203" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_tape_urban_light" } - "tool" + "34079293" { - "restriction" "generic_valve_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_tape_urban_medium" } - "attributes" + "34079294" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "10" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_tape_urban_heavy" } - "tags" + "34079420" { - "ItemSet" - { - "tag_value" "set_weapons_iii" - "tag_text" "#CSGO_set_weapons_iii" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_dapple_light" } - } - "4011" - { - "item_name" "#CSGO_crate_community_2" - "name" "crate_community_2" - "image_inventory" "econ/weapon_cases/crate_community_2" - "prefab" "weapon_case" - "associated_items" + "34079421" { - "1303" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_dapple_medium" } - "tool" + "34079422" { - "restriction" "community_case_2" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_dapple_heavy" } - "attributes" + "34080356" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "11" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_an_tiger_orange_light" } - "tags" + "34080357" { - "ItemSet" - { - "tag_value" "set_community_2" - "tag_text" "#CSGO_set_community_2" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_an_tiger_orange_medium" } - } - "4012" - { - "item_name" "#CSGO_crate_sticker_pack02" - "name" "crate_sticker_pack02" - "image_inventory" "econ/weapon_cases/crate_sticker_pack02" - "prefab" "weapon_case" - "associated_items" + "34080358" { - "1212" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_an_tiger_orange_heavy" } - "tool" + "34080372" { - "restriction" "sticker_crate_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_marble_fade_light" } - "attributes" + "34080373" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "12" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_marble_fade_medium" } - "tags" + "34080374" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack02" - "tag_text" "#CSGO_crate_sticker_pack02" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_marble_fade_heavy" } - } - "4013" - { - "item_name" "#CSGO_crate_ems14_promo" - "name" "crate_ems14_promo" - "image_inventory" "econ/weapon_cases/crate_ems14_promo" - "prefab" "weapon_case_base" - "attributes" + "34080376" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "13" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_steel_knife_light" } - } - "4014" - { - "item_name" "#CSGO_crate_sticker_pack_kat2014_01" - "name" "crate_sticker_pack_kat2014_01" - "item_description" "#CSGO_crate_sticker_pack_kat2014_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_kat2014_01" - "first_sale_date" "2014/03/02" - "prefab" "weapon_case_base" - "attributes" + "34080377" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "14" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_steel_knife_medium" } - "tags" + "34080378" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_kat2014_01" - "tag_text" "#CSGO_crate_sticker_pack_kat2014_01" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_steel_knife_heavy" } - } - "4015" - { - "item_name" "#CSGO_crate_sticker_pack_kat2014_02" - "item_description" "#CSGO_crate_sticker_pack_kat2014_desc" - "name" "crate_sticker_pack_kat2014_02" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_kat2014_02" - "first_sale_date" "2014/03/02" - "prefab" "weapon_case_base" - "attributes" + "34080380" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "15" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "3" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_ruby_marbleized_light" } - "tags" + "34080381" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_kat2014_02" - "tag_text" "#CSGO_crate_sticker_pack_kat2014_02" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_ruby_marbleized_medium" } - } - "4016" - { - "item_name" "#CSGO_crate_sticker_pack_community01" - "item_description" "CSGO_crate_sticker_pack_community01_desc" - "name" "crate_sticker_pack_community01" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_community01" - "prefab" "weapon_case" - "associated_items" + "34080382" { - "1308" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_ruby_marbleized_heavy" } - "tool" + "34080384" { - "restriction" "sticker_pack_community01_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_sapphire_marbleized_light" } - "attributes" + "34080385" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "16" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_sapphire_marbleized_medium" } - "tags" + "34080386" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_community01" - "tag_text" "#CSGO_crate_sticker_pack_community01" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_sapphire_marbleized_heavy" } - } - "4017" - { - "item_name" "#CSGO_crate_community_3" - "name" "crate_community_3" - "image_inventory" "econ/weapon_cases/crate_community_3" - "prefab" "weapon_case" - "associated_items" + "34080388" { - "1307" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_blackpearl_marbleized_light" } - "tool" + "34080389" { - "restriction" "community_case_3" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_blackpearl_marbleized_medium" } - "attributes" + "34080390" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "17" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_blackpearl_marbleized_heavy" } - "tags" + "34080392" { - "ItemSet" - { - "tag_value" "set_community_3" - "tag_text" "#CSGO_set_community_3" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase1_light" } - "loot_list_rare_item_footer" "#crate_community_3_unusual_lootlist" - "loot_list_rare_item_name" "#crate_community_3_unusual_itemname" - "image_unusual_item" "econ/weapon_cases/crate_community_3_rare_item" - } - "4018" - { - "item_name" "#CSGO_crate_community_4" - "name" "crate_community_4" - "image_inventory" "econ/weapon_cases/crate_community_4" - "prefab" "weapon_case" - "associated_items" + "34080393" { - "1313" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase1_medium" } - "tool" + "34080394" { - "restriction" "community_case_4" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase1_heavy" } - "attributes" + "34080396" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "18" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase2_light" } - "tags" + "34080397" { - "ItemSet" - { - "tag_value" "set_community_4" - "tag_text" "#CSGO_set_community_4" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase2_medium" } - "loot_list_rare_item_footer" "#crate_community_4_unusual_lootlist" - "loot_list_rare_item_name" "#crate_community_4_unusual_itemname" - "image_unusual_item" "econ/weapon_cases/crate_community_4_rare_item" - } - "4019" - { - "item_name" "#CSGO_crate_esports_2014_summer" - "item_description" "#CSGO_crate_esports_2014_summer_desc" - "name" "crate_esports_2014_summer" - "image_inventory" "econ/weapon_cases/crate_esports_2014_summer" - "prefab" "weapon_case" - "associated_items" + "34080398" { - "1204" "1" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase2_heavy" } - "tool" + "34080400" { - "restriction" "esports_crate_key" + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase3_light" } - "attributes" + "34080401" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "19" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase3_medium" } - "tags" + "34080402" { - "ItemSet" - { - "tag_value" "set_esports_iii" - "tag_text" "#CSGO_set_esports_2014_summer" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase3_heavy" } - } - "4020" - { - "item_name" "#CSGO_crate_sticker_pack_cologne2014_01" - "name" "crate_sticker_pack_cologne2014_01" - "item_description" "#CSGO_crate_sticker_pack_cologne2014_desc01" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2014_01" - "first_sale_date" "2014/08/01" - "prefab" "weapon_case_base" - "attributes" + "34080404" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "20" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase4_light" } - "tags" + "34080405" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_cologne2014_01" - "tag_text" "#CSGO_crate_sticker_pack_cologne2014_01" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase4_medium" } - } - "4021" - { - "item_name" "#CSGO_crate_sticker_pack_cologne2014_02" - "name" "crate_sticker_pack_cologne2014_02" - "item_description" "#CSGO_crate_sticker_pack_cologne2014_desc02" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2014_02" - "first_sale_date" "2014/08/01" - "prefab" "weapon_case_base" - "attributes" + "34080406" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "21" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase4_heavy" } - "tags" + "34081660" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_cologne2014_02" - "tag_text" "#CSGO_crate_sticker_pack_cologne2014_02" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_nightstripe_light" } - } - "4022" - { - "item_name" "#CSGO_crate_esl14_promo_de_dust2" - "name" "crate_esl14_promo_de_dust2" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_dust2" - "prefab" "weapon_case_base" - "attributes" + "34081661" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "22" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_nightstripe_medium" } - "tags" + "34081662" { - "ItemSet" - { - "tag_value" "set_dust_2" - "tag_text" "#CSGO_set_dust_2" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_sp_nightstripe_heavy" } - } - "4023" - { - "item_name" "#CSGO_crate_esl14_promo_de_inferno" - "name" "crate_esl14_promo_de_inferno" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_inferno" - "prefab" "weapon_case_base" - "attributes" + "34082148" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "23" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_damascus_prisma_light" } - "tags" + "34082149" { - "ItemSet" - { - "tag_value" "set_inferno" - "tag_text" "#CSGO_set_inferno" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_damascus_prisma_medium" } - } - "4024" - { - "item_name" "#CSGO_crate_esl14_promo_de_mirage" - "name" "crate_esl14_promo_de_mirage" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_mirage" - "prefab" "weapon_case_base" - "attributes" + "34082150" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "24" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_gypsy_jackknife_aq_damascus_prisma_heavy" } - "tags" + "34144276" { - "ItemSet" - { - "tag_value" "set_mirage" - "tag_text" "#CSGO_set_mirage" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_ddpat_light" } - } - "4025" - { - "item_name" "#CSGO_crate_esl14_promo_de_nuke" - "name" "crate_esl14_promo_de_nuke" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_nuke" - "prefab" "weapon_case_base" - "attributes" + "34144277" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "25" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_ddpat_medium" } - "tags" + "34144278" { - "ItemSet" - { - "tag_value" "set_nuke" - "tag_text" "#CSGO_set_nuke" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_ddpat_heavy" } - } - "4026" - { - "item_name" "#CSGO_crate_esl14_promo_de_cache" - "name" "crate_esl14_promo_de_cache" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_cache" - "prefab" "weapon_case_base" - "attributes" + "34144304" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "26" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_webs_light" } - "tags" + "34144305" { - "ItemSet" - { - "tag_value" "set_cache" - "tag_text" "#CSGO_set_cache" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_webs_medium" } - } - "4027" - { - "item_name" "#CSGO_crate_esl14_promo_de_cbble" - "name" "crate_esl14_promo_de_cbble" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_cbble" - "prefab" "weapon_case_base" - "attributes" + "34144306" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "27" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_webs_heavy" } - "tags" + "34144408" { - "ItemSet" - { - "tag_value" "set_cobblestone" - "tag_text" "#CSGO_set_cobblestone" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aa_fade_light" } - } - "4028" - { - "item_name" "#CSGO_crate_esl14_promo_de_overpass" - "name" "crate_esl14_promo_de_overpass" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_overpass" - "prefab" "weapon_case_base" - "attributes" + "34144409" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "28" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "4" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aa_fade_medium" } - "tags" + "34144410" { - "ItemSet" - { - "tag_value" "set_overpass" - "tag_text" "#CSGO_set_overpass" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aa_fade_heavy" } - } - "4029" - { - "item_name" "#CSGO_crate_operation_vanguard" - "item_description" "#CSGO_crate_operation_vanguard_desc" - "name" "crate_operation_vanguard" - "image_inventory" "econ/weapon_cases/crate_community_5" - "prefab" "weapon_case" - "associated_items" + "34144424" { - "1322" "1" + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_blued_light" } - "tool" + "34144425" { - "restriction" "community_case_5" + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_blued_medium" } - "attributes" + "34144426" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "29" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_blued_heavy" } - "tags" + "34144428" { - "ItemSet" - { - "tag_value" "set_community_5" - "tag_text" "#CSGO_set_community_5" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_forced_light" } - } - "4030" - { - "item_name" "#CSGO_crate_sticker_pack_dhw2014_01" - "name" "crate_sticker_pack_dhw2014_01" - "item_description" "#CSGO_crate_sticker_pack_dhw2014_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_dhw2014_01" - "first_sale_date" "2014/11/20" - "prefab" "weapon_case_base" - "attributes" + "34144429" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "30" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_forced_medium" } - "tags" + "34144430" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_dhw2014_01_collection" - "tag_text" "#CSGO_crate_sticker_pack_dhw2014_01_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_forced_heavy" } - } - "4031" - { - "item_name" "#CSGO_crate_dhw14_promo_de_dust2" - "name" "crate_dhw14_promo_de_dust2" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_dust2" - "prefab" "weapon_case_base" - "attributes" + "34144432" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "31" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_oiled_light" } - "tags" + "34144433" { - "ItemSet" - { - "tag_value" "set_dust_2" - "tag_text" "#CSGO_set_dust_2" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_oiled_medium" } - } - "4032" - { - "item_name" "#CSGO_crate_dhw14_promo_de_inferno" - "name" "crate_dhw14_promo_de_inferno" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_inferno" - "prefab" "weapon_case_base" - "attributes" + "34144434" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "32" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_aq_oiled_heavy" } - "tags" + "34144492" { - "ItemSet" - { - "tag_value" "set_inferno" - "tag_text" "#CSGO_set_inferno" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_am_zebra_light" } - } - "4033" - { - "item_name" "#CSGO_crate_dhw14_promo_de_mirage" - "name" "crate_dhw14_promo_de_mirage" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_mirage" - "prefab" "weapon_case_base" - "attributes" + "34144493" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "33" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_am_zebra_medium" } - "tags" + "34144494" { - "ItemSet" - { - "tag_value" "set_mirage" - "tag_text" "#CSGO_set_mirage" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_am_zebra_heavy" } - } - "4034" - { - "item_name" "#CSGO_crate_dhw14_promo_de_nuke" - "name" "crate_dhw14_promo_de_nuke" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_nuke" - "prefab" "weapon_case_base" - "attributes" + "34144544" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "34" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_mesh_tan_light" } - "tags" + "34144545" { - "ItemSet" - { - "tag_value" "set_nuke" - "tag_text" "#CSGO_set_nuke" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_mesh_tan_medium" } - } - "4035" - { - "item_name" "#CSGO_crate_dhw14_promo_de_cache" - "name" "crate_dhw14_promo_de_cache" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_cache" - "prefab" "weapon_case_base" - "attributes" + "34144546" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "35" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_mesh_tan_heavy" } - "tags" + "34144564" { - "ItemSet" - { - "tag_value" "set_cache" - "tag_text" "#CSGO_set_cache" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_forest_boreal_light" } - } - "4036" - { - "item_name" "#CSGO_crate_dhw14_promo_de_cbble" - "name" "crate_dhw14_promo_de_cbble" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_cbble" - "prefab" "weapon_case_base" - "attributes" + "34144565" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "36" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_forest_boreal_medium" } - "tags" + "34144566" { - "ItemSet" - { - "tag_value" "set_cobblestone" - "tag_text" "#CSGO_set_cobblestone" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_hy_forest_boreal_heavy" } - } - "4037" - { - "item_name" "#CSGO_crate_dhw14_promo_de_overpass" - "name" "crate_dhw14_promo_de_overpass" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_overpass" - "prefab" "weapon_case_base" - "attributes" + "34144828" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "37" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "5" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_tape_urban_light" } - "tags" + "34144829" { - "ItemSet" - { - "tag_value" "set_overpass" - "tag_text" "#CSGO_set_overpass" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_tape_urban_medium" } - } - "4038" - { - "item_name" "#StickerKit_dhw2014_fnatic" - "name" "crate_sticker_pack_dhw2014_fnatic" - "item_description" "#StickerKit_desc_dhw2014_fnatic" - "image_inventory" "econ/stickers/dhw2014/fnatic" - "loot_list_name" "dhw2014_fnatic_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4039" - { - "item_name" "#StickerKit_dhw2014_cloud9" - "name" "crate_sticker_pack_dhw2014_cloud9" - "item_description" "#StickerKit_desc_dhw2014_cloud9" - "image_inventory" "econ/stickers/dhw2014/cloud9" - "loot_list_name" "dhw2014_cloud9_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4041" - { - "item_name" "#StickerKit_dhw2014_ninjasinpyjamas" - "name" "crate_sticker_pack_dhw2014_ninjasinpyjamas" - "item_description" "#StickerKit_desc_dhw2014_ninjasinpyjamas" - "image_inventory" "econ/stickers/dhw2014/ninjasinpyjamas" - "loot_list_name" "dhw2014_ninjasinpyjamas_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4042" - { - "item_name" "#StickerKit_dhw2014_virtuspro" - "name" "crate_sticker_pack_dhw2014_virtuspro" - "item_description" "#StickerKit_desc_dhw2014_virtuspro" - "image_inventory" "econ/stickers/dhw2014/virtuspro" - "loot_list_name" "dhw2014_virtuspro_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4043" - { - "item_name" "#StickerKit_dhw2014_navi" - "name" "crate_sticker_pack_dhw2014_navi" - "item_description" "#StickerKit_desc_dhw2014_navi" - "image_inventory" "econ/stickers/dhw2014/navi" - "loot_list_name" "dhw2014_navi_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4045" - { - "item_name" "#StickerKit_dhw2014_teamdignitas" - "name" "crate_sticker_pack_dhw2014_dignitas" - "item_description" "#StickerKit_desc_dhw2014_dignitas" - "image_inventory" "econ/stickers/dhw2014/dignitas" - "loot_list_name" "dhw2014_dignitas_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4046" - { - "item_name" "#StickerKit_dhw2014_bravadogaming" - "name" "crate_sticker_pack_dhw2014_bravadogaming" - "item_description" "#StickerKit_desc_dhw2014_bravadogaming" - "image_inventory" "econ/stickers/dhw2014/bravadogaming" - "loot_list_name" "dhw2014_bravadogaming_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4047" - { - "item_name" "#StickerKit_dhw2014_escgaming" - "name" "crate_sticker_pack_dhw2014_escgaming" - "item_description" "#StickerKit_desc_dhw2014_escgaming" - "image_inventory" "econ/stickers/dhw2014/escgaming" - "loot_list_name" "dhw2014_escgaming_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4048" - { - "item_name" "#StickerKit_dhw2014_hellraisers" - "name" "crate_sticker_pack_dhw2014_hellraisers" - "item_description" "#StickerKit_desc_dhw2014_hellraisers" - "image_inventory" "econ/stickers/dhw2014/hellraisers" - "loot_list_name" "dhw2014_hellraisers_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4049" - { - "item_name" "#StickerKit_dhw2014_myxmg" - "name" "crate_sticker_pack_dhw2014_myxmg" - "item_description" "#StickerKit_desc_dhw2014_myxmg" - "image_inventory" "econ/stickers/dhw2014/myxmg" - "loot_list_name" "dhw2014_myxmg_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4050" - { - "item_name" "#StickerKit_dhw2014_ibuypower" - "name" "crate_sticker_pack_dhw2014_ibuypower" - "item_description" "#StickerKit_desc_dhw2014_ibuypower" - "image_inventory" "econ/stickers/dhw2014/ibuypower" - "loot_list_name" "dhw2014_ibuypower_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4051" - { - "item_name" "#StickerKit_dhw2014_teamldlc" - "name" "crate_sticker_pack_dhw2014_teamldlc" - "item_description" "#StickerKit_desc_dhw2014_teamldlc" - "image_inventory" "econ/stickers/dhw2014/teamldlc" - "loot_list_name" "dhw2014_teamldlc_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4052" - { - "item_name" "#StickerKit_dhw2014_pentasports" - "name" "crate_sticker_pack_dhw2014_pentasports" - "item_description" "#StickerKit_desc_dhw2014_pentasports" - "image_inventory" "econ/stickers/dhw2014/pentasports" - "loot_list_name" "dhw2014_pentasports_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4053" - { - "item_name" "#StickerKit_dhw2014_planetkeydynamics" - "name" "crate_sticker_pack_dhw2014_planetkeydynamics" - "item_description" "#StickerKit_desc_dhw2014_planetkeydynamics" - "image_inventory" "econ/stickers/dhw2014/planetkeydynamics" - "loot_list_name" "dhw2014_planetkeydynamics_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4054" - { - "item_name" "#StickerKit_dhw2014_dhw" - "name" "crate_sticker_pack_dhw2014_dhw" - "item_description" "#StickerKit_desc_dhw2014_dhw" - "image_inventory" "econ/stickers/dhw2014/dreamhackwinter2014" - "loot_list_name" "dhw2014_dhw_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4055" - { - "item_name" "#StickerKit_dhw2014_3dmax" - "name" "crate_sticker_pack_dhw2014_3dmax" - "item_description" "#StickerKit_desc_dhw2014_3dmax" - "image_inventory" "econ/stickers/dhw2014/3dmax" - "loot_list_name" "dhw2014_3dmax_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4056" - { - "item_name" "#StickerKit_dhw2014_copenhagenwolves" - "name" "crate_sticker_pack_dhw2014_copenhagenwolves" - "item_description" "#StickerKit_desc_dhw2014_copenhagenwolves" - "image_inventory" "econ/stickers/dhw2014/copenhagenwolves" - "loot_list_name" "dhw2014_copenhagenwolves_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4057" - { - "item_name" "#StickerKit_dhw2014_datteam" - "name" "crate_sticker_pack_dhw2014_datteam" - "item_description" "#StickerKit_desc_dhw2014_datteam" - "image_inventory" "econ/stickers/dhw2014/datteam" - "loot_list_name" "dhw2014_datteam_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4058" - { - "item_name" "#StickerKit_dhw2014_londonconspiracy" - "name" "crate_sticker_pack_dhw2014_londonconspiracy" - "item_description" "#StickerKit_desc_dhw2014_londonconspiracy" - "image_inventory" "econ/stickers/dhw2014/londonconspiracy" - "loot_list_name" "dhw2014_londonconspiracy_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4059" - { - "item_name" "#StickerKit_dhw2014_mousesports" - "name" "crate_sticker_pack_dhw2014_mousesports" - "item_description" "#StickerKit_desc_dhw2014_mousesports" - "image_inventory" "econ/stickers/dhw2014/mousesports" - "loot_list_name" "dhw2014_mousesports_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4060" - { - "item_name" "#StickerKit_dhw2014_flipsid3" - "name" "crate_sticker_pack_dhw2014_flipsid3" - "item_description" "#StickerKit_desc_dhw2014_flipsid3" - "image_inventory" "econ/stickers/dhw2014/flipsid3" - "loot_list_name" "dhw2014_flipsid3_rare" - "prefab" "dhw14_sticker_capsule_prefab" - } - "4061" - { - "item_name" "#CSGO_crate_community_6" - "item_description" "#CSGO_crate_community_6_desc" - "first_sale_date" "2015/1/8" - "name" "crate_community_6" - "image_inventory" "econ/weapon_cases/crate_community_6" - "prefab" "weapon_case" - "associated_items" + "34144830" { - "1323" "1" + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_tape_urban_heavy" } - "tool" + "34144956" { - "restriction" "community_case_6" + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_dapple_light" } - "attributes" + "34144957" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "38" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_dapple_medium" } - "tags" + "34144958" { - "ItemSet" - { - "tag_value" "set_community_6" - "tag_text" "#CSGO_set_community_6" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_dapple_heavy" } - } - "4062" - { - "item_name" "#StickerKit_eslkatowice2015_3dmax" - "name" "crate_sticker_pack_eslkatowice2015_3dmax" - "item_description" "#StickerKit_desc_eslkatowice2015_3dmax" - "image_inventory" "econ/stickers/eslkatowice2015/3dmax" - "loot_list_name" "eslkatowice2015_3dmax_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4063" - { - "item_name" "#StickerKit_eslkatowice2015_cloud9" - "name" "crate_sticker_pack_eslkatowice2015_cloud9" - "item_description" "#StickerKit_desc_eslkatowice2015_cloud9" - "image_inventory" "econ/stickers/eslkatowice2015/cloud9" - "loot_list_name" "eslkatowice2015_cloud9_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4064" - { - "item_name" "#StickerKit_eslkatowice2015_counterlogic" - "name" "crate_sticker_pack_eslkatowice2015_counterlogic" - "item_description" "#StickerKit_desc_eslkatowice2015_counterlogic" - "image_inventory" "econ/stickers/eslkatowice2015/counterlogic" - "loot_list_name" "eslkatowice2015_counterlogic_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4065" - { - "item_name" "#StickerKit_eslkatowice2015_flipsid3" - "name" "crate_sticker_pack_eslkatowice2015_flipsid3" - "item_description" "#StickerKit_desc_eslkatowice2015_flipsid3" - "image_inventory" "econ/stickers/eslkatowice2015/flipsid3" - "loot_list_name" "eslkatowice2015_flipsid3_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4066" - { - "item_name" "#StickerKit_eslkatowice2015_fnatic" - "name" "crate_sticker_pack_eslkatowice2015_fnatic" - "item_description" "#StickerKit_desc_eslkatowice2015_fnatic" - "image_inventory" "econ/stickers/eslkatowice2015/fnatic" - "loot_list_name" "eslkatowice2015_fnatic_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4067" - { - "item_name" "#StickerKit_eslkatowice2015_hellraisers" - "name" "crate_sticker_pack_eslkatowice2015_hellraisers" - "item_description" "#StickerKit_desc_eslkatowice2015_hellraisers" - "image_inventory" "econ/stickers/eslkatowice2015/hellraisers" - "loot_list_name" "eslkatowice2015_hellraisers_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4068" - { - "item_name" "#StickerKit_eslkatowice2015_keyd" - "name" "crate_sticker_pack_eslkatowice2015_keyd" - "item_description" "#StickerKit_desc_eslkatowice2015_keyd" - "image_inventory" "econ/stickers/eslkatowice2015/keyd" - "loot_list_name" "eslkatowice2015_keyd_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4069" - { - "item_name" "#StickerKit_eslkatowice2015_lgb" - "name" "crate_sticker_pack_eslkatowice2015_lgb" - "item_description" "#StickerKit_desc_eslkatowice2015_lgb" - "image_inventory" "econ/stickers/eslkatowice2015/lgb" - "loot_list_name" "eslkatowice2015_lgb_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4070" - { - "item_name" "#StickerKit_eslkatowice2015_navi" - "name" "crate_sticker_pack_eslkatowice2015_navi" - "item_description" "#StickerKit_desc_eslkatowice2015_navi" - "image_inventory" "econ/stickers/eslkatowice2015/navi" - "loot_list_name" "eslkatowice2015_navi_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4071" - { - "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas" - "name" "crate_sticker_pack_eslkatowice2015_ninjasinpyjamas" - "item_description" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas" - "image_inventory" "econ/stickers/eslkatowice2015/ninjasinpyjamas" - "loot_list_name" "eslkatowice2015_ninjasinpyjamas_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4072" - { - "item_name" "#StickerKit_eslkatowice2015_pentasports" - "name" "crate_sticker_pack_eslkatowice2015_pentasports" - "item_description" "#StickerKit_desc_eslkatowice2015_pentasports" - "image_inventory" "econ/stickers/eslkatowice2015/pentasports" - "loot_list_name" "eslkatowice2015_pentasports_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4073" - { - "item_name" "#StickerKit_eslkatowice2015_teamenvyus" - "name" "crate_sticker_pack_eslkatowice2015_teamenvyus" - "item_description" "#StickerKit_desc_eslkatowice2015_teamenvyus" - "image_inventory" "econ/stickers/eslkatowice2015/teamenvyus" - "loot_list_name" "eslkatowice2015_teamenvyus_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4074" - { - "item_name" "#StickerKit_eslkatowice2015_teamsolomid" - "name" "crate_sticker_pack_eslkatowice2015_teamsolomid" - "item_description" "#StickerKit_desc_eslkatowice2015_teamsolomid" - "image_inventory" "econ/stickers/eslkatowice2015/teamsolomid" - "loot_list_name" "eslkatowice2015_teamsolomid_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4075" - { - "item_name" "#StickerKit_eslkatowice2015_titan" - "name" "crate_sticker_pack_eslkatowice2015_titan" - "item_description" "#StickerKit_desc_eslkatowice2015_titan" - "image_inventory" "econ/stickers/eslkatowice2015/titan" - "loot_list_name" "eslkatowice2015_titan_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4076" - { - "item_name" "#StickerKit_eslkatowice2015_virtuspro" - "name" "crate_sticker_pack_eslkatowice2015_virtuspro" - "item_description" "#StickerKit_desc_eslkatowice2015_virtuspro" - "image_inventory" "econ/stickers/eslkatowice2015/virtuspro" - "loot_list_name" "eslkatowice2015_virtuspro_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4077" - { - "item_name" "#StickerKit_eslkatowice2015_voxeminor" - "name" "crate_sticker_pack_eslkatowice2015_voxeminor" - "item_description" "#StickerKit_desc_eslkatowice2015_voxeminor" - "image_inventory" "econ/stickers/eslkatowice2015/voxeminor" - "loot_list_name" "eslkatowice2015_voxeminor_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4078" - { - "item_name" "#StickerKit_eslkatowice2015_esl_a" - "name" "crate_sticker_pack_eslkatowice2015_esl_a" - "item_description" "#StickerKit_desc_eslkatowice2015_esl_a" - "image_inventory" "econ/stickers/eslkatowice2015/esl_a" - "loot_list_name" "eslkatowice2015_esl_a_rare" - "prefab" "eslkatowice2015_sticker_capsule_prefab" - } - "4079" - { - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_dust2" - "name" "crate_eslkatowice2015_promo_de_dust2" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2" - "prefab" "weapon_case_base" - "attributes" + "34147196" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "39" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_nightstripe_light" } - "tags" + "34147197" { - "ItemSet" - { - "tag_value" "set_dust_2" - "tag_text" "#CSGO_set_dust_2" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_nightstripe_medium" } - } - "4080" - { - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_inferno" - "name" "crate_eslkatowice2015_promo_de_inferno" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno" - "prefab" "weapon_case_base" - "attributes" + "34147198" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "40" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_outdoor_sp_nightstripe_heavy" } - "tags" + "34209812" { - "ItemSet" - { - "tag_value" "set_inferno" - "tag_text" "#CSGO_set_inferno" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_ddpat_light" } - } - "4081" - { - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_mirage" - "name" "crate_eslkatowice2015_promo_de_mirage" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage" - "prefab" "weapon_case_base" - "attributes" + "34209813" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "41" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_ddpat_medium" } - "tags" + "34209814" { - "ItemSet" - { - "tag_value" "set_mirage" - "tag_text" "#CSGO_set_mirage" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_ddpat_heavy" } - } - "4082" - { - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_nuke" - "name" "crate_eslkatowice2015_promo_de_nuke" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke" - "prefab" "weapon_case_base" - "attributes" + "34209840" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "42" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_webs_light" } - "tags" + "34209841" { - "ItemSet" - { - "tag_value" "set_nuke" - "tag_text" "#CSGO_set_nuke" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_webs_medium" } - } - "4083" - { - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_cache" - "name" "crate_eslkatowice2015_promo_de_cache" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_cache" - "prefab" "weapon_case_base" - "attributes" + "34209842" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "43" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_webs_heavy" } - "tags" + "34209944" { - "ItemSet" - { - "tag_value" "set_cache" - "tag_text" "#CSGO_set_cache" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aa_fade_light" } - } - "4084" - { - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_cbble" - "name" "crate_eslkatowice2015_promo_de_cbble" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble" - "prefab" "weapon_case_base" - "attributes" + "34209945" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "44" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aa_fade_medium" } - "tags" + "34209946" { - "ItemSet" - { - "tag_value" "set_cobblestone" - "tag_text" "#CSGO_set_cobblestone" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aa_fade_heavy" } - } - "4085" - { - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_overpass" - "name" "crate_eslkatowice2015_promo_de_overpass" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass" - "prefab" "weapon_case_base" - "attributes" + "34209960" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "45" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_blued_light" } - "tags" + "34209961" { - "ItemSet" - { - "tag_value" "set_overpass" - "tag_text" "#CSGO_set_overpass" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_blued_medium" } - } - "4086" - { - "item_name" "#CSGO_crate_sticker_pack_eslkatowice2015_01" - "name" "crate_sticker_pack_eslkatowice2015_01" - "item_description" "#CSGO_crate_sticker_pack_eslkatowice2015_desc01" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01" - "first_sale_date" "2015/02/26" - "prefab" "weapon_case_base" - "attributes" + "34209962" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "46" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_blued_heavy" } - "tags" + "34209964" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_eslkatowice2015_01_collection" - "tag_text" "#CSGO_crate_sticker_pack_eslkatowice2015_01_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_forced_light" } - } - "4087" - { - "item_name" "#CSGO_crate_sticker_pack_eslkatowice2015_02" - "name" "crate_sticker_pack_eslkatowice2015_02" - "item_description" "#CSGO_crate_sticker_pack_eslkatowice2015_desc02" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02" - "first_sale_date" "2015/02/26" - "prefab" "weapon_case_base" - "attributes" + "34209965" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "47" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_forced_medium" } - "tags" + "34209966" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_eslkatowice2015_02_collection" - "tag_text" "#CSGO_crate_sticker_pack_eslkatowice2015_02_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_forced_heavy" } - } - "4088" - { - "name" "crate_stattrak_swap_tool" - "first_sale_date" "2015/3/30" - "prefab" "valve weapon_case_base" - "item_name" "#CSGO_crate_tool_stattrak_swap" - "item_description" "#CSGO_desc_crate_tool_stattrak_swap" - "item_type" "self_opening_purchase" - "image_inventory" "econ/weapon_cases/stattrak_swap_tool_bundle" - "loot_list_name" "bundle_tool_stattrak_swap" - } - "4089" - { - "item_name" "#CSGO_crate_community_7" - "item_description" "#CSGO_crate_community_7_desc" - "first_sale_date" "2015/4/15" - "name" "crate_community_7" - "image_inventory" "econ/weapon_cases/crate_community_7" - "prefab" "weapon_case" - "associated_items" + "34209968" { - "1325" "1" + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_oiled_light" } - "tool" + "34209969" { - "restriction" "community_case_7" + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_oiled_medium" } - "attributes" + "34209970" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "48" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_oiled_heavy" } - "tags" + "34210028" { - "ItemSet" - { - "tag_value" "set_community_7" - "tag_text" "#CSGO_set_community_7" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_zebra_light" } - } - "4090" - { - "item_name" "#CSGO_crate_sticker_pack_enfu_capsule" - "name" "crate_sticker_pack_enfu_capsule" - "item_description" "#CSGO_crate_sticker_pack_enfu_capsule_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_enfu_capsule" - "first_sale_date" "2015/04/22" - "prefab" "weapon_case_base" - "attributes" + "34210029" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "49" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_zebra_medium" } - "tags" + "34210030" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_enfu_capsule_lootlist" - "tag_text" "#CSGO_crate_sticker_pack_enfu_capsule" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_zebra_heavy" } - } - "4091" - { - "item_name" "#CSGO_crate_community_8" - "item_description" "#CSGO_crate_community_8_desc" - "first_sale_date" "2015/4/15" - "name" "crate_community_8" - "image_inventory" "econ/weapon_cases/crate_community_8" - "prefab" "weapon_case" - "associated_items" + "34210080" { - "1330" "1" + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_mesh_tan_light" } - "tool" + "34210081" { - "restriction" "community_case_8" + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_mesh_tan_medium" } - "attributes" + "34210082" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "50" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_mesh_tan_heavy" } - "tags" + "34210100" { - "ItemSet" - { - "tag_value" "set_community_8" - "tag_text" "#CSGO_set_community_8" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_forest_boreal_light" } - "loot_list_rare_item_footer" "#crate_community_8_unusual_lootlist" - "loot_list_rare_item_name" "#crate_community_8_unusual_itemname" - "image_unusual_item" "econ/weapon_cases/crate_community_8_rare_item" - } - "4092" - { - "item_name" "#StickerKit_eslcologne2015_team_fnatic" - "name" "crate_sticker_pack_eslcologne2015_fnatic" - "item_description" "#StickerKit_desc_eslcologne2015_team_fnatic" - "image_inventory" "econ/stickers/cologne2015/fnatic" - "loot_list_name" "eslcologne2015_rare_fnatic" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4093" - { - "item_name" "#StickerKit_eslcologne2015_team_virtuspro" - "name" "crate_sticker_pack_eslcologne2015_virtuspro" - "item_description" "#StickerKit_desc_eslcologne2015_team_virtuspro" - "image_inventory" "econ/stickers/cologne2015/virtuspro" - "loot_list_name" "eslcologne2015_rare_virtuspro" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4094" - { - "item_name" "#StickerKit_eslcologne2015_team_mousesports" - "name" "crate_sticker_pack_eslcologne2015_mousesports" - "item_description" "#StickerKit_desc_eslcologne2015_team_mousesports" - "image_inventory" "econ/stickers/cologne2015/mousesports" - "loot_list_name" "eslcologne2015_rare_mousesports" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4095" - { - "item_name" "#StickerKit_eslcologne2015_team_navi" - "name" "crate_sticker_pack_eslcologne2015_navi" - "item_description" "#StickerKit_desc_eslcologne2015_team_navi" - "image_inventory" "econ/stickers/cologne2015/navi" - "loot_list_name" "eslcologne2015_rare_navi" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4096" - { - "item_name" "#StickerKit_eslcologne2015_team_renegades" - "name" "crate_sticker_pack_eslcologne2015_renegades" - "item_description" "#StickerKit_desc_eslcologne2015_team_renegades" - "image_inventory" "econ/stickers/cologne2015/renegades" - "loot_list_name" "eslcologne2015_rare_renegades" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4097" - { - "item_name" "#StickerKit_eslcologne2015_team_kinguin" - "name" "crate_sticker_pack_eslcologne2015_kinguin" - "item_description" "#StickerKit_desc_eslcologne2015_team_kinguin" - "image_inventory" "econ/stickers/cologne2015/kinguin" - "loot_list_name" "eslcologne2015_rare_kinguin" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4098" - { - "item_name" "#StickerKit_eslcologne2015_team_ebettle" - "name" "crate_sticker_pack_eslcologne2015_ebettle" - "item_description" "#StickerKit_desc_eslcologne2015_team_ebettle" - "image_inventory" "econ/stickers/cologne2015/ebettle" - "loot_list_name" "eslcologne2015_rare_ebettle" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4099" - { - "item_name" "#StickerKit_eslcologne2015_team_cloud9" - "name" "crate_sticker_pack_eslcologne2015_cloud9" - "item_description" "#StickerKit_desc_eslcologne2015_team_cloud9" - "image_inventory" "econ/stickers/cologne2015/cloud9" - "loot_list_name" "eslcologne2015_rare_cloud9" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4100" - { - "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas" - "name" "crate_sticker_pack_eslcologne2015_ninjasinpyjamas" - "item_description" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas" - "image_inventory" "econ/stickers/cologne2015/ninjasinpyjamas" - "loot_list_name" "eslcologne2015_rare_ninjasinpyjamas" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4101" - { - "item_name" "#StickerKit_eslcologne2015_team_envyus" - "name" "crate_sticker_pack_eslcologne2015_envyus" - "item_description" "#StickerKit_desc_eslcologne2015_team_envyus" - "image_inventory" "econ/stickers/cologne2015/envyus" - "loot_list_name" "eslcologne2015_rare_envyus" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4102" - { - "item_name" "#StickerKit_eslcologne2015_team_luminositygaming" - "name" "crate_sticker_pack_eslcologne2015_luminositygaming" - "item_description" "#StickerKit_desc_eslcologne2015_team_luminositygaming" - "image_inventory" "econ/stickers/cologne2015/luminositygaming" - "loot_list_name" "eslcologne2015_rare_luminositygaming" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4103" - { - "item_name" "#StickerKit_eslcologne2015_team_solomid" - "name" "crate_sticker_pack_eslcologne2015_solomid" - "item_description" "#StickerKit_desc_eslcologne2015_team_solomid" - "image_inventory" "econ/stickers/cologne2015/solomid" - "loot_list_name" "eslcologne2015_rare_solomid" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4104" - { - "item_name" "#StickerKit_eslcologne2015_team_teamimmunity" - "name" "crate_sticker_pack_eslcologne2015_teamimmunity" - "item_description" "#StickerKit_desc_eslcologne2015_team_teamimmunity" - "image_inventory" "econ/stickers/cologne2015/teamimmunity" - "loot_list_name" "eslcologne2015_rare_teamimmunity" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4105" - { - "item_name" "#StickerKit_eslcologne2015_team_flipside" - "name" "crate_sticker_pack_eslcologne2015_flipside" - "item_description" "#StickerKit_desc_eslcologne2015_team_flipside" - "image_inventory" "econ/stickers/cologne2015/flipside" - "loot_list_name" "eslcologne2015_rare_flipside" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4106" - { - "item_name" "#StickerKit_eslcologne2015_team_titan" - "name" "crate_sticker_pack_eslcologne2015_titan" - "item_description" "#StickerKit_desc_eslcologne2015_team_titan" - "image_inventory" "econ/stickers/cologne2015/titan" - "loot_list_name" "eslcologne2015_rare_titan" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4107" - { - "item_name" "#StickerKit_eslcologne2015_team_clg" - "name" "crate_sticker_pack_eslcologne2015_clg" - "item_description" "#StickerKit_desc_eslcologne2015_team_clg" - "image_inventory" "econ/stickers/cologne2015/clg" - "loot_list_name" "eslcologne2015_rare_clg" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4108" - { - "item_name" "#StickerKit_eslcologne2015_team_esl" - "name" "crate_sticker_pack_eslcologne2015_esl" - "item_description" "#StickerKit_desc_eslcologne2015_team_esl" - "image_inventory" "econ/stickers/cologne2015/esl" - "loot_list_name" "eslcologne2015_rare_esl" - "prefab" "eslcologne2015_sticker_capsule_prefab" - } - "4109" - { - "item_name" "#CSGO_crate_sticker_pack_eslcologne2015_legends" - "name" "crate_sticker_pack_eslcologne2015_legends" - "item_description" "#CSGO_crate_sticker_pack_eslcologne2015_legends_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_01" - "first_sale_date" "2015/8/10" - "prefab" "weapon_case_base" - "attributes" + "34210101" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "51" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_forest_boreal_medium" } - "tags" + "34210102" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_eslcologne2015_legends_collection" - "tag_text" "#CSGO_crate_sticker_pack_eslcologne2015_legends_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_hy_forest_boreal_heavy" } - } - "4110" - { - "item_name" "#CSGO_crate_sticker_pack_eslcologne2015_challengers" - "name" "crate_sticker_pack_eslcologne2015_challengers" - "item_description" "#CSGO_crate_sticker_pack_eslcologne2015_challengers_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_02" - "first_sale_date" "2015/8/10" - "prefab" "weapon_case_base" - "attributes" + "34210184" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "52" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_so_purple_light" } - "tags" + "34210185" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_eslcologne2015_challengers_collection" - "tag_text" "#CSGO_crate_sticker_pack_eslcologne2015_challengers_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_so_purple_medium" } - } - "4111" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_1" - "name" "crate_signature_pack_eslcologne2015_group_1" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_1_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_1" - "first_sale_date" "2015/8/10" - "prefab" "weapon_case_base" - "attributes" + "34210186" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "53" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_so_purple_heavy" } - "tags" + "34210364" { - "StickerCapsule" - { - "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" - "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_tape_urban_light" } - } - "4112" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_2" - "name" "crate_signature_pack_eslcologne2015_group_2" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_2_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_2" - "first_sale_date" "2015/8/10" - "prefab" "weapon_case_base" - "attributes" + "34210365" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "54" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_tape_urban_medium" } - "tags" + "34210366" { - "StickerCapsule" - { - "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" - "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_tape_urban_heavy" } - } - "4113" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_3" - "name" "crate_signature_pack_eslcologne2015_group_3" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_3_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_3" - "first_sale_date" "2015/8/10" - "prefab" "weapon_case_base" - "attributes" + "34210492" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "55" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_dapple_light" } - "tags" + "34210493" { - "StickerCapsule" - { - "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" - "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_dapple_medium" } - } - "4114" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_4" - "name" "crate_signature_pack_eslcologne2015_group_4" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_4_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_4" - "first_sale_date" "2015/8/10" - "prefab" "weapon_case_base" - "attributes" + "34210494" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "56" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_dapple_heavy" } - "tags" + "34211428" { - "StickerCapsule" - { - "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" - "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_an_tiger_orange_light" } - } - "4115" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_fnatic" - "name" "crate_signature_pack_eslcologne2015_fnatic" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_fnatic_desc" - "image_inventory" "econ/weapon_cases/cologne2015_fnatic" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211429" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "57" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_an_tiger_orange_medium" } - } - "4116" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming" - "name" "crate_signature_pack_eslcologne2015_luminositygaming" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming_desc" - "image_inventory" "econ/weapon_cases/cologne2015_luminositygaming" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211430" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "58" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "57" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_an_tiger_orange_heavy" } - } - "4117" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_navi" - "name" "crate_signature_pack_eslcologne2015_navi" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_navi_desc" - "image_inventory" "econ/weapon_cases/cologne2015_navi" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211444" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "59" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "12" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_marble_fade_light" } - } - "4118" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas" - "name" "crate_signature_pack_eslcologne2015_ninjasinpyjamas" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas_desc" - "image_inventory" "econ/weapon_cases/cologne2015_ninjasinpyjamas" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211445" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "60" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_marble_fade_medium" } - } - "4119" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_envyus" - "name" "crate_signature_pack_eslcologne2015_envyus" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_envyus_desc" - "image_inventory" "econ/weapon_cases/cologne2015_envyus" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211446" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "61" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "46" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_marble_fade_heavy" } - } - "4120" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_titan" - "name" "crate_signature_pack_eslcologne2015_titan" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_titan_desc" - "image_inventory" "econ/weapon_cases/cologne2015_titan" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211448" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "62" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "27" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_steel_knife_light" } - } - "4121" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_solomid" - "name" "crate_signature_pack_eslcologne2015_solomid" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_solomid_desc" - "image_inventory" "econ/weapon_cases/cologne2015_solomid" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211449" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "63" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "58" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_steel_knife_medium" } - } - "4122" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_virtuspro" - "name" "crate_signature_pack_eslcologne2015_virtuspro" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_virtuspro_desc" - "image_inventory" "econ/weapon_cases/cologne2015_virtuspro" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211450" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "64" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "31" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_steel_knife_heavy" } - } - "4123" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_mousesports" - "name" "crate_signature_pack_eslcologne2015_mousesports" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_mousesports_desc" - "image_inventory" "econ/weapon_cases/cologne2015_mousesports" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211452" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "65" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "29" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_ruby_marbleized_light" } - } - "4124" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_renegades" - "name" "crate_signature_pack_eslcologne2015_renegades" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_renegades_desc" - "image_inventory" "econ/weapon_cases/cologne2015_renegades" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211453" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "66" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "53" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_ruby_marbleized_medium" } - } - "4125" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity" - "name" "crate_signature_pack_eslcologne2015_teamimmunity" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity_desc" - "image_inventory" "econ/weapon_cases/cologne2015_teamimmunity" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211454" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "67" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "54" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_ruby_marbleized_heavy" } - } - "4126" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_ebettle" - "name" "crate_signature_pack_eslcologne2015_ebettle" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_ebettle_desc" - "image_inventory" "econ/weapon_cases/cologne2015_ebettle" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211456" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "68" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "56" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_sapphire_marbleized_light" } - } - "4127" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_kinguin" - "name" "crate_signature_pack_eslcologne2015_kinguin" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_kinguin_desc" - "image_inventory" "econ/weapon_cases/cologne2015_kinguin" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211457" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "69" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "55" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_sapphire_marbleized_medium" } - } - "4128" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_flipside" - "name" "crate_signature_pack_eslcologne2015_flipside" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_flipside_desc" - "image_inventory" "econ/weapon_cases/cologne2015_flipside" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211458" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "70" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "43" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_sapphire_marbleized_heavy" } - } - "4129" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_clg" - "name" "crate_signature_pack_eslcologne2015_clg" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_clg_desc" - "image_inventory" "econ/weapon_cases/cologne2015_clg" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211460" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "71" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "49" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_blackpearl_marbleized_light" } - } - "4130" - { - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_cloud9" - "name" "crate_signature_pack_eslcologne2015_cloud9" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_cloud9_desc" - "image_inventory" "econ/weapon_cases/cologne2015_cloud9" - "prefab" "weapon_case_base" - "first_sale_date" "2015/8/10" - "attributes" + "34211461" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "72" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "52" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_blackpearl_marbleized_medium" } - } - "4131" - { - "item_name" "#CSGO_crate_eslcologne2015_promo_de_dust2" - "name" "crate_eslcologne2015_promo_de_dust2" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_dust2" - "prefab" "weapon_case_base" - "attributes" + "34211462" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "73" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_blackpearl_marbleized_heavy" } - "tags" + "34211464" { - "ItemSet" - { - "tag_value" "set_dust_2" - "tag_text" "#CSGO_set_dust_2" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase1_light" } - } - "4132" - { - "item_name" "#CSGO_crate_eslcologne2015_promo_de_mirage" - "name" "crate_eslcologne2015_promo_de_mirage" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_mirage" - "prefab" "weapon_case_base" - "attributes" + "34211465" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "74" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase1_medium" } - "tags" + "34211466" { - "ItemSet" - { - "tag_value" "set_mirage" - "tag_text" "#CSGO_set_mirage" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase1_heavy" } - } - "4133" - { - "item_name" "#CSGO_crate_eslcologne2015_promo_de_inferno" - "name" "crate_eslcologne2015_promo_de_inferno" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_inferno" - "prefab" "weapon_case_base" - "attributes" + "34211468" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "75" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase2_light" } - "tags" + "34211469" { - "ItemSet" - { - "tag_value" "set_inferno" - "tag_text" "#CSGO_set_inferno" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase2_medium" } - } - "4134" - { - "item_name" "#CSGO_crate_eslcologne2015_promo_de_cbble" - "name" "crate_eslcologne2015_promo_de_cbble" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_cbble" - "prefab" "weapon_case_base" - "attributes" + "34211470" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "76" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase2_heavy" } - "tags" + "34211472" { - "ItemSet" - { - "tag_value" "set_cobblestone" - "tag_text" "#CSGO_set_cobblestone" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase3_light" } - } - "4135" - { - "item_name" "#CSGO_crate_eslcologne2015_promo_de_overpass" - "name" "crate_eslcologne2015_promo_de_overpass" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_overpass" - "prefab" "weapon_case_base" - "attributes" + "34211473" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "77" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase3_medium" } - "tags" + "34211474" { - "ItemSet" - { - "tag_value" "set_overpass" - "tag_text" "#CSGO_set_overpass" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase3_heavy" } - } - "4136" - { - "item_name" "#CSGO_crate_eslcologne2015_promo_de_cache" - "name" "crate_eslcologne2015_promo_de_cache" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_cache" - "prefab" "weapon_case_base" - "attributes" + "34211476" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "78" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase4_light" } - "tags" + "34211477" { - "ItemSet" - { - "tag_value" "set_cache" - "tag_text" "#CSGO_set_cache" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase4_medium" } - } - "4137" - { - "item_name" "#CSGO_crate_eslcologne2015_promo_de_train" - "name" "crate_eslcologne2015_promo_de_train" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_train" - "prefab" "weapon_case_base" - "attributes" + "34211478" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "79" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "7" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_am_doppler_phase4_heavy" } - "tags" + "34212732" { - "ItemSet" - { - "tag_value" "set_train" - "tag_text" "#CSGO_set_train" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_nightstripe_light" } - } - "4138" - { - "item_name" "#CSGO_crate_community_9" - "item_description" "#CSGO_crate_community_9_desc" - "first_sale_date" "2015/9/15" - "name" "crate_community_9" - "image_inventory" "econ/weapon_cases/crate_community_9" - "prefab" "weapon_case" - "associated_items" + "34212733" { - "1333" "1" + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_nightstripe_medium" } - "tool" + "34212734" { - "restriction" "community_case_9" + "icon_path" "econ/default_generated/weapon_knife_stiletto_sp_nightstripe_heavy" } - "attributes" + "34213220" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "80" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_damascus_prisma_light" } - "loot_list_rare_item_footer" "#crate_community_9_unusual_lootlist" - "loot_list_rare_item_name" "#crate_community_9_unusual_itemname" - "image_unusual_item" "econ/weapon_cases/crate_community_9_rare_item" - } - "4139" - { - "item_name" "#StickerKit_cluj2015_team_nip" - "name" "crate_sticker_pack_cluj2015_nip" - "item_description" "#StickerKit_desc_cluj2015_team_nip" - "image_inventory" "econ/stickers/cluj2015/nip" - "loot_list_name" "cluj2015_rare_nip" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4140" - { - "item_name" "#StickerKit_cluj2015_team_dig" - "name" "crate_sticker_pack_cluj2015_dig" - "item_description" "#StickerKit_desc_cluj2015_team_dig" - "image_inventory" "econ/stickers/cluj2015/dig" - "loot_list_name" "cluj2015_rare_dig" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4141" - { - "item_name" "#StickerKit_cluj2015_team_clg" - "name" "crate_sticker_pack_cluj2015_clg" - "item_description" "#StickerKit_desc_cluj2015_team_clg" - "image_inventory" "econ/stickers/cluj2015/clg" - "loot_list_name" "cluj2015_rare_clg" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4142" - { - "item_name" "#StickerKit_cluj2015_team_vex" - "name" "crate_sticker_pack_cluj2015_vex" - "item_description" "#StickerKit_desc_cluj2015_team_vex" - "image_inventory" "econ/stickers/cluj2015/vex" - "loot_list_name" "cluj2015_rare_vex" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4143" - { - "item_name" "#StickerKit_cluj2015_team_flip" - "name" "crate_sticker_pack_cluj2015_flip" - "item_description" "#StickerKit_desc_cluj2015_team_flip" - "image_inventory" "econ/stickers/cluj2015/flip" - "loot_list_name" "cluj2015_rare_flip" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4144" - { - "item_name" "#StickerKit_cluj2015_team_liq" - "name" "crate_sticker_pack_cluj2015_liq" - "item_description" "#StickerKit_desc_cluj2015_team_liq" - "image_inventory" "econ/stickers/cluj2015/liq" - "loot_list_name" "cluj2015_rare_liq" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4145" - { - "item_name" "#StickerKit_cluj2015_team_mss" - "name" "crate_sticker_pack_cluj2015_mss" - "item_description" "#StickerKit_desc_cluj2015_team_mss" - "image_inventory" "econ/stickers/cluj2015/mss" - "loot_list_name" "cluj2015_rare_mss" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4146" - { - "item_name" "#StickerKit_cluj2015_team_navi" - "name" "crate_sticker_pack_cluj2015_navi" - "item_description" "#StickerKit_desc_cluj2015_team_navi" - "image_inventory" "econ/stickers/cluj2015/navi" - "loot_list_name" "cluj2015_rare_navi" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4147" - { - "item_name" "#StickerKit_cluj2015_team_vp" - "name" "crate_sticker_pack_cluj2015_vp" - "item_description" "#StickerKit_desc_cluj2015_team_vp" - "image_inventory" "econ/stickers/cluj2015/vp" - "loot_list_name" "cluj2015_rare_vp" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4148" - { - "item_name" "#StickerKit_cluj2015_team_c9" - "name" "crate_sticker_pack_cluj2015_c9" - "item_description" "#StickerKit_desc_cluj2015_team_c9" - "image_inventory" "econ/stickers/cluj2015/c9" - "loot_list_name" "cluj2015_rare_c9" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4149" - { - "item_name" "#StickerKit_cluj2015_team_g2" - "name" "crate_sticker_pack_cluj2015_g2" - "item_description" "#StickerKit_desc_cluj2015_team_g2" - "image_inventory" "econ/stickers/cluj2015/g2" - "loot_list_name" "cluj2015_rare_g2" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4150" - { - "item_name" "#StickerKit_cluj2015_team_tit" - "name" "crate_sticker_pack_cluj2015_tit" - "item_description" "#StickerKit_desc_cluj2015_team_tit" - "image_inventory" "econ/stickers/cluj2015/tit" - "loot_list_name" "cluj2015_rare_tit" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4151" - { - "item_name" "#StickerKit_cluj2015_team_tsolo" - "name" "crate_sticker_pack_cluj2015_tsolo" - "item_description" "#StickerKit_desc_cluj2015_team_tsolo" - "image_inventory" "econ/stickers/cluj2015/tsolo" - "loot_list_name" "cluj2015_rare_tsolo" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4152" - { - "item_name" "#StickerKit_cluj2015_team_nv" - "name" "crate_sticker_pack_cluj2015_nv" - "item_description" "#StickerKit_desc_cluj2015_team_nv" - "image_inventory" "econ/stickers/cluj2015/nv" - "loot_list_name" "cluj2015_rare_nv" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4153" - { - "item_name" "#StickerKit_cluj2015_team_fntc" - "name" "crate_sticker_pack_cluj2015_fntc" - "item_description" "#StickerKit_desc_cluj2015_team_fntc" - "image_inventory" "econ/stickers/cluj2015/fntc" - "loot_list_name" "cluj2015_rare_fntc" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4154" - { - "item_name" "#StickerKit_cluj2015_team_lumi" - "name" "crate_sticker_pack_cluj2015_lumi" - "item_description" "#StickerKit_desc_cluj2015_team_lumi" - "image_inventory" "econ/stickers/cluj2015/lumi" - "loot_list_name" "cluj2015_rare_lumi" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4155" - { - "item_name" "#StickerKit_cluj2015_team_dhc" - "name" "crate_sticker_pack_cluj2015_dhc" - "item_description" "#StickerKit_desc_cluj2015_team_dhc" - "image_inventory" "econ/stickers/cluj2015/dhc" - "loot_list_name" "cluj2015_rare_dhc" - "prefab" "cluj2015_sticker_capsule_prefab" - } - "4156" - { - "item_name" "#CSGO_crate_sticker_pack_cluj2015_legends" - "name" "crate_sticker_pack_cluj2015_legends" - "item_description" "#CSGO_crate_sticker_pack_cluj2015_legends_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_01" - "first_sale_date" "2015/10/20" - "prefab" "weapon_case_base" - "attributes" + "34213221" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "81" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_damascus_prisma_medium" } - "tags" + "34213222" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_cluj2015_legends_collection" - "tag_text" "#CSGO_crate_sticker_pack_cluj2015_legends_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_stiletto_aq_damascus_prisma_heavy" } - } - "4157" - { - "item_name" "#CSGO_crate_sticker_pack_cluj2015_challengers" - "name" "crate_sticker_pack_cluj2015_challengers" - "item_description" "#CSGO_crate_sticker_pack_cluj2015_challengers_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_02" - "first_sale_date" "2015/10/20" - "prefab" "weapon_case_base" - "attributes" + "34275348" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "82" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_ddpat_light" } - "tags" + "34275349" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_cluj2015_challengers_collection" - "tag_text" "#CSGO_crate_sticker_pack_cluj2015_challengers_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_ddpat_medium" } - } - "4158" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_group_1" - "name" "crate_signature_pack_cluj2015_group_1" - "item_description" "#CSGO_crate_signature_pack_cluj2015_group_1_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_group_1" - "first_sale_date" "2015/10/20" - "prefab" "weapon_case_base" - "attributes" + "34275350" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "83" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_ddpat_heavy" } - "tags" + "34275376" { - "StickerCapsule" - { - "tag_value" "crate_signature_pack_cluj2015_group_players_collection" - "tag_text" "#CSGO_crate_signature_pack_cluj2015_group_players_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_webs_light" } - } - "4159" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_group_2" - "name" "crate_signature_pack_cluj2015_group_2" - "item_description" "#CSGO_crate_signature_pack_cluj2015_group_2_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_group_2" - "first_sale_date" "2015/10/20" - "prefab" "weapon_case_base" - "attributes" + "34275377" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "84" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_webs_medium" } - "tags" + "34275378" { - "StickerCapsule" - { - "tag_value" "crate_signature_pack_cluj2015_group_players_collection" - "tag_text" "#CSGO_crate_signature_pack_cluj2015_group_players_tag" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_webs_heavy" } - } - "4160" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_nip" - "name" "crate_signature_pack_cluj2015_nip" - "item_description" "#CSGO_crate_signature_pack_cluj2015_nip_desc" - "image_inventory" "econ/weapon_cases/cluj2015_nip" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275480" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "85" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "1" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aa_fade_light" } - } - "4161" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_dig" - "name" "crate_signature_pack_cluj2015_dig" - "item_description" "#CSGO_crate_signature_pack_cluj2015_dig_desc" - "image_inventory" "econ/weapon_cases/cluj2015_dig" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275481" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "86" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "24" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aa_fade_medium" } - } - "4162" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_clg" - "name" "crate_signature_pack_cluj2015_clg" - "item_description" "#CSGO_crate_signature_pack_cluj2015_clg_desc" - "image_inventory" "econ/weapon_cases/cluj2015_clg" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275482" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "87" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "49" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aa_fade_heavy" } - } - "4163" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_vex" - "name" "crate_signature_pack_cluj2015_vex" - "item_description" "#CSGO_crate_signature_pack_cluj2015_vex_desc" - "image_inventory" "econ/weapon_cases/cluj2015_vex" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275496" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "88" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "47" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_blued_light" } - } - "4164" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_flip" - "name" "crate_signature_pack_cluj2015_flip" - "item_description" "#CSGO_crate_signature_pack_cluj2015_flip_desc" - "image_inventory" "econ/weapon_cases/cluj2015_flip" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275497" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "89" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "43" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_blued_medium" } - } - "4165" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_liq" - "name" "crate_signature_pack_cluj2015_liq" - "item_description" "#CSGO_crate_signature_pack_cluj2015_liq_desc" - "image_inventory" "econ/weapon_cases/cluj2015_liq" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275498" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "90" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "48" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_blued_heavy" } - } - "4166" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_mss" - "name" "crate_signature_pack_cluj2015_mss" - "item_description" "#CSGO_crate_signature_pack_cluj2015_mss_desc" - "image_inventory" "econ/weapon_cases/cluj2015_mss" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275500" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "91" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "29" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_forced_light" } - } - "4167" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_navi" - "name" "crate_signature_pack_cluj2015_navi" - "item_description" "#CSGO_crate_signature_pack_cluj2015_navi_desc" - "image_inventory" "econ/weapon_cases/cluj2015_navi" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275501" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "92" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "12" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_forced_medium" } - } - "4168" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_vp" - "name" "crate_signature_pack_cluj2015_vp" - "item_description" "#CSGO_crate_signature_pack_cluj2015_vp_desc" - "image_inventory" "econ/weapon_cases/cluj2015_vp" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275502" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "93" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "31" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_forced_heavy" } - } - "4169" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_c9" - "name" "crate_signature_pack_cluj2015_c9" - "item_description" "#CSGO_crate_signature_pack_cluj2015_c9_desc" - "image_inventory" "econ/weapon_cases/cluj2015_c9" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275504" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "94" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "33" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_oiled_light" } - } - "4170" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_g2" - "name" "crate_signature_pack_cluj2015_g2" - "item_description" "#CSGO_crate_signature_pack_cluj2015_g2_desc" - "image_inventory" "econ/weapon_cases/cluj2015_g2" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275505" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "95" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "59" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_oiled_medium" } - } - "4171" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_tit" - "name" "crate_signature_pack_cluj2015_tit" - "item_description" "#CSGO_crate_signature_pack_cluj2015_tit_desc" - "image_inventory" "econ/weapon_cases/cluj2015_tit" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275506" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "96" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "27" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_oiled_heavy" } - } - "4172" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_tsolo" - "name" "crate_signature_pack_cluj2015_tsolo" - "item_description" "#CSGO_crate_signature_pack_cluj2015_tsolo_desc" - "image_inventory" "econ/weapon_cases/cluj2015_tsolo" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275564" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "97" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "58" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_zebra_light" } - } - "4173" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_nv" - "name" "crate_signature_pack_cluj2015_nv" - "item_description" "#CSGO_crate_signature_pack_cluj2015_nv_desc" - "image_inventory" "econ/weapon_cases/cluj2015_nv" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275565" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "98" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "46" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_zebra_medium" } - } - "4174" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_fntc" - "name" "crate_signature_pack_cluj2015_fntc" - "item_description" "#CSGO_crate_signature_pack_cluj2015_fntc_desc" - "image_inventory" "econ/weapon_cases/cluj2015_fntc" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275566" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "99" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "6" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_zebra_heavy" } - } - "4175" - { - "item_name" "#CSGO_crate_signature_pack_cluj2015_lumi" - "name" "crate_signature_pack_cluj2015_lumi" - "item_description" "#CSGO_crate_signature_pack_cluj2015_lumi_desc" - "image_inventory" "econ/weapon_cases/cluj2015_lumi" - "prefab" "weapon_case_base" - "first_sale_date" "2015/10/20" - "attributes" + "34275616" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "100" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } - "tournament event team0 id" - { - "attribute_class" "tournament_event_team_id" - "value" "57" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_mesh_tan_light" } - } - "4176" - { - "item_name" "#CSGO_crate_cluj2015_promo_de_dust2" - "name" "crate_cluj2015_promo_de_dust2" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_dust2" - "prefab" "weapon_case_base" - "attributes" + "34275617" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "101" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_mesh_tan_medium" } - "tags" + "34275618" { - "ItemSet" - { - "tag_value" "set_dust_2" - "tag_text" "#CSGO_set_dust_2" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_mesh_tan_heavy" } - } - "4177" - { - "item_name" "#CSGO_crate_cluj2015_promo_de_mirage" - "name" "crate_cluj2015_promo_de_mirage" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_mirage" - "prefab" "weapon_case_base" - "attributes" + "34275636" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "102" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_forest_boreal_light" } - "tags" + "34275637" { - "ItemSet" - { - "tag_value" "set_mirage" - "tag_text" "#CSGO_set_mirage" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_forest_boreal_medium" } - } - "4178" - { - "item_name" "#CSGO_crate_cluj2015_promo_de_inferno" - "name" "crate_cluj2015_promo_de_inferno" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_inferno" - "prefab" "weapon_case_base" - "attributes" + "34275638" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "103" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_hy_forest_boreal_heavy" } - "tags" + "34275720" { - "ItemSet" - { - "tag_value" "set_inferno" - "tag_text" "#CSGO_set_inferno" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_so_purple_light" } - } - "4179" - { - "item_name" "#CSGO_crate_cluj2015_promo_de_cbble" - "name" "crate_cluj2015_promo_de_cbble" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_cbble" - "prefab" "weapon_case_base" - "attributes" + "34275721" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "104" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_so_purple_medium" } - "tags" + "34275722" { - "ItemSet" - { - "tag_value" "set_cobblestone" - "tag_text" "#CSGO_set_cobblestone" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_so_purple_heavy" } - } - "4180" - { - "item_name" "#CSGO_crate_cluj2015_promo_de_overpass" - "name" "crate_cluj2015_promo_de_overpass" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_overpass" - "prefab" "weapon_case_base" - "attributes" + "34275900" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "105" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_tape_urban_light" } - "tags" + "34275901" { - "ItemSet" - { - "tag_value" "set_overpass" - "tag_text" "#CSGO_set_overpass" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_tape_urban_medium" } - } - "4181" - { - "item_name" "#CSGO_crate_cluj2015_promo_de_cache" - "name" "crate_cluj2015_promo_de_cache" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_cache" - "prefab" "weapon_case_base" - "attributes" + "34275902" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "106" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_tape_urban_heavy" } - "tags" + "34276028" { - "ItemSet" - { - "tag_value" "set_cache" - "tag_text" "#CSGO_set_cache" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_dapple_light" } - } - "4182" - { - "item_name" "#CSGO_crate_cluj2015_promo_de_train" - "name" "crate_cluj2015_promo_de_train" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_train" - "prefab" "weapon_case_base" - "attributes" + "34276029" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "107" - } - "tournament event id" - { - "attribute_class" "tournament_event_id" - "value" "8" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_dapple_medium" } - "tags" + "34276030" { - "ItemSet" - { - "tag_value" "set_train" - "tag_text" "#CSGO_set_train" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_dapple_heavy" } - } - "4183" - { - "item_name" "#CSGO_crate_sticker_pack_pinups_capsule" - "name" "crate_sticker_pack_pinups_capsule" - "item_description" "#CSGO_crate_sticker_pack_pinups_capsule_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_pinups_capsule" - "first_sale_date" "2015/12/01" - "prefab" "weapon_case_base" - "attributes" + "34276964" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "108" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_an_tiger_orange_light" } - "tags" + "34276965" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_pinups_capsule_lootlist" - "tag_text" "#CSGO_crate_sticker_pack_pinups_capsule" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_an_tiger_orange_medium" } - } - "4184" - { - "item_name" "#CSGO_crate_sticker_pack_slid3_capsule" - "name" "crate_sticker_pack_slid3_capsule" - "item_description" "#CSGO_crate_sticker_pack_slid3_capsule_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_slid3_capsule" - "first_sale_date" "2015/12/01" - "prefab" "weapon_case_base" - "attributes" + "34276966" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "109" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_an_tiger_orange_heavy" } - "tags" + "34276984" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_slid3_capsule_lootlist" - "tag_text" "#CSGO_crate_sticker_pack_slid3_capsule" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_steel_knife_light" } - } - "4185" - { - "item_name" "#CSGO_crate_sticker_pack_team_roles_capsule" - "name" "crate_sticker_pack_team_roles_capsule" - "item_description" "#CSGO_crate_sticker_pack_team_roles_capsule_desc" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_team_roles_capsule" - "first_sale_date" "2015/12/01" - "prefab" "weapon_case_base" - "attributes" + "34276985" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "110" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_steel_knife_medium" } - "tags" + "34276986" { - "StickerCapsule" - { - "tag_value" "crate_sticker_pack_team_roles_capsule_lootlist" - "tag_text" "#CSGO_crate_sticker_pack_team_roles_capsule" - "tag_group" "StickerCapsule" - "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_steel_knife_heavy" } - } - "4186" - { - "item_name" "#CSGO_crate_community_10" - "item_description" "#CSGO_crate_community_10_desc" - "name" "crate_community_10" - "image_inventory" "econ/weapon_cases/crate_community_10" - "prefab" "weapon_case" - "associated_items" + "34276988" { - "1334" "1" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_ruby_marbleized_light" } - "tool" + "34276989" { - "restriction" "crate_community_10" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_ruby_marbleized_medium" } - "attributes" + "34276990" { - "set supply crate series" - { - "attribute_class" "supply_crate_series" - "value" "111" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_ruby_marbleized_heavy" } - "tags" + "34276992" { - "ItemSet" - { - "tag_value" "set_community_10" - "tag_text" "#CSGO_set_community_10" - "tag_group" "ItemSet" - "tag_group_text" "#SFUI_InvTooltip_SetTag" - } + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_sapphire_marbleized_light" } - } - "6001" - { - "name" "Collectible Pin - Dust II" - "prefab" "attendance_pin" - "item_rarity" "ancient" - "item_name" "#CSGO_Collectible_Pin_DustII" - "item_description" "#CSGO_Collectible_Pin_DustII_Desc" - "image_inventory" "econ/status_icons/collectible_pin_dust2" - "attributes" + "34276993" { - "pedestal display model" "models/inventory_items/collectible_pin_dust2.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_sapphire_marbleized_medium" } - } - "6002" - { - "name" "Collectible Pin - Guardian Elite" - "prefab" "attendance_pin" - "item_rarity" "ancient" - "item_name" "#CSGO_Collectible_Pin_GuardianElite" - "item_description" "#CSGO_Collectible_Pin_GuardianElite_Desc" - "image_inventory" "econ/status_icons/collectible_pin_guardianelite" - "attributes" + "34276994" { - "pedestal display model" "models/inventory_items/collectible_pin_guardianelite.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_sapphire_marbleized_heavy" } - } - "6003" - { - "name" "Collectible Pin - Mirage" - "prefab" "attendance_pin" - "item_rarity" "legendary" - "item_name" "#CSGO_Collectible_Pin_Mirage" - "item_description" "#CSGO_Collectible_Pin_Mirage_Desc" - "image_inventory" "econ/status_icons/collectible_pin_mirage" - "attributes" + "34276996" { - "pedestal display model" "models/inventory_items/collectible_pin_mirage.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_blackpearl_marbleized_light" } - } - "6004" - { - "name" "Collectible Pin - Inferno" - "prefab" "attendance_pin" - "item_rarity" "legendary" - "item_name" "#CSGO_Collectible_Pin_Inferno" - "item_description" "#CSGO_Collectible_Pin_Inferno_Desc" - "image_inventory" "econ/status_icons/collectible_pin_inferno" - "attributes" + "34276997" { - "pedestal display model" "models/inventory_items/collectible_pin_inferno.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_blackpearl_marbleized_medium" } - } - "6005" - { - "name" "Collectible Pin - Italy" - "prefab" "attendance_pin" - "item_rarity" "mythical" - "item_name" "#CSGO_Collectible_Pin_Italy" - "item_description" "#CSGO_Collectible_Pin_Italy_Desc" - "image_inventory" "econ/status_icons/collectible_pin_italy" - "attributes" + "34276998" { - "pedestal display model" "models/inventory_items/collectible_pin_italy.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_blackpearl_marbleized_heavy" } - } - "6006" - { - "name" "Collectible Pin - Victory" - "prefab" "attendance_pin" - "item_rarity" "mythical" - "item_name" "#CSGO_Collectible_Pin_Victory" - "item_description" "#CSGO_Collectible_Pin_Victory_Desc" - "image_inventory" "econ/status_icons/collectible_pin_victory" - "attributes" + "34278268" { - "pedestal display model" "models/inventory_items/collectible_pin_victory.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_nightstripe_light" } - } - "6007" - { - "name" "Collectible Pin - Militia" - "prefab" "attendance_pin" - "item_rarity" "mythical" - "item_name" "#CSGO_Collectible_Pin_Militia" - "item_description" "#CSGO_Collectible_Pin_Militia_Desc" - "image_inventory" "econ/status_icons/collectible_pin_militia" - "attributes" + "34278269" { - "pedestal display model" "models/inventory_items/collectible_pin_militia.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_nightstripe_medium" } - } - "6008" - { - "name" "Collectible Pin - Nuke" - "prefab" "attendance_pin" - "item_rarity" "rare" - "item_name" "#CSGO_Collectible_Pin_Nuke" - "item_description" "#CSGO_Collectible_Pin_Nuke_Desc" - "image_inventory" "econ/status_icons/collectible_pin_nuke" - "attributes" + "34278270" { - "pedestal display model" "models/inventory_items/collectible_pin_nuke.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_sp_nightstripe_heavy" } - } - "6009" - { - "name" "Collectible Pin - Train" - "prefab" "attendance_pin" - "item_rarity" "rare" - "item_name" "#CSGO_Collectible_Pin_Train" - "item_description" "#CSGO_Collectible_Pin_Train_Desc" - "image_inventory" "econ/status_icons/collectible_pin_train" - "attributes" + "34278736" { - "pedestal display model" "models/inventory_items/collectible_pin_train.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase1_widow_light" } - } - "6010" - { - "name" "Collectible Pin - Guardian" - "prefab" "attendance_pin" - "item_rarity" "rare" - "item_name" "#CSGO_Collectible_Pin_Guardian" - "item_description" "#CSGO_Collectible_Pin_Guardian_Desc" - "image_inventory" "econ/status_icons/collectible_pin_guardian" - "attributes" + "34278737" { - "pedestal display model" "models/inventory_items/collectible_pin_guardian.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase1_widow_medium" } - } - "6011" - { - "name" "Collectible Pin - Tactics" - "prefab" "attendance_pin" - "item_rarity" "rare" - "item_name" "#CSGO_Collectible_Pin_Tactics" - "item_description" "#CSGO_Collectible_Pin_Tactics_Desc" - "image_inventory" "econ/status_icons/collectible_pin_tactics" - "attributes" + "34278738" { - "pedestal display model" "models/inventory_items/collectible_pin_tactics.mdl" + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase1_widow_heavy" + } + "34278740" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase2_widow_light" + } + "34278741" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase2_widow_medium" + } + "34278742" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase2_widow_heavy" + } + "34278744" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase3_widow_light" + } + "34278745" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase3_widow_medium" + } + "34278746" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase3_widow_heavy" + } + "34278748" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase4_widow_light" + } + "34278749" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase4_widow_medium" + } + "34278750" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_doppler_phase4_widow_heavy" + } + "34278752" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_marble_fade_widow_light" + } + "34278753" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_marble_fade_widow_medium" + } + "34278754" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_am_marble_fade_widow_heavy" + } + "34278760" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_damascus_widow_light" + } + "34278761" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_damascus_widow_medium" + } + "34278762" + { + "icon_path" "econ/default_generated/weapon_knife_widowmaker_aq_damascus_widow_heavy" + } + "34406420" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_ddpat_light" + } + "34406421" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_ddpat_medium" + } + "34406422" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_ddpat_heavy" + } + "34406448" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_webs_light" + } + "34406449" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_webs_medium" + } + "34406450" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_webs_heavy" + } + "34406552" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aa_fade_light" + } + "34406553" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aa_fade_medium" + } + "34406554" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aa_fade_heavy" + } + "34406568" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_blued_light" + } + "34406569" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_blued_medium" + } + "34406570" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_blued_heavy" + } + "34406572" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_forced_light" + } + "34406573" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_forced_medium" + } + "34406574" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_forced_heavy" + } + "34406576" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_oiled_light" + } + "34406577" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_oiled_medium" + } + "34406578" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_aq_oiled_heavy" + } + "34406636" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_am_zebra_light" + } + "34406637" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_am_zebra_medium" + } + "34406638" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_am_zebra_heavy" + } + "34406688" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_mesh_tan_light" + } + "34406689" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_mesh_tan_medium" + } + "34406690" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_mesh_tan_heavy" + } + "34406708" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_forest_boreal_light" + } + "34406709" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_forest_boreal_medium" + } + "34406710" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_hy_forest_boreal_heavy" + } + "34406972" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_tape_urban_light" + } + "34406973" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_tape_urban_medium" + } + "34406974" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_tape_urban_heavy" + } + "34407100" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_dapple_light" + } + "34407101" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_dapple_medium" + } + "34407102" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_dapple_heavy" + } + "34409340" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_nightstripe_light" + } + "34409341" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_nightstripe_medium" + } + "34409342" + { + "icon_path" "econ/default_generated/weapon_knife_skeleton_sp_nightstripe_heavy" + } + "309697940" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_metalic_green_light" + } + "309697941" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_metalic_green_medium" + } + "309697942" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_metalic_green_heavy" + } + "309697944" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_poison_frog_black_yellow_light" + } + "309697945" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_poison_frog_black_yellow_medium" + } + "309697946" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_poison_frog_black_yellow_heavy" + } + "309697948" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_floral_light" + } + "309697949" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_floral_medium" + } + "309697950" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_floral_heavy" + } + "309697952" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_snakeskin_black_light" + } + "309697953" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_snakeskin_black_medium" + } + "309697954" + { + "icon_path" "econ/default_generated/studded_brokenfang_gloves_operation10_snakeskin_black_heavy" + } + "329489496" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_black_silver_light" + } + "329489497" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_black_silver_medium" + } + "329489498" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_black_silver_heavy" + } + "329489500" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_snakeskin_brass_light" + } + "329489501" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_snakeskin_brass_medium" + } + "329489502" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_snakeskin_brass_heavy" + } + "329489504" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_metallic_light" + } + "329489505" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_metallic_medium" + } + "329489506" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_metallic_heavy" + } + "329489628" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_guerrilla_light" + } + "329489629" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_guerrilla_medium" + } + "329489630" + { + "icon_path" "econ/default_generated/studded_bloodhound_gloves_bloodhound_guerrilla_heavy" + } + "329686152" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_light_blue_light" + } + "329686153" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_light_blue_medium" + } + "329686154" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_light_blue_heavy" + } + "329686156" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_military_light" + } + "329686157" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_military_medium" + } + "329686158" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_military_heavy" + } + "329686228" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_purple_light" + } + "329686229" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_purple_medium" + } + "329686230" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_purple_heavy" + } + "329686232" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_green_light" + } + "329686233" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_green_medium" + } + "329686234" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_green_heavy" + } + "329686260" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_poison_frog_blue_white_light" + } + "329686261" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_poison_frog_blue_white_medium" + } + "329686262" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_poison_frog_blue_white_heavy" + } + "329686264" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_poison_frog_red_green_light" + } + "329686265" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_poison_frog_red_green_medium" + } + "329686266" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_poison_frog_red_green_heavy" + } + "329686268" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_black_webbing_yellow_light" + } + "329686269" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_black_webbing_yellow_medium" + } + "329686270" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_black_webbing_yellow_heavy" + } + "329686272" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_blue_pink_light" + } + "329686273" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_blue_pink_medium" + } + "329686274" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_blue_pink_heavy" + } + "329686372" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_slingshot_light" + } + "329686373" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_slingshot_medium" + } + "329686374" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_slingshot_heavy" + } + "329686376" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_hunter_light" + } + "329686377" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_hunter_medium" + } + "329686378" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_hunter_heavy" + } + "329686380" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_houndstooth_red_light" + } + "329686381" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_houndstooth_red_medium" + } + "329686382" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_houndstooth_red_heavy" + } + "329686384" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_jaguar_light" + } + "329686385" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_jaguar_medium" + } + "329686386" + { + "icon_path" "econ/default_generated/sporty_gloves_sporty_jaguar_heavy" + } + "329751668" + { + "icon_path" "econ/default_generated/slick_gloves_slick_black_light" + } + "329751669" + { + "icon_path" "econ/default_generated/slick_gloves_slick_black_medium" + } + "329751670" + { + "icon_path" "econ/default_generated/slick_gloves_slick_black_heavy" + } + "329751676" + { + "icon_path" "econ/default_generated/slick_gloves_slick_military_light" + } + "329751677" + { + "icon_path" "econ/default_generated/slick_gloves_slick_military_medium" + } + "329751678" + { + "icon_path" "econ/default_generated/slick_gloves_slick_military_heavy" + } + "329751680" + { + "icon_path" "econ/default_generated/slick_gloves_slick_red_light" + } + "329751681" + { + "icon_path" "econ/default_generated/slick_gloves_slick_red_medium" + } + "329751682" + { + "icon_path" "econ/default_generated/slick_gloves_slick_red_heavy" + } + "329751776" + { + "icon_path" "econ/default_generated/slick_gloves_slick_snakeskin_yellow_light" + } + "329751777" + { + "icon_path" "econ/default_generated/slick_gloves_slick_snakeskin_yellow_medium" + } + "329751778" + { + "icon_path" "econ/default_generated/slick_gloves_slick_snakeskin_yellow_heavy" + } + "329751780" + { + "icon_path" "econ/default_generated/slick_gloves_slick_snakeskin_white_light" + } + "329751781" + { + "icon_path" "econ/default_generated/slick_gloves_slick_snakeskin_white_medium" + } + "329751782" + { + "icon_path" "econ/default_generated/slick_gloves_slick_snakeskin_white_heavy" + } + "329751784" + { + "icon_path" "econ/default_generated/slick_gloves_slick_plaid_purple_light" + } + "329751785" + { + "icon_path" "econ/default_generated/slick_gloves_slick_plaid_purple_medium" + } + "329751786" + { + "icon_path" "econ/default_generated/slick_gloves_slick_plaid_purple_heavy" + } + "329751788" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_black_orange_light" + } + "329751789" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_black_orange_medium" + } + "329751790" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_black_orange_heavy" + } + "329751792" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_green_grey_light" + } + "329751793" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_green_grey_medium" + } + "329751794" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_green_grey_heavy" + } + "329751892" + { + "icon_path" "econ/default_generated/slick_gloves_slick_rezan_light" + } + "329751893" + { + "icon_path" "econ/default_generated/slick_gloves_slick_rezan_medium" + } + "329751894" + { + "icon_path" "econ/default_generated/slick_gloves_slick_rezan_heavy" + } + "329751896" + { + "icon_path" "econ/default_generated/slick_gloves_slick_jaguar_white_light" + } + "329751897" + { + "icon_path" "econ/default_generated/slick_gloves_slick_jaguar_white_medium" + } + "329751898" + { + "icon_path" "econ/default_generated/slick_gloves_slick_jaguar_white_heavy" + } + "329751900" + { + "icon_path" "econ/default_generated/slick_gloves_slick_jaguar_yellow_light" + } + "329751901" + { + "icon_path" "econ/default_generated/slick_gloves_slick_jaguar_yellow_medium" + } + "329751902" + { + "icon_path" "econ/default_generated/slick_gloves_slick_jaguar_yellow_heavy" + } + "329751904" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_black_white_light" + } + "329751905" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_black_white_medium" + } + "329751906" + { + "icon_path" "econ/default_generated/slick_gloves_slick_stitched_black_white_heavy" + } + "329817188" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_light" + } + "329817189" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_medium" + } + "329817190" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_heavy" + } + "329817192" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_camo_grey_light" + } + "329817193" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_camo_grey_medium" + } + "329817194" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_camo_grey_heavy" + } + "329817236" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_red_slaughter_light" + } + "329817237" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_red_slaughter_medium" + } + "329817238" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_red_slaughter_heavy" + } + "329817296" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_fabric_orange_camo_light" + } + "329817297" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_fabric_orange_camo_medium" + } + "329817298" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_fabric_orange_camo_heavy" + } + "329817364" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_blue_skulls_light" + } + "329817365" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_blue_skulls_medium" + } + "329817366" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_blue_skulls_heavy" + } + "329817368" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_geometric_blue_light" + } + "329817369" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_geometric_blue_medium" + } + "329817370" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_geometric_blue_heavy" + } + "329817372" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_ducttape_light" + } + "329817373" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_ducttape_medium" + } + "329817374" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_ducttape_heavy" + } + "329817376" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_green_camo_light" + } + "329817377" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_green_camo_medium" + } + "329817378" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_green_camo_heavy" + } + "329817476" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_fabric_houndstooth_orange_light" + } + "329817477" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_fabric_houndstooth_orange_medium" + } + "329817478" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_fabric_houndstooth_orange_heavy" + } + "329817480" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_giraffe_light" + } + "329817481" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_giraffe_medium" + } + "329817482" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_fabric_giraffe_heavy" + } + "329817484" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_snakeskin_orange_light" + } + "329817485" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_snakeskin_orange_medium" + } + "329817486" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_snakeskin_orange_heavy" + } + "329817488" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_caution_light" + } + "329817489" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_caution_medium" + } + "329817490" + { + "icon_path" "econ/default_generated/leather_handwraps_handwrap_leathery_caution_heavy" + } + "329882784" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_basic_black_light" + } + "329882785" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_basic_black_medium" + } + "329882786" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_basic_black_heavy" + } + "329882792" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_mint_triangle_light" + } + "329882793" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_mint_triangle_medium" + } + "329882794" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_mint_triangle_heavy" + } + "329882796" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_mono_boom_light" + } + "329882797" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_mono_boom_medium" + } + "329882798" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_mono_boom_heavy" + } + "329882800" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_triangle_blue_light" + } + "329882801" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_triangle_blue_medium" + } + "329882802" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_triangle_blue_heavy" + } + "329882884" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_choco_boom_light" + } + "329882885" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_choco_boom_medium" + } + "329882886" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_choco_boom_heavy" + } + "329882888" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_basic_green_orange_light" + } + "329882889" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_basic_green_orange_medium" + } + "329882890" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_basic_green_orange_heavy" + } + "329882892" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_yellow_camo_light" + } + "329882893" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_yellow_camo_medium" + } + "329882894" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_yellow_camo_heavy" + } + "329882896" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_trigrid_blue_light" + } + "329882897" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_trigrid_blue_medium" + } + "329882898" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_trigrid_blue_heavy" + } + "329882996" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_checker_flag_blue_green_light" + } + "329882997" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_checker_flag_blue_green_medium" + } + "329882998" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_checker_flag_blue_green_heavy" + } + "329883000" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_smoke_light" + } + "329883001" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_smoke_medium" + } + "329883002" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_smoke_heavy" + } + "329883004" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_carbonfiber_red_light" + } + "329883005" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_carbonfiber_red_medium" + } + "329883006" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_carbonfiber_red_heavy" + } + "329883008" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_commando_ksk_light" + } + "329883009" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_commando_ksk_medium" + } + "329883010" + { + "icon_path" "econ/default_generated/motorcycle_gloves_motorcycle_commando_ksk_heavy" + } + "329948344" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_ddpat_green_camo_light" + } + "329948345" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_ddpat_green_camo_medium" + } + "329948346" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_ddpat_green_camo_heavy" + } + "329948356" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_kimono_diamonds_red_light" + } + "329948357" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_kimono_diamonds_red_medium" + } + "329948358" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_kimono_diamonds_red_heavy" + } + "329948360" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_emerald_web_light" + } + "329948361" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_emerald_web_medium" + } + "329948362" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_emerald_web_heavy" + } + "329948364" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_orange_white_light" + } + "329948365" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_orange_white_medium" + } + "329948366" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_orange_white_heavy" + } + "329948468" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_webs_red_light" + } + "329948469" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_webs_red_medium" + } + "329948470" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_webs_red_heavy" + } + "329948472" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_forest_brown_light" + } + "329948473" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_forest_brown_medium" + } + "329948474" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_forest_brown_heavy" + } + "329948476" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_fade_light" + } + "329948477" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_fade_medium" + } + "329948478" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_fade_heavy" + } + "329948480" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_winterhex_light" + } + "329948481" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_winterhex_medium" + } + "329948482" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_winterhex_heavy" + } + "329948484" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_marble_fade_light" + } + "329948485" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_marble_fade_medium" + } + "329948486" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_marble_fade_heavy" + } + "329948488" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_ricksaw_camo_light" + } + "329948489" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_ricksaw_camo_medium" + } + "329948490" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_ricksaw_camo_heavy" + } + "329948492" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_tiger_orange_light" + } + "329948493" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_tiger_orange_medium" + } + "329948494" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_tiger_orange_heavy" + } + "329948496" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_fbi_light" + } + "329948497" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_fbi_medium" + } + "329948498" + { + "icon_path" "econ/default_generated/specialist_gloves_specialist_fbi_heavy" + } + "330013988" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_black_green_light" + } + "330013989" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_black_green_medium" + } + "330013990" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_black_green_heavy" + } + "330013992" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_green_leather_mesh_brass_light" + } + "330013993" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_green_leather_mesh_brass_medium" + } + "330013994" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_green_leather_mesh_brass_heavy" + } + "330013996" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_snakeskin_brass_light" + } + "330013997" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_snakeskin_brass_medium" + } + "330013998" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_snakeskin_brass_heavy" + } + "330014000" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_case_hardened_light" + } + "330014001" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_case_hardened_medium" + } + "330014002" + { + "icon_path" "econ/default_generated/studded_hydra_gloves_bloodhound_hydra_case_hardened_heavy" + } + } + "casket_icons" + { + "1" + { + "icon_path" "econ/tools/casket_rio2022_0" + } + "2" + { + "icon_path" "econ/tools/casket_rio2022_1" + } + } + } + "prefabs" + { + "quest_prefab" + { + "name" "quest_item" + "item_class" "collectible_item" + "item_type_name" "#CSGO_Type_Quest" + "item_name" "#CSGO_Type_Quest" + "item_description" "#CSGO_Quest_Desc" + "icon_default_image" "materials/icons/inventory_icon_quest.vtf" + "image_inventory" "econ/tools/mission" + "item_quality" "unique" + "item_rarity" "common" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "ui/item_paper_pickup.wav" + "drop_sound" "ui/item_paper_pickup.wav" + "capabilities" + { + "can_delete" "1" + } + } + "musickit_prefab" + { + "item_class" "collectible_item" + "item_type_name" "#CSGO_Type_MusicKit" + "item_name" "#CSGO_Type_MusicKit" + "item_description" "#CSGO_MusicKit_Desc" + "item_slot" "musickit" + "item_sub_position" "musickit" + "inv_group_equipment" "musickit" + "inv_display_slot" "musickit" + "item_rarity" "rare" + "item_quality" "unique" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "ui/item_paper_pickup.wav" + "drop_sound" "ui/item_paper_pickup.wav" + "used_by_classes" + { + "noteam" "1" + } + "capabilities" + { + "can_stattrack_swap" "1" + } + } + "bundle_base" + { + "item_class" "bundle" + "item_type_name" "#CSGO_Type_StoreBundle" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "item_quality" "unique" + "min_ilevel" "50" + "max_ilevel" "50" + "mouse_pressed_sound" "ui/item_paper_pickup.wav" + "drop_sound" "ui/item_paper_pickup.wav" + } + "weapon_case_base" + { + "item_class" "supply_crate" + "item_type_name" "#CSGO_Type_WeaponCase" + "item_name" "#CSGO_WeaponCase_Standard" + "image_inventory" "econ/weapon_cases/weapon_case_generic" + "item_quality" "unique" + "item_rarity" "common" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "physics/plastic/plastic_box_impact_soft1.wav" + "drop_sound" "physics/plastic/plastic_box_impact_hard1.wav" + "tool" + { + "type" "supply_crate" + "usage_capabilities" + { + "usable_out_of_game" "1" + } + } + "capabilities" + { + "decodable" "1" + } + "image_unusual_item" "econ/weapon_cases/default_rare_item" + "loot_list_rare_item_name" "#Exceedingly_Rare_Item" + "loot_list_rare_item_footer" "#Econ_Revolving_Loot_List_Rare_Item" + } + "weapon_case_souvenirpkg" + { + "prefab" "weapon_case_base" + "inv_container_and_tools" "souvenir_case" + } + "weapon_case" + { + "prefab" "weapon_case_base" + "inv_container_and_tools" "weapon_case" + "associated_item" "1203" + "capabilities" + { + "can_delete" "1" + } + } + "sticker_capsule" + { + "prefab" "weapon_case_base" + "inv_container_and_tools" "sticker_capsule" + } + "patch_capsule" + { + "prefab" "weapon_case_base" + "inv_container_and_tools" "patch_capsule" + } + "graffiti_box" + { + "prefab" "weapon_case_base" + "inv_container_and_tools" "graffiti_box" + } + "csgo_tool" + { + "item_class" "tool" + "craft_class" "tool" + "craft_material_type" "tool" + "item_type" "type_tool" + "item_type_name" "#CSGO_Type_Tool" + "item_quality" "unique" + "item_rarity" "common" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "weapons/c4/c4_disarm.wav" + "drop_sound" "weapons/c4/c4_disarm.wav" + } + "season_pass" + { + "prefab" "csgo_tool" + "item_type_name" "#CSGO_Type_Ticket" + "inv_container_and_tools" "tool" + } + "fan_token" + { + "prefab" "csgo_tool" + "item_type_name" "#CSGO_Type_Ticket" + "inv_container_and_tools" "tool" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "fantoken" + "use_string" "#ConsumeItem" + } + } + "fan_shield" + { + "prefab" "csgo_tool" + "item_class" "collectible_item" + "craft_class" "collectable" + "item_type" "fan_shield" + "item_type_name" "#CSGO_Type_Collectible" + "item_quality" "unique" + "item_rarity" "ancient" + "min_ilevel" "1" + "max_ilevel" "1" + "item_slot" "flair0" + "item_sub_position" "flair0" + "inv_display_slot" "flair0" + "used_by_classes" + { + "noteam" "1" + } + "attributes" + { + "cannot trade" "1" + } + "taxonomy" + { + "wall_display" "1" + } + } + "season_tiers" + { + "prefab" "csgo_tool" + "item_type_name" "#CSGO_Type_Ticket" + "inv_container_and_tools" "tool" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "seasontiers" + "use_string" "#ConsumeItem" + } + "attributes" + { + "cannot trade" "1" + } + } + "weapon_case_key" + { + "prefab" "csgo_tool" + "item_name" "#CSGO_Tool_WeaponCase_Key" + "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" + "item_description" "#CSGO_Tool_WeaponCase_Key_Desc" + "image_inventory" "econ/tools/weapon_case_key" + "mouse_pressed_sound" "doors/door_lock_1.wav" + "drop_sound" "doors/handle_pushbar_locked1.wav" + "tool" + { + "type" "decoder_ring" + "use_string" "#UnlockUse" + "usage_capabilities" + { + "decodable" "1" + "usable_out_of_game" "1" + } + } + "inv_container_and_tools" "tool" + } + "recipe" + { + "prefab" "csgo_tool" + "item_type_name" "#CSGO_Type_recipe" + "image_inventory" "econ/tools/crafting_contract" + "tool" + { + "type" "recipe" + "usage_capabilities" + { + "recipe" "1" + "usable_out_of_game" "1" + } + } + } + "collectible" + { + "item_class" "collectible_item" + "craft_class" "collectable" + "craft_material_type" "tool" + "item_type_name" "#CSGO_Type_Collectible" + "item_quality" "unique" + "item_rarity" "ancient" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "physics/meta/chain_impact_hard1.wav" + "drop_sound" "physics/meta/chain_impact_hard1.wav" + "item_slot" "flair0" + "item_sub_position" "flair0" + "inv_display_slot" "flair0" + "used_by_classes" + { + "noteam" "1" + } + } + "collectible_untradable" + { + "prefab" "collectible" + "attributes" + { + "cannot trade" "1" + } + } + "collectible_untradable_coin" + { + "prefab" "collectible_untradable" + "taxonomy" + { + "wall_display" "1" + } + } + "majors_trophy" + { + "prefab" "collectible_untradable" + "taxonomy" + { + "table_display" "1" + } + } + "pickem_trophy" + { + "prefab" "collectible_untradable" + "taxonomy" + { + "table_display" "1" + } + } + "operation_coin" + { + "prefab" "collectible_untradable" + "item_type" "operation_coin" + "taxonomy" + { + "wall_display" "1" + } + } + "prestige_coin" + { + "prefab" "collectible_untradable" + "item_type" "prestige_coin" + "taxonomy" + { + "wall_display" "1" + } + } + "attendance_pin" + { + "prefab" "collectible_untradable" + "item_quality" "genuine" + "taxonomy" + { + "wall_display" "1" + } + } + "commodity_pin" + { + "prefab" "collectible" + "taxonomy" + { + "wall_display" "1" + } + } + "season1_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "0" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + "force_gc_to_generate" "1" + } + } + } + "season2_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "1" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + "force_gc_to_generate" "1" + } + "match wins" + { + "attribute_class" "match_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive minutes played" + { + "attribute_class" "competitive_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive wins" + { + "attribute_class" "competitive_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive kills" + { + "attribute_class" "competitive_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 3k" + { + "attribute_class" "competitive_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 4k" + { + "attribute_class" "competitive_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 5k" + { + "attribute_class" "competitive_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive hsp" + { + "attribute_class" "competitive_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive mvps" + { + "attribute_class" "competitive_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + "season3_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "2" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + "force_gc_to_generate" "1" + } + "match wins" + { + "attribute_class" "match_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive minutes played" + { + "attribute_class" "competitive_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive wins" + { + "attribute_class" "competitive_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive kills" + { + "attribute_class" "competitive_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 3k" + { + "attribute_class" "competitive_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 4k" + { + "attribute_class" "competitive_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 5k" + { + "attribute_class" "competitive_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive hsp" + { + "attribute_class" "competitive_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive mvps" + { + "attribute_class" "competitive_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + "season4_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "3" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + "operation minutes played" + { + "attribute_class" "operation_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "operation wins" + { + "attribute_class" "operation_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "operation kills" + { + "attribute_class" "operation_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 3k" + { + "attribute_class" "operation_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 4k" + { + "attribute_class" "operation_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 5k" + { + "attribute_class" "operation_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation hsp" + { + "attribute_class" "operation_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "operation mvps" + { + "attribute_class" "operation_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive minutes played" + { + "attribute_class" "competitive_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive wins" + { + "attribute_class" "competitive_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive kills" + { + "attribute_class" "competitive_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 3k" + { + "attribute_class" "competitive_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 4k" + { + "attribute_class" "competitive_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 5k" + { + "attribute_class" "competitive_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive hsp" + { + "attribute_class" "competitive_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive mvps" + { + "attribute_class" "competitive_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "quests complete" + { + "attribute_class" "quests_complete" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + "season5_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "4" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + "operation minutes played" + { + "attribute_class" "operation_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "operation wins" + { + "attribute_class" "operation_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "operation kills" + { + "attribute_class" "operation_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 3k" + { + "attribute_class" "operation_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 4k" + { + "attribute_class" "operation_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 5k" + { + "attribute_class" "operation_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation hsp" + { + "attribute_class" "operation_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "operation mvps" + { + "attribute_class" "operation_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive minutes played" + { + "attribute_class" "competitive_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive wins" + { + "attribute_class" "competitive_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive kills" + { + "attribute_class" "competitive_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 3k" + { + "attribute_class" "competitive_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 4k" + { + "attribute_class" "competitive_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 5k" + { + "attribute_class" "competitive_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive hsp" + { + "attribute_class" "competitive_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive mvps" + { + "attribute_class" "competitive_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "quests complete" + { + "attribute_class" "quests_complete" + "value" "0" + "force_gc_to_generate" "1" + } + "operation points" + { + "attribute_class" "operation_points" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + "season6_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "5" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + "operation minutes played" + { + "attribute_class" "operation_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "operation wins" + { + "attribute_class" "operation_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "operation kills" + { + "attribute_class" "operation_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 3k" + { + "attribute_class" "operation_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 4k" + { + "attribute_class" "operation_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 5k" + { + "attribute_class" "operation_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation hsp" + { + "attribute_class" "operation_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "operation mvps" + { + "attribute_class" "operation_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive minutes played" + { + "attribute_class" "competitive_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive wins" + { + "attribute_class" "competitive_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive kills" + { + "attribute_class" "competitive_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 3k" + { + "attribute_class" "competitive_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 4k" + { + "attribute_class" "competitive_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 5k" + { + "attribute_class" "competitive_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive hsp" + { + "attribute_class" "competitive_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive mvps" + { + "attribute_class" "competitive_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "quests complete" + { + "attribute_class" "quests_complete" + "value" "0" + "force_gc_to_generate" "1" + } + "operation points" + { + "attribute_class" "operation_points" + "value" "0" + "force_gc_to_generate" "1" + } + "quest id" + { + "attribute_class" "quest_id" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 5 completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 5 last completed quest" + { + "attribute_class" "campaign_last_completed_quest" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 6 completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 6 last completed quest" + { + "attribute_class" "campaign_last_completed_quest" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + "season7_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "6" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + "operation minutes played" + { + "attribute_class" "operation_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "operation wins" + { + "attribute_class" "operation_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "operation kills" + { + "attribute_class" "operation_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 3k" + { + "attribute_class" "operation_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 4k" + { + "attribute_class" "operation_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 5k" + { + "attribute_class" "operation_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation hsp" + { + "attribute_class" "operation_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "operation mvps" + { + "attribute_class" "operation_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive minutes played" + { + "attribute_class" "competitive_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive wins" + { + "attribute_class" "competitive_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive kills" + { + "attribute_class" "competitive_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 3k" + { + "attribute_class" "competitive_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 4k" + { + "attribute_class" "competitive_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 5k" + { + "attribute_class" "competitive_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive hsp" + { + "attribute_class" "competitive_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive mvps" + { + "attribute_class" "competitive_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "quests complete" + { + "attribute_class" "quests_complete" + "value" "0" + "force_gc_to_generate" "1" + } + "operation points" + { + "attribute_class" "operation_points" + "value" "0" + "force_gc_to_generate" "1" + } + "quest id" + { + "attribute_class" "quest_id" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 7 completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 7 last completed quest" + { + "attribute_class" "campaign_last_completed_quest" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 8 completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 8 last completed quest" + { + "attribute_class" "campaign_last_completed_quest" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + "season8_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "7" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + "operation minutes played" + { + "attribute_class" "operation_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "operation wins" + { + "attribute_class" "operation_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "operation kills" + { + "attribute_class" "operation_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 3k" + { + "attribute_class" "operation_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 4k" + { + "attribute_class" "operation_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation 5k" + { + "attribute_class" "operation_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "operation hsp" + { + "attribute_class" "operation_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "operation mvps" + { + "attribute_class" "operation_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive minutes played" + { + "attribute_class" "competitive_minutes_played" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive wins" + { + "attribute_class" "competitive_wins" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive kills" + { + "attribute_class" "competitive_kills" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 3k" + { + "attribute_class" "competitive_3k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 4k" + { + "attribute_class" "competitive_4k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive 5k" + { + "attribute_class" "competitive_5k" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive hsp" + { + "attribute_class" "competitive_hsp" + "value" "0" + "force_gc_to_generate" "1" + } + "competitive mvps" + { + "attribute_class" "competitive_mvps" + "value" "0" + "force_gc_to_generate" "1" + } + "quests complete" + { + "attribute_class" "quests_complete" + "value" "0" + "force_gc_to_generate" "1" + } + "operation points" + { + "attribute_class" "operation_points" + "value" "0" + "force_gc_to_generate" "1" + } + "operation xp awarded 0" + { + "attribute_class" "operation_xp_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "operation xp awarded 1" + { + "attribute_class" "operation_xp_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "operation drops awarded 0" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "operation drops awarded 1" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 9 completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "0" + "force_gc_to_generate" "1" + } + "campaign 9 last completed quest" + { + "attribute_class" "campaign_last_completed_quest" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + "season9_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "8" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + } + } + "season10_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "9" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + } + } + "season11_coin" + { + "prefab" "operation_coin" + "attributes" + { + "season access" "10" + "minutes played" + { + "attribute_class" "minutes_played" + "value" "1" + } + } + } + "map_token" + { + "prefab" "collectible" + "item_class" "map_token" + "armory_desc" "maptoken" + "taxonomy" + { + "wall_display" "1" + } + } + "steam_badge" + { + "prefab" "collectible_untradable" + } + "flair_pin" + { + "prefab" "collectible" + "taxonomy" + { + "wall_display" "1" + } + } + "statted_item_base" + { + "attributes" + { + "addon scale" "1.000000" + "allow hand flipping" "1" + "armor ratio" "1" + "attack movespeed factor" "1.000000" + "bot audible range" "2000.000000" + "bullets" "1" + "cannot shoot underwater" "0" + "crosshair delta distance" "3" + "crosshair min distance" "4" + "cycletime" "0.150000" + "cycletime alt" "0.300000" + "damage" "42" + "headshot multiplier" "4" + "flinch velocity modifier large" "1.000000" + "flinch velocity modifier small" "1.000000" + "has burst mode" "0" + "has silencer" "0" + "heat per shot" "0.250000" + "hide view model zoomed" "0" + "idle interval" "20" + "inaccuracy crouch" "0.000000" + "inaccuracy crouch alt" "0.000000" + "inaccuracy fire" "0.000000" + "inaccuracy fire alt" "0.000000" + "inaccuracy jump" "0.000000" + "inaccuracy jump alt" "0.000000" + "inaccuracy jump initial" "0.000000" + "inaccuracy jump apex" "0.000000" + "inaccuracy ladder" "0.000000" + "inaccuracy ladder alt" "0.000000" + "inaccuracy land" "0.000000" + "inaccuracy land alt" "0.000000" + "inaccuracy move" "0.000000" + "inaccuracy move alt" "0.000000" + "inaccuracy reload" "0.000000" + "inaccuracy stand" "0.000000" + "inaccuracy stand alt" "0.000000" + "inaccuracy pitch shift" "0.000000" + "inaccuracy alt sound threshold" "0.000000" + "is full auto" "0" + "is melee weapon" "0" + "is revolver" "0" + "itemflag select on empty" "0" + "itemflag no auto reload" "0" + "itemflag no auto switch empty" "0" + "itemflag limit in world" "0" + "itemflag exhaustible" "0" + "itemflag do hit location dmg" "0" + "itemflag no ammo pickups" "0" + "itemflag no item pickup" "0" + "kill award" "300" + "max player speed" "1" + "max player speed alt" "1" + "model right handed" "1" + "penetration" "1.000000" + "primary clip size" "0" + "primary default clip size" "-1" + "primary reserve ammo max" "0" + "range" "8192.000000" + "range modifier" "0.980000" + "recoil angle" "0.000000" + "recoil angle alt" "0.000000" + "recoil angle variance" "0.000000" + "recoil angle variance alt" "0.000000" + "recoil magnitude" "0.000000" + "recoil magnitude alt" "0.000000" + "recoil magnitude variance" "0.000000" + "recoil magnitude variance alt" "0.000000" + "spread seed" "0" + "recovery time crouch" "1.000000" + "recovery time crouch final" "1.000000" + "recovery time stand" "1.000000" + "recovery time stand final" "1.000000" + "recovery transition end bullet" "0" + "recovery transition start bullet" "0" + "rumble effect" "-1" + "secondary clip size" "0" + "secondary default clip size" "-1" + "secondary reserve ammo max" "0" + "spread" "0.000000" + "spread alt" "0.000000" + "time to idle" "2.000000" + "tracer frequency" "0" + "unzoom after shot" "0" + "weapon weight" "0" + "zoom fov 1" "90" + "zoom fov 2" "90" + "zoom levels" "0" + "zoom time 0" "0" + "zoom time 1" "0" + "zoom time 2" "0" + } + } + "weapon_base" + { + "prefab" "statted_item_base" + "craft_class" "weapon" + "craft_material_type" "weapon" + "item_type_name" "#CSGO_Type_Weapon" + "item_quality" "unique" + "item_rarity" "common" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "weapons/m4a1/m4a1_clipout.wav" + "drop_sound" "weapons/m4a1/m4a1_clipint.wav" + "inventory_image_data" + { + "camera_angles" "2.0 -130.0 0.0" + "camera_offset" "0.0 1.0 -2.0" + "camera_fov" "35.000000" + "override_default_light" "1" + "spot_light_key" + { + "position" "-120 120 180" + "color" "2 2.1 2.3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "10.0 -90.0 -60.0" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + } + "attributes" + { + "recovery time crouch final" "-1.000000" + "recovery time stand final" "-1.000000" + } + "taxonomy" + { + "weapon" "1" + "self_damage_on_miss__inflicts_damage" "1" + } + } + "equipment" + { + "prefab" "weapon_base" + "item_type_name" "#CSGO_Type_Equipment" + "item_slot" "equipment" + "visuals" + { + "weapon_type" "Equipment" + } + "taxonomy" + { + "equipment" "1" + "weapon" "0" + } + } + "grenade" + { + "prefab" "weapon_base" + "item_type_name" "#CSGO_Type_Grenade" + "item_slot" "grenade" + "mouse_pressed_sound" "weapons/hegrenade/he_draw.wav" + "drop_sound" "weapons/hegrenade/pinpull.wav" + "item_gear_slot" "grenade" + "item_gear_slot_position" "-1" + "attributes" + { + "radio use sound" "Radio.FireInTheHole" + "radio use subtitle" "#SFUI_TitlesTXT_Fire_in_the_hole" + } + "visuals" + { + "weapon_type" "Grenade" + } + "inventory_image_data" + { + "camera_angles" "0.0 -130.0 -10.0" + "camera_offset" "0.0 0.0 -1.5" + } + "taxonomy" + { + "grenade" "1" + } + } + "explosive_grenade" + { + "prefab" "grenade" + "item_class" "weapon_hegrenade" + "item_name" "#SFUI_WPNHUD_HE_Grenade" + "attributes" + { + "max player speed" "245" + "in game price" "300" + "crosshair min distance" "8" + "armor ratio" "1.200000" + "damage" "99" + "penetration" "1" + "range" "350" + "range modifier" "0.990000" + "flinch velocity modifier large" "0.300000" + "flinch velocity modifier small" "0.100000" + "throw velocity" "750.000000" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "2" + "itemflag exhaustible" "1" + "max player speed alt" "245" + "recoil seed" "52132" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_HEGRENADE" + "sound_single_shot" "HEGrenade.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "grenade_he" "1" + } + } + "c4" + { + "prefab" "weapon_base" + "item_type_name" "#CSGO_Type_C4" + "item_class" "weapon_c4" + "item_slot" "c4" + "inv_group_equipment" "melee" + "item_name" "#SFUI_WPNHUD_C4" + "item_description" "#CSGO_Item_Desc_C4" + "icon_default_image" "materials/icons/inventory_icon_weapon_c4.vtf" + "model_player" "models/weapons/v_ied.mdl" + "model_world" "models/weapons/w_ied.mdl" + "model_dropped" "models/weapons/w_ied_dropped.mdl" + "mouse_pressed_sound" "weapons/c4/c4_draw.wav" + "drop_sound" "weapons/c4/c4_plant.wav" + "item_gear_slot" "item" + "item_gear_slot_position" "0" + "capabilities" + { + "nameable" "1" + } + "visuals" + { + "weapon_type" "C4" + "player_animation_extension" "c4" + "sound_single_shot" "c4.plant" + "sound_empty" "c4.click" + "sound_burst" "c4.explode" + "sound_special1" "c4.disarmstart" + "sound_special2" "c4.disarmfinish" + "sound_special3" "C4.ExplodeWarning" + "sound_nearlyempty" "Default.nearlyempty" + } + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "max player speed" "250" + "in game price" "0" + "armor ratio" "1.000000" + "crosshair min distance" "6" + "model right handed" "0" + "allow hand flipping" "0" + "penetration" "1" + "damage" "50" + "range" "4096" + "range modifier" "0.990000" + "primary default clip size" "1" + "secondary default clip size" "1" + "max player speed alt" "250" + "recoil seed" "39693" + } + } + "melee" + { + "prefab" "weapon_base" + "item_class" "weapon_knife" + "item_type_name" "#CSGO_Type_Knife" + "item_slot" "melee" + "item_sub_position" "melee" + "inv_group_equipment" "melee" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife.vtf" + "mouse_pressed_sound" "weapons/knife/knife_deploy1.wav" + "drop_sound" "weapons/knife/knife_hit1.wav" + "item_name" "#SFUI_WPNHUD_Knife" + "model_player" "models/weapons/v_knife_default_ct.mdl" + "model_world" "models/weapons/w_knife_default_ct.mdl" + "item_gear_slot" "melee" + "item_gear_slot_position" "0" + "capabilities" + { + "nameable" "1" + "can_stattrack_swap" "1" + } + "attributes" + { + "stattrak model" "models/weapons/stattrack_cut.mdl" + "flinch velocity modifier large" "0.300000" + "flinch velocity modifier small" "0.300000" + "max player speed" "250" + "in game price" "0" + "kill award" "1500" + "armor ratio" "1.700000" + "crosshair min distance" "7" + "penetration" "1" + "damage" "50" + "range" "4096" + "range modifier" "0.990000" + "primary default clip size" "1" + "secondary default clip size" "1" + "is melee weapon" "1" + "rumble effect" "9" + "max player speed alt" "250" + "recoil seed" "26701" + } + "inventory_image_data" + { + "camera_angles" "30.0 -90.0 25.0" + "camera_offset" "7.0 2.0 -1.5" + "spot_light_key" + { + "position" "-60 90 60" + "color" "1.5 1.55 1.6" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "0 -30 -120" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "15 7 4" + "color" "0.5 0.5 0.5" + } + } + "visuals" + { + "weapon_type" "Knife" + "player_animation_extension" "knife" + "sound_reload" "Default.Reload" + "sound_empty" "Default.ClipEmpty_Rifle" + "sound_single_shot" "Weapon_DEagle.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "melee" "1" + } + } + "melee_unusual" + { + "prefab" "melee" + "capabilities" + { + "paintable" "1" + } + "item_rarity" "ancient" + } + "secondary" + { + "prefab" "weapon_base" + "capabilities" + { + "nameable" "1" + "paintable" "1" + "can_sticker" "1" + "can_stattrack_swap" "1" + } + "item_type_name" "#CSGO_Type_Pistol" + "item_slot" "secondary" + "inv_group_equipment" "secondary" + "mouse_pressed_sound" "weapons/DEagle/de_clipout.wav" + "drop_sound" "weapons/DEagle/de_clipin.wav" + "item_gear_slot" "secondary" + "item_gear_slot_position" "0" + "attributes" + { + "stattrak model" "models/weapons/stattrack.mdl" + } + "visuals" + { + "weapon_type" "Pistol" + } + "attributes" + { + "flinch velocity modifier large" "0.560000" + "flinch velocity modifier small" "0.050000" + "recovery transition start bullet" "3" + "recovery transition end bullet" "10" + "inaccuracy jump initial" "250.000000" + "inaccuracy jump" "500.000000" + "inaccuracy jump alt" "500.000000" + } + "taxonomy" + { + "secondary" "1" + "pistol" "1" + } + } + "primary" + { + "prefab" "weapon_base" + "item_gear_slot" "primary" + "item_gear_slot_position" "0" + "capabilities" + { + "nameable" "1" + "paintable" "1" + "can_sticker" "1" + "can_stattrack_swap" "1" + } + "attributes" + { + "stattrak model" "models/weapons/stattrack.mdl" + "recovery transition start bullet" "2" + "recovery transition end bullet" "5" + "inaccuracy jump initial" "250.000000" + "inaccuracy jump" "500.000000" + "inaccuracy jump alt" "500.000000" + } + "taxonomy" + { + "primary" "1" + } + } + "smg" + { + "prefab" "primary" + "item_type_name" "#CSGO_Type_SMG" + "item_slot" "smg" + "inv_group_equipment" "smg" + "mouse_pressed_sound" "weapons/p90/p90_clipout.wav" + "drop_sound" "weapons/p90/p90_clipin.wav" + "visuals" + { + "weapon_type" "SubMachinegun" + } + "attributes" + { + "flinch velocity modifier large" "0.530000" + "flinch velocity modifier small" "0.300000" + } + "taxonomy" + { + "smg" "1" + } + } + "rifle" + { + "prefab" "primary" + "item_type_name" "#CSGO_Type_Rifle" + "item_slot" "rifle" + "inv_group_equipment" "rifle" + "mouse_pressed_sound" "weapons/m4a1/m4a1_clipout.wav" + "drop_sound" "weapons/m4a1/m4a1_clipin.wav" + "visuals" + { + "weapon_type" "Rifle" + } + "attributes" + { + "flinch velocity modifier large" "0.440000" + "flinch velocity modifier small" "0.100000" + } + "taxonomy" + { + "rifle" "1" + } + } + "sniper_rifle" + { + "prefab" "primary" + "item_type_name" "#CSGO_Type_SniperRifle" + "item_slot" "rifle" + "inv_group_equipment" "rifle" + "mouse_pressed_sound" "weapons/awp/awp_clipout.wav" + "drop_sound" "weapons/awp/awp_clipin.wav" + "visuals" + { + "weapon_type" "SniperRifle" + } + "attributes" + { + "flinch velocity modifier large" "0.390000" + "flinch velocity modifier small" "0.500000" + } + "taxonomy" + { + "sniper_rifle" "1" + } + } + "shotgun" + { + "prefab" "primary" + "item_type_name" "#CSGO_Type_Shotgun" + "item_slot" "heavy" + "inv_group_equipment" "heavy" + "mouse_pressed_sound" "weapons/sawedoff/sawedoff_draw.wav" + "drop_sound" "weapons/sawedoff/sawedoff_pump.wav" + "visuals" + { + "weapon_type" "Shotgun" + } + "attributes" + { + "flinch velocity modifier large" "0.350000" + "flinch velocity modifier small" "0.100000" + } + "taxonomy" + { + "reloads_per_shell" "1" + "shotgun" "1" + } + } + "machinegun" + { + "prefab" "primary" + "item_type_name" "#CSGO_Type_Machinegun" + "item_slot" "heavy" + "inv_group_equipment" "heavy" + "mouse_pressed_sound" "weapons/m249/m249_boxout.wav" + "drop_sound" "weapons/m249/m249_boxin.wav" + "visuals" + { + "weapon_type" "Machinegun" + } + "attributes" + { + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.220000" + } + "taxonomy" + { + "machinegun" "1" + } + } + "weapon_deagle_prefab" + { + "prefab" "secondary" + "item_class" "weapon_deagle" + "item_name" "#SFUI_WPNHUD_DesertEagle" + "item_description" "#CSGO_Item_Desc_DesertEagle" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_deagle" + "model_player" "models/weapons/v_pist_deagle.mdl" + "model_world" "models/weapons/w_pist_deagle.mdl" + "model_dropped" "models/weapons/w_pist_deagle_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_deagle.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_a.mdl" + "worldmodel_decal_pos" "2.53443 -3.22857 -1.90564" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_b.mdl" + "worldmodel_decal_pos" "2.53443 -0.989865 -1.12229" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_c.mdl" + "worldmodel_decal_pos" "2.53443 -0.955564 1.77999" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_deagle_decal_d.mdl" + "worldmodel_decal_pos" "2.53443 -0.929928 4.8028" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_pist_deagle_mag.mdl" + "heat per shot" "0.300000" + "addon scale" "1.000000" + "tracer frequency" "1" + "primary clip size" "7" + "primary default clip size" "-1" + "secondary default clip size" "-1" + "is full auto" "0" + "max player speed" "230" + "in game price" "700" + "armor ratio" "1.864000" + "crosshair min distance" "8" + "crosshair delta distance" "3" + "cycletime" "0.225000" + "model right handed" "1" + "penetration" "2" + "damage" "53" + "headshot multiplier" "3.900000" + "range" "4096" + "range modifier" "0.850000" + "bullets" "1" + "cycletime" "0.225000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "2.000000" + "inaccuracy crouch" "2.180000" + "inaccuracy stand" "4.200000" + "inaccuracy jump initial" "548.820007" + "inaccuracy jump apex" "331.549988" + "inaccuracy jump" "40.549999" + "inaccuracy land" "0.043000" + "inaccuracy ladder" "152.000000" + "inaccuracy fire" "72.230003" + "inaccuracy move" "48.099998" + "recovery time crouch" "0.449927" + "recovery time stand" "0.811200" + "recoil angle" "0.000000" + "recoil angle variance" "60" + "recoil magnitude" "48.200001" + "recoil magnitude variance" "18" + "recoil seed" "1454" + "primary reserve ammo max" "35" + "weapon weight" "7" + "rumble effect" "2" + "inaccuracy crouch alt" "2.180000" + "inaccuracy fire alt" "72.230003" + "inaccuracy jump alt" "371.549988" + "inaccuracy ladder alt" "152.000000" + "inaccuracy land alt" "0.730000" + "inaccuracy move alt" "48.099998" + "inaccuracy stand alt" "4.200000" + "max player speed alt" "230" + "recoil angle variance alt" "60" + "recoil magnitude alt" "48.200001" + "recoil magnitude variance alt" "18" + "recovery time crouch final" "0.449927" + "recovery time stand final" "0.811200" + "spread alt" "2.000000" + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "primary_ammo" "BULLET_PLAYER_50AE" + "sound_single_shot" "Weapon_DEagle.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "inventory_image_data" + { + "camera_angles" "-2.0 -130.0 0.0" + "camera_offset" "4.0 1.0 -1.3" + "point_light_accent" + { + "position" "-8 50 -8" + "color" "0.3 0.3 0.3" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_deagle" + "ViewmodelDim" "1024" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "11.360100" + "UVScale" "0.300000" + } + } + } + "weapon_elite_prefab" + { + "prefab" "secondary" + "item_class" "weapon_elite" + "item_name" "#SFUI_WPNHUD_Elites" + "item_description" "#CSGO_Item_Desc_Elites" + "image_inventory" "econ/weapons/base_weapons/weapon_elite" + "model_player" "models/weapons/v_pist_elite.mdl" + "model_world" "models/weapons/w_pist_elite.mdl" + "model_dropped" "models/weapons/w_pist_elite_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_elite.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_a.mdl" + "worldmodel_decal_pos" "2.00 1.50 3.30" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_b.mdl" + "worldmodel_decal_pos" "2.00 2.80 5.40" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_c.mdl" + "worldmodel_decal_pos" "4.0 2.80 -3.40" + "worldmodel_decal_end" "4.0 -2.80 -2.40" + "worldmodel_decal_bone" "ValveBiped.Bip01_L_Hand" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_elite/pist_elite_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_elite_decal_d.mdl" + "worldmodel_decal_pos" "7.5 2.80 -3.40" + "worldmodel_decal_end" "7.5 -2.80 -2.40" + "worldmodel_decal_bone" "ValveBiped.Bip01_L_Hand" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/w_pist_elite_icon.mdl" + "buymenu display model" "models/weapons/w_pist_elite_buymenu.mdl" + "magazine model" "models/weapons/w_pist_elite_mag.mdl" + "primary reserve ammo max" "120" + "inaccuracy jump initial" "95.860001" + "inaccuracy jump" "158.419998" + "inaccuracy jump alt" "158.419998" + "heat per shot" "0.500000" + "max player speed" "240" + "in game price" "300" + "armor ratio" "1.150000" + "penetration" "1" + "damage" "38" + "range" "4096" + "range modifier" "0.790000" + "cycletime" "0.120000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "2.000000" + "inaccuracy crouch" "5.250000" + "inaccuracy stand" "7.000000" + "inaccuracy land" "0.255000" + "inaccuracy ladder" "102.000000" + "inaccuracy fire" "11.160000" + "inaccuracy move" "17.850000" + "spread alt" "2.000000" + "inaccuracy crouch alt" "7.500000" + "inaccuracy stand alt" "10.000000" + "inaccuracy land alt" "0.255000" + "inaccuracy ladder alt" "102.000000" + "inaccuracy fire alt" "11.960000" + "inaccuracy move alt" "17.850000" + "recovery time crouch" "0.437491" + "recovery time stand" "0.524989" + "recoil angle variance" "20" + "recoil magnitude" "27" + "recoil magnitude variance" "4" + "recoil seed" "24563" + "primary clip size" "30" + "weapon weight" "5" + "rumble effect" "1" + "max player speed alt" "240" + "recoil angle variance alt" "20" + "recoil magnitude alt" "27" + "recoil magnitude variance alt" "4" + "recovery time crouch final" "0.437491" + "recovery time stand final" "0.524989" + } + "inventory_image_data" + { + "camera_angles" "0.0 -90.0 0.0" + "camera_offset" "2.0 0.5 -2.0" + "point_light_accent" + { + "position" "0 20 20" + "color" "1 1 1" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_elite" + "OrigMat" "m9a1" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "10.408200" + "UVScale" "0.282000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol_elite_FP" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol_elite" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "elites" + "primary_ammo" "BULLET_PLAYER_9MM" + "sound_single_shot" "Weapon_Elite.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_fiveseven_prefab" + { + "prefab" "secondary" + "item_class" "weapon_fiveseven" + "item_name" "#SFUI_WPNHUD_FiveSeven" + "item_description" "#CSGO_Item_Desc_FiveSeven" + "image_inventory" "econ/weapons/base_weapons/weapon_fiveseven" + "model_player" "models/weapons/v_pist_fiveseven.mdl" + "model_world" "models/weapons/w_pist_fiveseven.mdl" + "model_dropped" "models/weapons/w_pist_fiveseven_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_fiveseven.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_a.mdl" + "worldmodel_decal_pos" "3.99388 -1.26199 -1.90926" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_b.mdl" + "worldmodel_decal_pos" "3.99388 -1.15953 0.562159" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_c.mdl" + "worldmodel_decal_pos" "3.99388 -1.15953 3.3738" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_fiveseven_decal_d.mdl" + "worldmodel_decal_pos" "3.99388 -3.97353 -2.19972" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_pist_fiveseven_mag.mdl" + "primary reserve ammo max" "100" + "inaccuracy jump initial" "99.879997" + "inaccuracy jump" "89.699997" + "heat per shot" "0.300000" + "tracer frequency" "1" + "max player speed" "240" + "in game price" "500" + "armor ratio" "1.823000" + "crosshair min distance" "8" + "penetration" "1" + "damage" "32" + "range" "4096" + "range modifier" "0.810000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "2.000000" + "inaccuracy crouch" "6.830000" + "inaccuracy stand" "9.100000" + "inaccuracy land" "0.190000" + "inaccuracy ladder" "138.000000" + "inaccuracy fire" "25" + "inaccuracy move" "40" + "recovery time crouch" "0.200000" + "recovery time stand" "0.200000" + "recoil angle" "0" + "recoil angle variance" "5" + "recoil magnitude" "25" + "recoil magnitude variance" "4" + "recoil seed" "33244" + "primary clip size" "20" + "weapon weight" "5" + "rumble effect" "1" + "inaccuracy crouch alt" "6.830000" + "inaccuracy fire alt" "32.450001" + "inaccuracy jump alt" "89.699997" + "inaccuracy ladder alt" "138.000000" + "inaccuracy land alt" "0.190000" + "inaccuracy move alt" "13.410000" + "inaccuracy stand alt" "9.100000" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "5" + "recoil magnitude alt" "25" + "recoil magnitude variance alt" "4" + "recovery time crouch final" "0.500000" + "recovery time stand final" "0.500000" + "spread alt" "2.000000" + "recovery transition start bullet" "0" + "recovery transition end bullet" "5" + } + "inventory_image_data" + { + "camera_offset" "1.0 1.0 -1.3" + "camera_fov" "55.000000" + "point_light_accent" + { + "position" "40 30 10" + "color" "1 1 1" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_fiveseven" + "OrigMat" "fiveseven" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "8.093060" + "UVScale" "0.264000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "primary_ammo" "BULLET_PLAYER_57MM" + "sound_single_shot" "Weapon_FiveSeven.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_glock_prefab" + { + "prefab" "secondary" + "item_class" "weapon_glock" + "item_name" "#SFUI_WPNHUD_Glock18" + "item_description" "#CSGO_Item_Desc_Glock18" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_glock" + "model_player" "models/weapons/v_pist_glock18.mdl" + "model_world" "models/weapons/w_pist_glock18.mdl" + "model_dropped" "models/weapons/w_pist_glock18_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_glock.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_a.mdl" + "worldmodel_decal_pos" "1.74152 -1.1069 -2.00371" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_b.mdl" + "worldmodel_decal_pos" "1.74152 -0.997365 -0.0349085" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_c.mdl" + "worldmodel_decal_pos" "1.74152 -0.997365 2.59865" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_glock18_decal_d.mdl" + "worldmodel_decal_pos" "1.74152 -3.20111 -2.18992" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "inventory_image_data" + { + "camera_offset" "2.0 0.7 -1.0" + "point_light_accent" + { + "position" "-15 20 -15" + "color" "0.3 0.3 0.3" + } + } + "attributes" + { + "uid model" "models/weapons/uid_small.mdl" + "has burst mode" "1" + "cycletime when in burst mode" "0.500000" + "time between burst shots" "0.050000" + "magazine model" "models/weapons/w_pist_glock18_mag.mdl" + "primary reserve ammo max" "120" + "tracer frequency alt" "1" + "inaccuracy jump initial" "96.620003" + "inaccuracy jump" "87.870003" + "inaccuracy jump alt" "87.870003" + "heat per shot" "0.300000" + "tracer frequency" "1" + "max player speed" "240" + "in game price" "200" + "armor ratio" "0.940000" + "crosshair min distance" "8" + "penetration" "1" + "damage" "30" + "range" "4096" + "range modifier" "0.850000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "2.000000" + "inaccuracy crouch" "4.200000" + "inaccuracy stand" "5.600000" + "inaccuracy land" "0.185000" + "inaccuracy ladder" "137.000000" + "inaccuracy fire" "56.000000" + "inaccuracy move" "10.000000" + "spread alt" "15.000000" + "inaccuracy crouch alt" "3.000000" + "inaccuracy stand alt" "5.600000" + "inaccuracy land alt" "0.185000" + "inaccuracy ladder alt" "119.250000" + "inaccuracy fire alt" "45.000000" + "inaccuracy move alt" "12.950000" + "recovery time crouch" "0.200000" + "recovery time stand" "0.200000" + "recoil angle" "0" + "recoil angle variance" "20" + "recoil magnitude" "18" + "recoil magnitude variance" "0" + "recoil seed" "4484" + "recoil angle alt" "0" + "recoil angle variance alt" "20" + "recoil magnitude alt" "30" + "recoil magnitude variance alt" "5" + "primary clip size" "20" + "weapon weight" "5" + "rumble effect" "1" + "max player speed alt" "240" + "recovery time crouch final" "0.330000" + "recovery time stand final" "0.330000" + "recovery transition start bullet" "0" + "recovery transition end bullet" "5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_glock18" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "7.976940" + "UVScale" "0.446000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "primary_ammo" "BULLET_PLAYER_9MM" + "sound_single_shot" "Weapon_Glock.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_hkp2000_prefab" + { + "prefab" "secondary" + "item_class" "weapon_hkp2000" + "item_name" "#SFUI_WPNHUD_HKP2000" + "item_description" "#CSGO_Item_Desc_HKP2000" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_hkp2000" + "model_player" "models/weapons/v_pist_hkp2000.mdl" + "model_world" "models/weapons/w_pist_hkp2000.mdl" + "model_dropped" "models/weapons/w_pist_hkp2000_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_hkp2000.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_a.mdl" + "worldmodel_decal_pos" "2.80535 -1.33829 -1.86912" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_b.mdl" + "worldmodel_decal_pos" "2.80535 -1.07812 0.305017" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_c.mdl" + "worldmodel_decal_pos" "2.80535 -1.01071 2.49434" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_hkp2000_decal_d.mdl" + "worldmodel_decal_pos" "2.80535 -3.52435 -2.21698" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_pist_hkp2000_mag.mdl" + "uid model" "models/weapons/uid_small.mdl" + "primary reserve ammo max" "52" + "inaccuracy jump initial" "96.599998" + "inaccuracy jump" "94.480003" + "inaccuracy jump alt" "94.480003" + "heat per shot" "0.300000" + "tracer frequency" "1" + "max player speed" "240" + "in game price" "200" + "armor ratio" "1.010000" + "crosshair min distance" "8" + "penetration" "1" + "damage" "35" + "range" "4096" + "range modifier" "0.910000" + "cycletime" "0.170000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "2.000000" + "inaccuracy crouch" "3.680000" + "inaccuracy stand" "4.900000" + "inaccuracy land" "0.191000" + "inaccuracy ladder" "138.320007" + "inaccuracy fire" "50.000000" + "inaccuracy move" "13.000000" + "spread alt" "1.500000" + "inaccuracy crouch alt" "3.680000" + "inaccuracy stand alt" "4.900000" + "inaccuracy land alt" "0.198000" + "inaccuracy ladder alt" "119.900002" + "inaccuracy fire alt" "13.150000" + "inaccuracy move alt" "13.870000" + "recovery time crouch" "0.291277" + "recovery time stand" "0.349532" + "recoil angle" "0" + "recoil angle variance" "0" + "recoil magnitude" "26" + "recoil magnitude variance" "0" + "recoil seed" "5426" + "primary clip size" "13" + "weapon weight" "5" + "rumble effect" "1" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "0" + "recoil magnitude alt" "26" + "recoil magnitude variance alt" "0" + "recovery time crouch final" "0.291277" + "recovery time stand final" "0.349532" + } + "inventory_image_data" + { + "camera_offset" "1.4 1.0 -1.0" + "spot_light_key" + { + "position" "-100 120 90" + "color" "1.5 1.55 1.6" + "lookat" "-30.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "0 -80 -120" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "-15 20 -15" + "color" "0.3 0.3 0.3" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_hkp2000" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "7.553070" + "UVScale" "0.288000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "primary_ammo" "BULLET_PLAYER_357SIG" + "sound_single_shot" "Weapon_hkp2000.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_p250_prefab" + { + "prefab" "secondary" + "item_class" "weapon_p250" + "item_name" "#SFUI_WPNHUD_P250" + "item_description" "#CSGO_Item_Desc_P250" + "image_inventory" "econ/weapons/base_weapons/weapon_p250" + "model_player" "models/weapons/v_pist_p250.mdl" + "model_world" "models/weapons/w_pist_p250.mdl" + "model_dropped" "models/weapons/w_pist_p250_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_p250.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_a.mdl" + "worldmodel_decal_pos" "4.15176 -1.13887 -1.69286" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_b.mdl" + "worldmodel_decal_pos" "4.15176 -1.13887 0.526864" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_c.mdl" + "worldmodel_decal_pos" "4.15176 -1.00962 2.95341" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_p250/pist_p250_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_p250_decal_d.mdl" + "worldmodel_decal_pos" "4.15176 -3.54077 -2.10545" + } + } + "attributes" + { + "magazine model" "models/weapons/w_pist_p250_mag.mdl" + "primary reserve ammo max" "26" + "inaccuracy jump initial" "96.620003" + "inaccuracy jump" "92.959999" + "heat per shot" "0.300000" + "tracer frequency" "1" + "max player speed" "240" + "in game price" "300" + "armor ratio" "1.280000" + "crosshair min distance" "8" + "penetration" "1" + "damage" "38" + "range" "4096" + "range modifier" "0.900000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "2.000000" + "inaccuracy crouch" "6.830000" + "inaccuracy stand" "9.100000" + "inaccuracy land" "0.190000" + "inaccuracy ladder" "138.000000" + "inaccuracy fire" "52.450001" + "inaccuracy move" "20" + "recovery time crouch" "0.287823" + "recovery time stand" "0.345388" + "recoil angle" "0" + "recoil angle variance" "10" + "recoil magnitude" "26" + "recoil magnitude variance" "3" + "recoil seed" "9788" + "primary clip size" "13" + "weapon weight" "5" + "rumble effect" "1" + "inaccuracy crouch alt" "6.830000" + "inaccuracy fire alt" "52.450001" + "inaccuracy jump alt" "92.959999" + "inaccuracy ladder alt" "138.000000" + "inaccuracy land alt" "0.190000" + "inaccuracy move alt" "13.410000" + "inaccuracy stand alt" "9.100000" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "10" + "recoil magnitude alt" "26" + "recoil magnitude variance alt" "3" + "recovery time crouch final" "0.287823" + "recovery time stand final" "0.345388" + "spread alt" "2.000000" + } + "inventory_image_data" + { + "camera_angles" "-1.2 -130.0 0.0" + "camera_offset" "1.4 1.0 -1.0" + "point_light_accent" + { + "position" "40 30 10" + "color" "0.25 0.25 0.25" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_p250" + "OrigMat" "p250" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "7.966500" + "UVScale" "0.371000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "primary_ammo" "BULLET_PLAYER_357SIG_P250" + "sound_single_shot" "Weapon_P250.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + } + "weapon_cz75a_prefab" + { + "prefab" "secondary" + "item_name" "#SFUI_WPNHUD_CZ75" + "item_class" "weapon_p250" + "anim_class" "weapon_cz75a" + "item_description" "#CSGO_Item_Desc_cz75a" + "model_player" "models/weapons/v_pist_cz_75.mdl" + "model_world" "models/weapons/w_pist_cz_75.mdl" + "model_dropped" "models/weapons/w_pist_cz_75_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_cz75a.vtf" + "image_inventory" "econ/weapons/base_weapons/weapon_cz75a" + "attributes" + { + "damage" "31" + "is full auto" "1" + "in game price" "500" + "cycletime" "0.100000" + "recoil angle" "0" + "recoil angle variance" "120" + "recoil magnitude" "31" + "recoil magnitude variance" "6" + "recoil angle alt" "0" + "recoil angle variance alt" "180" + "recoil magnitude alt" "27" + "recoil magnitude variance alt" "12" + "recoil seed" "9788" + "spread" "3.000000" + "spread alt" "3.000000" + "primary clip size" "12" + "magazine model" "models/weapons/w_pist_cz_75_mag.mdl" + "inaccuracy crouch" "7.600000" + "inaccuracy fire" "35.000000" + "inaccuracy jump" "92.959999" + "inaccuracy ladder" "138.000000" + "inaccuracy land" "0.190000" + "inaccuracy move" "13.410000" + "inaccuracy stand" "10.430000" + "inaccuracy jump initial" "96.620003" + "inaccuracy crouch alt" "7.600000" + "inaccuracy fire alt" "25.000000" + "inaccuracy jump alt" "92.959999" + "inaccuracy ladder alt" "138.000000" + "inaccuracy land alt" "0.190000" + "inaccuracy move alt" "13.410000" + "inaccuracy stand alt" "10.430000" + "recovery time crouch" "0.227500" + "recovery time stand" "0.242500" + "recovery time crouch final" "0.287823" + "recovery time stand final" "0.345388" + "kill award" "100" + "weapon weight" "5" + "rumble effect" "1" + "primary reserve ammo max" "12" + "heat per shot" "0.300000" + "tracer frequency" "1" + "max player speed" "240" + "max player speed alt" "240" + "armor ratio" "1.553000" + "crosshair min distance" "8" + "penetration" "1" + "range" "4096" + "range modifier" "0.850000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + } + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_a.mdl" + "worldmodel_decal_pos" "4.48833 -0.638561 1.82505" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_b.mdl" + "worldmodel_decal_pos" "4.48833 -0.670694 -0.409493" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_c.mdl" + "worldmodel_decal_pos" "4.48833 -1.2847 -2.19901" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_cz_75_decal_d.mdl" + "worldmodel_decal_pos" "4.48833 -3.99455 -3.27462" + } + } + "inventory_image_data" + { + "camera_angles" "-1.2 -130.0 0.0" + "camera_offset" "1.4 1.0 -1.0" + "point_light_accent" + { + "position" "40 30 10" + "color" "0.25 0.25 0.25" + } + "spot_light_key" + { + "position" "-180 120 120" + "color" "3.5 3.6 3.8" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_cz_75" + "OrigMat" "pist_cz_75" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "10.787000" + "UVScale" "0.400000" + } + } + "visuals" + { + "primary_ammo" "BULLET_PLAYER_357SIG_MIN" + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "sound_single_shot" "Weapon_CZ75A.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + } + "weapon_tec9_prefab" + { + "prefab" "secondary" + "item_class" "weapon_tec9" + "item_name" "#SFUI_WPNHUD_Tec9" + "item_description" "#CSGO_Item_Desc_Tec9" + "image_inventory" "econ/weapons/base_weapons/weapon_tec9" + "model_player" "models/weapons/v_pist_tec9.mdl" + "model_world" "models/weapons/w_pist_tec9.mdl" + "model_dropped" "models/weapons/w_pist_tec9_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_tec9.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_a.mdl" + "worldmodel_decal_pos" "3.56948 -1.2587 -1.39832" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_b.mdl" + "worldmodel_decal_pos" "3.56948 -1.2587 1.8176" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_c.mdl" + "worldmodel_decal_pos" "3.56948 -1.44876 4.78239" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_tec9_decal_d.mdl" + "worldmodel_decal_pos" "-1.37183 -1.05785 -4.82885" + "worldmodel_decal_end" "-1.37183 -1.05785 0.557401" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "inventory_image_data" + { + "camera_angles" "0.0 -125.0 0.0" + "camera_offset" "1.0 1.0 -1.6" + "camera_fov" "50.000000" + "spot_light_key" + { + "position" "-120 120 120" + "color" "1.5 1.55 1.6" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "60 -80 -120" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "0 2 30" + "color" "6 6 6" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_tec9" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "13.340000" + "UVScale" "0.427000" + } + } + "attributes" + { + "magazine model" "models/weapons/w_pist_tec9_mag.mdl" + "primary reserve ammo max" "90" + "inaccuracy jump initial" "71.169998" + "inaccuracy jump" "79.779999" + "heat per shot" "0.300000" + "tracer frequency" "1" + "max player speed" "240" + "in game price" "500" + "armor ratio" "1.812000" + "crosshair min distance" "8" + "penetration" "1" + "damage" "33" + "range" "4096" + "range modifier" "0.790000" + "cycletime" "0.120000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "2.000000" + "inaccuracy crouch" "3.680000" + "inaccuracy stand" "4.900000" + "inaccuracy land" "0.211000" + "inaccuracy ladder" "120.599998" + "inaccuracy fire" "45" + "inaccuracy move" "3.810000" + "recovery time crouch" "0.315000" + "recovery time stand" "0.391000" + "recoil angle" "0" + "recoil angle variance" "60" + "recoil magnitude" "23" + "recoil magnitude variance" "3" + "recoil seed" "789" + "primary clip size" "18" + "weapon weight" "6" + "rumble effect" "1" + "inaccuracy crouch alt" "7.270000" + "inaccuracy fire alt" "36.880001" + "inaccuracy jump alt" "79.779999" + "inaccuracy ladder alt" "120.599998" + "inaccuracy land alt" "0.211000" + "inaccuracy move alt" "3.810000" + "inaccuracy stand alt" "9.030000" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "60" + "recoil magnitude alt" "23" + "recoil magnitude variance alt" "3" + "recovery time crouch final" "0.315000" + "recovery time stand final" "0.391000" + "spread alt" "1.800000" + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "tec9" + "primary_ammo" "BULLET_PLAYER_9MM" + "sound_single_shot" "Weapon_tec9.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_bizon_prefab" + { + "prefab" "smg" + "item_class" "weapon_bizon" + "item_name" "#SFUI_WPNHUD_Bizon" + "item_description" "#CSGO_Item_Desc_Bizon" + "image_inventory" "econ/weapons/base_weapons/weapon_bizon" + "model_player" "models/weapons/v_smg_bizon.mdl" + "model_world" "models/weapons/w_smg_bizon.mdl" + "model_dropped" "models/weapons/w_smg_bizon_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_bizon.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_a.mdl" + "worldmodel_decal_pos" "4.72935 -0.869963 -1.26802" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_b.mdl" + "worldmodel_decal_pos" "4.72935 -0.9665 2.12768" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_c.mdl" + "worldmodel_decal_pos" "4.72935 -0.549397 5.92998" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_bizon_decal_d.mdl" + "worldmodel_decal_pos" "4.72935 -3.19411 7.76426" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_smg_bizon_mag.mdl" + "primary reserve ammo max" "120" + "inaccuracy jump initial" "45.900002" + "inaccuracy jump" "33.470001" + "heat per shot" "0.300000" + "tracer frequency" "3" + "max player speed" "240" + "is full auto" "1" + "in game price" "1400" + "kill award" "600" + "armor ratio" "1.260000" + "crosshair min distance" "7" + "penetration" "1" + "damage" "27" + "range" "3600" + "range modifier" "0.800000" + "cycletime" "0.080000" + "time to idle" "2" + "flinch velocity modifier large" "0.000000" + "flinch velocity modifier small" "0.000000" + "spread" "1" + "inaccuracy crouch" "10.500000" + "inaccuracy stand" "14.000000" + "inaccuracy land" "0.080000" + "inaccuracy ladder" "169.649994" + "inaccuracy fire" "2.880000" + "inaccuracy move" "27.570000" + "recovery time crouch" "0.236837" + "recovery time stand" "0.331572" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "18" + "recoil magnitude variance" "1" + "recoil seed" "36387" + "primary clip size" "64" + "rumble effect" "3" + "weapon weight" "26" + "inaccuracy crouch alt" "10.500000" + "inaccuracy fire alt" "2.880000" + "inaccuracy jump alt" "33.470001" + "inaccuracy ladder alt" "169.649994" + "inaccuracy land alt" "0.080000" + "inaccuracy move alt" "27.570000" + "inaccuracy stand alt" "14.000000" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "18" + "recoil magnitude variance alt" "1" + "recovery time crouch final" "0.236837" + "recovery time stand final" "0.331572" + "spread alt" "1" + } + "inventory_image_data" + { + "camera_angles" "-4.0 -130.0 0.0" + "camera_offset" "16.0 3.0 -2.0" + "point_light_accent" + { + "position" "0 20 10" + "color" "0.7 0.7 0.7" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "smg_bizon" + "OrigMat" "bizon" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "29.743700" + "UVScale" "0.596000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_smg" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_smg" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_smg" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_smg" + "weapon_type" "SubMachinegun" + "player_animation_extension" "bizon" + "primary_ammo" "BULLET_PLAYER_9MM" + "sound_single_shot" "Weapon_bizon.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_mac10_prefab" + { + "prefab" "smg" + "item_class" "weapon_mac10" + "item_name" "#SFUI_WPNHUD_MAC10" + "item_description" "#CSGO_Item_Desc_Mac10" + "image_inventory" "econ/weapons/base_weapons/weapon_mac10" + "model_player" "models/weapons/v_smg_mac10.mdl" + "model_world" "models/weapons/w_smg_mac10.mdl" + "model_dropped" "models/weapons/w_smg_mac10_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_mac10.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_a.mdl" + "worldmodel_decal_pos" "3.83975 -0.466896 -3.83529" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_b.mdl" + "worldmodel_decal_pos" "3.83975 -3.5075 -1.68665" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_c.mdl" + "worldmodel_decal_pos" "3.83975 -0.740954 -1.11418" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mac10_decal_d.mdl" + "worldmodel_decal_pos" "3.83975 -0.942943 3.0487" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_smg_mac10_mag.mdl" + "primary reserve ammo max" "100" + "inaccuracy jump initial" "34.990002" + "inaccuracy jump" "33.299999" + "heat per shot" "0.300000" + "tracer frequency" "3" + "max player speed" "240" + "is full auto" "1" + "in game price" "1050" + "kill award" "600" + "armor ratio" "1.150000" + "crosshair min distance" "9" + "penetration" "1" + "damage" "29" + "range" "3600" + "range modifier" "0.800000" + "cycletime" "0.075000" + "time to idle" "2" + "flinch velocity modifier large" "0.000000" + "flinch velocity modifier small" "0.000000" + "spread" "0.600000" + "inaccuracy crouch" "9.980000" + "inaccuracy stand" "13.300000" + "inaccuracy land" "0.069000" + "inaccuracy ladder" "34.259998" + "inaccuracy fire" "4.760000" + "inaccuracy move" "13.990000" + "recovery time crouch" "0.285521" + "recovery time stand" "0.399729" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "18" + "recoil magnitude variance" "1" + "recoil seed" "34079" + "primary clip size" "30" + "rumble effect" "3" + "weapon weight" "25" + "inaccuracy crouch alt" "9.980000" + "inaccuracy fire alt" "4.760000" + "inaccuracy jump alt" "33.299999" + "inaccuracy ladder alt" "34.259998" + "inaccuracy land alt" "0.069000" + "inaccuracy move alt" "13.990000" + "inaccuracy stand alt" "13.300000" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "18" + "recoil magnitude variance alt" "1" + "recovery time crouch final" "0.285521" + "recovery time stand final" "0.399729" + "spread alt" "0.600000" + } + "inventory_image_data" + { + "camera_angles" "-3.0 -125.0 -3.0" + "camera_offset" "3.0 0.5 -2.0" + "point_light_accent" + { + "position" "50 10 20" + "color" "2.5 2.5 2.5" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "smg_mac10" + "OrigMat" "smg_mac10_1" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.834300" + "UVScale" "0.495000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_smg" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_smg" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_smg" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_smg" + "weapon_type" "SubMachinegun" + "player_animation_extension" "mac10" + "primary_ammo" "BULLET_PLAYER_45ACP" + "sound_single_shot" "Weapon_MAC10.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_mp7_prefab" + { + "prefab" "smg" + "item_class" "weapon_mp7" + "item_name" "#SFUI_WPNHUD_MP7" + "item_description" "#CSGO_Item_Desc_MP7" + "image_inventory" "econ/weapons/base_weapons/weapon_mp7" + "model_player" "models/weapons/v_smg_mp7.mdl" + "model_world" "models/weapons/w_smg_mp7.mdl" + "model_dropped" "models/weapons/w_smg_mp7_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_mp7.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_a.mdl" + "worldmodel_decal_pos" "3.91874 -1.18899 -5.60001" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_b.mdl" + "worldmodel_decal_pos" "3.91874 -1.48012 -2.12288" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_c.mdl" + "worldmodel_decal_pos" "3.91874 -5.15067 -2.52061" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp7_decal_d.mdl" + "worldmodel_decal_pos" "3.91874 -2.58889 -7.63391" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_smg_mp7_mag.mdl" + "primary reserve ammo max" "120" + "inaccuracy jump initial" "55.410000" + "inaccuracy jump" "59.599998" + "heat per shot" "0.350000" + "tracer frequency" "3" + "max player speed" "220" + "is full auto" "1" + "in game price" "1500" + "kill award" "600" + "armor ratio" "1.250000" + "crosshair min distance" "6" + "crosshair delta distance" "2" + "penetration" "1" + "damage" "29" + "range" "3600" + "range modifier" "0.850000" + "cycletime" "0.080000" + "time to idle" "2" + "flinch velocity modifier large" "0.000000" + "flinch velocity modifier small" "0.000000" + "spread" "0.600000" + "inaccuracy crouch" "5.920000" + "inaccuracy stand" "10.000000" + "inaccuracy land" "0.115000" + "inaccuracy ladder" "57.560001" + "inaccuracy fire" "2.180000" + "inaccuracy move" "19.860001" + "recovery time crouch" "0.312494" + "recovery time stand" "0.437491" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "16" + "recoil magnitude variance" "1" + "recoil seed" "61649" + "primary clip size" "30" + "weapon weight" "25" + "rumble effect" "3" + "inaccuracy crouch alt" "5.920000" + "inaccuracy fire alt" "2.180000" + "inaccuracy jump alt" "59.599998" + "inaccuracy ladder alt" "57.560001" + "inaccuracy land alt" "0.115000" + "inaccuracy move alt" "19.860001" + "inaccuracy stand alt" "10.000000" + "max player speed alt" "220" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "16" + "recoil magnitude variance alt" "1" + "recovery time crouch final" "0.312494" + "recovery time stand final" "0.437491" + "spread alt" "0.600000" + } + "inventory_image_data" + { + "camera_angles" "0.0 -135.0 0.0" + "camera_offset" "7.0 1.0 -1.7" + "point_light_accent" + { + "position" "40 30 10" + "color" "1 1 1" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "smg_mp7" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "15.676800" + "UVScale" "0.446000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_smg" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_smg" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_smg" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_smg" + "weapon_type" "SubMachinegun" + "player_animation_extension" "mp7" + "primary_ammo" "BULLET_PLAYER_9MM" + "secondary_ammo" "BULLET_PLAYER_9MM" + "sound_single_shot" "Weapon_MP7.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_mp5sd_prefab" + { + "prefab" "smg" + "item_class" "weapon_mp7" + "anim_class" "weapon_mp5sd" + "item_name" "#SFUI_WPNHUD_MP5SD" + "item_description" "#CSGO_Item_Desc_MP5SD" + "image_inventory" "econ/weapons/base_weapons/weapon_mp5sd" + "model_player" "models/weapons/v_smg_mp5sd.mdl" + "model_world" "models/weapons/w_smg_mp5sd.mdl" + "model_dropped" "models/weapons/w_smg_mp5sd_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_mp5sd.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp5sd/smg_mp5sd_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp5sd_decal_a.mdl" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp5sd/smg_mp5sd_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp5sd_decal_b.mdl" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp5sd/smg_mp5sd_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp5sd_decal_c.mdl" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp5sd/smg_mp5sd_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp5sd_decal_d.mdl" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_smg_mp5sd_mag.mdl" + "primary reserve ammo max" "120" + "has silencer" "2" + "inaccuracy jump initial" "55.410000" + "inaccuracy jump" "59.599998" + "heat per shot" "0.350000" + "tracer frequency" "0" + "max player speed" "235" + "is full auto" "1" + "in game price" "1500" + "kill award" "600" + "armor ratio" "1.250000" + "crosshair min distance" "6" + "crosshair delta distance" "2" + "penetration" "1" + "damage" "27" + "range" "3600" + "range modifier" "0.850000" + "cycletime" "0.080000" + "time to idle" "2" + "flinch velocity modifier large" "0.000000" + "flinch velocity modifier small" "0.000000" + "spread" "0.600000" + "inaccuracy crouch" "5.920000" + "inaccuracy stand" "10.000000" + "inaccuracy land" "0.115000" + "inaccuracy ladder" "57.560001" + "inaccuracy fire" "2.180000" + "inaccuracy move" "30" + "recovery time crouch" "0.312494" + "recovery time stand" "0.437491" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "16" + "recoil magnitude variance" "1" + "recoil seed" "61649" + "primary clip size" "30" + "weapon weight" "25" + "rumble effect" "3" + "inaccuracy crouch alt" "5.920000" + "inaccuracy fire alt" "2.180000" + "inaccuracy jump alt" "59.599998" + "inaccuracy ladder alt" "57.560001" + "inaccuracy land alt" "0.115000" + "inaccuracy move alt" "19.860001" + "inaccuracy stand alt" "10.000000" + "max player speed alt" "220" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "16" + "recoil magnitude variance alt" "1" + "recovery time crouch final" "0.312494" + "recovery time stand final" "0.437491" + "spread alt" "0.600000" + } + "inventory_image_data" + { + "camera_angles" "0.0 -135.0 0.0" + "camera_offset" "7.0 1.0 -1.7" + "point_light_accent" + { + "position" "40 30 10" + "color" "1 1 1" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "smg_mp5sd" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "20" + "UVScale" "0.446000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle_silenced" + "muzzle_flash_effect_1st_person_alt" "weapon_muzzle_flash_assaultrifle_silenced" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle_silenced" + "muzzle_flash_effect_3rd_person_alt" "weapon_muzzle_flash_assaultrifle_silenced" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_smg" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_smg" + "weapon_type" "SubMachinegun" + "player_animation_extension" "mp5sd" + "primary_ammo" "BULLET_PLAYER_9MM" + "secondary_ammo" "BULLET_PLAYER_9MM" + "sound_single_shot" "Weapon_MP5.Single" + "sound_special1" "Weapon_MP5.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_mp9_prefab" + { + "prefab" "smg" + "item_class" "weapon_mp9" + "item_name" "#SFUI_WPNHUD_MP9" + "item_description" "#CSGO_Item_Desc_MP9" + "image_inventory" "econ/weapons/base_weapons/weapon_mp9" + "model_player" "models/weapons/v_smg_mp9.mdl" + "model_world" "models/weapons/w_smg_mp9.mdl" + "model_dropped" "models/weapons/w_smg_mp9_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_mp9.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_a.mdl" + "worldmodel_decal_pos" "2.72058 -1.42886 -4.87973" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_b.mdl" + "worldmodel_decal_pos" "2.72058 -2.22002 -1.71083" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_c.mdl" + "worldmodel_decal_pos" "2.72058 -1.62016 2.65378" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_mp9_decal_d.mdl" + "worldmodel_decal_pos" "2.72058 -5.68715 -2.01963" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_smg_mp9_mag.mdl" + "primary reserve ammo max" "120" + "inaccuracy jump initial" "37.279999" + "inaccuracy jump" "18.430000" + "heat per shot" "0.300000" + "tracer frequency" "3" + "max player speed" "240" + "is full auto" "1" + "in game price" "1250" + "kill award" "600" + "armor ratio" "1.200000" + "crosshair min distance" "7" + "penetration" "1" + "damage" "26" + "range" "3600" + "range modifier" "0.870000" + "cycletime" "0.070000" + "time to idle" "2" + "flinch velocity modifier large" "0.000000" + "flinch velocity modifier small" "0.000000" + "spread" "0.600000" + "inaccuracy crouch" "5.500000" + "inaccuracy stand" "9.000000" + "inaccuracy land" "0.056000" + "inaccuracy ladder" "148.912506" + "inaccuracy fire" "3.700000" + "inaccuracy move" "29.040001" + "recovery time crouch" "0.184207" + "recovery time stand" "0.257890" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "19" + "recoil magnitude variance" "1" + "recoil seed" "50729" + "primary clip size" "30" + "rumble effect" "3" + "weapon weight" "25" + "inaccuracy crouch alt" "5.500000" + "inaccuracy fire alt" "3.700000" + "inaccuracy jump alt" "18.430000" + "inaccuracy ladder alt" "148.912506" + "inaccuracy land alt" "0.056000" + "inaccuracy move alt" "29.040001" + "inaccuracy stand alt" "9.000000" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "19" + "recoil magnitude variance alt" "1" + "recovery time crouch final" "0.184207" + "recovery time stand final" "0.257890" + "spread alt" "0.600000" + } + "inventory_image_data" + { + "camera_offset" "10.0 3.0 -1.7" + "camera_fov" "45" + "spot_light_key" + { + "position" "-120 120 120" + "color" "2 2.1 2.3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "point_light_accent" + { + "position" "30 30 20" + "color" "0.25 0.25 0.25" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "smg_mp9" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "22.126101" + "UVScale" "0.485000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_smg" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_smg" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_smg" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_smg" + "weapon_type" "SubMachinegun" + "player_animation_extension" "mp9" + "primary_ammo" "BULLET_PLAYER_9MM" + "sound_single_shot" "Weapon_MP9.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_p90_prefab" + { + "prefab" "smg" + "item_class" "weapon_p90" + "item_name" "#SFUI_WPNHUD_P90" + "item_description" "#CSGO_Item_Desc_P90" + "image_inventory" "econ/weapons/base_weapons/weapon_p90" + "model_player" "models/weapons/v_smg_p90.mdl" + "model_world" "models/weapons/w_smg_p90.mdl" + "model_dropped" "models/weapons/w_smg_p90_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_p90.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_a.mdl" + "worldmodel_decal_pos" "5.69832 -1.70705 -7.82337" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_b.mdl" + "worldmodel_decal_pos" "5.69832 -2.37658 -0.608743" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_c.mdl" + "worldmodel_decal_pos" "5.69832 -1.53075 3.86454" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/smg_p90/smg_p90_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_p90_decal_d.mdl" + "worldmodel_decal_pos" "5.69832 -2.26662 -11.4784" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_smg_p90_mag.mdl" + "primary reserve ammo max" "100" + "inaccuracy jump initial" "104.599998" + "inaccuracy jump" "90.080002" + "heat per shot" "0.350000" + "tracer frequency" "3" + "max player speed" "230" + "is full auto" "1" + "in game price" "2350" + "armor ratio" "1.380000" + "crosshair min distance" "7" + "penetration" "1" + "damage" "26" + "range" "3700" + "range modifier" "0.860000" + "cycletime" "0.070000" + "time to idle" "2" + "flinch velocity modifier large" "0.000000" + "flinch velocity modifier small" "0.000000" + "spread" "1.000000" + "inaccuracy crouch" "10.240000" + "inaccuracy stand" "13.650000" + "inaccuracy land" "0.082000" + "inaccuracy ladder" "132.169998" + "inaccuracy fire" "2.850000" + "inaccuracy move" "31" + "recovery time crouch" "0.265784" + "recovery time stand" "0.372098" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "16" + "recoil magnitude variance" "1" + "recoil seed" "6213" + "primary clip size" "50" + "weapon weight" "26" + "rumble effect" "3" + "inaccuracy crouch alt" "10.240000" + "inaccuracy fire alt" "2.850000" + "inaccuracy jump alt" "90.080002" + "inaccuracy ladder alt" "132.169998" + "inaccuracy land alt" "0.082000" + "inaccuracy move alt" "31" + "inaccuracy stand alt" "13.650000" + "max player speed alt" "230" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "16" + "recoil magnitude variance alt" "1" + "recovery time crouch final" "0.265784" + "recovery time stand final" "0.372098" + "spread alt" "1.000000" + } + "inventory_image_data" + { + "camera_angles" "-3.0 -125.0 0.0" + "camera_offset" "9.0 1.6 -2.7" + "spot_light_key" + { + "position" "-120 120 120" + "color" "2 2.1 2.3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "-90 -120 -75" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "120 40 120" + "color" "0.25 0.25 0.25" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "smg_p90" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "19.637100" + "UVScale" "0.537000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_smg" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_smg" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_smg" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_smg" + "weapon_type" "SubMachinegun" + "player_animation_extension" "p90" + "primary_ammo" "BULLET_PLAYER_57MM" + "sound_single_shot" "Weapon_P90.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_ump45_prefab" + { + "prefab" "smg" + "item_class" "weapon_ump45" + "item_name" "#SFUI_WPNHUD_UMP45" + "item_description" "#CSGO_Item_Desc_UMP45" + "image_inventory" "econ/weapons/base_weapons/weapon_ump45" + "model_player" "models/weapons/v_smg_ump45.mdl" + "model_world" "models/weapons/w_smg_ump45.mdl" + "model_dropped" "models/weapons/w_smg_ump45_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_ump45.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_a.mdl" + "worldmodel_decal_pos" "5.50499 0.125392 -4.81061" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_b.mdl" + "worldmodel_decal_pos" "5.50499 -0.425925 -1.94732" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_c.mdl" + "worldmodel_decal_pos" "5.50499 -0.246568 1.68466" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/smg_ump45_decal_d.mdl" + "worldmodel_decal_pos" "5.50499 0.0477725 5.71236" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_smg_ump45_mag.mdl" + "primary reserve ammo max" "100" + "inaccuracy jump initial" "47.209999" + "inaccuracy jump" "37.250000" + "heat per shot" "0.300000" + "tracer frequency" "3" + "max player speed" "230" + "is full auto" "1" + "in game price" "1200" + "kill award" "600" + "armor ratio" "1.300000" + "crosshair min distance" "6" + "penetration" "1" + "damage" "35" + "range" "3700" + "range modifier" "0.750000" + "cycletime" "0.090000" + "time to idle" "2" + "flinch velocity modifier large" "0.000000" + "flinch velocity modifier small" "0.000000" + "spread" "1.000000" + "inaccuracy crouch" "10.070000" + "inaccuracy stand" "13.430000" + "inaccuracy land" "0.085000" + "inaccuracy ladder" "42.349998" + "inaccuracy fire" "3.420000" + "inaccuracy move" "28.760000" + "recovery time crouch" "0.249995" + "recovery time stand" "0.349993" + "recoil angle variance" "40" + "recoil magnitude" "23" + "recoil magnitude variance" "1" + "recoil seed" "59299" + "primary clip size" "25" + "weapon weight" "25" + "rumble effect" "4" + "inaccuracy crouch alt" "10.070000" + "inaccuracy fire alt" "3.420000" + "inaccuracy jump alt" "37.250000" + "inaccuracy ladder alt" "42.349998" + "inaccuracy land alt" "0.085000" + "inaccuracy move alt" "28.760000" + "inaccuracy stand alt" "13.430000" + "max player speed alt" "230" + "recoil angle variance alt" "40" + "recoil magnitude alt" "23" + "recoil magnitude variance alt" "1" + "recovery time crouch final" "0.249995" + "recovery time stand final" "0.349993" + "spread alt" "1.000000" + } + "inventory_image_data" + { + "camera_angles" "-4.0 -130.0 0.0" + "camera_offset" "16.0 2.5 -2.0" + "point_light_accent" + { + "position" "40 30 10" + "color" "0.25 0.25 0.25" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "smg_ump45" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "29.215599" + "UVScale" "0.882000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_smg" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_smg" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_smg" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_smg" + "weapon_type" "SubMachinegun" + "player_animation_extension" "ump45" + "primary_ammo" "BULLET_PLAYER_45ACP" + "sound_single_shot" "Weapon_UMP45.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_ak47_prefab" + { + "prefab" "rifle" + "item_class" "weapon_ak47" + "item_name" "#SFUI_WPNHUD_AK47" + "item_description" "#CSGO_Item_Desc_AK47" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_ak47" + "model_player" "models/weapons/v_rif_ak47.mdl" + "model_world" "models/weapons/w_rif_ak47.mdl" + "model_dropped" "models/weapons/w_rif_ak47_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_ak47.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_a.mdl" + "worldmodel_decal_pos" "6.43516 -1.26887 -0.743033" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_b.mdl" + "worldmodel_decal_pos" "6.43516 -1.47404 3.01389" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_c.mdl" + "worldmodel_decal_pos" "6.43516 -1.34147 7.33494" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_ak47_decal_d.mdl" + "worldmodel_decal_pos" "6.43516 -1.31489 11.8284" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_rif_ak47_mag.mdl" + "primary reserve ammo max" "90" + "recovery time crouch" "0.305257" + "recovery time crouch final" "0.419728" + "recovery time stand" "0.368000" + "recovery time stand final" "0.506000" + "inaccuracy jump initial" "100.940002" + "inaccuracy jump" "140.759995" + "heat per shot" "0.300000" + "addon scale" "0.900000" + "tracer frequency" "3" + "max player speed" "215" + "is full auto" "1" + "in game price" "2700" + "armor ratio" "1.550000" + "crosshair delta distance" "4" + "penetration" "2" + "damage" "36" + "range" "8192" + "cycletime" "0.100000" + "time to idle" "1.900000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "0.600000" + "inaccuracy crouch" "4.810000" + "inaccuracy stand" "6.410000" + "inaccuracy land" "0.242000" + "inaccuracy ladder" "140.000000" + "inaccuracy fire" "7.800000" + "inaccuracy move" "175.059998" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "30" + "recoil magnitude variance" "0" + "recoil seed" "223" + "primary clip size" "30" + "weapon weight" "25" + "rumble effect" "4" + "inaccuracy crouch alt" "4.810000" + "inaccuracy fire alt" "7.800000" + "inaccuracy jump alt" "140.759995" + "inaccuracy ladder alt" "140.000000" + "inaccuracy land alt" "0.242000" + "inaccuracy move alt" "175.059998" + "inaccuracy stand alt" "6.410000" + "max player speed alt" "215" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "30" + "recoil magnitude variance alt" "0" + "spread alt" "0.600000" + } + "inventory_image_data" + { + "camera_angles" "-2.0 -135.0 0.0" + "camera_offset" "18.0 3.7 -2.5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "rif_ak47" + "OrigMat" "ak47" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "37.746201" + "UVScale" "0.549000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_rifle" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "weapon_type" "Rifle" + "player_animation_extension" "ak" + "primary_ammo" "BULLET_PLAYER_762MM" + "sound_single_shot" "Weapon_AK47.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_aug_prefab" + { + "prefab" "rifle" + "item_class" "weapon_aug" + "item_name" "#SFUI_WPNHUD_Aug" + "item_description" "#CSGO_Item_Desc_Aug" + "item_rarity" "common" + "image_inventory" "econ/weapons/base_weapons/weapon_aug" + "model_player" "models/weapons/v_rif_aug.mdl" + "model_world" "models/weapons/w_rif_aug.mdl" + "model_dropped" "models/weapons/w_rif_aug_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_aug.vtf" + "zoom_in_sound" "Weapon_AUG.ZoomIn" + "zoom_out_sound" "Weapon_AUG.ZoomOut" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_a.mdl" + "worldmodel_decal_pos" "5.94244 -0.866151 -12.1983" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_b.mdl" + "worldmodel_decal_pos" "5.94244 -0.651087 -7.01863" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_c.mdl" + "worldmodel_decal_pos" "5.94244 -0.537151 -1.69533" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/rif_aug/rif_aug_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_aug_decal_d.mdl" + "worldmodel_decal_pos" "5.94244 0.0485253 2.80582" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_rif_aug_mag.mdl" + "aimsight capable" "1" + "aimsight speed up" "10.000000" + "aimsight speed down" "8.000000" + "aimsight looseness" "0.030000" + "aimsight eye pos" "-1.56 -3.6 -0.07" + "aimsight pivot angle" "0.78 -0.1 -0.03" + "aimsight fov" "45" + "aimsight pivot forward" "10" + "aimsight lens mask" "models/weapons/v_rif_aug_scopelensmask.mdl" + "scope dot model" "models/weapons/shared/scope/scope_dot_green" + "primary reserve ammo max" "90" + "tracer frequency alt" "3" + "inaccuracy jump initial" "101.559998" + "inaccuracy jump" "105.989998" + "inaccuracy jump alt" "105.989998" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "tracer frequency" "3" + "max player speed" "220" + "max player speed alt" "150" + "is full auto" "1" + "in game price" "3300" + "armor ratio" "1.800000" + "crosshair min distance" "3" + "zoom levels" "1" + "zoom time 0" "0.060000" + "zoom fov 1" "45" + "zoom time 1" "0.100000" + "penetration" "2" + "damage" "28" + "range" "8192" + "cycletime" "0.100000" + "time to idle" "1.900000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "0.500000" + "inaccuracy crouch" "3.680000" + "inaccuracy stand" "4.900000" + "inaccuracy land" "0.208000" + "inaccuracy ladder" "110.040001" + "inaccuracy fire" "7.290000" + "inaccuracy move" "135.449997" + "spread alt" "0.300000" + "inaccuracy crouch alt" "3.110000" + "inaccuracy stand alt" "3.680000" + "inaccuracy land alt" "0.208000" + "inaccuracy ladder alt" "100.040001" + "inaccuracy fire alt" "7.290000" + "inaccuracy move alt" "105.449997" + "recovery time crouch" "0.305520" + "recovery time stand" "0.429727" + "recoil angle" "0" + "recoil angle variance" "60" + "recoil magnitude" "24" + "recoil magnitude variance" "0" + "recoil seed" "24204" + "recoil magnitude alt" "16" + "primary clip size" "30" + "weapon weight" "25" + "rumble effect" "4" + "recoil angle alt" "0" + "recoil angle variance alt" "60" + "recoil magnitude variance alt" "0" + "recovery time crouch final" "0.305520" + "recovery time stand final" "0.429727" + } + "inventory_image_data" + { + "camera_angles" "-4.0 -130.0 0.0" + "camera_offset" "19.0 3.4 -3.2" + "spot_light_rim" + { + "position" "0 -80 -30" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "-10 30 -60" + "color" "0.15 0.15 0.15" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "rif_aug" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "31.066900" + "UVScale" "0.763000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_rifle" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "weapon_type" "Rifle" + "player_animation_extension" "aug" + "primary_ammo" "BULLET_PLAYER_762MM" + "sound_single_shot" "Weapon_AUG.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "aimsight" "1" + } + } + "weapon_famas_prefab" + { + "prefab" "rifle" + "item_class" "weapon_famas" + "item_name" "#SFUI_WPNHUD_Famas" + "item_description" "#CSGO_Item_Desc_Famas" + "item_rarity" "common" + "image_inventory" "econ/weapons/base_weapons/weapon_famas" + "model_player" "models/weapons/v_rif_famas.mdl" + "model_world" "models/weapons/w_rif_famas.mdl" + "model_dropped" "models/weapons/w_rif_famas_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_famas.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_a.mdl" + "worldmodel_decal_pos" "5.62099 -1.58238 -7.33913" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_b.mdl" + "worldmodel_decal_pos" "5.62099 -1.06851 -3.05935" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_c.mdl" + "worldmodel_decal_pos" "5.62099 -1.41951 0.954913" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/rif_famas/rif_famas_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_famas_decal_d.mdl" + "worldmodel_decal_pos" "5.62099 -1.36689 4.66046" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_rif_famas_mag.mdl" + "primary reserve ammo max" "90" + "recovery time crouch" "0.120000" + "recovery time crouch final" "0.480000" + "recovery time stand" "0.250000" + "recovery time stand final" "0.500000" + "tracer frequency alt" "3" + "inaccuracy jump initial" "94.769997" + "inaccuracy jump" "110.389999" + "inaccuracy jump alt" "110.389999" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "tracer frequency" "3" + "max player speed" "220" + "is full auto" "1" + "in game price" "2050" + "armor ratio" "1.400000" + "penetration" "2" + "damage" "30" + "range" "8192" + "range modifier" "0.960000" + "cycletime" "0.090000" + "time to idle" "1.100000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "0.600000" + "inaccuracy crouch" "7.390000" + "inaccuracy stand" "9.850000" + "inaccuracy land" "0.205000" + "inaccuracy ladder" "118.716003" + "inaccuracy fire" "6.050000" + "inaccuracy move" "99.339996" + "spread alt" "0.600000" + "inaccuracy crouch alt" "3.250000" + "inaccuracy stand alt" "3.690000" + "inaccuracy land alt" "0.205000" + "inaccuracy ladder alt" "118.716003" + "inaccuracy fire alt" "3.350000" + "inaccuracy move alt" "99.339996" + "recoil angle" "0" + "recoil angle variance" "60" + "recoil magnitude" "20" + "recoil magnitude variance" "1" + "recoil seed" "39623" + "recoil angle alt" "0" + "recoil angle variance alt" "50" + "recoil magnitude alt" "20" + "recoil magnitude variance alt" "1" + "primary clip size" "25" + "weapon weight" "75" + "rumble effect" "3" + "max player speed alt" "220" + } + "inventory_image_data" + { + "camera_angles" "-3.0 -130.0 0.0" + "camera_offset" "20.0 3.7 -3" + } + "attributes" + { + "has burst mode" "1" + "cycletime when in burst mode" "0.550000" + "time between burst shots" "0.075000" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "rif_famas" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "29.799999" + "UVScale" "0.660000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_rifle" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "weapon_type" "Rifle" + "player_animation_extension" "famas" + "primary_ammo" "BULLET_PLAYER_556MM" + "sound_single_shot" "Weapon_FAMAS.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_galilar_prefab" + { + "prefab" "rifle" + "item_class" "weapon_galilar" + "item_name" "#SFUI_WPNHUD_GalilAR" + "item_description" "#CSGO_Item_Desc_GalilAR" + "item_rarity" "common" + "image_inventory" "econ/weapons/base_weapons/weapon_galilar" + "model_player" "models/weapons/v_rif_galilar.mdl" + "model_world" "models/weapons/w_rif_galilar.mdl" + "model_dropped" "models/weapons/w_rif_galilar_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_galilar.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_a.mdl" + "worldmodel_decal_pos" "4.56555 -1.10028 0.274424" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_b.mdl" + "worldmodel_decal_pos" "4.56555 -1.24267 3.98293" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_c.mdl" + "worldmodel_decal_pos" "4.56555 -0.371284 8.53896" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_galilar_decal_d.mdl" + "worldmodel_decal_pos" "4.56555 -2.11272 -8.68949" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_rif_galilar_mag.mdl" + "primary reserve ammo max" "90" + "recovery time crouch" "0.150000" + "recovery time crouch final" "0.470000" + "recovery time stand" "0.300000" + "recovery time stand final" "0.500000" + "inaccuracy jump initial" "105.389999" + "inaccuracy jump" "149.779999" + "inaccuracy jump alt" "149.779999" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "tracer frequency" "3" + "max player speed" "215" + "is full auto" "1" + "in game price" "1800" + "armor ratio" "1.550000" + "penetration" "2" + "damage" "30" + "range" "8192" + "cycletime" "0.090000" + "time to idle" "1.280000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "0.600000" + "inaccuracy crouch" "6.580000" + "inaccuracy stand" "8.770000" + "inaccuracy land" "0.256000" + "inaccuracy ladder" "113.580002" + "inaccuracy fire" "7.000000" + "inaccuracy move" "123.559998" + "spread alt" "0.600000" + "inaccuracy crouch alt" "4.840000" + "inaccuracy stand alt" "7.780000" + "inaccuracy land alt" "0.256000" + "inaccuracy ladder alt" "113.580002" + "inaccuracy fire alt" "5.850000" + "inaccuracy move alt" "106.519997" + "recoil seed" "51191" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "21" + "recoil magnitude variance" "1" + "primary clip size" "35" + "weapon weight" "25" + "rumble effect" "4" + "max player speed alt" "215" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "21" + "recoil magnitude variance alt" "1" + } + "inventory_image_data" + { + "camera_angles" "-3.0 -130.0 0.0" + "camera_offset" "18.0 3.8 -2.4" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "rif_galilar" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "32.973701" + "UVScale" "0.750000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_rifle" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "weapon_type" "Rifle" + "player_animation_extension" "galilar" + "primary_ammo" "BULLET_PLAYER_556MM" + "sound_single_shot" "Weapon_GalilAR.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_m4a1_prefab" + { + "prefab" "rifle" + "item_class" "weapon_m4a1" + "item_name" "#SFUI_WPNHUD_M4A1" + "item_description" "#CSGO_Item_Desc_M4A4" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_m4a1" + "model_player" "models/weapons/v_rif_m4a1.mdl" + "model_world" "models/weapons/w_rif_m4a1.mdl" + "model_dropped" "models/weapons/w_rif_m4a1_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_m4a1.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_a.mdl" + "worldmodel_decal_pos" "4.68044 -1.48398 -1.69485" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_b.mdl" + "worldmodel_decal_pos" "4.68044 -0.142594 1.60586" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_c.mdl" + "worldmodel_decal_pos" "4.68044 -2.99986 3.05251" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_decal_d.mdl" + "worldmodel_decal_pos" "4.68044 -0.615597 -10.4655" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_rif_m4a1_mag.mdl" + "primary reserve ammo max" "90" + "recovery time crouch" "0.242100" + "recovery time crouch final" "0.332888" + "recovery time stand" "0.338941" + "recovery time stand final" "0.466044" + "inaccuracy crouch" "4.100000" + "inaccuracy jump initial" "94.410004" + "inaccuracy jump" "97.269997" + "inaccuracy jump alt" "97.269997" + "heat per shot" "0.350000" + "addon scale" "1.000000" + "tracer frequency" "3" + "max player speed" "225" + "is full auto" "1" + "in game price" "3100" + "armor ratio" "1.400000" + "penetration" "2" + "damage" "33" + "range" "8192" + "range modifier" "0.970000" + "cycletime" "0.090000" + "time to idle" "1.500000" + "idle interval" "60" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "0.600000" + "inaccuracy stand" "4.900000" + "inaccuracy land" "0.192000" + "inaccuracy ladder" "110.994003" + "inaccuracy fire" "7.000000" + "inaccuracy move" "137.880005" + "spread alt" "0.450000" + "inaccuracy crouch alt" "3.680000" + "inaccuracy stand alt" "4.900000" + "inaccuracy land alt" "0.197000" + "inaccuracy ladder alt" "113.671997" + "inaccuracy fire alt" "6.340000" + "inaccuracy move alt" "122.000000" + "recoil seed" "38965" + "recoil angle" "0" + "recoil angle variance" "70" + "recoil magnitude" "23" + "recoil magnitude variance" "0" + "primary clip size" "30" + "weapon weight" "25" + "rumble effect" "4" + "max player speed alt" "225" + "recoil angle alt" "0" + "recoil angle variance alt" "70" + "recoil magnitude alt" "23" + "recoil magnitude variance alt" "0" + } + "inventory_image_data" + { + "camera_angles" "-2.0 -135.0 0.0" + "camera_offset" "22.0 3.9 -3.0" + "point_light_accent" + { + "position" "20 3 7" + "color" "0.25 0.25 0.25" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "rif_m4a1" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "35.322601" + "UVScale" "0.425000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_rifle" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "weapon_type" "Rifle" + "player_animation_extension" "m4" + "primary_ammo" "BULLET_PLAYER_556MM" + "sound_single_shot" "Weapon_M4A1.Single" + "sound_special1" "Weapon_M4A1.Silenced" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_sg556_prefab" + { + "prefab" "rifle" + "item_class" "weapon_sg556" + "item_name" "#SFUI_WPNHUD_SG556" + "item_description" "#CSGO_Item_Desc_SG553" + "item_rarity" "common" + "image_inventory" "econ/weapons/base_weapons/weapon_sg556" + "model_player" "models/weapons/v_rif_sg556.mdl" + "model_world" "models/weapons/w_rif_sg556.mdl" + "model_dropped" "models/weapons/w_rif_sg556_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_sg556.vtf" + "zoom_in_sound" "Weapon_sg556.ZoomIn" + "zoom_out_sound" "Weapon_sg556.ZoomOut" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_a.mdl" + "worldmodel_decal_pos" "3.98088 -0.973739 -1.78859" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_b.mdl" + "worldmodel_decal_pos" "3.98088 -0.320671 1.4664" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_c.mdl" + "worldmodel_decal_pos" "3.98088 -1.23097 4.69249" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_sg556_decal_d.mdl" + "worldmodel_decal_pos" "3.98088 2.35159 2.18556" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_rif_sg556_mag.mdl" + "aimsight capable" "1" + "aimsight speed up" "10.000000" + "aimsight speed down" "8.000000" + "aimsight looseness" "0.030000" + "aimsight eye pos" "0.72 -5.12 -1.33" + "aimsight pivot angle" "0.52 0.04 0.72" + "aimsight fov" "45" + "aimsight pivot forward" "8" + "aimsight lens mask" "models/weapons/v_rif_sg556_scopelensmask.mdl" + "scope dot model" "models/weapons/shared/scope/scope_dot_green" + "primary reserve ammo max" "90" + "tracer frequency alt" "3" + "inaccuracy jump initial" "78.790001" + "inaccuracy jump" "109.000000" + "inaccuracy jump alt" "109.000000" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "tracer frequency" "3" + "max player speed" "210" + "max player speed alt" "150" + "is full auto" "1" + "in game price" "3000" + "armor ratio" "2.000000" + "crosshair min distance" "5" + "zoom levels" "1" + "zoom time 0" "0.060000" + "zoom fov 1" "45" + "zoom time 1" "0.100000" + "penetration" "2" + "damage" "30" + "range" "8192" + "cycletime" "0.110000" + "time to idle" "2" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "0.600000" + "inaccuracy crouch" "3.810000" + "inaccuracy stand" "5.810000" + "inaccuracy land" "0.188000" + "inaccuracy ladder" "83.660004" + "inaccuracy fire" "7.950000" + "inaccuracy move" "136.009995" + "spread alt" "0.300000" + "inaccuracy crouch alt" "3.050000" + "inaccuracy stand alt" "3.810000" + "inaccuracy land alt" "0.188000" + "inaccuracy ladder alt" "138.757996" + "inaccuracy fire alt" "9.200000" + "inaccuracy move alt" "136.009995" + "recovery time crouch" "0.379204" + "recovery time stand" "0.452886" + "recoil seed" "43500" + "recoil angle" "0" + "recoil angle variance" "60" + "recoil magnitude" "28" + "recoil magnitude variance" "2" + "recoil magnitude alt" "19" + "primary clip size" "30" + "weapon weight" "25" + "rumble effect" "4" + "recoil angle alt" "0" + "recoil angle variance alt" "60" + "recoil magnitude variance alt" "2" + "recovery time crouch final" "0.379204" + "recovery time stand final" "0.452886" + } + "inventory_image_data" + { + "camera_angles" "-12.0 -130.0 0.0" + "camera_offset" "17.0 3.3 -3.4" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "rif_sg556" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "36.341801" + "UVScale" "0.809000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_rifle" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "weapon_type" "Rifle" + "player_animation_extension" "sg556" + "primary_ammo" "BULLET_PLAYER_556MM" + "sound_single_shot" "Weapon_SG556.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "aimsight" "1" + } + } + "weapon_awp_prefab" + { + "prefab" "sniper_rifle" + "item_class" "weapon_awp" + "item_name" "#SFUI_WPNHUD_AWP" + "item_description" "#CSGO_Item_Desc_AWP" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_awp" + "model_player" "models/weapons/v_snip_awp.mdl" + "model_world" "models/weapons/w_snip_awp.mdl" + "model_dropped" "models/weapons/w_snip_awp_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_awp.vtf" + "zoom_in_sound" "Weapon_AWP.Zoom" + "zoom_out_sound" "Weapon_AWP.Zoom" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_a.mdl" + "worldmodel_decal_pos" "6.59995 -3.74073 -8.22526" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_b.mdl" + "worldmodel_decal_pos" "6.59995 -2.05448 0.438974" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_c.mdl" + "worldmodel_decal_pos" "6.59995 -2.45321 5.47063" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/snip_awp/snip_awp_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_awp_decal_d.mdl" + "worldmodel_decal_pos" "6.59995 1.43277 9.50265" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "inventory_image_data" + { + "camera_angles" "-5.0 -140.0 0.0" + "camera_offset" "25.0 0.6 -3.5" + "spot_light_key" + { + "position" "-90 80 220" + "color" "2 2.1 2.3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "0 -130 -80" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "0 20 25" + "color" "3 3 3" + } + } + "attributes" + { + "magazine model" "models/weapons/w_snip_awp_mag.mdl" + "unzoom after shot" "1" + "primary reserve ammo max" "30" + "inaccuracy jump initial" "172.860001" + "inaccuracy jump" "133.830002" + "inaccuracy jump alt" "133.830002" + "heat per shot" "1.500000" + "addon scale" "0.900000" + "max player speed" "200" + "max player speed alt" "100" + "in game price" "4750" + "kill award" "100" + "armor ratio" "1.950000" + "crosshair min distance" "8" + "zoom levels" "2" + "zoom time 0" "0.050000" + "zoom fov 1" "40" + "zoom time 1" "0.050000" + "zoom fov 2" "10" + "zoom time 2" "0.050000" + "hide view model zoomed" "1" + "penetration" "2.500000" + "damage" "115" + "range" "8192" + "range modifier" "0.990000" + "cycletime" "1.455000" + "time to idle" "2" + "idle interval" "60" + "flinch velocity modifier large" "0.350000" + "flinch velocity modifier small" "0.400000" + "inaccuracy reload" "0" + "spread" "0.200000" + "inaccuracy crouch" "60.599998" + "inaccuracy stand" "80.800003" + "inaccuracy land" "0.307000" + "inaccuracy ladder" "136.500000" + "inaccuracy fire" "53.849998" + "inaccuracy move" "176.479996" + "spread alt" "0.200000" + "inaccuracy crouch alt" "1.500000" + "inaccuracy stand alt" "2.000000" + "inaccuracy land alt" "0.100000" + "inaccuracy ladder alt" "136.500000" + "inaccuracy fire alt" "53.849998" + "inaccuracy move alt" "176.479996" + "recovery time crouch" "0.246710" + "recovery time stand" "0.345390" + "recoil angle" "0" + "recoil angle variance" "20" + "recoil magnitude" "78" + "recoil magnitude variance" "15" + "recoil seed" "4100" + "primary clip size" "5" + "weapon weight" "30" + "rumble effect" "2" + "recoil angle alt" "0" + "recoil angle variance alt" "20" + "recoil magnitude alt" "25" + "recoil magnitude variance alt" "2" + "recovery time crouch final" "0.246710" + "recovery time stand final" "0.345390" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "snip_awp" + "OrigMat" "awp" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "53.803902" + "UVScale" "1.029000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_awp" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_awp" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_sniper" + "eject_brass_effect" "weapon_shell_casing_50cal" + "tracer_effect" "weapon_tracers_rifle" + "weapon_type" "SniperRifle" + "player_animation_extension" "awp" + "primary_ammo" "BULLET_PLAYER_338MAG" + "sound_single_shot" "Weapon_AWP.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_g3sg1_prefab" + { + "prefab" "sniper_rifle" + "item_class" "weapon_g3sg1" + "item_name" "#SFUI_WPNHUD_G3SG1" + "item_description" "#CSGO_Item_Desc_G3SG1" + "item_rarity" "common" + "image_inventory" "econ/weapons/base_weapons/weapon_g3sg1" + "model_player" "models/weapons/v_snip_g3sg1.mdl" + "model_world" "models/weapons/w_snip_g3sg1.mdl" + "model_dropped" "models/weapons/w_snip_g3sg1_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_g3sg1.vtf" + "zoom_in_sound" "Weapon_G3SG1.Zoom" + "zoom_out_sound" "Weapon_G3SG1.Zoom" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_a.mdl" + "worldmodel_decal_pos" "4.26159 -1.47014 -13.3375" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_b.mdl" + "worldmodel_decal_pos" "4.26159 -1.09835 -9.70334" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_c.mdl" + "worldmodel_decal_pos" "4.26159 -0.343464 -4.5291" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_d.mdl" + "worldmodel_decal_pos" "4.26159 3.07904 -5.97134" + } + "4" + { + "viewmodel_material" "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_e.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_g3sg1_decal_e.mdl" + "worldmodel_decal_pos" "4.26159 -0.172825 7.0548" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_snip_g3sg1_mag.mdl" + "primary reserve ammo max" "90" + "inaccuracy jump initial" "107.690002" + "inaccuracy jump" "153.770004" + "inaccuracy jump alt" "153.770004" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "max player speed" "215" + "max player speed alt" "120" + "is full auto" "1" + "in game price" "5000" + "armor ratio" "1.650000" + "crosshair min distance" "6" + "crosshair delta distance" "4" + "zoom levels" "2" + "zoom time 0" "0.050000" + "zoom fov 1" "40" + "zoom time 1" "0.050000" + "zoom fov 2" "15" + "zoom time 2" "0.050000" + "hide view model zoomed" "1" + "penetration" "2.500000" + "damage" "80" + "range" "8192" + "cycletime" "0.250000" + "time to idle" "1.800000" + "idle interval" "60" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "0.300000" + "inaccuracy crouch" "19.350000" + "inaccuracy stand" "25.799999" + "inaccuracy land" "0.262000" + "inaccuracy ladder" "116.389999" + "inaccuracy fire" "18.610001" + "inaccuracy move" "150.479996" + "spread alt" "0.300000" + "inaccuracy crouch alt" "1.500000" + "inaccuracy stand alt" "2.000000" + "inaccuracy land alt" "0.262000" + "inaccuracy ladder alt" "116.389999" + "inaccuracy fire alt" "18.610001" + "inaccuracy move alt" "150.479996" + "recovery time crouch" "0.388808" + "recovery time stand" "0.544331" + "recoil angle" "0" + "recoil angle variance" "30" + "recoil magnitude" "30" + "recoil magnitude variance" "4" + "recoil seed" "29908" + "primary clip size" "20" + "weapon weight" "20" + "rumble effect" "4" + "recoil angle alt" "0" + "recoil angle variance alt" "30" + "recoil magnitude alt" "30" + "recoil magnitude variance alt" "4" + "recovery time crouch final" "0.388808" + "recovery time stand final" "0.544331" + } + "inventory_image_data" + { + "camera_angles" "-5.0 -140.0 0.0" + "camera_offset" "28.0 2.7 -2.3" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "snip_g3sg1" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "41.975601" + "UVScale" "0.703000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_huntingrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_huntingrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_sniper" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_rifle" + "weapon_type" "SniperRifle" + "player_animation_extension" "g3" + "primary_ammo" "BULLET_PLAYER_762MM" + "sound_single_shot" "Weapon_G3SG1.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_scar20_prefab" + { + "prefab" "sniper_rifle" + "item_class" "weapon_scar20" + "item_name" "#SFUI_WPNHUD_SCAR20" + "item_description" "#CSGO_Item_Desc_SCAR20" + "item_rarity" "common" + "image_inventory" "econ/weapons/base_weapons/weapon_scar20" + "model_player" "models/weapons/v_snip_scar20.mdl" + "model_world" "models/weapons/w_snip_scar20.mdl" + "model_dropped" "models/weapons/w_snip_scar20_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_scar20.vtf" + "zoom_in_sound" "Weapon_SCAR20.Zoom" + "zoom_out_sound" "Weapon_SCAR20.Zoom" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_a.mdl" + "worldmodel_decal_pos" "6.21142 -0.729553 -5.89217" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_b.mdl" + "worldmodel_decal_pos" "6.21142 -1.42952 -0.795702" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_c.mdl" + "worldmodel_decal_pos" "6.21142 -2.36369 3.14003" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_scar20_decal_d.mdl" + "worldmodel_decal_pos" "6.21142 0.828503 4.35461" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_snip_scar20_mag.mdl" + "primary reserve ammo max" "90" + "inaccuracy jump initial" "107.690002" + "inaccuracy jump" "153.770004" + "inaccuracy jump alt" "153.770004" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "max player speed" "215" + "max player speed alt" "120" + "is full auto" "1" + "in game price" "5000" + "armor ratio" "1.650000" + "crosshair min distance" "6" + "crosshair delta distance" "4" + "zoom levels" "2" + "zoom time 0" "0.050000" + "zoom fov 1" "40" + "zoom time 1" "0.050000" + "zoom fov 2" "15" + "zoom time 2" "0.050000" + "hide view model zoomed" "1" + "penetration" "2.500000" + "damage" "80" + "range" "8192" + "cycletime" "0.250000" + "time to idle" "1.800000" + "idle interval" "60" + "flinch velocity modifier large" "0.350000" + "flinch velocity modifier small" "0.400000" + "spread" "0.300000" + "inaccuracy crouch" "19.350000" + "inaccuracy stand" "25.799999" + "inaccuracy land" "0.262000" + "inaccuracy ladder" "116.389999" + "inaccuracy fire" "18.610001" + "inaccuracy move" "150.479996" + "spread alt" "0.300000" + "inaccuracy crouch alt" "1.500000" + "inaccuracy stand alt" "2.000000" + "inaccuracy land alt" "0.262000" + "inaccuracy ladder alt" "116.389999" + "inaccuracy fire alt" "18.610001" + "inaccuracy move alt" "150.479996" + "recovery time crouch" "0.388808" + "recovery time stand" "0.544331" + "recoil angle" "0" + "recoil angle variance" "30" + "recoil magnitude" "31" + "recoil magnitude variance" "4" + "recoil seed" "19364" + "primary clip size" "20" + "weapon weight" "20" + "rumble effect" "4" + "recoil angle alt" "0" + "recoil angle variance alt" "30" + "recoil magnitude alt" "31" + "recoil magnitude variance alt" "4" + "recovery time crouch final" "0.388808" + "recovery time stand final" "0.544331" + } + "inventory_image_data" + { + "camera_angles" "-5.0 -140.0 0.0" + "camera_offset" "30.0 2.0 -3.0" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "snip_scar20" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "44.051601" + "UVScale" "0.840000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_huntingrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_huntingrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_sniper" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_rifle" + "weapon_type" "SniperRifle" + "player_animation_extension" "scar20" + "primary_ammo" "BULLET_PLAYER_762MM" + "sound_single_shot" "Weapon_scar20.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_ssg08_prefab" + { + "prefab" "sniper_rifle" + "item_class" "weapon_ssg08" + "item_name" "#SFUI_WPNHUD_SSG08" + "item_description" "#CSGO_Item_Desc_SSG08" + "item_rarity" "common" + "image_inventory" "econ/weapons/base_weapons/weapon_ssg08" + "model_player" "models/weapons/v_snip_ssg08.mdl" + "model_world" "models/weapons/w_snip_ssg08.mdl" + "model_dropped" "models/weapons/w_snip_ssg08_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_ssg08.vtf" + "zoom_in_sound" "Weapon_SSG08.Zoom" + "zoom_out_sound" "Weapon_SSG08.Zoom" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_a.mdl" + "worldmodel_decal_pos" "8.63116 -2.90587 0.500683" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_b.mdl" + "worldmodel_decal_pos" "8.63116 -2.62622 4.20457" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_c.mdl" + "worldmodel_decal_pos" "8.63116 -4.04614 7.6089" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/snip_ssg08_decal_d.mdl" + "worldmodel_decal_pos" "8.63116 -2.43748 11.1247" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "inventory_image_data" + { + "camera_angles" "-5.0 -140.0 0.0" + "camera_offset" "20.0 4.0 -2.4" + "spot_light_key" + { + "position" "-120 120 120" + "color" "2 2.1 2.3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + } + "attributes" + { + "magazine model" "models/weapons/w_snip_ssg08_mag.mdl" + "unzoom after shot" "1" + "primary reserve ammo max" "90" + "inaccuracy jump initial" "208.720001" + "inaccuracy jump" "5.720000" + "inaccuracy jump alt" "5.720000" + "heat per shot" "0.500000" + "addon scale" "0.900000" + "max player speed" "230" + "max player speed alt" "230" + "in game price" "1700" + "armor ratio" "1.700000" + "crosshair min distance" "5" + "zoom levels" "2" + "zoom time 0" "0.050000" + "zoom fov 1" "40" + "zoom time 1" "0.050000" + "zoom fov 2" "15" + "zoom time 2" "0.050000" + "hide view model zoomed" "1" + "penetration" "2.500000" + "damage" "88" + "range" "8192" + "cycletime" "1.250000" + "time to idle" "1.800000" + "idle interval" "60" + "flinch velocity modifier large" "0.350000" + "flinch velocity modifier small" "0.400000" + "spread" "0.280000" + "inaccuracy crouch" "23.780001" + "inaccuracy stand" "31.700001" + "inaccuracy land" "0.215000" + "inaccuracy ladder" "95.489998" + "inaccuracy fire" "22.920000" + "inaccuracy move" "123.449997" + "spread alt" "0.230000" + "inaccuracy crouch alt" "2.800000" + "inaccuracy stand alt" "3.000000" + "inaccuracy land alt" "0.215000" + "inaccuracy ladder alt" "95.489998" + "inaccuracy fire alt" "22.920000" + "inaccuracy move alt" "123.449997" + "recovery time crouch" "0.055783" + "recovery time stand" "0.142096" + "recoil angle" "0" + "recoil angle variance" "20" + "recoil magnitude" "33" + "recoil magnitude variance" "15" + "recoil seed" "1278" + "primary clip size" "10" + "weapon weight" "30" + "rumble effect" "4" + "recoil angle alt" "0" + "recoil angle variance alt" "20" + "recoil magnitude alt" "25" + "recoil magnitude variance alt" "2" + "recovery time crouch final" "0.055783" + "recovery time stand final" "0.142096" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "snip_ssg08" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "49.181999" + "UVScale" "1.084000" + } + "PaintableMaterial1" + { + "Name" "snip_ssg08_scope" + "FolderName" "snip_ssg08" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "13.859800" + "UVScale" "0.424000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_huntingrifle_FP" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_huntingrifle" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_sniper" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "weapon_type" "SniperRifle" + "player_animation_extension" "ssg08" + "primary_ammo" "BULLET_PLAYER_762MM" + "sound_single_shot" "Weapon_SSG08.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_mag7_prefab" + { + "prefab" "shotgun" + "item_class" "weapon_mag7" + "item_name" "#SFUI_WPNHUD_Mag7" + "item_description" "#CSGO_Item_Desc_Mag7" + "image_inventory" "econ/weapons/base_weapons/weapon_mag7" + "model_player" "models/weapons/v_shot_mag7.mdl" + "model_world" "models/weapons/w_shot_mag7.mdl" + "model_dropped" "models/weapons/w_shot_mag7_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_mag7.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_a.mdl" + "worldmodel_decal_pos" "3.00839 -0.899957 -3.85738" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_b.mdl" + "worldmodel_decal_pos" "3.00839 -1.55638 -1.16337" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_c.mdl" + "worldmodel_decal_pos" "3.00839 -0.992867 1.63766" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_mag7_decal_d.mdl" + "worldmodel_decal_pos" "3.00839 -0.953268 4.99879" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "magazine model" "models/weapons/w_shot_mag7_mag.mdl" + "primary reserve ammo max" "32" + "is full auto" "0" + "inaccuracy jump initial" "52.639999" + "inaccuracy jump" "50.090000" + "heat per shot" "1.500000" + "addon scale" "0.900000" + "tracer frequency" "1" + "max player speed" "225" + "in game price" "1300" + "kill award" "900" + "armor ratio" "1.500000" + "crosshair min distance" "9" + "crosshair delta distance" "4" + "penetration" "1" + "damage" "30" + "range" "1400" + "range modifier" "0.450000" + "bullets" "8" + "cycletime" "0.850000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.450000" + "spread" "40.000000" + "inaccuracy crouch" "5.250000" + "inaccuracy stand" "7.000000" + "inaccuracy land" "0.103000" + "inaccuracy ladder" "134.259995" + "inaccuracy fire" "11.190000" + "inaccuracy move" "15.990000" + "recovery time crouch" "0.285521" + "recovery time stand" "0.399729" + "recoil angle variance" "20" + "recoil magnitude" "165" + "recoil magnitude variance" "25" + "recoil seed" "12518" + "spread seed" "19899236" + "primary clip size" "5" + "weapon weight" "20" + "rumble effect" "5" + "inaccuracy crouch alt" "5.250000" + "inaccuracy fire alt" "11.190000" + "inaccuracy jump alt" "50.090000" + "inaccuracy ladder alt" "134.259995" + "inaccuracy land alt" "0.103000" + "inaccuracy move alt" "15.990000" + "inaccuracy stand alt" "7.000000" + "max player speed alt" "225" + "recoil angle variance alt" "20" + "recoil magnitude alt" "165" + "recoil magnitude variance alt" "25" + "recovery time crouch final" "0.285521" + "recovery time stand final" "0.399729" + "spread alt" "40.000000" + } + "inventory_image_data" + { + "camera_angles" "-3.0 -130.0 0.0" + "camera_offset" "13.0 2.3 -1.7" + "spot_light_key" + { + "position" "-120 120 120" + "color" "2 2.1 2.3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "point_light_accent" + { + "position" "40 30 10" + "color" "0.25 0.25 0.25" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "shot_mag7" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "26.356800" + "UVScale" "0.612000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_autoshotgun" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_autoshotgun" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_shotgun" + "eject_brass_effect" "weapon_shell_casing_shotgun" + "tracer_effect" "weapon_tracers_shot" + "weapon_type" "Shotgun" + "player_animation_extension" "mag7" + "primary_ammo" "BULLET_PLAYER_BUCKSHOT" + "sound_single_shot" "Weapon_Mag7.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "reloads_per_shell" "0" + "reloads_with_clip" "1" + } + } + "weapon_nova_prefab" + { + "prefab" "shotgun" + "item_class" "weapon_nova" + "item_name" "#SFUI_WPNHUD_Nova" + "item_description" "#CSGO_Item_Desc_Nova" + "image_inventory" "econ/weapons/base_weapons/weapon_nova" + "model_player" "models/weapons/v_shot_nova.mdl" + "model_world" "models/weapons/w_shot_nova.mdl" + "model_dropped" "models/weapons/w_shot_nova_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_nova.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_a.mdl" + "worldmodel_decal_pos" "-0.834116 1.96027 -2.80232" + "worldmodel_decal_end" "-0.834116 -3.23734 2.3953" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_b.mdl" + "worldmodel_decal_pos" "2.84688 -0.472176 0.0710886" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_c.mdl" + "worldmodel_decal_pos" "2.84688 -0.174112 3.68293" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/shot_nova/shot_nova_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_nova_decal_d.mdl" + "worldmodel_decal_pos" "2.84688 -0.0459781 7.01211" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "primary reserve ammo max" "32" + "is full auto" "0" + "inaccuracy jump initial" "109.699997" + "inaccuracy jump" "126.309998" + "heat per shot" "1.500000" + "addon scale" "0.900000" + "tracer frequency" "1" + "max player speed" "220" + "in game price" "1050" + "kill award" "900" + "armor ratio" "1.000000" + "crosshair min distance" "8" + "crosshair delta distance" "6" + "penetration" "1" + "damage" "26" + "range" "3000" + "range modifier" "0.700000" + "bullets" "9" + "cycletime" "0.880000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.450000" + "spread" "40.000000" + "inaccuracy crouch" "5.250000" + "inaccuracy stand" "7.000000" + "inaccuracy land" "0.236000" + "inaccuracy ladder" "78.750000" + "inaccuracy fire" "9.720000" + "inaccuracy move" "36.750000" + "recovery time crouch" "0.328941" + "recovery time stand" "0.460517" + "recoil angle" "0" + "recoil angle variance" "20" + "recoil magnitude" "143" + "recoil magnitude variance" "22" + "recoil seed" "7763" + "spread seed" "17514" + "primary clip size" "8" + "weapon weight" "20" + "rumble effect" "5" + "inaccuracy crouch alt" "5.250000" + "inaccuracy fire alt" "9.720000" + "inaccuracy jump alt" "126.309998" + "inaccuracy ladder alt" "78.750000" + "inaccuracy land alt" "0.236000" + "inaccuracy move alt" "36.750000" + "inaccuracy stand alt" "7.000000" + "max player speed alt" "220" + "recoil angle alt" "0" + "recoil angle variance alt" "20" + "recoil magnitude alt" "143" + "recoil magnitude variance alt" "22" + "recovery time crouch final" "0.328941" + "recovery time stand final" "0.460517" + "spread alt" "40.000000" + } + "inventory_image_data" + { + "camera_angles" "-5.0 -137.0 0.0" + "camera_offset" "15.0 5.7 -2.5" + "camera_fov" "45" + "spot_light_key" + { + "position" "-190 120 80" + "color" "3 3.15 3.45" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "0 -80 -110" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "90 0 0" + "color" "6 6 6" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "shot_nova" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "39.695000" + "UVScale" "0.744000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_autoshotgun" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_autoshotgun" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_shotgun" + "eject_brass_effect" "weapon_shell_casing_shotgun" + "tracer_effect" "weapon_tracers_shot" + "weapon_type" "Shotgun" + "player_animation_extension" "nova" + "primary_ammo" "BULLET_PLAYER_BUCKSHOT" + "sound_single_shot" "Weapon_Nova.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_sawedoff_prefab" + { + "prefab" "shotgun" + "item_class" "weapon_sawedoff" + "item_name" "#SFUI_WPNHUD_Sawedoff" + "item_description" "#CSGO_Item_Desc_SawedOff" + "image_inventory" "econ/weapons/base_weapons/weapon_sawedoff" + "model_player" "models/weapons/v_shot_sawedoff.mdl" + "model_world" "models/weapons/w_shot_sawedoff.mdl" + "model_dropped" "models/weapons/w_shot_sawedoff_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_sawedoff.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_a.mdl" + "worldmodel_decal_pos" "3.83262 -0.159466 0.515205" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_b.mdl" + "worldmodel_decal_pos" "3.83262 -0.578349 3.14057" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_c.mdl" + "worldmodel_decal_pos" "3.83262 0.148002 6.48249" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_sawedoff_decal_d.mdl" + "worldmodel_decal_pos" "3.83262 -0.00703843 13.8387" + } + } + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "primary reserve ammo max" "32" + "is full auto" "0" + "inaccuracy jump initial" "50.119999" + "inaccuracy jump" "57.700001" + "heat per shot" "1.500000" + "addon scale" "0.900000" + "tracer frequency" "1" + "max player speed" "210" + "in game price" "1100" + "kill award" "900" + "armor ratio" "1.500000" + "crosshair min distance" "9" + "crosshair delta distance" "4" + "penetration" "1" + "damage" "32" + "range" "1400" + "range modifier" "0.450000" + "bullets" "8" + "cycletime" "0.850000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.450000" + "spread" "62.000000" + "inaccuracy crouch" "5.250000" + "inaccuracy stand" "7.000000" + "inaccuracy land" "0.108000" + "inaccuracy ladder" "36.000000" + "inaccuracy fire" "9.720000" + "inaccuracy move" "16.799999" + "recovery time crouch" "0.328941" + "recovery time stand" "0.460517" + "recoil angle variance" "20" + "recoil magnitude" "143" + "recoil magnitude variance" "22" + "recoil seed" "1089" + "spread seed" "9571223" + "primary clip size" "7" + "weapon weight" "20" + "rumble effect" "5" + "inaccuracy crouch alt" "5.250000" + "inaccuracy fire alt" "9.720000" + "inaccuracy jump alt" "57.700001" + "inaccuracy ladder alt" "36.000000" + "inaccuracy land alt" "0.108000" + "inaccuracy move alt" "16.799999" + "inaccuracy stand alt" "7.000000" + "max player speed alt" "210" + "recoil angle variance alt" "20" + "recoil magnitude alt" "143" + "recoil magnitude variance alt" "22" + "recovery time crouch final" "0.328941" + "recovery time stand final" "0.460517" + "spread alt" "62.000000" + } + "inventory_image_data" + { + "camera_angles" "-3.0 -130.0 0.0" + "camera_offset" "11.0 2.6 -2.3" + "spot_light_rim" + { + "position" "0 -80 -100" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "90 0 0" + "color" "2 2 2" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "shot_sawedoff" + "OrigMat" "shot_sawedoff_01" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "26.486500" + "UVScale" "0.445000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_autoshotgun" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_autoshotgun" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_shotgun" + "eject_brass_effect" "weapon_shell_casing_shotgun" + "tracer_effect" "weapon_tracers_shot" + "weapon_type" "Shotgun" + "player_animation_extension" "Sawedoff" + "primary_ammo" "BULLET_PLAYER_BUCKSHOT" + "sound_single_shot" "Weapon_Sawedoff.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_xm1014_prefab" + { + "prefab" "shotgun" + "item_class" "weapon_xm1014" + "item_name" "#SFUI_WPNHUD_xm1014" + "item_description" "#CSGO_Item_Desc_XM1014" + "image_inventory" "econ/weapons/base_weapons/weapon_xm1014" + "model_player" "models/weapons/v_shot_xm1014.mdl" + "model_world" "models/weapons/w_shot_xm1014.mdl" + "model_dropped" "models/weapons/w_shot_xm1014_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_xm1014.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_a.mdl" + "worldmodel_decal_pos" "4.07802 -2.0993 0.558244" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_b.mdl" + "worldmodel_decal_pos" "4.07802 -1.42846 3.59596" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_c.mdl" + "worldmodel_decal_pos" "4.07802 -1.42846 6.83013" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/shot_xm1014_decal_d.mdl" + "worldmodel_decal_pos" "4.07802 -1.63849 10.201" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "primary reserve ammo max" "32" + "is full auto" "1" + "inaccuracy jump initial" "100.379997" + "inaccuracy jump" "130.830002" + "heat per shot" "1.500000" + "addon scale" "0.900000" + "tracer frequency" "1" + "max player speed" "215" + "in game price" "2000" + "kill award" "900" + "armor ratio" "1.600000" + "crosshair min distance" "9" + "crosshair delta distance" "4" + "penetration" "1" + "damage" "20" + "range" "3000" + "range modifier" "0.700000" + "bullets" "6" + "cycletime" "0.350000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.450000" + "spread" "38.000000" + "inaccuracy crouch" "5.250000" + "inaccuracy stand" "7.000000" + "inaccuracy land" "0.232000" + "inaccuracy ladder" "77.209999" + "inaccuracy fire" "8.830000" + "inaccuracy move" "36.029999" + "recovery time crouch" "0.361835" + "recovery time stand" "0.506569" + "recoil angle" "0" + "recoil angle variance" "20" + "recoil magnitude" "80" + "recoil magnitude variance" "20" + "recoil seed" "24862" + "spread seed" "817955" + "primary clip size" "7" + "weapon weight" "20" + "rumble effect" "5" + "inaccuracy crouch alt" "5.250000" + "inaccuracy fire alt" "8.830000" + "inaccuracy jump alt" "130.830002" + "inaccuracy ladder alt" "77.209999" + "inaccuracy land alt" "0.232000" + "inaccuracy move alt" "36.029999" + "inaccuracy stand alt" "7.000000" + "max player speed alt" "215" + "recoil angle alt" "0" + "recoil angle variance alt" "20" + "recoil magnitude alt" "80" + "recoil magnitude variance alt" "20" + "recovery time crouch final" "0.361835" + "recovery time stand final" "0.506569" + "spread alt" "38.000000" + } + "inventory_image_data" + { + "camera_angles" "-4.0 -137.0 0.0" + "camera_offset" "22.0 4.5 -2.5" + "spot_light_key" + { + "position" "-190 120 80" + "color" "3 3.15 3.45" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "0 -80 -110" + "color" "3 5 5" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + "point_light_accent" + { + "position" "90 0 0" + "color" "6 6 6" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "shot_xm1014" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "37.179401" + "UVScale" "0.540000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_autoshotgun" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_autoshotgun" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_shotgun" + "eject_brass_effect" "weapon_shell_casing_shotgun" + "tracer_effect" "weapon_tracers_shot" + "weapon_type" "Shotgun" + "player_animation_extension" "xm1014" + "primary_ammo" "BULLET_PLAYER_BUCKSHOT" + "sound_single_shot" "Weapon_XM1014.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_m249_prefab" + { + "prefab" "machinegun" + "item_class" "weapon_m249" + "item_name" "#SFUI_WPNHUD_M249" + "item_description" "#CSGO_Item_Desc_M249" + "image_inventory" "econ/weapons/base_weapons/weapon_m249" + "model_player" "models/weapons/v_mach_m249para.mdl" + "model_world" "models/weapons/w_mach_m249.mdl" + "model_dropped" "models/weapons/w_mach_m249_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_m249.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_a.mdl" + "worldmodel_decal_pos" "2.54733 1.61972 -4.21781" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_b.mdl" + "worldmodel_decal_pos" "2.54733 -0.737351 -1.1101" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_c.mdl" + "worldmodel_decal_pos" "2.54733 0.422171 2.34458" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_m249para_decal_d.mdl" + "worldmodel_decal_pos" "1.39755 -2.96088 3.20752" + "worldmodel_decal_end" "1.39755 -2.96088 12.263" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "primary reserve ammo max" "200" + "inaccuracy jump initial" "118.269997" + "inaccuracy jump" "279.470001" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "tracer frequency" "1" + "max player speed" "195" + "is full auto" "1" + "in game price" "5200" + "armor ratio" "1.600000" + "crosshair min distance" "6" + "penetration" "2" + "damage" "32" + "range" "8192" + "range modifier" "0.970000" + "cycletime" "0.080000" + "time to idle" "1.600000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "2.000000" + "inaccuracy crouch" "5.340000" + "inaccuracy stand" "7.700000" + "inaccuracy land" "0.398000" + "inaccuracy ladder" "132.809998" + "inaccuracy fire" "3.560000" + "inaccuracy move" "156.250000" + "recovery time crouch" "0.592093" + "recovery time stand" "0.828931" + "recoil angle" "0" + "recoil angle variance" "50" + "recoil magnitude" "25" + "recoil magnitude variance" "2" + "recoil seed" "50310" + "primary clip size" "100" + "weapon weight" "25" + "rumble effect" "2" + "inaccuracy crouch alt" "5.340000" + "inaccuracy fire alt" "3.560000" + "inaccuracy jump alt" "279.470001" + "inaccuracy ladder alt" "132.809998" + "inaccuracy land alt" "0.398000" + "inaccuracy move alt" "156.250000" + "inaccuracy stand alt" "7.700000" + "max player speed alt" "195" + "recoil angle alt" "0" + "recoil angle variance alt" "50" + "recoil magnitude alt" "25" + "recoil magnitude variance alt" "2" + "recovery time crouch final" "0.592093" + "recovery time stand final" "0.828931" + "spread alt" "2.000000" + } + "inventory_image_data" + { + "camera_angles" "-12.0 -142.0 0.0" + "camera_offset" "15.0 6.6 -2.0" + "point_light_accent" + { + "position" "40 30 10" + "color" "0.25 0.25 0.25" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "mach_m249para" + "OrigMat" "m249" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "47.733200" + "UVScale" "1.151000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_para_FP" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_para" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_mg" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_mach" + "weapon_type" "Machinegun" + "player_animation_extension" "m249" + "primary_ammo" "BULLET_PLAYER_556MM_BOX" + "sound_single_shot" "Weapon_M249.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_negev_prefab" + { + "prefab" "machinegun" + "item_class" "weapon_negev" + "item_name" "#SFUI_WPNHUD_Negev" + "item_description" "#CSGO_Item_Desc_Negev" + "image_inventory" "econ/weapons/base_weapons/weapon_negev" + "model_player" "models/weapons/v_mach_negev.mdl" + "model_world" "models/weapons/w_mach_negev.mdl" + "model_dropped" "models/weapons/w_mach_negev_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_negev.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_a.mdl" + "worldmodel_decal_pos" "2.05443 0.308304 -3.33488" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_b.mdl" + "worldmodel_decal_pos" "2.05443 0.0774615 0.03991" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_c.mdl" + "worldmodel_decal_pos" "3.41455 -4.0248 5.52676" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/mach_negev/mach_negev_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/mach_negev_decal_d.mdl" + "worldmodel_decal_pos" "1.92214 0.210319 9.16643" + } + } + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "primary reserve ammo max" "300" + "attack movespeed factor" "0.500000" + "inaccuracy jump initial" "116.290001" + "inaccuracy jump" "292.230011" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "tracer frequency" "1" + "max player speed" "150" + "is full auto" "1" + "in game price" "1700" + "armor ratio" "1.420000" + "crosshair min distance" "6" + "penetration" "2" + "damage" "35" + "range" "8192" + "range modifier" "0.970000" + "cycletime" "0.075000" + "time to idle" "1.600000" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.550000" + "spread" "2" + "inaccuracy crouch" "7.630000" + "inaccuracy stand" "10.170000" + "inaccuracy land" "0.409000" + "inaccuracy ladder" "136.429993" + "inaccuracy fire" "30.000000" + "inaccuracy move" "159.139999" + "recovery time crouch" "0.250000" + "recovery time stand" "0.300000" + "recovery time crouch final" "0.080000" + "recovery time stand final" "0.100000" + "recoil angle" "0" + "recoil angle variance" "0" + "recoil magnitude" "20" + "recoil magnitude variance" "2" + "recoil seed" "57966" + "primary clip size" "150" + "weapon weight" "25" + "rumble effect" "2" + "inaccuracy crouch alt" "7.630000" + "inaccuracy fire alt" "3.370000" + "inaccuracy jump alt" "292.230011" + "inaccuracy ladder alt" "136.429993" + "inaccuracy land alt" "0.409000" + "inaccuracy move alt" "159.139999" + "inaccuracy stand alt" "10.170000" + "inaccuracy pitch shift" "-50.000000" + "inaccuracy alt sound threshold" "0.020000" + "max player speed alt" "150" + "recoil angle alt" "0" + "recoil angle variance alt" "0" + "recoil magnitude alt" "20" + "recoil magnitude variance alt" "2" + "spread alt" "2" + "recovery transition start bullet" "9" + "recovery transition end bullet" "12" + } + "inventory_image_data" + { + "camera_angles" "-6.0 -146.0 0.0" + "camera_offset" "24.0 5.4 -1.5" + "spot_light_key" + { + "position" "-120 120 120" + "color" "2 2.1 2.3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "point_light_accent" + { + "position" "40 30 30" + "color" "0.5 0.5 0.5" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "mach_negev" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "42.354000" + "UVScale" "0.740000" + } + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_para_FP" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_para" + "heat_effect" "weapon_muzzle_smoke" + "addon_location" "primary_mg" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_mach" + "weapon_type" "Machinegun" + "player_animation_extension" "negev" + "primary_ammo" "BULLET_PLAYER_556MM_BOX" + "sound_single_shot" "Weapon_Negev.Single" + "sound_single_shot_accurate" "Weapon_Negev.SingleFocused" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_decoy_prefab" + { + "prefab" "grenade" + "item_class" "weapon_decoy" + "item_name" "#SFUI_WPNHUD_DECOY" + "item_description" "#CSGO_Item_Desc_Decoy_Grenade" + "image_inventory" "econ/weapons/base_weapons/weapon_decoy" + "icon_default_image" "materials/icons/inventory_icon_weapon_decoy.vtf" + "model_player" "models/weapons/v_eq_decoy.mdl" + "model_world" "models/weapons/w_eq_decoy.mdl" + "model_dropped" "models/weapons/w_eq_decoy_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "50" + "penetration" "1" + "damage" "50" + "range" "4096" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "1" + "itemflag exhaustible" "1" + "max player speed alt" "245" + "radio use sound" "Radio.Decoy" + "radio use subtitle" "#SFUI_TitlesTXT_Decoy_in_the_hole" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_DECOY" + "sound_single_shot" "Decoy.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "grenade_decoy" "1" + } + } + "weapon_diversion_prefab" + { + "prefab" "weapon_decoy_prefab" + "item_name" "#SFUI_WPNHUD_Diversion" + "item_description" "#CSGO_Item_Desc_Diversion" + "image_inventory" "econ/weapons/base_weapons/weapon_decoy" + "icon_default_image" "materials/icons/inventory_icon_weapon_decoy.vtf" + "model_player" "models/weapons/v_eq_decoy.mdl" + "model_world" "models/weapons/w_eq_decoy.mdl" + "model_dropped" "models/weapons/w_eq_decoy_dropped.mdl" + } + "weapon_flashbang_prefab" + { + "prefab" "grenade" + "item_class" "weapon_flashbang" + "item_name" "#SFUI_WPNHUD_FLASHBANG" + "item_description" "#CSGO_Item_Desc_Flashbang" + "image_inventory" "econ/weapons/base_weapons/weapon_flashbang" + "icon_default_image" "materials/icons/inventory_icon_weapon_flashbang.vtf" + "model_player" "models/weapons/v_eq_flashbang.mdl" + "model_world" "models/weapons/w_eq_flashbang.mdl" + "model_dropped" "models/weapons/w_eq_flashbang_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "200" + "crosshair min distance" "7" + "penetration" "1" + "damage" "50" + "range" "4096" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "1" + "itemflag exhaustible" "1" + "max player speed alt" "245" + "radio use sound" "Radio.Flashbang" + "radio use subtitle" "#SFUI_TitlesTXT_Flashbang_in_the_hole" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_FLASHBANG" + "sound_single_shot" "Flashbang.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "grenade_flash" "1" + } + } + "weapon_hegrenade_prefab" + { + "prefab" "explosive_grenade" + "item_class" "weapon_hegrenade" + "item_name" "#SFUI_WPNHUD_HE_Grenade" + "item_description" "#CSGO_Item_Desc_HE_Grenade" + "image_inventory" "econ/weapons/base_weapons/weapon_hegrenade" + "icon_default_image" "materials/icons/inventory_icon_weapon_hegrenade.vtf" + "model_player" "models/weapons/v_eq_fraggrenade.mdl" + "model_world" "models/weapons/w_eq_fraggrenade.mdl" + "model_dropped" "models/weapons/w_eq_fraggrenade_dropped.mdl" + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + } + "weapon_frag_grenade_prefab" + { + "prefab" "weapon_hegrenade_prefab" + "item_name" "#SFUI_WPNHUD_frag_Grenade" + "item_description" "#CSGO_Item_Desc_Frag_Grenade" + "image_inventory" "econ/weapons/base_weapons/weapon_hegrenade" + "icon_default_image" "materials/icons/inventory_icon_weapon_hegrenade.vtf" + "model_player" "models/weapons/v_eq_fraggrenade.mdl" + "model_world" "models/weapons/w_eq_fraggrenade.mdl" + "model_dropped" "models/weapons/w_eq_fraggrenade_dropped.mdl" + } + "weapon_fire_grenade_prefab" + { + "prefab" "grenade" + "taxonomy" + { + "burns_on_contact" "1" + "grenade_fire" "1" + } + } + "weapon_incgrenade_prefab" + { + "prefab" "weapon_fire_grenade_prefab" + "item_class" "weapon_incgrenade" + "item_name" "#SFUI_WPNHUD_IncGrenade" + "item_description" "#CSGO_Item_Desc_Incindiary_Grenade" + "image_inventory" "econ/weapons/base_weapons/weapon_incgrenade" + "icon_default_image" "materials/icons/inventory_icon_weapon_incgrenade.vtf" + "model_player" "models/weapons/v_eq_incendiarygrenade.mdl" + "model_world" "models/weapons/w_eq_incendiarygrenade.mdl" + "model_dropped" "models/weapons/w_eq_incendiarygrenade_dropped.mdl" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "600" + "crosshair min distance" "8" + "flinch velocity modifier large" "0.700000" + "flinch velocity modifier small" "0.800000" + "armor ratio" "1.475000" + "penetration" "1" + "damage" "40" + "range" "4096" + "range modifier" "0.990000" + "throw velocity" "750" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "2" + "itemflag exhaustible" "1" + "max player speed alt" "245" + "radio use sound" "Radio.Incendiary" + "radio use subtitle" "#SFUI_TitlesTXT_Incendiary_in_the_hole" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_MOLOTOV" + "sound_single_shot" "IncGrenade.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_molotov_prefab" + { + "prefab" "weapon_fire_grenade_prefab" + "item_class" "weapon_molotov" + "item_name" "#SFUI_WPNHUD_MOLOTOV" + "item_description" "#CSGO_Item_Desc_Molotov" + "image_inventory" "econ/weapons/base_weapons/weapon_molotov" + "icon_default_image" "materials/icons/inventory_icon_weapon_molotov.vtf" + "model_player" "models/weapons/v_eq_molotov.mdl" + "model_world" "models/weapons/w_eq_molotov.mdl" + "model_dropped" "models/weapons/w_eq_molotov_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "400" + "crosshair min distance" "8" + "armor ratio" "1.800000" + "penetration" "1" + "damage" "40" + "range" "4096" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "2" + "itemflag exhaustible" "1" + "max player speed alt" "245" + "radio use sound" "Radio.Molotov" + "radio use subtitle" "#SFUI_TitlesTXT_Molotov_in_the_hole" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_MOLOTOV" + "sound_single_shot" "MolotovGrenade.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_firebomb_prefab" + { + "prefab" "weapon_molotov_prefab" + "item_name" "#SFUI_WPNHUD_FIREBOMB" + "item_description" "#CSGO_Item_Desc_Firebomb" + "image_inventory" "econ/weapons/base_weapons/weapon_molotov" + "icon_default_image" "materials/icons/inventory_icon_weapon_molotov.vtf" + "model_player" "models/weapons/v_eq_molotov.mdl" + "model_world" "models/weapons/w_eq_molotov.mdl" + "model_dropped" "models/weapons/w_eq_molotov_dropped.mdl" + } + "weapon_smokegrenade_prefab" + { + "prefab" "grenade" + "item_class" "weapon_smokegrenade" + "item_name" "#SFUI_WPNHUD_Smoke_Grenade" + "item_description" "#CSGO_Item_Desc_Smoke_Grenade" + "image_inventory" "econ/weapons/base_weapons/weapon_smokegrenade" + "icon_default_image" "materials/icons/inventory_icon_weapon_smokegrenade.vtf" + "model_player" "models/weapons/v_eq_smokegrenade.mdl" + "model_world" "models/weapons/w_eq_smokegrenade.mdl" + "model_dropped" "models/weapons/w_eq_smokegrenade_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "300" + "armor ratio" "1.000000" + "penetration" "0" + "damage" "50" + "range" "4096" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "2" + "itemflag exhaustible" "1" + "max player speed alt" "245" + "radio use sound" "Radio.Smoke" + "radio use subtitle" "#SFUI_TitlesTXT_Smoke_in_the_hole" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "grenade_smoke_color" "0.0 0.8 0.0" + "primary_ammo" "AMMO_TYPE_SMOKEGRENADE" + "sound_single_shot" "SmokeGrenade.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "grenade_smoke" "1" + } + } + "weapon_tagrenade_prefab" + { + "prefab" "grenade" + "item_class" "weapon_tagrenade" + "item_name" "#SFUI_WPNHUD_TAGrenade" + "item_description" "#SFUI_WPNHUD_TAGrenade" + "image_inventory" "econ/weapons/base_weapons/weapon_tagrenade" + "icon_default_image" "materials/icons/inventory_icon_weapon_tagrenade.vtf" + "model_player" "models/weapons/v_sonar_bomb.mdl" + "model_world" "models/weapons/w_eq_sensorgrenade.mdl" + "model_dropped" "models/weapons/w_eq_sensorgrenade_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "100" + "crosshair min distance" "8" + "armor ratio" "1.000000" + "penetration" "1" + "damage" "1" + "range" "4096" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "1" + "itemflag exhaustible" "1" + "max player speed alt" "245" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_TAGRENADE" + "sound_single_shot" "Decoy.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "grenade_ta" "1" + } + } + "weapon_snowball_prefab" + { + "prefab" "grenade" + "item_class" "weapon_snowball" + "item_name" "#SFUI_WPNHUD_Snowball" + "item_description" "#SFUI_WPNHUD_Snowball" + "image_inventory" "econ/weapons/base_weapons/weapon_snowball" + "icon_default_image" "materials/icons/inventory_icon_weapon_snowball.vtf" + "model_player" "models/weapons/v_eq_snowball.mdl" + "model_world" "models/weapons/w_eq_snowball.mdl" + "model_dropped" "models/weapons/w_eq_snowball_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "100" + "crosshair min distance" "8" + "armor ratio" "1.000000" + "penetration" "0" + "damage" "1" + "range" "4096" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "1" + "itemflag exhaustible" "1" + "max player speed alt" "245" + } + "visuals" + { + "weapon_type" "Grenade" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_SNOWBALL" + "sound_single_shot" "Player.SnowballThrow" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_m4a1_silencer_prefab" + { + "prefab" "rifle" + "item_class" "weapon_m4a1" + "anim_class" "weapon_m4a1_silencer" + "item_name" "#SFUI_WPNHUD_M4_SILENCER" + "item_description" "#CSGO_Item_Desc_m4a1_silencer" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_m4a1_silencer" + "model_player" "models/weapons/v_rif_m4a1_s.mdl" + "model_world" "models/weapons/w_rif_m4a1_s.mdl" + "model_dropped" "models/weapons/w_rif_m4a1_s_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_m4a1_silencer.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_a.mdl" + "worldmodel_decal_pos" "5.84555 -0.430558 -2.30653" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_b.mdl" + "worldmodel_decal_pos" "5.84555 -3.0645 3.20751" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_c.mdl" + "worldmodel_decal_pos" "5.84555 -1.2629 0.385118" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/rif_m4a1_s_decal_d.mdl" + "worldmodel_decal_pos" "5.84555 0.245251 7.90765" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "inventory_image_data" + { + "camera_angles" "2.0 -135.0 0.0" + "camera_offset" "13.0 5.1 -4.0" + } + "attributes" + { + "icon display model" "models/weapons/w_rif_m4a1_s_icon.mdl" + "magazine model" "models/weapons/w_rif_m4a1_s_mag.mdl" + "primary reserve ammo max" "80" + "is full auto" "1" + "time between burst shots" "0.090000" + "has silencer" "1" + "in game price" "2900" + "primary clip size" "20" + "heat per shot" "0.350000" + "addon scale" "0.900000" + "tracer frequency" "3" + "tracer frequency alt" "0" + "max player speed" "225" + "max player speed alt" "225" + "crosshair min distance" "4" + "crosshair delta distance" "3" + "penetration" "2" + "damage" "38" + "headshot multiplier" "3.475000" + "range" "8192" + "range modifier" "0.940000" + "bullets" "1" + "cycletime" "0.100000" + "time to idle" "1.500000" + "idle interval" "60" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.400000" + "spread" "0.600000" + "inaccuracy stand" "4.900000" + "inaccuracy jump initial" "96.769997" + "inaccuracy jump" "99.699997" + "inaccuracy land" "0.197000" + "inaccuracy ladder" "110.994003" + "inaccuracy fire" "12.000000" + "inaccuracy move" "92.879997" + "spread alt" "0.500000" + "inaccuracy stand alt" "4.900000" + "inaccuracy jump alt" "99.699997" + "inaccuracy land alt" "0.197000" + "inaccuracy ladder alt" "113.671997" + "inaccuracy fire alt" "7.000000" + "inaccuracy move alt" "122.000000" + "recoil seed" "38965" + "recoil angle" "0" + "recoil angle alt" "0" + "recoil angle variance" "65" + "recoil angle variance alt" "65" + "recoil magnitude" "25" + "recoil magnitude variance" "3" + "recoil magnitude alt" "21" + "recoil magnitude variance alt" "0" + "recovery time crouch" "0.242100" + "recovery time crouch final" "0.332888" + "recovery time stand" "0.338941" + "recovery time stand final" "0.466044" + "inaccuracy crouch" "4.100000" + "inaccuracy crouch alt" "4.100000" + "addon scale" "1.000000" + "armor ratio" "1.400000" + "weapon weight" "25" + "rumble effect" "4" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "rif_m4a1_s" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "47.460999" + "UVScale" "0.916700" + } + } + "visuals" + { + "primary_ammo" "BULLET_PLAYER_556MM_SMALL" + "weapon_type" "Rifle" + "addon_location" "primary_rifle" + "eject_brass_effect" "weapon_shell_casing_rifle" + "tracer_effect" "weapon_tracers_assrifle" + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_1st_person_alt" "weapon_muzzle_flash_assaultrifle_silenced" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person_alt" "weapon_muzzle_flash_assaultrifle_silenced" + "heat_effect" "weapon_muzzle_smoke" + "player_animation_extension" "m4_s" + "sound_single_shot" "Weapon_M4A1.SilencedSingle" + "sound_special1" "Weapon_M4A1.Silenced" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_usp_silencer_prefab" + { + "prefab" "secondary" + "item_class" "weapon_hkp2000" + "anim_class" "weapon_usp_silencer" + "item_name" "#SFUI_WPNHUD_USP_SILENCER" + "item_description" "#CSGO_Item_Desc_usp_silencer" + "item_rarity" "uncommon" + "image_inventory" "econ/weapons/base_weapons/weapon_usp_silencer" + "model_player" "models/weapons/v_pist_223.mdl" + "model_world" "models/weapons/w_pist_223.mdl" + "model_dropped" "models/weapons/w_pist_223_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_usp_silencer.vtf" + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_a.mdl" + "worldmodel_decal_pos" "3.91123 -3.83728 -2.80839" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_b.mdl" + "worldmodel_decal_pos" "3.91123 -0.668155 -2.19396" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_c.mdl" + "worldmodel_decal_pos" "3.91123 -0.53261 0.751452" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_223/pist_223_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_223_decal_d.mdl" + "worldmodel_decal_pos" "3.91123 -0.617352 3.43111" + } + } + "used_by_classes" + { + "counter-terrorists" "1" + } + "inventory_image_data" + { + "camera_angles" "-1.0 -125.0 0.0" + "camera_offset" "12.0 1.5 -1.8" + "camera_fov" "30.000000" + } + "attributes" + { + "magazine model" "models/weapons/w_pist_223_mag.mdl" + "has silencer" "1" + "spread" "2.500000" + "spread alt" "1.500000" + "inaccuracy fire" "71.000000" + "inaccuracy fire alt" "52.000000" + "inaccuracy move" "13.870000" + "inaccuracy jump initial" "96.599998" + "inaccuracy jump" "94.480003" + "inaccuracy jump alt" "94.480003" + "recoil magnitude" "29" + "recoil magnitude alt" "23" + "tracer frequency" "1" + "tracer frequency alt" "0" + "primary clip size" "12" + "primary reserve ammo max" "24" + "heat per shot" "0.300000" + "max player speed" "240" + "in game price" "200" + "armor ratio" "1.010000" + "crosshair min distance" "8" + "penetration" "1" + "damage" "35" + "range" "4096" + "range modifier" "0.910000" + "cycletime" "0.170000" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "inaccuracy crouch" "3.680000" + "inaccuracy stand" "4.900000" + "inaccuracy land" "0.191000" + "inaccuracy ladder" "138.320007" + "inaccuracy crouch alt" "3.680000" + "inaccuracy stand alt" "4.900000" + "inaccuracy land alt" "0.198000" + "inaccuracy ladder alt" "119.900002" + "inaccuracy move alt" "13.870000" + "recovery time crouch" "0.291277" + "recovery time stand" "0.349532" + "recoil angle" "0" + "recoil angle variance" "0" + "recoil magnitude variance" "0" + "recoil seed" "5426" + "weapon weight" "5" + "rumble effect" "1" + "max player speed alt" "240" + "recoil angle alt" "0" + "recoil angle variance alt" "0" + "recoil magnitude variance alt" "0" + "recovery time crouch final" "0.291277" + "recovery time stand final" "0.349532" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_223" + "FolderName" "pist_223" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "18.016001" + "UVScale" "0.516000" + } + } + "visuals" + { + "sound_single_shot" "Weapon_USP.Single" + "sound_special1" "Weapon_USP.SilencedShot" + "primary_ammo" "BULLET_PLAYER_357SIG_SMALL" + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_pistol" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_pistol" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_revolver_prefab" + { + "prefab" "secondary" + "item_class" "weapon_deagle" + "anim_class" "weapon_revolver" + "item_name" "#SFUI_WPNHUD_REVOLVER" + "item_description" "#CSGO_Item_Desc_Revolver" + "image_inventory" "econ/weapons/base_weapons/weapon_revolver" + "item_rarity" "common" + "model_player" "models/weapons/v_pist_revolver.mdl" + "model_world" "models/weapons/w_pist_revolver.mdl" + "model_dropped" "models/weapons/w_pist_revolver_dropped.mdl" + "icon_default_image" "materials/icons/inventory_icon_weapon_revolver.vtf" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "stickers" + { + "0" + { + "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_a.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_a.mdl" + "worldmodel_decal_pos" "2.53443 -3.22857 -1.90564" + } + "1" + { + "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_b.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_b.mdl" + "worldmodel_decal_pos" "2.53443 -0.989865 -1.12229" + } + "2" + { + "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_c.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_c.mdl" + "worldmodel_decal_pos" "2.53443 -0.955564 1.77999" + } + "3" + { + "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_d.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_d.mdl" + "worldmodel_decal_pos" "2.53443 -0.929928 4.8028" + } + "4" + { + "viewmodel_material" "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_e.vmt" + "viewmodel_geometry" "models/weapons/stickers/v_models/pist_revolver_decal_e.mdl" + "worldmodel_decal_pos" "2.53443 -0.955564 1.77999" + "worldmodel_decal_end" "2.53443 -0.955564 -1.77999" + } + } + "inventory_image_data" + { + "camera_angles" "0.0 -130.0 0.0" + "camera_offset" "5.0 1.2 -1.2" + } + "attributes" + { + "icon display model" "models/weapons/w_pist_revolver_icon.mdl" + "is revolver" "1" + "is full auto" "1" + "in game price" "600" + "primary clip size" "8" + "primary reserve ammo max" "8" + "crosshair min distance" "4" + "crosshair delta distance" "3" + "penetration" "2" + "damage" "86" + "range modifier" "0.940000" + "bullets" "1" + "time to idle" "1.500000" + "idle interval" "60" + "flinch velocity modifier large" "0.400000" + "flinch velocity modifier small" "0.400000" + "spread" "0.520000" + "inaccuracy crouch" "1.000000" + "inaccuracy stand" "2.000000" + "inaccuracy jump initial" "18.650000" + "inaccuracy jump" "53.230000" + "inaccuracy land" "0.130000" + "inaccuracy ladder" "12.000000" + "inaccuracy fire" "50.000000" + "inaccuracy move" "6.500000" + "max player speed" "180" + "cycletime" "0.500000" + "spread alt" "68.000000" + "inaccuracy crouch alt" "5.000000" + "inaccuracy stand alt" "12.000000" + "inaccuracy jump alt" "53.230000" + "inaccuracy land alt" "0.150000" + "inaccuracy ladder alt" "35.000000" + "inaccuracy fire alt" "55.000000" + "inaccuracy move alt" "36.000000" + "max player speed alt" "220" + "cycletime alt" "0.400000" + "recovery time crouch" "0.700000" + "recovery time stand" "0.900000" + "recoil seed" "12345" + "recoil angle" "0" + "recoil angle variance" "40" + "recoil magnitude" "20" + "recoil magnitude variance" "0" + "recoil angle alt" "3" + "recoil angle variance alt" "50" + "recoil magnitude alt" "45" + "recoil magnitude variance alt" "6" + "tracer frequency alt" "1" + "tracer frequency" "1" + "armor ratio" "1.864000" + "range" "4096" + "weapon weight" "7" + "rumble effect" "2" + "recovery time crouch final" "0.449927" + "recovery time stand final" "0.811200" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "pist_revolver" + "FolderName" "pist_revolver" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.182200" + "UVScale" "0.500000" + } + } + "visuals" + { + "sound_single_shot" "Weapon_Revolver.Single" + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_assaultrifle" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_assaultrifle" + "heat_effect" "weapon_muzzle_smoke" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_pistol" + "weapon_type" "Pistol" + "player_animation_extension" "pistol" + "primary_ammo" "BULLET_PLAYER_50AE" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_taser_prefab" + { + "prefab" "equipment" + "item_class" "weapon_taser" + "item_name" "#SFUI_WPNHUD_Taser" + "item_description" "#CSGO_Item_Desc_Taser" + "image_inventory" "econ/weapons/base_weapons/weapon_taser" + "icon_default_image" "materials/icons/inventory_icon_weapon_taser.vtf" + "model_player" "models/weapons/v_eq_taser.mdl" + "model_world" "models/weapons/w_eq_taser.mdl" + "model_dropped" "models/weapons/w_eq_taser.mdl" + "item_gear_slot" "melee" + "item_gear_slot_position" "1" + "inv_group_equipment" "taser" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "inaccuracy jump initial" "96.620003" + "inaccuracy jump" "92.959999" + "inaccuracy jump alt" "92.959999" + "heat per shot" "0.000000" + "tracer frequency" "1" + "max player speed" "220" + "in game price" "200" + "kill award" "0" + "armor ratio" "2" + "crosshair min distance" "8" + "penetration" "0" + "damage" "500" + "range" "190" + "range modifier" "0.004900" + "flinch velocity modifier large" "0.500000" + "flinch velocity modifier small" "0.650000" + "spread" "2.000000" + "inaccuracy crouch" "1.000000" + "inaccuracy stand" "1.000000" + "inaccuracy land" "0.175000" + "inaccuracy ladder" "119.500000" + "inaccuracy fire" "22.120001" + "inaccuracy move" "1.000000" + "recovery time crouch" "0.287823" + "recovery time stand" "0.345388" + "recoil seed" "687" + "primary clip size" "1" + "primary default clip size" "1" + "secondary default clip size" "1" + "weapon weight" "5" + "itemflag exhaustible" "1" + "rumble effect" "1" + "inaccuracy crouch alt" "1.000000" + "inaccuracy fire alt" "22.120001" + "inaccuracy ladder alt" "119.500000" + "inaccuracy land alt" "0.175000" + "inaccuracy move alt" "1.000000" + "inaccuracy stand alt" "1.000000" + "max player speed alt" "220" + "recovery time crouch final" "0.287823" + "recovery time stand final" "0.345388" + "spread alt" "2.000000" + } + "visuals" + { + "muzzle_flash_effect_1st_person" "weapon_muzzle_flash_taser" + "muzzle_flash_effect_3rd_person" "weapon_muzzle_flash_taser" + "eject_brass_effect" "weapon_shell_casing_9mm" + "tracer_effect" "weapon_tracers_taser" + "weapon_type" "Knife" + "player_animation_extension" "pistol" + "primary_ammo" "AMMO_TYPE_TASERCHARGE" + "sound_single_shot" "Weapon_Taser.Single" + "sound_nearlyempty" "Default.nearlyempty" + } + "taxonomy" + { + "self_damage_on_miss__inflicts_damage" "0" + } + } + "weapon_zone_repulsor_prefab" + { + "prefab" "equipment" + "item_class" "weapon_zone_repulsor" + "item_name" "#SFUI_WPNHUD_Zone_Repulsor" + "item_description" "#CSGO_Item_Desc_Zone_Repulsor" + "image_inventory" "econ/weapons/base_weapons/weapon_shield" + "icon_default_image" "materials/icons/inventory_icon_weapon_shield.vtf" + "model_player" "models/weapons/v_repulsor.mdl" + "model_world" "models/props_survival/repulsor/repulsor.mdl" + "model_dropped" "models/props_survival/repulsor/repulsor.mdl" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "none" + "item_gear_slot" "boost" + "item_gear_slot_position" "1" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "180" + "max player speed alt" "180" + "in game price" "0" + "weapon weight" "0" + } + "visuals" + { + "weapon_type" "ZoneRepulsor" + } + } + "weapon_shield_prefab" + { + "prefab" "equipment" + "item_class" "weapon_shield" + "item_name" "#SFUI_WPNHUD_Shield" + "item_description" "#CSGO_Item_Desc_Shield" + "image_inventory" "econ/weapons/base_weapons/weapon_shield" + "icon_default_image" "materials/icons/inventory_icon_weapon_shield.vtf" + "model_player" "models/weapons/v_shield.mdl" + "model_world" "models/weapons/w_eq_shield.mdl" + "model_dropped" "models/weapons/w_eq_shield_back.mdl" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_slot" "heavy" + "item_sub_position" "heavy5" + "item_gear_slot" "boost" + "item_gear_slot_position" "1" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "in game price" "1100" + "max player speed" "200" + "max player speed alt" "200" + "weapon weight" "0" + } + "visuals" + { + "weapon_type" "Shield" + } + } + "weapon_breachcharge_prefab" + { + "prefab" "equipment" + "item_class" "weapon_breachcharge" + "item_name" "#SFUI_WPNHUD_BreachCharge" + "item_description" "#SFUI_WPNHUD_BreachCharge" + "image_inventory" "econ/weapons/base_weapons/weapon_breachcharge" + "icon_default_image" "materials/icons/inventory_icon_weapon_breachcharge.vtf" + "model_player" "models/weapons/v_breachcharge.mdl" + "model_world" "models/weapons/w_eq_charge.mdl" + "model_dropped" "models/weapons/w_eq_charge_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "300" + "armor ratio" "1.200000" + "penetration" "1" + "crosshair min distance" "8" + "damage" "500" + "range" "350" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary clip size" "3" + "weapon weight" "2" + "max player speed alt" "245" + } + "visuals" + { + "weapon_type" "Breach Charge" + "player_animation_extension" "gren" + "grenade_smoke_color" "0.0 0.8 0.0" + "primary_ammo" "AMMO_TYPE_BREACHCHARGE" + "sound_single_shot" "HEGrenade.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_bumpmine_prefab" + { + "prefab" "equipment" + "item_class" "weapon_bumpmine" + "item_name" "#SFUI_WPNHUD_BUMPMINE" + "item_description" "#SFUI_WPNHUD_BUMPMINE" + "image_inventory" "econ/weapons/base_weapons/weapon_bumpmine" + "icon_default_image" "materials/icons/inventory_icon_weapon_breachcharge.vtf" + "model_player" "models/weapons/v_bumpmine.mdl" + "model_world" "models/weapons/w_eq_bumpmine.mdl" + "model_dropped" "models/weapons/w_eq_bumpmine_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "245" + "in game price" "300" + "armor ratio" "1.200000" + "penetration" "1" + "crosshair min distance" "8" + "damage" "5" + "range" "350" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary clip size" "3" + "weapon weight" "2" + "max player speed alt" "245" + } + "visuals" + { + "weapon_type" "Bump Mine" + "player_animation_extension" "gren" + "primary_ammo" "AMMO_TYPE_BUMPMINE" + "sound_single_shot" "HEGrenade.Throw" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_healthshot_prefab" + { + "prefab" "equipment" + "item_class" "weapon_healthshot" + "item_name" "#SFUI_WPNHUD_Healthshot" + "item_description" "#SFUI_WPNHUD_Healthshot" + "image_inventory" "econ/weapons/base_weapons/weapon_healthshot" + "icon_default_image" "materials/icons/inventory_icon_weapon_healthshot.vtf" + "model_player" "models/weapons/v_healthshot.mdl" + "model_world" "models/weapons/w_eq_healthshot.mdl" + "model_dropped" "models/weapons/w_eq_healthshot_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "250" + "in game price" "0" + "armor ratio" "1.000000" + "penetration" "1" + "crosshair min distance" "6" + "damage" "50" + "range" "4096" + "range modifier" "0.990000" + "weapon weight" "0" + "max player speed alt" "250" + "itemflag exhaustible" "1" + "primary default clip size" "1" + "secondary default clip size" "1" + } + "visuals" + { + "weapon_type" "StackableItem" + "player_animation_extension" "c4" + "grenade_smoke_color" "0.0 0.8 0.0" + "primary_ammo" "AMMO_TYPE_HEALTHSHOT" + "sound_single_shot" "c4.plant" + "sound_empty" "c4.click" + "sound_burst" "c4.explode" + "sound_special1" "c4.disarmstart" + "sound_special2" "c4.disarmfinish" + "sound_special3" "c4.ExplodeWarning" + "sound_nearlyempty" "Default.nearlyempty" + } + } + "weapon_fists_prefab" + { + "prefab" "melee" + "item_class" "weapon_fists" + "item_name" "#SFUI_WPNHUD_Fists" + "item_description" "#SFUI_WPNHUD_Fists" + "image_inventory" "econ/weapons/base_weapons/weapon_fists" + "icon_default_image" "materials/icons/inventory_icon_weapon_fists.vtf" + "model_player" "models/weapons/v_fists.mdl" + "model_world" "models/weapons/w_eq_fists.mdl" + "model_dropped" "models/weapons/w_eq_fists.mdl" + "item_gear_slot_position" "2" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "275" + "max player speed alt" "275" + "in game price" "0" + "weapon weight" "0" + } + "visuals" + { + "weapon_type" "Fists" + } + } + "weapon_tablet_prefab" + { + "prefab" "equipment" + "item_class" "weapon_tablet" + "item_name" "#SFUI_WPNHUD_Tablet" + "item_description" "#SFUI_WPNHUD_Tablet" + "image_inventory" "econ/weapons/base_weapons/weapon_tablet" + "icon_default_image" "materials/icons/inventory_icon_weapon_tablet.vtf" + "model_player" "models/weapons/v_tablet.mdl" + "model_world" "models/weapons/w_eq_tablet.mdl" + "model_dropped" "models/weapons/w_eq_tablet_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "max player speed" "220" + "in game price" "300" + "armor ratio" "1.200000" + "penetration" "1" + "crosshair min distance" "8" + "damage" "500" + "range" "350" + "range modifier" "0.990000" + "throw velocity" "750.000000" + "primary clip size" "1" + "weapon weight" "2" + "max player speed alt" "245" + "allow hand flipping" "0" + } + "visuals" + { + "weapon_type" "Tablet" + "player_animation_extension" "c4" + } + } + "weapon_melee_prefab" + { + "prefab" "melee" + "item_class" "weapon_melee" + "item_type_name" "#CSGO_Type_Melee" + "visuals" + { + "weapon_type" "Melee" + } + } + "weapon_melee_prefab_noncustomizable" + { + "prefab" "weapon_melee_prefab" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "none" + "capabilities" + { + "nameable" "0" + } + } + "wearable" + { + "item_class" "wearable_item" + "item_slot" "clothing" + "inv_group_equipment" "clothing" + "item_quality" "normal" + "item_rarity" "common" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "ui/item_paper_pickup.wav" + "drop_sound" "ui/item_paper_pickup.wav" + "capabilities" + { + "nameable" "0" + } + "inventory_image_data" + { + "camera_angles" "2.0 -130.0 0.0" + "camera_offset" "0.0 1.0 -2.0" + "camera_fov" "35.000000" + "override_default_light" "1" + "spot_light_key" + { + "position" "-120 120 180" + "color" "2.1 2.1 2.1" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "spot_light_rim" + { + "position" "10.0 -90.0 -60.0" + "color" "4 4 4" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.040000" + "outer_cone" "0.500000" + } + } + } + "hands" + { + "prefab" "wearable" + "item_sub_position" "clothing_hands" + "item_type_name" "#Type_Hands" + "item_name" "#CSGO_Wearable_Hands" + "item_description" "#CSGO_Wearable_Hands_Desc" + "visuals" + { + "player_bodygroups" + { + "gloves" "0" + } + } + } + "hands_paintable" + { + "prefab" "hands" + "capabilities" + { + "paintable" "1" + } + } + "customplayer" + { + "prefab" "wearable" + "item_slot" "customplayer" + "item_sub_position" "customplayer" + "legacy_character" "0" + "inv_group_equipment" "customplayer" + "item_type_name" "#Type_CustomPlayer" + "item_name" "#CSGO_CustomPlayer" + "item_description" "#CSGO_CustomPlayer_Desc" + "inventory_image_data" + { + "camera_offset" "75.28 -73.31 60.16" + "camera_angles" "-1.15 138.06 0.00" + "camera_fov" "20.000000" + "override_camera_lookat" "1" + "root_mdl" "models/player/custom_player/uiplayer/animset_uiplayer.mdl" + "pose_sequence" "cu_ct_pose01" + "override_default_light" "1" + "ambient_light" "0.19 0.22 0.29" + "shadow_light_offset" "66.32 -17.06 124.60" + "shadow_light_angles" "39.57 165.58 0.00" + "shadow_light_color" "4.38 4.98 5.41" + "shadow_light_fov" "54.000000" + "shadow_light_znear" "4.000000" + "shadow_light_zfar" "256.000000" + "shadow_light_atten_farz" "512.000000" + "directional_light_0" + { + "direction" "-0.50 0.80 0.00" + "color" "0.21 0.21 0.22" + } + "directional_light_1" + { + "direction" "0.70 -0.80 0.00" + "color" "0.07 0.10 0.13" + } + } + "capabilities" + { + "can_patch" "0" + } + } + "customplayertradable" + { + "prefab" "customplayer" + "item_quality" "unique" + "capabilities" + { + "can_patch" "1" + } + } + "coupon_prefab" + { + "prefab" "weapon_case_base" + "item_name" "#CSGO_Tool_Coupon" + "item_description" "#CSGO_Tool_Coupon" + "image_inventory" "econ/coupon/offer" + "item_type" "coupon" + "tool" + { + "usage_capabilities" + { + "usable_out_of_game" "1" + } + } + "attributes" + { + "cannot trade" "1" + "expiration date" + { + "attribute_class" "expiration_date" + "force_gc_to_generate" "1" + "use_custom_logic" "expiration_period_hours_from_now" + "value" "60" + } + } + } + "coupon_directpurchase_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_enfu_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_pinups_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_slid3_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_team_roles_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_sugarface_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_bestiary_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_comm2018_01_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_skillgroup_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_feral_predators_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_chicken_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_cs20_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_halo_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_warhammer_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_poorly_drawn_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_community2021_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_bf2042_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_spring2022_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_csgo10_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_radicals_capsule_prefab" + { + "prefab" "coupon_prefab" + } + "coupon_masterminds_capsule_prefab" + { + "prefab" "coupon_prefab" + "linked_coupon" "-101" + } + "coupon_tacticians_capsule_prefab" + { + "prefab" "coupon_prefab" + "linked_coupon" "-102" + } + "coupon_initiators_capsule_prefab" + { + "prefab" "coupon_prefab" + "linked_coupon" "-103" + } + "dhw14_sticker_capsule_prefab" + { + "first_sale_date" "2014/11/20" + "prefab" "sticker_capsule" + "item_type" "self_opening_purchase" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "eslkatowice2015_sticker_capsule_prefab" + { + "first_sale_date" "2015/2/27" + "prefab" "sticker_capsule" + "item_type" "self_opening_purchase" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "eslcologne2015_sticker_capsule_prefab" + { + "first_sale_date" "2015/8/10" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "cluj2015_sticker_capsule_prefab" + { + "first_sale_date" "2015/10/20" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "coupon_sprays_capsule_community_1" + { + "prefab" "coupon_prefab" + } + "campaign_prefab" + { + "image_inventory" "econ/tools/campaign" + "attributes" + { + "cannot trade" "1" + "campaign completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "force_gc_to_generate" "1" + "value" "0" + } + } + "capabilities" + { + "can_delete" "0" + } + "item_class" "collectible_item" + "item_type" "campaign" + "item_type_name" "#campaign" + "icon_default_image" "materials/icons/inventory_icon_campaign.vtf" + "image_inventory" "backpack/crafting/campaign" + "item_quality" "unique" + "item_rarity" "common" + "min_ilevel" "1" + "max_ilevel" "1" + "image_inventory_size_w" "128" + "image_inventory_size_h" "82" + "mouse_pressed_sound" "ui/item_paper_pickup.wav" + "drop_sound" "ui/item_paper_pickup.wav" + } + } + "items" + { + "default" + { + "name" "default" + "item_class" "weapon_knife" + "hidden" "1" + "item_name" "#SFUI_WPNHUD_Knife" + "item_slot" "melee" + "item_quality" "unique" + "min_ilevel" "1" + "max_ilevel" "1" + } + "1" + { + "name" "weapon_deagle" + "prefab" "weapon_deagle_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "secondary4" + "item_shares_equip_slot" "1" + } + "2" + { + "name" "weapon_elite" + "prefab" "weapon_elite_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "secondary1" + } + "3" + { + "name" "weapon_fiveseven" + "prefab" "weapon_fiveseven_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "secondary3" + "item_shares_equip_slot" "1" + } + "4" + { + "name" "weapon_glock" + "prefab" "weapon_glock_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "secondary0" + } + "7" + { + "name" "weapon_ak47" + "prefab" "weapon_ak47_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle1" + } + "8" + { + "name" "weapon_aug" + "prefab" "weapon_aug_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle3" + } + "9" + { + "name" "weapon_awp" + "prefab" "weapon_awp_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle4" + } + "10" + { + "name" "weapon_famas" + "prefab" "weapon_famas_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle0" + } + "11" + { + "name" "weapon_g3sg1" + "prefab" "weapon_g3sg1_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle5" + } + "13" + { + "name" "weapon_galilar" + "prefab" "weapon_galilar_prefab" + "baseitem" "1" + "default_slot_item" "1" + "item_quality" "normal" + "item_sub_position" "rifle0" + } + "14" + { + "name" "weapon_m249" + "prefab" "weapon_m249_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "heavy3" + } + "16" + { + "name" "weapon_m4a1" + "prefab" "weapon_m4a1_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle1" + "item_shares_equip_slot" "1" + } + "17" + { + "name" "weapon_mac10" + "prefab" "weapon_mac10_prefab" + "baseitem" "1" + "default_slot_item" "1" + "item_quality" "normal" + "item_sub_position" "smg0" + } + "19" + { + "name" "weapon_p90" + "prefab" "weapon_p90_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "smg3" + } + "20" + { + "name" "weapon_zone_repulsor" + "prefab" "weapon_zone_repulsor_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "secondary2" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + } + "23" + { + "name" "weapon_mp5sd" + "prefab" "weapon_mp5sd_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "0" + "item_sub_position" "smg1" + "item_shares_equip_slot" "1" + } + "24" + { + "name" "weapon_ump45" + "prefab" "weapon_ump45_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "smg2" + } + "25" + { + "name" "weapon_xm1014" + "prefab" "weapon_xm1014_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "heavy1" + } + "26" + { + "name" "weapon_bizon" + "prefab" "weapon_bizon_prefab" + "baseitem" "1" + "default_slot_item" "1" + "item_quality" "normal" + "item_sub_position" "smg4" + } + "27" + { + "name" "weapon_mag7" + "prefab" "weapon_mag7_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "heavy2" + } + "28" + { + "name" "weapon_negev" + "prefab" "weapon_negev_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "heavy4" + } + "29" + { + "name" "weapon_sawedoff" + "prefab" "weapon_sawedoff_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "heavy2" + } + "30" + { + "name" "weapon_tec9" + "prefab" "weapon_tec9_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "secondary3" + "item_shares_equip_slot" "1" + } + "31" + { + "name" "weapon_taser" + "prefab" "weapon_taser_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "equipment2" + } + "32" + { + "name" "weapon_hkp2000" + "prefab" "weapon_hkp2000_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "secondary0" + "item_shares_equip_slot" "1" + } + "33" + { + "name" "weapon_mp7" + "prefab" "weapon_mp7_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "smg1" + "item_shares_equip_slot" "1" + } + "34" + { + "name" "weapon_mp9" + "prefab" "weapon_mp9_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "smg0" + } + "35" + { + "name" "weapon_nova" + "prefab" "weapon_nova_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "heavy0" + } + "36" + { + "name" "weapon_p250" + "prefab" "weapon_p250_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "secondary2" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + } + "37" + { + "name" "weapon_shield" + "prefab" "weapon_shield_prefab" + } + "38" + { + "name" "weapon_scar20" + "prefab" "weapon_scar20_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle5" + } + "39" + { + "name" "weapon_sg556" + "prefab" "weapon_sg556_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle3" + } + "40" + { + "name" "weapon_ssg08" + "prefab" "weapon_ssg08_prefab" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_sub_position" "rifle2" + } + "41" + { + "name" "weapon_knifegg" + "prefab" "melee" + "item_class" "weapon_knifegg" + "item_name" "#SFUI_WPNHUD_Knife" + "item_description" "#CSGO_Item_desc_Knife" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_gear_slot" "melee" + "item_gear_slot_position" "2" + "item_sub_position" "none" + "image_inventory" "econ/weapons/base_weapons/weapon_knife" + "model_player" "models/weapons/v_knife_gg.mdl" + "model_world" "models/weapons/w_knife_gg.mdl" + "model_dropped" "models/weapons/w_knife_gg.mdl" + "inventory_image_data" + { + "camera_angles" "0.0 -70.0 25.0" + "camera_offset" "5.0 0 -2.5" + } + "attributes" + { + "icon display model" "models/weapons/w_knife_gg.mdl" + "pedestal display model" "models/weapons/v_knife_gg.mdl" + } + } + "42" + { + "name" "weapon_knife" + "prefab" "melee" + "item_name" "#SFUI_WPNHUD_Knife" + "item_description" "#CSGO_Item_desc_Knife" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "image_inventory" "econ/weapons/base_weapons/weapon_knife" + "model_player" "models/weapons/v_knife_default_ct.mdl" + "model_world" "models/weapons/w_knife_default_ct.mdl" + "model_dropped" "models/weapons/w_knife_default_ct_dropped.mdl" + "used_by_classes" + { + "counter-terrorists" "1" + } + "inventory_image_data" + { + "camera_angles" "0.0 -70.0 25.0" + "camera_offset" "5.0 0 -2.5" + } + "attributes" + { + "icon display model" "models/weapons/w_knife_default_ct.mdl" + "pedestal display model" "models/weapons/v_knife_default_ct_inspect.mdl" + } + } + "43" + { + "name" "weapon_flashbang" + "prefab" "weapon_flashbang_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_sub_position" "grenade2" + "item_gear_slot_position" "1" + } + "44" + { + "name" "weapon_hegrenade" + "prefab" "weapon_hegrenade_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_gear_slot_position" "0" + "item_sub_position" "grenade3" + } + "45" + { + "name" "weapon_smokegrenade" + "prefab" "weapon_smokegrenade_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_gear_slot_position" "2" + "item_sub_position" "grenade4" + } + "46" + { + "name" "weapon_molotov" + "prefab" "weapon_molotov_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_gear_slot_position" "4" + "item_sub_position" "grenade0" + } + "47" + { + "name" "weapon_decoy" + "prefab" "weapon_decoy_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_gear_slot_position" "3" + "item_sub_position" "grenade1" + } + "48" + { + "name" "weapon_incgrenade" + "prefab" "weapon_incgrenade_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_gear_slot_position" "4" + "item_sub_position" "grenade0" + } + "49" + { + "name" "weapon_c4" + "prefab" "c4" + "item_name" "#SFUI_WPNHUD_C4" + "item_description" "#CSGO_Item_Desc_C4" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "item_gear_slot" "item" + "item_gear_slot_position" "0" + "item_sub_position" "c4" + "image_inventory" "econ/weapons/base_weapons/weapon_c4" + "model_player" "models/weapons/v_ied.mdl" + "model_world" "models/weapons/w_ied.mdl" + "paint_data" + { + "PaintableMaterial0" + { + "Name" "c4" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "10.825500" + } + } + } + "50" + { + "name" "item_kevlar" + "prefab" "equipment" + "item_name" "#SFUI_WPNHUD_KEVLAR" + "item_class" "item_kevlar" + "anim_class" "kevlar_vest" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_sub_position" "equipment0" + "model_player" "models/weapons/w_eq_armor.mdl" + "model_world" "models/weapons/w_eq_armor.mdl" + "model_dropped" "models/weapons/w_eq_armor.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "in game price" "650" + } + } + "51" + { + "name" "item_assaultsuit" + "prefab" "equipment" + "item_name" "#SFUI_WPNHUD_ASSAULTSUIT" + "item_class" "item_assaultsuit" + "anim_class" "kevlar_and_helmet" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_sub_position" "equipment1" + "model_player" "models/weapons/w_eq_armor_helmet.mdl" + "model_world" "models/weapons/w_eq_armor_helmet.mdl" + "model_dropped" "models/weapons/w_eq_armor_helmet.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "in game price" "1000" + } + } + "52" + { + "name" "item_heavyassaultsuit" + "prefab" "equipment" + "item_name" "#SFUI_WPNHUD_HEAVYASSAULTSUIT" + "item_class" "item_heavyassaultsuit" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "model_world" "models/props_survival/upgrades/upgrade_heavy_armor.mdl" + "model_dropped" "models/props_survival/upgrades/upgrade_heavy_armor.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "in game price" "6000" + } + } + "54" + { + "name" "item_nvg" + "prefab" "equipment" + "item_class" "item_nvgs" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "equipment5" + } + "55" + { + "name" "item_defuser" + "prefab" "equipment" + "item_name" "#SFUI_WPNHUD_DEFUSER" + "item_class" "item_defuser" + "anim_class" "defuse_kit" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_sub_position" "equipment3" + "model_player" "models/weapons/w_defuser_display.mdl" + "model_world" "models/weapons/w_defuser.mdl" + "model_dropped" "models/weapons/w_defuser.mdl" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "in game price" "400" + } + } + "56" + { + "name" "item_cutters" + "prefab" "equipment" + "item_name" "#SFUI_WPNHUD_CUTTERS" + "item_class" "item_defuser" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "equipment3" + "model_player" "models/weapons/w_defuser_display.mdl" + "model_world" "models/weapons/w_defuser.mdl" + "model_dropped" "models/weapons/w_defuser.mdl" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "in game price" "400" + } + } + "57" + { + "name" "weapon_healthshot" + "prefab" "weapon_healthshot_prefab" + "item_name" "#SFUI_WPNHUD_Healthshot" + "item_class" "weapon_healthshot" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_gear_slot" "boost" + "item_gear_slot_position" "0" + "item_sub_position" "none" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + } + "58" + { + "name" "musickit_default" + "prefab" "musickit_prefab" + "item_name" "#CSGO_Type_MusicKit" + "item_description" "#CSGO_MusicKit_Desc" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "attributes" + { + "music id" "1" + } + } + "59" + { + "name" "weapon_knife_t" + "prefab" "melee" + "item_name" "#SFUI_WPNHUD_Knife_T" + "item_description" "#CSGO_Item_desc_Knife_T" + "item_quality" "normal" + "baseitem" "1" + "default_slot_item" "1" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_t" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_t.vtf" + "model_player" "models/weapons/v_knife_default_t.mdl" + "model_world" "models/weapons/w_knife_default_t.mdl" + "model_dropped" "models/weapons/w_knife_default_t_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + } + "inventory_image_data" + { + "camera_angles" "0.0 -70.0 25.0" + "camera_offset" "7.0 0 -2" + } + "attributes" + { + "icon display model" "models/weapons/w_knife_default_t.mdl" + "pedestal display model" "models/weapons/v_knife_default_t_inspect.mdl" + } + } + "60" + { + "name" "weapon_m4a1_silencer" + "prefab" "weapon_m4a1_silencer_prefab" + "item_quality" "normal" + "baseitem" "1" + "item_sub_position" "rifle1" + "item_shares_equip_slot" "1" + } + "61" + { + "name" "weapon_usp_silencer" + "prefab" "weapon_usp_silencer_prefab" + "item_quality" "normal" + "baseitem" "1" + "item_sub_position" "secondary0" + "item_shares_equip_slot" "1" + } + "62" + { + "name" "Recipe Trade Up" + "prefab" "recipe" + "baseitem" "1" + "item_name" "#CSGO_Recipe_TradeUp" + "item_description" "#CSGO_Recipe_TradeUp_Desc" + "attributes" + { + "recipe filter" "-3" + "preferred sort" "1" + } + } + "63" + { + "name" "weapon_cz75a" + "prefab" "weapon_cz75a_prefab" + "item_quality" "normal" + "baseitem" "1" + "item_sub_position" "secondary3" + "item_shares_equip_slot" "1" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + } + "64" + { + "name" "weapon_revolver" + "prefab" "weapon_revolver_prefab" + "item_quality" "normal" + "baseitem" "1" + "item_sub_position" "secondary4" + "item_shares_equip_slot" "1" + } + "68" + { + "name" "weapon_tagrenade" + "prefab" "weapon_tagrenade_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_gear_slot_position" "5" + "item_sub_position" "none" + } + "69" + { + "name" "weapon_fists" + "prefab" "weapon_fists_prefab" + "item_class" "weapon_fists" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "none" + } + "70" + { + "name" "weapon_breachcharge" + "prefab" "weapon_breachcharge_prefab" + "item_class" "weapon_breachcharge" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "none" + "item_gear_slot" "item" + "item_gear_slot_position" "1" + } + "72" + { + "name" "weapon_tablet" + "prefab" "weapon_tablet_prefab" + "item_class" "weapon_tablet" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "none" + "item_gear_slot" "utility" + "item_gear_slot_position" "0" + } + "74" + { + "name" "weapon_melee" + "prefab" "weapon_melee_prefab_noncustomizable" + } + "75" + { + "name" "weapon_axe" + "prefab" "weapon_melee_prefab_noncustomizable" + "item_name" "#SFUI_WPNHUD_Axe" + "item_description" "#CSGO_Item_desc_Axe" + "item_quality" "normal" + "image_inventory" "econ/weapons/base_weapons/weapon_axe" + "model_player" "models/weapons/v_axe.mdl" + "model_world" "models/weapons/w_axe.mdl" + "model_dropped" "models/weapons/w_axe_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "damage" "20" + } + } + "76" + { + "name" "weapon_hammer" + "prefab" "weapon_melee_prefab_noncustomizable" + "item_name" "#SFUI_WPNHUD_Hammer" + "item_description" "#CSGO_Item_desc_Hammer" + "item_quality" "normal" + "image_inventory" "econ/weapons/base_weapons/weapon_hammer" + "model_player" "models/weapons/v_hammer.mdl" + "model_world" "models/weapons/w_hammer.mdl" + "model_dropped" "models/weapons/w_hammer_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "damage" "16" + } + } + "78" + { + "name" "weapon_spanner" + "prefab" "weapon_melee_prefab_noncustomizable" + "item_name" "#SFUI_WPNHUD_Spanner" + "item_description" "#CSGO_Item_desc_Spanner" + "item_quality" "normal" + "image_inventory" "econ/weapons/base_weapons/weapon_spanner" + "model_player" "models/weapons/v_spanner.mdl" + "model_world" "models/weapons/w_spanner.mdl" + "model_dropped" "models/weapons/w_spanner_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "damage" "7" + } + } + "80" + { + "name" "weapon_knife_ghost" + "prefab" "melee" + "item_name" "#SFUI_WPNHUD_Knife_Ghost" + "item_description" "#CSGO_Item_desc_Knife_Ghost" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "1" + "item_gear_slot" "melee" + "item_gear_slot_position" "0" + "item_sub_position" "none" + "model_player" "models/weapons/v_knife_ghost.mdl" + "model_world" "models/weapons/w_knife_ghost.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + } + "81" + { + "name" "weapon_firebomb" + "prefab" "weapon_firebomb_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_gear_slot_position" "4" + "item_sub_position" "none" + } + "82" + { + "name" "weapon_diversion" + "prefab" "weapon_diversion_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_gear_slot_position" "3" + "item_sub_position" "none" + } + "83" + { + "name" "weapon_frag_grenade" + "prefab" "weapon_frag_grenade_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_gear_slot_position" "0" + "item_sub_position" "none" + } + "84" + { + "name" "weapon_snowball" + "prefab" "weapon_snowball_prefab" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_gear_slot_position" "0" + "item_sub_position" "none" + } + "85" + { + "name" "weapon_bumpmine" + "prefab" "weapon_bumpmine_prefab" + "item_class" "weapon_bumpmine" + "item_quality" "normal" + "baseitem" "0" + "default_slot_item" "0" + "item_sub_position" "none" + "item_gear_slot" "item" + "item_gear_slot_position" "2" + } + "500" + { + "name" "weapon_bayonet" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_KnifeBayonet" + "item_description" "#CSGO_Item_Desc_Knife_Bayonet" + "image_inventory" "econ/weapons/base_weapons/weapon_bayonet" + "icon_default_image" "materials/icons/inventory_icon_weapon_bayonet.vtf" + "model_player" "models/weapons/v_knife_bayonet.mdl" + "model_world" "models/weapons/w_knife_bayonet.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_bayonet_inspect.mdl" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_bayonet" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "14.518000" + "UVScale" "0.505000" + } + } + } + "503" + { + "name" "weapon_knife_css" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_KnifeCSS" + "item_description" "#CSGO_Item_Desc_Knife_CSS" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_css" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_css.vtf" + "model_player" "models/weapons/v_knife_css.mdl" + "model_world" "models/weapons/w_knife_css.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_css_inspect.mdl" + } + "inventory_image_data" + { + "spot_light_key" + { + "position" "-45 50 35" + "color" "0.55 0.55 0.56" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "camera_angles" "30.0 -95.0 29.0" + "camera_offset" "7.0 1.5 -1.5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_css" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "505" + { + "name" "weapon_knife_flip" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_KnifeFlip" + "item_description" "#CSGO_Item_Desc_Knife_Flip" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_flip" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_flip.vtf" + "model_player" "models/weapons/v_knife_flip.mdl" + "model_world" "models/weapons/w_knife_flip.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_flip_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 29.0" + "camera_offset" "9.0 1.0 -1.5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_flip" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.900000" + "UVScale" "0.411000" + } + } + } + "506" + { + "name" "weapon_knife_gut" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_KnifeGut" + "item_description" "#CSGO_Item_Desc_Knife_Gut" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_gut" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_gut.vtf" + "model_player" "models/weapons/v_knife_gut.mdl" + "model_world" "models/weapons/w_knife_gut.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_gut_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 23.0" + "camera_offset" "10.0 1.2 -2" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_gut" + "OrigMat" "knife_gut" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "14.610000" + "UVScale" "0.733000" + } + } + } + "507" + { + "name" "weapon_knife_karambit" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_KnifeKaram" + "item_description" "#CSGO_Item_Desc_Knife_Karam" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_karambit" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_karambit.vtf" + "model_player" "models/weapons/v_knife_karam.mdl" + "model_world" "models/weapons/w_knife_karam.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_karam_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 -5.0" + "camera_offset" "10.0 1.5 -3.2" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_karam" + "OrigMat" "karam" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "9.813000" + "UVScale" "0.438000" + } + } + } + "508" + { + "name" "weapon_knife_m9_bayonet" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_KnifeM9" + "item_description" "#CSGO_Item_Desc_KnifeM9" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_m9_bayonet" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_m9_bayonet.vtf" + "model_player" "models/weapons/v_knife_m9_bay.mdl" + "model_world" "models/weapons/w_knife_m9_bay.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_m9_bay_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 29.0" + "camera_offset" "7.0 1.5 -1.5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_m9_bay" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "15.300000" + "UVScale" "0.506000" + } + } + } + "509" + { + "name" "weapon_knife_tactical" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_KnifeTactical" + "item_description" "#CSGO_Item_Desc_KnifeTactical" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_tactical" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_tactical.vtf" + "model_player" "models/weapons/v_knife_tactical.mdl" + "model_world" "models/weapons/w_knife_tactical.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_tactical_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 29.0" + "camera_offset" "7.0 1.5 -1.5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_tactical" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "15.300000" + "UVScale" "0.506000" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_3" + "tag_text" "#CSGO_set_community_3" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "512" + { + "name" "weapon_knife_falchion" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_falchion_advanced" + "item_description" "#CSGO_Item_Desc_knife_falchion_advanced" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_falchion" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_falchion.vtf" + "model_player" "models/weapons/v_knife_falchion_advanced.mdl" + "model_world" "models/weapons/w_knife_falchion_advanced.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_falchion_advanced_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "0 0 0" + "camera_offset" "0 0 0" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_falchion_advanced" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_8" + "tag_text" "#CSGO_set_community_8" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "514" + { + "name" "weapon_knife_survival_bowie" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_survival_bowie" + "item_description" "#CSGO_Item_Desc_knife_survival_bowie" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_survival_bowie" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_survival_bowie.vtf" + "model_player" "models/weapons/v_knife_survival_bowie.mdl" + "model_world" "models/weapons/w_knife_survival_bowie.mdl" + "model_dropped" "models/weapons/w_knife_survival_bowie_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_survival_bowie_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 29.0" + "camera_offset" "7.0 1.5 -1.5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_survival_bowie" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "18.434601" + "UVScale" "0.461662" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_11" + "tag_text" "#CSGO_set_community_11" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "515" + { + "name" "weapon_knife_butterfly" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_Knife_Butterfly" + "item_description" "#CSGO_Item_Desc_Knife_Butterfly" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_butterfly" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_butterfly.vtf" + "model_player" "models/weapons/v_knife_butterfly.mdl" + "model_world" "models/weapons/w_knife_butterfly.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_butterfly_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 29.0" + "camera_offset" "9.0 1.5 -1.5" + "spot_light_key" + { + "position" "-10 30 0" + "color" "2.98 2.98 3" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_butterfly" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "15.300000" + "UVScale" "0.506000" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_4" + "tag_text" "#CSGO_set_community_4" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "516" + { + "name" "weapon_knife_push" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_push" + "item_description" "#CSGO_Item_Desc_knife_push" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_push" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_push.vtf" + "model_player" "models/weapons/v_knife_push.mdl" + "model_world" "models/weapons/w_knife_push.mdl" + "model_dropped" "models/weapons/w_knife_push_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_push_inspect.mdl" + "icon display model" "models/weapons/w_knife_push_icon.mdl" + } + "inventory_image_data" + { + "spot_light_key" + { + "position" "0 -30 40" + "color" "0.95 0.98 1" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + "point_light_accent" + { + "position" "0 0 -50" + "color" "1 1 1" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_push" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "1" + "WeaponLength" "5.884990" + "UVScale" "0.583642" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_9" + "tag_text" "#CSGO_set_community_9" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "517" + { + "name" "weapon_knife_cord" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_cord" + "item_description" "#CSGO_Item_Desc_knife_cord" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_cord" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_cord.vtf" + "model_player" "models/weapons/v_knife_cord.mdl" + "model_world" "models/weapons/w_knife_cord.mdl" + "model_dropped" "models/weapons/w_knife_cord_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_cord_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "0 0 0" + "camera_offset" "0 0 0" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_cord" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "518" + { + "name" "weapon_knife_canis" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_canis" + "item_description" "#CSGO_Item_Desc_knife_canis" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_canis" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_canis.vtf" + "model_player" "models/weapons/v_knife_canis.mdl" + "model_world" "models/weapons/w_knife_canis.mdl" + "model_dropped" "models/weapons/w_knife_canis_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_canis_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "0 0 0" + "camera_offset" "0 0 0" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_canis" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "519" + { + "name" "weapon_knife_ursus" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_ursus" + "item_description" "#CSGO_Item_Desc_knife_ursus" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_ursus" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_ursus.vtf" + "model_player" "models/weapons/v_knife_ursus.mdl" + "model_world" "models/weapons/w_knife_ursus.mdl" + "model_dropped" "models/weapons/w_knife_ursus_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_ursus_inspect.mdl" + } + "inventory_image_data" + { + "spot_light_key" + { + "position" "-35 55 25" + "color" "0.70 0.70 0.71" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "2.000000" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_ursus" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "520" + { + "name" "weapon_knife_gypsy_jackknife" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_gypsy_jackknife" + "item_description" "#CSGO_Item_Desc_knife_gypsy_jackknife" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_gypsy_jackknife" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_gypsy_jackknife.vtf" + "model_player" "models/weapons/v_knife_gypsy_jackknife.mdl" + "model_world" "models/weapons/w_knife_gypsy_jackknife.mdl" + "model_dropped" "models/weapons/w_knife_gypsy_jackknife_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_gypsy_jackknife_inspect.mdl" + } + "inventory_image_data" + { + "spot_light_key" + { + "position" "-45 50 35" + "color" "0.55 0.55 0.56" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.000000" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_gypsy_jack" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "521" + { + "name" "weapon_knife_outdoor" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_outdoor" + "item_description" "#CSGO_Item_Desc_knife_outdoor" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_outdoor" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_outdoor.vtf" + "model_player" "models/weapons/v_knife_outdoor.mdl" + "model_world" "models/weapons/w_knife_outdoor.mdl" + "model_dropped" "models/weapons/w_knife_outdoor_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_outdoor_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "30.0 -95.0 29.0" + "camera_offset" "7.0 1.5 -1.5" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_outdoor" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "522" + { + "name" "weapon_knife_stiletto" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_stiletto" + "item_description" "#CSGO_Item_Desc_knife_stiletto" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_stiletto" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_stiletto.vtf" + "model_player" "models/weapons/v_knife_stiletto.mdl" + "model_world" "models/weapons/w_knife_stiletto.mdl" + "model_dropped" "models/weapons/w_knife_stiletto_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_stiletto_inspect.mdl" + } + "inventory_image_data" + { + "spot_light_key" + { + "position" "-10 60 0" + "color" "0.65 0.65 0.66" + "lookat" "0.0 0.0 0.0" + "inner_cone" "0.500000" + "outer_cone" "1.500000" + } + "point_light_accent" + { + "position" "-85 60 65" + "color" "0.65 0.65 0.66" + } + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_stiletto" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "523" + { + "name" "weapon_knife_widowmaker" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_widowmaker" + "item_description" "#CSGO_Item_Desc_knife_widowmaker" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_widowmaker" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_widowmaker.vtf" + "model_player" "models/weapons/v_knife_widowmaker.mdl" + "model_world" "models/weapons/w_knife_widowmaker.mdl" + "model_dropped" "models/weapons/w_knife_widowmaker_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_widowmaker_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "0 0 0" + "camera_offset" "0 0 0" + } + "inventory_image_data" + { + "camera_angles" "0 0 0" + "camera_offset" "0 0 0" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_widowmaker" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "525" + { + "name" "weapon_knife_skeleton" + "prefab" "melee_unusual" + "item_name" "#SFUI_WPNHUD_knife_skeleton" + "item_description" "#CSGO_Item_Desc_knife_skeleton" + "image_inventory" "econ/weapons/base_weapons/weapon_knife_skeleton" + "icon_default_image" "materials/icons/inventory_icon_weapon_knife_skeleton.vtf" + "model_player" "models/weapons/v_knife_skeleton.mdl" + "model_world" "models/weapons/w_knife_skeleton.mdl" + "model_dropped" "models/weapons/w_knife_skeleton_dropped.mdl" + "used_by_classes" + { + "terrorists" "1" + "counter-terrorists" "1" + } + "attributes" + { + "pedestal display model" "models/weapons/v_knife_skeleton_inspect.mdl" + } + "inventory_image_data" + { + "camera_angles" "0 0 0" + "camera_offset" "0 0 0" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "knife_skeleton" + "ViewmodelDim" "2048" + "WorldDim" "512" + "BaseTextureOverride" "0" + "WeaponLength" "12.570000" + "UVScale" "0.360000" + } + } + } + "874" + { + "name" "Five Year Service Coin" + "prefab" "collectible_untradable_coin" + "item_name" "#CSGO_CollectibleCoin_FiveYearService" + "item_description" "#CSGO_CollectibleCoin_FiveYearService_Desc" + "image_inventory" "econ/status_icons/5yearcoin" + "attributes" + { + "pedestal display model" "models/inventory_items/5_year_coin.mdl" + } + } + "875" + { + "name" "DreamHack SteelSeries 2013 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DH2013_Champion" + "item_description" "#CSGO_CollectibleCoin_DH2013_Champion_Desc" + "image_inventory" "econ/status_icons/dreamhack_2013_champion" + "attributes" + { + "pedestal display model" "models/inventory_items/dreamhack_trophy_champion.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "1" + } + } + } + "876" + { + "name" "DreamHack SteelSeries 2013 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DH2013_Finalist" + "item_description" "#CSGO_CollectibleCoin_DH2013_Finalist_Desc" + "image_inventory" "econ/status_icons/dreamhack_2013_finalist" + "attributes" + { + "pedestal display model" "models/inventory_items/dreamhack_trophy_finalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "1" + } + } + } + "877" + { + "name" "DreamHack SteelSeries 2013 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DH2013_SemiFinalist" + "item_description" "#CSGO_CollectibleCoin_DH2013_SemiFinalist_Desc" + "image_inventory" "econ/status_icons/dreamhack_2013_semifinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/dreamhack_trophy_semifinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "1" + } + } + } + "878" + { + "name" "DreamHack SteelSeries 2013 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DH2013_QuarterFinalist" + "item_description" "#CSGO_CollectibleCoin_DH2013_QuarterFinalist_Desc" + "image_inventory" "econ/status_icons/dreamhack_2013_quarterfinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/dreamhack_trophy_quarterfinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "1" + } + } + } + "879" + { + "name" "EMS One Katowice 2014 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2014_Champion" + "item_description" "#CSGO_CollectibleCoin_Kat2014_Champion_Desc" + "image_inventory" "econ/status_icons/katowice_2014_champion" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice_trophy_champion.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "3" + } + } + } + "880" + { + "name" "EMS One Katowice 2014 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2014_Finalist" + "item_description" "#CSGO_CollectibleCoin_Kat2014_Finalist_Desc" + "image_inventory" "econ/status_icons/katowice_2014_finalist" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice_trophy_finalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "3" + } + } + } + "881" + { + "name" "EMS One Katowice 2014 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2014_SemiFinalist" + "item_description" "#CSGO_CollectibleCoin_Kat2014_SemiFinalist_Desc" + "image_inventory" "econ/status_icons/katowice_2014_semifinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice_trophy_semifinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "3" + } + } + } + "882" + { + "name" "EMS One Katowice 2014 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist" + "item_description" "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist_Desc" + "image_inventory" "econ/status_icons/katowice_2014_quarterfinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice_trophy_quarterfinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "3" + } + } + } + "883" + { + "name" "ESL One Cologne 2014 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2014_Champion" + "item_description" "#CSGO_CollectibleCoin_Cologne2014_Champion_Desc" + "image_inventory" "econ/status_icons/cologne_trophy_champion" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_trophy_champion.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + } + "884" + { + "name" "ESL One Cologne 2014 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2014_Finalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2014_Finalist_Desc" + "image_inventory" "econ/status_icons/cologne_trophy_finalist" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_trophy_finalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + } + "885" + { + "name" "ESL One Cologne 2014 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist_Desc" + "image_inventory" "econ/status_icons/cologne_trophy_semifinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_trophy_semifinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + } + "886" + { + "name" "ESL One Cologne 2014 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist_Desc" + "image_inventory" "econ/status_icons/cologne_trophy_quarterfinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_trophy_quarterfinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + } + "887" + { + "name" "ESL One Cologne 2014 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/cologne_prediction_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_prediction_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + } + "888" + { + "name" "ESL One Cologne 2014 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/cologne_prediction_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_prediction_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + } + "889" + { + "name" "ESL One Cologne 2014 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmGold_Desc" + "image_inventory" "econ/status_icons/cologne_prediction_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_prediction_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + } + "890" + { + "name" "DreamHack Winter 2014 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DHW2014_Champion" + "item_description" "#CSGO_CollectibleCoin_DHW2014_Champion_Desc" + "image_inventory" "econ/status_icons/dhw_2014_champion" + "attributes" + { + "pedestal display model" "models/inventory_items/dhw_2014_champion.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "891" + { + "name" "DreamHack Winter 2014 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DHW2014_Finalist" + "item_description" "#CSGO_CollectibleCoin_DHW2014_Finalist_Desc" + "image_inventory" "econ/status_icons/dhw_2014_finalist" + "attributes" + { + "pedestal display model" "models/inventory_items/dhw_2014_finalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "892" + { + "name" "DreamHack Winter 2014 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DHW2014_SemiFinalist" + "item_description" "#CSGO_CollectibleCoin_DHW2014_SemiFinalist_Desc" + "image_inventory" "econ/status_icons/dhw_2014_semifinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/dhw_2014_semifinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "893" + { + "name" "DreamHack Winter 2014 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist" + "item_description" "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist_Desc" + "image_inventory" "econ/status_icons/dhw_2014_quarterfinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/dhw_2014_quarterfinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "894" + { + "name" "DreamHack Winter 2014 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/dhw14_prediction_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/dhw_2014_pickem_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "895" + { + "name" "DreamHack Winter 2014 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/dhw14_prediction_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/dhw_2014_pickem_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "896" + { + "name" "DreamHack Winter 2014 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmGold_Desc" + "image_inventory" "econ/status_icons/dhw14_prediction_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/dhw_2014_pickem_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + } + "897" + { + "name" "ESL One Katowice 2015 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2015_Champion" + "item_description" "#CSGO_CollectibleCoin_Kat2015_Champion_Desc" + "image_inventory" "econ/status_icons/kat_2015_champion" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice2015_trophy_champion.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "898" + { + "name" "ESL One Katowice 2015 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2015_Finalist" + "item_description" "#CSGO_CollectibleCoin_Kat2015_Finalist_Desc" + "image_inventory" "econ/status_icons/kat_2015_finalist" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice2015_trophy_finalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "899" + { + "name" "ESL One Katowice 2015 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2015_SemiFinalist" + "item_description" "#CSGO_CollectibleCoin_Kat2015_SemiFinalist_Desc" + "image_inventory" "econ/status_icons/kat_2015_semifinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice2015_trophy_semifinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "900" + { + "name" "ESL One Katowice 2015 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist" + "item_description" "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist_Desc" + "image_inventory" "econ/status_icons/kat_2015_quarterfinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/katowice2015_trophy_quarterfinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "901" + { + "name" "ESL One Katowice 2015 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/kat_2015_prediction_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/kat_2015_pickem_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "902" + { + "name" "ESL One Katowice 2015 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/kat_2015_prediction_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/kat_2015_pickem_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "903" + { + "name" "ESL One Katowice 2015 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmGold_Desc" + "image_inventory" "econ/status_icons/kat_2015_prediction_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/kat_2015_pickem_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + } + "904" + { + "name" "ESL One Cologne 2015 CS:GO Champion" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2015_Champion" + "item_description" "#CSGO_CollectibleCoin_Cologne2015_Champion_Desc" + "image_inventory" "econ/status_icons/col_2015_champion" + "attributes" + { + "pedestal display model" "models/inventory_items/col2015_trophy_champion.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "905" + { + "name" "ESL One Cologne 2015 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2015_Finalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2015_Finalist_Desc" + "image_inventory" "econ/status_icons/col_2015_finalist" + "attributes" + { + "pedestal display model" "models/inventory_items/col2015_trophy_finalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "906" + { + "name" "ESL One Cologne 2015 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist_Desc" + "image_inventory" "econ/status_icons/col_2015_semifinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/col2015_trophy_semifinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "907" + { + "name" "ESL One Cologne 2015 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist_Desc" + "image_inventory" "econ/status_icons/col_2015_quarterfinalist" + "attributes" + { + "pedestal display model" "models/inventory_items/col2015_trophy_quarterfinalist.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "908" + { + "name" "ESL One Cologne 2015 Pick 'Em Challenge Bronze" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/col_2015_prediction_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_pickem_2015_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "909" + { + "name" "ESL One Cologne 2015 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/col_2015_prediction_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_pickem_2015_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "910" + { + "name" "ESL One Cologne 2015 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmGold_Desc" + "image_inventory" "econ/status_icons/col_2015_prediction_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_pickem_2015_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + } + "911" + { + "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/cluj_2015_prediction_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/cluj_pickem_2015_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "912" + { + "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/cluj_2015_prediction_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/cluj_pickem_2015_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "913" + { + "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmGold_Desc" + "image_inventory" "econ/status_icons/cluj_2015_prediction_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/cluj_pickem_2015_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "914" + { + "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze_Desc" + "image_inventory" "econ/status_icons/cluj_2015_fantasy_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/cluj_fantasy_2015_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "915" + { + "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasySilver" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasySilver_Desc" + "image_inventory" "econ/status_icons/cluj_2015_fantasy_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/cluj_fantasy_2015_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "916" + { + "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasyGold" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasyGold_Desc" + "image_inventory" "econ/status_icons/cluj_2015_fantasy_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/cluj_fantasy_2015_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "917" + { + "name" "DreamHack Cluj-Napoca 2015 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_Champion" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "918" + { + "name" "DreamHack Cluj-Napoca 2015 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_Finalist" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "919" + { + "name" "DreamHack Cluj-Napoca 2015 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "920" + { + "name" "DreamHack Cluj-Napoca 2015 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cluj2015_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Cluj2015_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + } + "921" + { + "name" "MLG Columbus 2016 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/mlg_2016_pickem_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/mlg_pickem_2016_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "922" + { + "name" "MLG Columbus 2016 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/mlg_2016_pickem_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/mlg_pickem_2016_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "923" + { + "name" "MLG Columbus 2016 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_PickEmGold_Desc" + "image_inventory" "econ/status_icons/mlg_2016_pickem_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/mlg_pickem_2016_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "924" + { + "name" "MLG Columbus 2016 Fantasy Team Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_FantasyBronze" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_FantasyBronze_Desc" + "image_inventory" "econ/status_icons/mlg_2016_fantasy_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/mlg_fantasy_2016_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "925" + { + "name" "MLG Columbus 2016 Fantasy Team Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_FantasySilver" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_FantasySilver_Desc" + "image_inventory" "econ/status_icons/mlg_2016_fantasy_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/mlg_fantasy_2016_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "926" + { + "name" "MLG Columbus 2016 Fantasy Team Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_FantasyGold" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_FantasyGold_Desc" + "image_inventory" "econ/status_icons/mlg_2016_fantasy_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/mlg_fantasy_2016_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "927" + { + "name" "MLG Columbus 2016 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_Champion" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "928" + { + "name" "MLG Columbus 2016 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_Finalist" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "929" + { + "name" "MLG Columbus 2016 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "930" + { + "name" "MLG Columbus 2016 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Columbus2016_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Columbus2016_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "931" + { + "name" "ESL One Cologne 2016 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_Champion" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "932" + { + "name" "ESL One Cologne 2016 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_Finalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "933" + { + "name" "ESL One Cologne 2016 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "934" + { + "name" "ESL One Cologne 2016 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "935" + { + "name" "Cologne 2016 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/cologne_pickem_2016_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_pickem_2016_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "936" + { + "name" "Cologne 2016 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/cologne_pickem_2016_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_pickem_2016_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "937" + { + "name" "Cologne 2016 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_PickEmGold_Desc" + "image_inventory" "econ/status_icons/cologne_pickem_2016_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_pickem_2016_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "938" + { + "name" "Cologne 2016 Fantasy Team Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_FantasyBronze" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_FantasyBronze_Desc" + "image_inventory" "econ/status_icons/cologne_fantasy_2016_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_fantasy_2016_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "939" + { + "name" "Cologne 2016 Fantasy Team Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_FantasySilver" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_FantasySilver_Desc" + "image_inventory" "econ/status_icons/cologne_fantasy_2016_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_fantasy_2016_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "940" + { + "name" "Cologne 2016 Fantasy Team Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Cologne2016_FantasyGold" + "item_description" "#CSGO_CollectibleCoin_Cologne2016_FantasyGold_Desc" + "image_inventory" "econ/status_icons/cologne_fantasy_2016_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/cologne_fantasy_2016_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "941" + { + "name" "ELEAGUE Atlanta 2017 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Atlanta2017_Champion" + "item_description" "#CSGO_CollectibleCoin_Atlanta2017_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "942" + { + "name" "ELEAGUE Atlanta 2017 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Atlanta2017_Finalist" + "item_description" "#CSGO_CollectibleCoin_Atlanta2017_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "943" + { + "name" "ELEAGUE Atlanta 2017 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Atlanta2017_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Atlanta2017_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "944" + { + "name" "ELEAGUE Atlanta 2017 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Atlanta2017_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Atlanta2017_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "945" + { + "name" "Atlanta 2017 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Atlanta2017_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Atlanta2017_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/atlanta_pickem_2017_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/atlanta_pickem_2017_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "946" + { + "name" "Atlanta 2017 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Atlanta2017_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Atlanta2017_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/atlanta_pickem_2017_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/atlanta_pickem_2017_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "947" + { + "name" "Atlanta 2017 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Atlanta2017_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Atlanta2017_PickEmGold_Desc" + "image_inventory" "econ/status_icons/atlanta_pickem_2017_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/atlanta_pickem_2017_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "948" + { + "name" "PGL Krakow 2017 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Krakow2017_Champion" + "item_description" "#CSGO_CollectibleCoin_Krakow2017_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "949" + { + "name" "PGL Krakow 2017 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Krakow2017_Finalist" + "item_description" "#CSGO_CollectibleCoin_Krakow2017_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "950" + { + "name" "PGL Krakow 2017 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Krakow2017_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Krakow2017_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "951" + { + "name" "PGL Krakow 2017 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Krakow2017_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Krakow2017_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "952" + { + "name" "Krakow 2017 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Krakow2017_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Krakow2017_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/krakow_pickem_2017_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/krakow_pickem_2017_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "953" + { + "name" "Krakow 2017 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Krakow2017_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Krakow2017_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/krakow_pickem_2017_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/krakow_pickem_2017_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "954" + { + "name" "Krakow 2017 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Krakow2017_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Krakow2017_PickEmGold_Desc" + "image_inventory" "econ/status_icons/krakow_pickem_2017_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/krakow_pickem_2017_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "955" + { + "name" "ELEAGUE Boston 2018 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Boston2018_Champion" + "item_description" "#CSGO_CollectibleCoin_Boston2018_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "956" + { + "name" "ELEAGUE Boston 2018 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Boston2018_Finalist" + "item_description" "#CSGO_CollectibleCoin_Boston2018_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "957" + { + "name" "ELEAGUE Boston 2018 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Boston2018_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Boston2018_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "958" + { + "name" "ELEAGUE Boston 2018 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Boston2018_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Boston2018_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "959" + { + "name" "Boston 2018 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Boston2018_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_Boston2018_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/boston_pickem_2018_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/boston_pickem_2018_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "960" + { + "name" "Boston 2018 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Boston2018_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_Boston2018_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/boston_pickem_2018_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/boston_pickem_2018_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "961" + { + "name" "Boston 2018 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_Boston2018_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_Boston2018_PickEmGold_Desc" + "image_inventory" "econ/status_icons/boston_pickem_2018_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/boston_pickem_2018_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "962" + { + "name" "FACEIT London 2018 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_London2018_Champion" + "item_description" "#CSGO_CollectibleCoin_London2018_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "963" + { + "name" "FACEIT London 2018 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_London2018_Finalist" + "item_description" "#CSGO_CollectibleCoin_London2018_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "964" + { + "name" "FACEIT London 2018 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_London2018_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_London2018_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "965" + { + "name" "FACEIT London 2018 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_London2018_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_London2018_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "966" + { + "name" "London 2018 Pick 'Em Challenge Bronze" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_London2018_PickEmBronze" + "item_description" "#CSGO_CollectibleCoin_London2018_PickEmBronze_Desc" + "image_inventory" "econ/status_icons/london_pickem_2018_bronze" + "attributes" + { + "pedestal display model" "models/inventory_items/london_pickem_2018_bronze.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "967" + { + "name" "London 2018 Pick 'Em Challenge Silver" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_London2018_PickEmSilver" + "item_description" "#CSGO_CollectibleCoin_London2018_PickEmSilver_Desc" + "image_inventory" "econ/status_icons/london_pickem_2018_silver" + "attributes" + { + "pedestal display model" "models/inventory_items/london_pickem_2018_silver.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "968" + { + "name" "London 2018 Pick 'Em Challenge Gold" + "prefab" "pickem_trophy" + "item_name" "#CSGO_CollectibleCoin_London2018_PickEmGold" + "item_description" "#CSGO_CollectibleCoin_London2018_PickEmGold_Desc" + "image_inventory" "econ/status_icons/london_pickem_2018_gold" + "attributes" + { + "pedestal display model" "models/inventory_items/london_pickem_2018_gold.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "969" + { + "name" "Ten Year Service Coin" + "prefab" "collectible_untradable_coin" + "item_name" "#CSGO_CollectibleCoin_TenYearService" + "item_description" "#CSGO_CollectibleCoin_TenYearService_Desc" + "image_inventory" "econ/status_icons/10yearcoin" + "attributes" + { + "pedestal display model" "models/inventory_items/10_year_coin.mdl" + } + } + "970" + { + "name" "Fortius Quo Fidelius" + "prefab" "collectible_untradable_coin" + "item_name" "#CSGO_CollectibleCoin_FortiusQuoFidelius" + "item_description" "#CSGO_CollectibleCoin_FortiusQuoFidelius_Desc" + "image_inventory" "econ/status_icons/prime_badge" + "attributes" + { + "pedestal display model" "models/inventory_items/prime_badge.mdl" + } + } + "971" + { + "name" "IEM Katowice 2019 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Katowice2019_Champion" + "item_description" "#CSGO_CollectibleCoin_Katowice2019_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + } + "972" + { + "name" "IEM Katowice 2019 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Katowice2019_Finalist" + "item_description" "#CSGO_CollectibleCoin_Katowice2019_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + } + "973" + { + "name" "IEM Katowice 2019 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Katowice2019_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Katowice2019_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + } + "974" + { + "name" "IEM Katowice 2019 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Katowice2019_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Katowice2019_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + } + "975" + { + "name" "StarLadder Berlin 2019 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Berlin2019_Champion" + "item_description" "#CSGO_CollectibleCoin_Berlin2019_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + } + "976" + { + "name" "StarLadder Berlin 2019 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Berlin2019_Finalist" + "item_description" "#CSGO_CollectibleCoin_Berlin2019_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + } + "977" + { + "name" "StarLadder Berlin 2019 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Berlin2019_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Berlin2019_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + } + "978" + { + "name" "StarLadder Berlin 2019 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Berlin2019_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Berlin2019_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + } + "979" + { + "name" "PGL Stockholm 2021 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Stockh2021_Champion" + "item_description" "#CSGO_CollectibleCoin_Stockh2021_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + } + "980" + { + "name" "PGL Stockholm 2021 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Stockh2021_Finalist" + "item_description" "#CSGO_CollectibleCoin_Stockh2021_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + } + "981" + { + "name" "PGL Stockholm 2021 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Stockh2021_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Stockh2021_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + } + "982" + { + "name" "PGL Stockholm 2021 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Stockh2021_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Stockh2021_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + } + "983" + { + "name" "PGL Antwerp 2022 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Antwerp2022_Champion" + "item_description" "#CSGO_CollectibleCoin_Antwerp2022_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + } + "984" + { + "name" "PGL Antwerp 2022 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Antwerp2022_Finalist" + "item_description" "#CSGO_CollectibleCoin_Antwerp2022_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + } + "985" + { + "name" "PGL Antwerp 2022 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Antwerp2022_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Antwerp2022_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + } + "986" + { + "name" "PGL Antwerp 2022 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Antwerp2022_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Antwerp2022_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + } + "987" + { + "name" "CSGO Ten Year Anniversary Memorabilia" + "prefab" "collectible_untradable_coin" + "item_name" "#CSGO_CollectibleCoin_CsgoTenYearAnniversaryMemorabilia" + "item_description" "#CSGO_CollectibleCoin_CsgoTenYearAnniversaryMemorabilia_Desc" + "image_inventory" "econ/status_icons/cupcake_10_year" + "attributes" + { + "pedestal display model" "models/inventory_items/cupcake_10_year.mdl" + } + } + "988" + { + "name" "PGL Rio 2022 CS:GO Champion" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Rio2022_Champion" + "item_description" "#CSGO_CollectibleCoin_Rio2022_Champion_Desc" + "image_inventory" "econ/status_icons/trophy_majors" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + } + "989" + { + "name" "PGL Rio 2022 CS:GO Finalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Rio2022_Finalist" + "item_description" "#CSGO_CollectibleCoin_Rio2022_Finalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + } + "990" + { + "name" "PGL Rio 2022 CS:GO Semifinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Rio2022_Semifinalist" + "item_description" "#CSGO_CollectibleCoin_Rio2022_Semifinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + } + "991" + { + "name" "PGL Rio 2022 CS:GO Quarterfinalist" + "prefab" "majors_trophy" + "item_name" "#CSGO_CollectibleCoin_Rio2022_Quarterfinalist" + "item_description" "#CSGO_CollectibleCoin_Rio2022_Quarterfinalist_Desc" + "image_inventory" "econ/status_icons/trophy_majors_finalists" + "attributes" + { + "pedestal display model" "models/inventory_items/trophy_majors_finalists.mdl" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + } + "1000" + { + "name" "Community Season One Spring 2013" + "first_sale_date" "2013/04/24" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonOneSpring2013" + "item_description" "#CSGO_Ticket_CommunitySeasonOneSpring2013_Desc" + "image_inventory" "econ/status_icons/community_support_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "0" + } + } + "1001" + { + "name" "Community Season One Spring 2013 Coin 1" + "prefab" "season1_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1_Desc" + "image_inventory" "econ/status_icons/community_support_pass_coin1" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/payback_bronze_01.mdl" + } + } + "1002" + { + "name" "Community Season One Spring 2013 Coin 2" + "prefab" "season1_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2_Desc" + "image_inventory" "econ/status_icons/community_support_pass_coin2" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/payback_silver_01.mdl" + } + } + "1003" + { + "name" "Community Season One Spring 2013 Coin 3" + "prefab" "season1_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3_Desc" + "image_inventory" "econ/status_icons/community_support_pass_coin3" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/payback_gold_01.mdl" + } + } + "1004" + { + "name" "Map Token Museum" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenMuseum" + "item_description" "#CSGO_Collectible_MapTokenMuseum_Desc" + "image_inventory" "econ/status_icons/maptoken_museum" + "map_name" "#SFUI_Map_cs_museum" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_museum.mdl" + } + } + "1005" + { + "name" "Map Token Downtown" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenDowntown" + "item_description" "#CSGO_Collectible_MapTokenDowntown_Desc" + "image_inventory" "econ/status_icons/maptoken_downtown" + "map_name" "#SFUI_Map_cs_downtown" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_downtown.mdl" + } + } + "1006" + { + "name" "Map Token Thunder" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenThunder" + "item_description" "#CSGO_Collectible_MapTokenThunder_Desc" + "image_inventory" "econ/status_icons/maptoken_thunder" + "map_name" "#SFUI_Map_cs_thunder_go" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_thunder.mdl" + } + } + "1007" + { + "name" "Map Token Favela" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenFavela" + "item_description" "#CSGO_Collectible_MapTokenFavela_Desc" + "image_inventory" "econ/status_icons/maptoken_favela" + "map_name" "#SFUI_Map_de_favela" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_favela.mdl" + } + } + "1008" + { + "name" "Map Token Motel" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenMotel" + "item_description" "#CSGO_Collectible_MapTokenMotel_Desc" + "image_inventory" "econ/status_icons/maptoken_motel" + "map_name" "#SFUI_Map_cs_motel" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_motel.mdl" + } + } + "1009" + { + "name" "Map Token Seaside" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenSeaside" + "item_description" "#CSGO_Collectible_MapTokenSeaside_Desc" + "image_inventory" "econ/status_icons/maptoken_seaside" + "map_name" "#SFUI_Map_de_seaside" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_seaside.mdl" + } + } + "1010" + { + "name" "Map Token Library" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenLibrary" + "item_description" "#CSGO_Collectible_MapTokenLibrary_Desc" + "image_inventory" "econ/status_icons/maptoken_library" + "map_name" "#SFUI_Map_de_library" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_library.mdl" + } + } + "1012" + { + "name" "Community Season Two Autumn 2013" + "first_sale_date" "2013/09/19" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonTwoAutumn2013" + "item_description" "#CSGO_Ticket_CommunitySeasonTwoAutumn2013_Desc" + "image_inventory" "econ/status_icons/operation_bravo_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "1" + } + } + "1013" + { + "name" "Community Season Two Autumn 2013 Coin 1" + "prefab" "season2_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_bravo_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/bravo_bronze_01.mdl" + } + } + "1014" + { + "name" "Community Season Two Autumn 2013 Coin 2" + "prefab" "season2_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_bravo_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/bravo_silver_01.mdl" + } + } + "1015" + { + "name" "Community Season Two Autumn 2013 Coin 3" + "prefab" "season2_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_bravo_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/bravo_gold_01.mdl" + } + } + "1016" + { + "name" "Map Token Agency" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenAgency" + "item_description" "#CSGO_Collectible_MapTokenAgency_Desc" + "image_inventory" "econ/status_icons/maptoken_agency" + "map_name" "#SFUI_Map_cs_agency" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_agency.mdl" + } + } + "1017" + { + "name" "Map Token Ali" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenAli" + "item_description" "#CSGO_Collectible_MapTokenAli_Desc" + "image_inventory" "econ/status_icons/maptoken_ali" + "map_name" "#SFUI_Map_de_ali" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_ali.mdl" + } + } + "1018" + { + "name" "Map Token Cache" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenCache" + "item_description" "#CSGO_Collectible_MapTokenCache_Desc" + "image_inventory" "econ/status_icons/maptoken_cache" + "map_name" "#SFUI_Map_de_cache" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_cache.mdl" + } + } + "1019" + { + "name" "Map Token Chinatown" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenChinatown" + "item_description" "#CSGO_Collectible_MapTokenChinatown_Desc" + "image_inventory" "econ/status_icons/maptoken_chinatown" + "map_name" "#SFUI_Map_de_chinatown" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_chinatown.mdl" + } + } + "1020" + { + "name" "Map Token Gwalior" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenGwalior" + "item_description" "#CSGO_Collectible_MapTokenGwalior_Desc" + "image_inventory" "econ/status_icons/maptoken_gwalior" + "map_name" "#SFUI_Map_de_gwalior" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_gwalior.mdl" + } + } + "1021" + { + "name" "Map Token Ruins" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenRuins" + "item_description" "#CSGO_Collectible_MapTokenRuins_Desc" + "image_inventory" "econ/status_icons/maptoken_ruins" + "map_name" "#SFUI_Map_de_ruins" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_ruins.mdl" + } + } + "1022" + { + "name" "Map Token Siege" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenSiege" + "item_description" "#CSGO_Collectible_MapTokenSiege_Desc" + "image_inventory" "econ/status_icons/maptoken_siege" + "map_name" "#SFUI_Map_cs_siege" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_siege.mdl" + } + } + "1023" + { + "name" "Community Season Three Spring 2014" + "first_sale_date" "2014/03/20" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonThreeSpring2014" + "item_description" "#CSGO_Ticket_CommunitySeasonThreeSpring2014_Desc" + "image_inventory" "econ/status_icons/operation_phoenix_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "2" + } + } + "1024" + { + "name" "Community Season Three Spring 2014 Coin 1" + "prefab" "season3_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_phoenix_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/phoenix_bronze_01.mdl" + } + } + "1025" + { + "name" "Community Season Three Spring 2014 Coin 2" + "prefab" "season3_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_phoenix_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/phoenix_silver_01.mdl" + } + } + "1026" + { + "name" "Community Season Three Spring 2014 Coin 3" + "prefab" "season3_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_phoenix_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/phoenix_gold_01.mdl" + } + } + "1027" + { + "name" "Community Season Four Summer 2014" + "first_sale_date" "2014/07/01" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonFourSummer2014" + "item_description" "#CSGO_Ticket_CommunitySeasonFourSummer2014_Desc" + "image_inventory" "econ/status_icons/operation_breakout_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "3" + } + } + "1028" + { + "name" "Community Season Four Summer 2014 Coin 1" + "prefab" "season4_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_breakout_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/breakout_bronze_01.mdl" + } + } + "1029" + { + "name" "Community Season Four Summer 2014 Coin 2" + "prefab" "season4_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_breakout_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/breakout_silver_01.mdl" + } + } + "1030" + { + "name" "Community Season Four Summer 2014 Coin 3" + "prefab" "season4_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_breakout_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/breakout_gold_01.mdl" + } + } + "1031" + { + "name" "Map Token Castle" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenCastle" + "item_description" "#CSGO_Collectible_MapTokenCastle_Desc" + "image_inventory" "econ/status_icons/maptoken_castle" + "map_name" "#SFUI_Map_de_castle" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_castle.mdl" + } + } + "1032" + { + "name" "Map Token Black Gold" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBlackGold" + "item_description" "#CSGO_Collectible_MapTokenBlackGold_Desc" + "image_inventory" "econ/status_icons/maptoken_blackgold" + "map_name" "#SFUI_Map_de_blackgold" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_blackgold.mdl" + } + } + "1033" + { + "name" "Map Token Rush" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenRush" + "item_description" "#CSGO_Collectible_MapTokenRush_Desc" + "image_inventory" "econ/status_icons/maptoken_rush" + "map_name" "#SFUI_Map_cs_rush" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_rush.mdl" + } + } + "1034" + { + "name" "Map Token Mist" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenMist" + "item_description" "#CSGO_Collectible_MapTokenMist_Desc" + "image_inventory" "econ/status_icons/maptoken_mist" + "map_name" "#SFUI_Map_de_mist" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_mist.mdl" + } + } + "1035" + { + "name" "Map Token Insertion" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenInsertion" + "item_description" "#CSGO_Collectible_MapTokenInsertion_Desc" + "image_inventory" "econ/status_icons/maptoken_insertion" + "map_name" "#SFUI_Map_cs_insertion" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_insertion.mdl" + } + } + "1036" + { + "name" "Map Token Overgrown" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenOvergrown" + "item_description" "#CSGO_Collectible_MapTokenOvergrown_Desc" + "image_inventory" "econ/status_icons/maptoken_overgrown" + "map_name" "#SFUI_Map_de_overgrown" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_overgrown.mdl" + } + } + "1037" + { + "name" "Map Token Marquis" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenMarquis" + "item_description" "#CSGO_Collectible_MapTokenMarquis_Desc" + "image_inventory" "econ/status_icons/maptoken_marquis" + "map_name" "#SFUI_Map_de_marquis" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_marquis.mdl" + } + } + "1038" + { + "name" "Map Token Workout" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenWorkout" + "item_description" "#CSGO_Collectible_MapTokenWorkout_Desc" + "image_inventory" "econ/status_icons/maptoken_workout" + "map_name" "#SFUI_Map_cs_workout" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_workout.mdl" + } + } + "1039" + { + "name" "Map Token Backalley" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBackalley" + "item_description" "#CSGO_Collectible_MapTokenBackalley_Desc" + "image_inventory" "econ/status_icons/maptoken_backalley" + "map_name" "#SFUI_Map_cs_backalley" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_backalley.mdl" + } + } + "1040" + { + "name" "Map Token Season" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenSeason" + "item_description" "#CSGO_Collectible_MapTokenSeason_Desc" + "image_inventory" "econ/status_icons/maptoken_season" + "map_name" "#SFUI_Map_de_season" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_season.mdl" + } + } + "1041" + { + "name" "Map Token Bazaar" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBazaar" + "item_description" "#CSGO_Collectible_MapTokenBazaar_Desc" + "image_inventory" "econ/status_icons/maptoken_bazaar" + "map_name" "#SFUI_Map_de_bazaar" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_bazaar.mdl" + } + } + "1042" + { + "name" "Map Token Facade" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenFacade" + "item_description" "#CSGO_Collectible_MapTokenFacade_Desc" + "image_inventory" "econ/status_icons/maptoken_facade" + "map_name" "#SFUI_Map_de_facade" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_facade.mdl" + } + } + "1043" + { + "name" "Map Token Log" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenLog" + "item_description" "#CSGO_Collectible_MapTokenLog_Desc" + "image_inventory" "econ/status_icons/maptoken_log" + "map_name" "#SFUI_Map_de_log" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_log.mdl" + } + } + "1044" + { + "name" "Map Token Rails" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenRails" + "item_description" "#CSGO_Collectible_MapTokenRails_Desc" + "image_inventory" "econ/status_icons/maptoken_rails" + "map_name" "#SFUI_Map_de_rails" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_rails.mdl" + } + } + "1045" + { + "name" "Map Token Resort" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenResort" + "item_description" "#CSGO_Collectible_MapTokenResort_Desc" + "image_inventory" "econ/status_icons/maptoken_resort" + "map_name" "#SFUI_Map_de_resort" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_resort.mdl" + } + } + "1046" + { + "name" "Map Token Zoo" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenZoo" + "item_description" "#CSGO_Collectible_MapTokenZoo_Desc" + "image_inventory" "econ/status_icons/maptoken_zoo" + "map_name" "#SFUI_Map_de_zoo" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_zoo.mdl" + } + } + "1047" + { + "name" "Map Token Santorini" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenSantorini" + "item_description" "#CSGO_Collectible_MapTokenSantorini_Desc" + "image_inventory" "econ/status_icons/maptoken_santorini" + "map_name" "#SFUI_Map_de_santorini" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_santorini.mdl" + } + } + "1048" + { + "name" "Map Token Coast" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenCoast" + "item_description" "#CSGO_Collectible_MapTokenCoast_Desc" + "image_inventory" "econ/status_icons/maptoken_coast" + "map_name" "#SFUI_Map_de_coast" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_coast.mdl" + } + } + "1049" + { + "name" "Map Token Mikla" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenMikla" + "item_description" "#CSGO_Collectible_MapTokenMikla_Desc" + "image_inventory" "econ/status_icons/maptoken_mikla" + "map_name" "#SFUI_Map_de_mikla" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_mikla.mdl" + } + } + "1050" + { + "name" "Map Token Royal" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenRoyal" + "item_description" "#CSGO_Collectible_MapTokenRoyal_Desc" + "image_inventory" "econ/status_icons/maptoken_royal" + "map_name" "#SFUI_Map_de_royal" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_royal.mdl" + } + } + "1051" + { + "name" "Map Token Empire" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenEmpire" + "item_description" "#CSGO_Collectible_MapTokenEmpire_Desc" + "image_inventory" "econ/status_icons/maptoken_empire" + "map_name" "#SFUI_Map_de_empire" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_empire.mdl" + } + } + "1052" + { + "name" "Map Token Tulip" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenTulip" + "item_description" "#CSGO_Collectible_MapTokenTulip_Desc" + "image_inventory" "econ/status_icons/maptoken_tulip" + "map_name" "#SFUI_Map_de_tulip" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_tulip.mdl" + } + } + "1053" + { + "name" "Map Token Cruise" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenCruise" + "item_description" "#CSGO_Collectible_MapTokenCruise_Desc" + "image_inventory" "econ/status_icons/maptoken_cruise" + "map_name" "#SFUI_Map_cs_cruise" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_cruise.mdl" + } + } + "1054" + { + "name" "Map Token Subzero" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenSubzero" + "item_description" "#CSGO_Collectible_MapTokenSubzero_Desc" + "image_inventory" "econ/status_icons/maptoken_subzero" + "map_name" "#SFUI_Map_de_subzero" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_subzero.mdl" + } + } + "1055" + { + "name" "Map Token Biome" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBiome" + "item_description" "#CSGO_Collectible_MapTokenBiome_Desc" + "image_inventory" "econ/status_icons/maptoken_biome" + "map_name" "#SFUI_Map_de_biome" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_biome.mdl" + } + } + "1056" + { + "name" "Map Token Abbey" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenAbbey" + "item_description" "#CSGO_Collectible_MapTokenAbbey_Desc" + "image_inventory" "econ/status_icons/maptoken_abbey" + "map_name" "#SFUI_Map_de_abbey" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_abbey.mdl" + } + } + "1057" + { + "name" "Map Token Ruby" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenRuby" + "item_description" "#CSGO_Collectible_MapTokenRuby_Desc" + "image_inventory" "econ/status_icons/maptoken_ruby" + "map_name" "#SFUI_Map_de_ruby" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_ruby.mdl" + } + } + "1058" + { + "name" "Map Token Breach" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBreach" + "item_description" "#CSGO_Collectible_MapTokenBreach_Desc" + "image_inventory" "econ/status_icons/maptoken_breach" + "map_name" "#SFUI_Map_de_breach" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_breach.mdl" + } + } + "1059" + { + "name" "Map Token Studio" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenStudio" + "item_description" "#CSGO_Collectible_MapTokenStudio_Desc" + "image_inventory" "econ/status_icons/maptoken_studio" + "map_name" "#SFUI_Map_de_studio" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_studio.mdl" + } + } + "1060" + { + "name" "Map Token Jungle" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenJungle" + "item_description" "#CSGO_Collectible_MapTokenJungle_Desc" + "image_inventory" "econ/status_icons/maptoken_jungle" + "map_name" "#SFUI_Map_dz_junglety" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_jungle.mdl" + } + } + "1061" + { + "name" "Map Token Anubis" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenAnubis" + "item_description" "#CSGO_Collectible_MapTokenAnubis_Desc" + "image_inventory" "econ/status_icons/maptoken_anubis" + "map_name" "#SFUI_Map_de_anubis" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_anubis.mdl" + } + } + "1062" + { + "name" "Map Token Chlorine" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenChlorine" + "item_description" "#CSGO_Collectible_MapTokenChlorine_Desc" + "image_inventory" "econ/status_icons/maptoken_chlorine" + "map_name" "#SFUI_Map_de_chlorine" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_chlorine.mdl" + } + } + "1063" + { + "name" "Map Token Mutiny" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenMutiny" + "item_description" "#CSGO_Collectible_MapTokenMutiny_Desc" + "image_inventory" "econ/status_icons/maptoken_mutiny" + "map_name" "#SFUI_Map_de_mutiny" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_mutiny.mdl" + } + } + "1064" + { + "name" "Map Token Swamp" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenSwamp" + "item_description" "#CSGO_Collectible_MapTokenSwamp_Desc" + "image_inventory" "econ/status_icons/maptoken_swamp" + "map_name" "#SFUI_Map_de_swamp" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_swamp.mdl" + } + } + "1065" + { + "name" "Map Token Frostbite" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenFrostbite" + "item_description" "#CSGO_Collectible_MapTokenFrostbite_Desc" + "image_inventory" "econ/status_icons/maptoken_frostbite" + "map_name" "#SFUI_Map_dz_frostbite" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_frostbite.mdl" + } + } + "1066" + { + "name" "Map Token Engage" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenEngage" + "item_description" "#CSGO_Collectible_MapTokenEngage_Desc" + "image_inventory" "econ/status_icons/maptoken_engage" + "map_name" "#SFUI_Map_de_engage" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_engage.mdl" + } + } + "1067" + { + "name" "Map Token Apollo" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenApollo" + "item_description" "#CSGO_Collectible_MapTokenApollo_Desc" + "image_inventory" "econ/status_icons/maptoken_apollo" + "map_name" "#SFUI_Map_cs_apollo" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_apollo.mdl" + } + } + "1068" + { + "name" "Map Token Guard" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenGuard" + "item_description" "#CSGO_Collectible_MapTokenGuard_Desc" + "image_inventory" "econ/status_icons/maptoken_guard" + "map_name" "#SFUI_Map_de_guard" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_guard.mdl" + } + } + "1069" + { + "name" "Map Token Elysion" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenElysion" + "item_description" "#CSGO_Collectible_MapTokenElysion_Desc" + "image_inventory" "econ/status_icons/maptoken_elysion" + "map_name" "#SFUI_Map_de_elysion" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_elysion.mdl" + } + } + "1070" + { + "name" "Map Token Grind" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenGrind" + "item_description" "#CSGO_Collectible_MapTokenGrind_Desc" + "image_inventory" "econ/status_icons/maptoken_grind" + "map_name" "#SFUI_Map_de_grind" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_grind.mdl" + } + } + "1071" + { + "name" "Map Token Mocha" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenMocha" + "item_description" "#CSGO_Collectible_MapTokenMocha_Desc" + "image_inventory" "econ/status_icons/maptoken_mocha" + "map_name" "#SFUI_Map_de_mocha" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_mocha.mdl" + } + } + "1072" + { + "name" "Map Token Calavera" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenCalavera" + "item_description" "#CSGO_Collectible_MapTokenCalavera_Desc" + "image_inventory" "econ/status_icons/maptoken_calavera" + "map_name" "#SFUI_Map_de_calavera" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_calavera.mdl" + } + } + "1073" + { + "name" "Map Token Pitstop" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenPitstop" + "item_description" "#CSGO_Collectible_MapTokenPitstop_Desc" + "image_inventory" "econ/status_icons/maptoken_pitstop" + "map_name" "#SFUI_Map_de_pitstop" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_pitstop.mdl" + } + } + "1074" + { + "name" "Map Token Basalt" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBasalt" + "item_description" "#CSGO_Collectible_MapTokenBasalt_Desc" + "image_inventory" "econ/status_icons/maptoken_basalt" + "map_name" "#SFUI_Map_de_basalt" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_basalt.mdl" + } + } + "1075" + { + "name" "Map Token Insertion2" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenInsertion2" + "item_description" "#CSGO_Collectible_MapTokenInsertion2_Desc" + "image_inventory" "econ/status_icons/maptoken_insertion2" + "map_name" "#SFUI_Map_cs_insertion2" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_insertion2.mdl" + } + } + "1076" + { + "name" "Map Token Ravine" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenRavine" + "item_description" "#CSGO_Collectible_MapTokenRavine_Desc" + "image_inventory" "econ/status_icons/maptoken_ravine" + "map_name" "#SFUI_Map_de_ravine" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_ravine.mdl" + } + } + "1077" + { + "name" "Map Token Extraction" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenExtraction" + "item_description" "#CSGO_Collectible_MapTokenExtraction_Desc" + "image_inventory" "econ/status_icons/maptoken_extraction" + "map_name" "#SFUI_Map_de_extraction" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_extraction.mdl" + } + } + "1078" + { + "name" "Map Token County" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenCounty" + "item_description" "#CSGO_Collectible_MapTokenCounty_Desc" + "image_inventory" "econ/status_icons/maptoken_county" + "map_name" "#SFUI_Map_dz_county" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_county.mdl" + } + } + "1079" + { + "name" "Map Token Iris" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenIris" + "item_description" "#CSGO_Collectible_MapTokenIris_Desc" + "image_inventory" "econ/status_icons/maptoken_iris" + "map_name" "#SFUI_Map_de_iris" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_iris.mdl" + } + } + "1080" + { + "name" "Map Token Climb" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenClimb" + "item_description" "#CSGO_Collectible_MapTokenClimb_Desc" + "image_inventory" "econ/status_icons/maptoken_climb" + "map_name" "#SFUI_Map_cs_climb" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_climb.mdl" + } + } + "1081" + { + "name" "Map Token Crete" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenCrete" + "item_description" "#CSGO_Collectible_MapTokenCrete_Desc" + "image_inventory" "econ/status_icons/maptoken_crete" + "map_name" "#SFUI_Map_de_crete" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_crete.mdl" + } + } + "1082" + { + "name" "Map Token Hive" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenHive" + "item_description" "#CSGO_Collectible_MapTokenHive_Desc" + "image_inventory" "econ/status_icons/maptoken_hive" + "map_name" "#SFUI_Map_de_hive" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_hive.mdl" + } + } + "1083" + { + "name" "Map Token Vineyard" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenVineyard" + "item_description" "#CSGO_Collectible_MapTokenVineyard_Desc" + "image_inventory" "econ/status_icons/maptoken_vineyard" + "map_name" "#SFUI_Map_dz_vineyard" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_vineyard.mdl" + } + } + "1084" + { + "name" "Map Token Ember" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenEmber" + "item_description" "#CSGO_Collectible_MapTokenEmber_Desc" + "image_inventory" "econ/status_icons/maptoken_ember" + "map_name" "#SFUI_Map_dz_ember" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_ember.mdl" + } + } + "1085" + { + "name" "Map Token Tuscan" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenTuscan" + "item_description" "#CSGO_Collectible_MapTokenTuscan_Desc" + "image_inventory" "econ/status_icons/maptoken_tuscan" + "map_name" "#SFUI_Map_de_tuscan" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_tuscan.mdl" + } + } + "1086" + { + "name" "Map Token Prime" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenPrime" + "item_description" "#CSGO_Collectible_MapTokenPrime_Desc" + "image_inventory" "econ/status_icons/maptoken_prime" + "map_name" "#SFUI_Map_de_prime" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_prime.mdl" + } + } + "1087" + { + "name" "Map Token Blagai" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBlagai" + "item_description" "#CSGO_Collectible_MapTokenBlagai_Desc" + "image_inventory" "econ/status_icons/maptoken_blagai" + "map_name" "#SFUI_Map_de_blagai" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_blagai.mdl" + } + } + "1088" + { + "name" "Map Token Boyard" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenBoyard" + "item_description" "#CSGO_Collectible_MapTokenBoyard_Desc" + "image_inventory" "econ/status_icons/maptoken_boyard" + "map_name" "#SFUI_Map_de_boyard" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_boyard.mdl" + } + } + "1089" + { + "name" "Map Token Chalice" + "prefab" "map_token" + "item_name" "#CSGO_Collectible_MapTokenChalice" + "item_description" "#CSGO_Collectible_MapTokenChalice_Desc" + "image_inventory" "econ/status_icons/maptoken_chalice" + "map_name" "#SFUI_Map_de_chalice" + "attributes" + { + "pedestal display model" "models/inventory_items/maptoken_chalice.mdl" + } + } + "1200" + { + "name" "Name Tag" + "first_sale_date" "2013/08/28" + "prefab" "valve csgo_tool" + "item_name" "#CSGO_Tool_Name_Tag" + "item_type_name" "#CSGO_Tool_Name_TagTag" + "item_description" "#CSGO_Tool_Name_Tag_Desc" + "image_inventory" "econ/tools/tag" + "tool" + { + "type" "name" + "usage_capabilities" + { + "nameable" "1" + } + } + "inv_container_and_tools" "tool" + } + "1201" + { + "name" "casket" + "first_sale_date" "2019/11/25" + "prefab" "valve csgo_tool" + "item_name" "#CSGO_Tool_Casket_Tag" + "item_description" "#CSGO_Tool_Casket_Tag_Desc" + "image_inventory" "econ/tools/casket" + "tool" + { + "type" "casket" + "usage_capabilities" + { + "nameable" "1" + "can_collect" "1" + } + } + "attributes" + { + "cannot trade" "1" + } + "inv_container_and_tools" "tool" + } + "1203" + { + "name" "Weapon Case Key" + "first_sale_date" "2013/09/20" + "prefab" "valve weapon_case_key" + "image_inventory" "econ/tools/weapon_case_key" + "tool" + { + "restriction" "generic_valve_key" + } + } + "1204" + { + "name" "E-Sports Weapon Case Key 1" + "item_name" "#CSGO_esports_crate_key_1" + "item_description" "#CSGO_esports_crate_key_1_desc" + "first_sale_date" "2014/07/09" + "prefab" "valve weapon_case_key" + "image_inventory" "econ/tools/weapon_case_key_special_1" + "tool" + { + "restriction" "esports_crate_key" + } + } + "1209" + { + "name" "sticker" + "first_sale_date" "2014/01/29" + "prefab" "csgo_tool" + "item_name" "#CSGO_Tool_Sticker" + "item_type_name" "#CSGO_Tool_Sticker" + "item_description" "#CSGO_Tool_Sticker_Desc" + "tool" + { + "type" "sticker" + "usage_capabilities" + { + "can_sticker" "1" + "usable_out_of_game" "1" + } + } + "inv_graphic_art" "sticker" + } + "4609" + { + "name" "patch" + "first_sale_date" "2020/02/24" + "prefab" "csgo_tool" + "item_name" "#CSGO_Tool_Patch" + "item_type_name" "#CSGO_Tool_Patch" + "item_description" "#CSGO_Tool_Patch_Desc" + "tool" + { + "type" "patch" + "usage_capabilities" + { + "can_patch" "1" + "usable_out_of_game" "1" + } + } + "inv_graphic_art" "patch" + } + "1210" + { + "name" "Gift - 1 Player" + "first_sale_date" "2013/12/17" + "prefab" "valve csgo_tool" + "item_name" "#CSGO_Tool_Gift1Player" + "item_type_name" "#CSGO_Tool_GiftTag" + "item_description" "#CSGO_Tool_Gift1Player_Desc" + "image_inventory" "econ/weapon_cases/gift1player" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "0" + } + "tool" + { + "type" "gift" + "usage" + { + "num_items" "1" + "max_recipients" "1" + "target_rule" "only_other_players" + } + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "8" + } + } + "inv_container_and_tools" "tool" + } + "1211" + { + "name" "Gift - 9 Players" + "first_sale_date" "2013/12/16" + "prefab" "valve csgo_tool" + "item_name" "#CSGO_Tool_Gift9Players" + "item_type_name" "#CSGO_Tool_GiftTag" + "item_description" "#CSGO_Tool_Gift9Players_Desc" + "image_inventory" "econ/weapon_cases/gift9players" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "0" + } + "tool" + { + "type" "gift" + "usage" + { + "num_items" "1" + "max_recipients" "9" + "target_rule" "only_other_players" + } + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "8" + } + } + "inv_container_and_tools" "tool" + } + "1212" + { + "name" "Sticker Crate Key" + "item_name" "#CSGO_sticker_crate_key_1" + "item_description" "#CSGO_sticker_crate_key_1_desc" + "first_sale_date" "2014/01/29" + "prefab" "valve weapon_case_key" + "image_inventory" "econ/tools/sticker_crate_key" + "tool" + { + "restriction" "sticker_crate_key" + } + } + "1214" + { + "name" "Community Case Key 1" + "item_name" "#CSGO_community_crate_key_1" + "item_description" "#CSGO_community_crate_key_1_desc" + "first_sale_date" "2013/12/18" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_1" + "tool" + { + "restriction" "community_case_1" + } + } + "1215" + { + "name" "Gift - 25 Spectators" + "first_sale_date" "2013/12/16" + "prefab" "valve csgo_tool" + "item_name" "#CSGO_Tool_Gift25Spectators" + "item_type_name" "#CSGO_Tool_GiftTag" + "item_description" "#CSGO_Tool_Gift25Spectators_Desc" + "image_inventory" "econ/weapon_cases/gift25spectators" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "0" + } + "tool" + { + "type" "gift" + "usage" + { + "num_items" "1" + "max_recipients" "25" + "target_rule" "only_other_spectators" + } + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "8" + } + } + "inv_container_and_tools" "tool" + } + "1303" + { + "name" "Community Case Key 2" + "item_name" "#CSGO_community_crate_key_2" + "item_description" "#CSGO_community_crate_key_2_desc" + "first_sale_date" "2014/2/19" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_2" + "tool" + { + "restriction" "community_case_2" + } + } + "1304" + { + "name" "Community Sticker Capsule 1 Key May 2014" + "item_name" "#CSGO_sticker_crate_key_community01" + "item_description" "#CSGO_sticker_crate_key_community01_desc" + "first_sale_date" "2014/04/30" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/sticker_crate_key_community01" + "tool" + { + "restriction" "sticker_pack_community01_key" + } + } + "1305" + { + "name" "Community Case Key 3 May 2014" + "item_name" "#CSGO_community_crate_key_3" + "item_description" "#CSGO_community_crate_key_3_desc" + "first_sale_date" "2014/4/30" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_3" + "tool" + { + "restriction" "community_case_3" + } + } + "1306" + { + "name" "quest" + "item_name" "#quest" + "item_description" "#quest_desc" + "prefab" "quest_prefab" + "attributes" + { + "cannot trade" "1" + } + } + "1307" + { + "name" "Community Case Key 3 June 2014" + "item_name" "#CSGO_community_crate_key_3" + "item_description" "#CSGO_community_crate_key_3_desc" + "first_sale_date" "2014/06/11" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_3" + "tool" + { + "restriction" "community_case_3" + } + } + "1308" + { + "name" "Community Sticker Capsule 1 Key June 2014" + "item_name" "#CSGO_sticker_crate_key_community01" + "item_description" "#CSGO_sticker_crate_key_community01_desc" + "first_sale_date" "2014/06/11" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/sticker_crate_key_community01" + "tool" + { + "restriction" "sticker_pack_community01_key" + } + } + "1309" + { + "name" "Community Case Key 4 July 2014" + "item_name" "#CSGO_community_crate_key_4" + "item_description" "#CSGO_community_crate_key_4_desc" + "first_sale_date" "2014/06/23" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_4" + "tool" + { + "restriction" "community_case_4" + } + } + "1310" + { + "name" "Community Case Key 4 August 2014" + "item_name" "#CSGO_community_crate_key_4" + "item_description" "#CSGO_community_crate_key_4_desc" + "first_sale_date" "2014/06/23" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_4" + "tool" + { + "restriction" "community_case_4" + } + } + "1311" + { + "name" "Community Case Key September 4" + "item_name" "#CSGO_community_crate_key_4" + "item_description" "#CSGO_community_crate_key_4_desc" + "first_sale_date" "2014/07/01" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_4" + "tool" + { + "restriction" "community_case_4" + } + } + "1313" + { + "name" "Community Case Key 4" + "item_name" "#CSGO_community_crate_key_4" + "item_description" "#CSGO_community_crate_key_4_desc" + "first_sale_date" "2014/06/23" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_4" + "tool" + { + "restriction" "community_case_4" + } + } + "1314" + { + "name" "musickit" + "prefab" "musickit_prefab" + } + "1315" + { + "name" "Community Season Five Summer 2014" + "first_sale_date" "2014/10/29" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonFiveSummer2014" + "item_description" "#CSGO_Ticket_CommunitySeasonFiveSummer2014_Desc" + "image_inventory" "econ/status_icons/operation_vanguard_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "4" + } + } + "1316" + { + "name" "Community Season Five Summer 2014 Coin 1" + "prefab" "season5_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_vanguard_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/vanguard_bronze.mdl" + "upgrade threshold" "3" + } + } + "1317" + { + "name" "Community Season Five Summer 2014 Coin 2" + "prefab" "season5_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_vanguard_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/vanguard_silver.mdl" + "upgrade threshold" "4" + } + } + "1318" + { + "name" "Community Season Five Summer 2014 Coin 3" + "prefab" "season5_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_vanguard_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/vanguard_gold.mdl" + } + } + "1320" + { + "name" "campaign magrheb" + "item_name" "#csgo_campaign_maghreb" + "item_description" "#csgo_campaign_maghreb_desc" + "prefab" "valve campaign_prefab" + "attributes" + { + "campaign id" "3" + } + } + "1321" + { + "name" "campaign eurasia" + "item_name" "#csgo_campaign_eurasia" + "item_description" "#csgo_campaign_eurasia_desc" + "prefab" "valve campaign_prefab" + "attributes" + { + "campaign id" "1" + } + } + "1322" + { + "name" "Community Case Key 5" + "item_name" "#CSGO_community_crate_key_5" + "item_description" "#CSGO_community_crate_key_5_desc" + "first_sale_date" "2014/11/5" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_5" + "tool" + { + "restriction" "community_case_5" + } + } + "1323" + { + "name" "Community Case Key 6" + "item_name" "#CSGO_community_crate_key_6" + "item_description" "#CSGO_community_crate_key_6_desc" + "first_sale_date" "2015/1/8" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_6" + "tool" + { + "restriction" "community_case_6" + } + } + "1324" + { + "name" "stattrak_swap_tool" + "first_sale_date" "2015/3/30" + "prefab" "csgo_tool" + "item_name" "#CSGO_tool_stattrak_swap" + "item_description" "#CSGO_tool_stattrak_swap_desc" + "image_inventory" "econ/tools/stattrak_swap_tool" + "tool" + { + "type" "stattrak_swap" + "usage_capabilities" + { + "can_stattrack_swap" "1" + } + } + "inv_container_and_tools" "tool" + } + "1325" + { + "name" "Community Case Key 7" + "item_name" "#CSGO_community_crate_key_7" + "item_description" "#CSGO_community_crate_key_7_desc" + "first_sale_date" "2015/4/15" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_7" + "tool" + { + "restriction" "community_case_7" + } + } + "1326" + { + "name" "Community Season Six 2015" + "first_sale_date" "2015/05/01" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonSix2015" + "item_description" "#CSGO_Ticket_CommunitySeasonSix2015_Desc" + "image_inventory" "econ/status_icons/operation_6_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "5" + } + } + "1327" + { + "name" "Community Season Six 2015 Coin 1" + "prefab" "season6_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_6_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/bloodhound_bronze.mdl" + "upgrade threshold" "9" + } + } + "1328" + { + "name" "Community Season Six 2015 Coin 2" + "prefab" "season6_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_6_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/bloodhound_silver.mdl" + "upgrade threshold" "14" + } + } + "1329" + { + "name" "Community Season Six 2015 Coin 3" + "prefab" "season6_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_6_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/bloodhound_gold.mdl" + } + } + "1330" + { + "name" "Falchion Case Key" + "item_name" "#CSGO_community_crate_key_8" + "item_description" "#CSGO_community_crate_key_8_desc" + "first_sale_date" "2015/5/19" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_8" + "tool" + { + "restriction" "community_case_8" + } + } + "1331" + { + "name" "prestige coin 2015" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2015" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2015" + "image_inventory" "econ/status_icons/service_medal_2015" + "attributes" + { + "prestige year" "2015" + "pedestal display model" "models/inventory_items/service_medal_2015.mdl" + } + } + "1332" + { + "name" "prestige coin 2015 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2015" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2015" + "image_inventory" "econ/status_icons/service_medal_2015_2" + "attributes" + { + "prestige year" "2015" + "pedestal display model" "models/inventory_items/service_medal_2015_2.mdl" + } + } + "1333" + { + "name" "Community Case Key 9" + "item_name" "#CSGO_community_crate_key_9" + "item_description" "#CSGO_community_crate_key_9_desc" + "first_sale_date" "2015/9/15" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_9" + "tool" + { + "restriction" "community_case_9" + } + } + "1334" + { + "name" "crate_community_10 Key" + "item_name" "#CSGO_crate_community_10_key" + "item_description" "#CSGO_crate_community_10_key_desc" + "first_sale_date" "2015-11-30" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_10" + "tool" + { + "restriction" "crate_community_10" + } + } + "1335" + { + "name" "CommunitySeasonSeven2016" + "first_sale_date" "2016/01/01" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonSeven2016" + "item_description" "#CSGO_Ticket_CommunitySeasonSeven2016_Desc" + "image_inventory" "econ/status_icons/operation_7_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "6" + } + } + "1336" + { + "name" "CommunitySeasonSeven2016 Coin 1" + "prefab" "season7_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonSeven2016_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonSeven2016_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_7_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_7_bronze.mdl" + "upgrade threshold" "9" + } + } + "1337" + { + "name" "CommunitySeasonSeven2016 Coin 2" + "prefab" "season7_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonSeven2016_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonSeven2016_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_7_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_7_silver.mdl" + "upgrade threshold" "14" + } + } + "1338" + { + "name" "CommunitySeasonSeven2016 Coin 3" + "prefab" "season7_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonSeven2016_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonSeven2016_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_7_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_7_gold.mdl" + } + } + "1339" + { + "name" "prestige coin 2016" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2016" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" + "image_inventory" "econ/status_icons/service_medal_2016_lvl1" + "attributes" + { + "prestige year" "2016" + "pedestal display model" "models/inventory_items/service_medal_2016_lvl1.mdl" + } + } + "1340" + { + "name" "prestige coin 2016 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2016" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" + "image_inventory" "econ/status_icons/service_medal_2016_lvl2" + "attributes" + { + "prestige year" "2016" + "pedestal display model" "models/inventory_items/service_medal_2016_lvl2.mdl" + } + } + "1341" + { + "name" "prestige coin 2016 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2016" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" + "image_inventory" "econ/status_icons/service_medal_2016_lvl3" + "attributes" + { + "prestige year" "2016" + "pedestal display model" "models/inventory_items/service_medal_2016_lvl3.mdl" + } + } + "1342" + { + "name" "prestige coin 2016 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2016" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" + "image_inventory" "econ/status_icons/service_medal_2016_lvl4" + "attributes" + { + "prestige year" "2016" + "pedestal display model" "models/inventory_items/service_medal_2016_lvl4.mdl" + } + } + "1343" + { + "name" "prestige coin 2016 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2016" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" + "image_inventory" "econ/status_icons/service_medal_2016_lvl5" + "attributes" + { + "prestige year" "2016" + "pedestal display model" "models/inventory_items/service_medal_2016_lvl5.mdl" + } + } + "1344" + { + "name" "prestige coin 2016 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2016" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" + "image_inventory" "econ/status_icons/service_medal_2016_lvl6" + "attributes" + { + "prestige year" "2016" + "pedestal display model" "models/inventory_items/service_medal_2016_lvl6.mdl" + } + } + "1348" + { + "name" "spray" + "first_sale_date" "2014/06/20" + "prefab" "csgo_tool" + "item_name" "#CSGO_Tool_Spray" + "item_type_name" "#CSGO_Type_Spray" + "item_description" "#CSGO_Tool_Spray_Desc" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "spray" + "use_string" "#ConsumeItem" + } + "inv_graphic_art" "graffiti" + } + "1349" + { + "name" "spraypaint" + "first_sale_date" "2014/06/20" + "prefab" "csgo_tool" + "item_name" "#CSGO_Tool_SprayPaint" + "item_type_name" "#CSGO_Type_Spray" + "item_description" "#CSGO_Tool_SprayPaint_Desc" + "tool" + { + "type" "spraypaint" + } + "capabilities" + { + "can_delete" "1" + } + "item_slot" "spray" + "item_sub_position" "spray0" + "inv_graphic_art" "graffiti" + "used_by_classes" + { + "noteam" "1" + } + "attributes" + { + "cannot trade" "1" + } + } + "1352" + { + "name" "CommunitySeasonEight2017" + "first_sale_date" "2017/05/23" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonEight2017" + "item_description" "#CSGO_Ticket_CommunitySeasonEight2017_Desc" + "image_inventory" "econ/status_icons/operation_8_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "7" + } + } + "4353" + { + "name" "CommunitySeasonEight2017 Coin 1" + "prefab" "season8_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEight2017_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonEight2017_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_8_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_8_bronze.mdl" + "upgrade threshold" "5" + } + } + "4354" + { + "name" "CommunitySeasonEight2017 Coin 2" + "prefab" "season8_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEight2017_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonEight2017_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_8_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_8_silver.mdl" + "upgrade threshold" "18" + } + } + "4355" + { + "name" "CommunitySeasonEight2017 Coin 3" + "prefab" "season8_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEight2017_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonEight2017_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_8_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_8_gold.mdl" + "upgrade threshold" "25" + } + } + "4356" + { + "name" "CommunitySeasonEight2017 Coin 4" + "prefab" "season8_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEight2017_Coin4" + "item_description" "#CSGO_Collectible_CommunitySeasonEight2017_Coin4_Desc" + "image_inventory" "econ/status_icons/operation_8_platinum" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_8_platinum.mdl" + } + } + "1357" + { + "name" "prestige coin 2017" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2017" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2017" + "image_inventory" "econ/status_icons/service_medal_2017_lvl1" + "attributes" + { + "prestige year" "2017" + "pedestal display model" "models/inventory_items/service_medal_2017_lvl1.mdl" + } + } + "1358" + { + "name" "prestige coin 2017 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2017" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2017" + "image_inventory" "econ/status_icons/service_medal_2017_lvl2" + "attributes" + { + "prestige year" "2017" + "pedestal display model" "models/inventory_items/service_medal_2017_lvl2.mdl" + } + } + "1359" + { + "name" "prestige coin 2017 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2017" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2017" + "image_inventory" "econ/status_icons/service_medal_2017_lvl3" + "attributes" + { + "prestige year" "2017" + "pedestal display model" "models/inventory_items/service_medal_2017_lvl3.mdl" + } + } + "1360" + { + "name" "prestige coin 2017 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2017" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2017" + "image_inventory" "econ/status_icons/service_medal_2017_lvl4" + "attributes" + { + "prestige year" "2017" + "pedestal display model" "models/inventory_items/service_medal_2017_lvl4.mdl" + } + } + "1361" + { + "name" "prestige coin 2017 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2017" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2017" + "image_inventory" "econ/status_icons/service_medal_2017_lvl5" + "attributes" + { + "prestige year" "2017" + "pedestal display model" "models/inventory_items/service_medal_2017_lvl5.mdl" + } + } + "1362" + { + "name" "prestige coin 2017 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2017" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2017" + "image_inventory" "econ/status_icons/service_medal_2017_lvl6" + "attributes" + { + "prestige year" "2017" + "pedestal display model" "models/inventory_items/service_medal_2017_lvl6.mdl" + } + } + "1363" + { + "name" "prestige coin 2017 level 7" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2017" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2017" + "image_inventory" "econ/status_icons/service_medal_2017_lvl7" + "attributes" + { + "prestige year" "2017" + "pedestal display model" "models/inventory_items/service_medal_2017_lvl7.mdl" + } + } + "1353" + { + "name" "Game License" + "prefab" "valve collectible_untradable_coin" + "item_rarity" "common" + "item_type" "game_license" + "item_name" "#CSGO_Purchasable_Game_License" + "item_description" "#CSGO_Purchasable_Game_License_Desc" + "image_inventory" "econ/status_icons/collectible_pin_tactics" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_tactics.mdl" + } + } + "1367" + { + "name" "prestige coin 2018" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2018" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2018" + "image_inventory" "econ/status_icons/service_medal_2018_lvl1" + "attributes" + { + "prestige year" "2018" + "pedestal display model" "models/inventory_items/service_medal_2018_lvl1.mdl" + } + } + "1368" + { + "name" "prestige coin 2018 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2018" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2018" + "image_inventory" "econ/status_icons/service_medal_2018_lvl2" + "attributes" + { + "prestige year" "2018" + "pedestal display model" "models/inventory_items/service_medal_2018_lvl2.mdl" + } + } + "1369" + { + "name" "prestige coin 2018 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2018" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2018" + "image_inventory" "econ/status_icons/service_medal_2018_lvl3" + "attributes" + { + "prestige year" "2018" + "pedestal display model" "models/inventory_items/service_medal_2018_lvl3.mdl" + } + } + "1370" + { + "name" "prestige coin 2018 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2018" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2018" + "image_inventory" "econ/status_icons/service_medal_2018_lvl4" + "attributes" + { + "prestige year" "2018" + "pedestal display model" "models/inventory_items/service_medal_2018_lvl4.mdl" + } + } + "1371" + { + "name" "prestige coin 2018 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2018" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2018" + "image_inventory" "econ/status_icons/service_medal_2018_lvl5" + "attributes" + { + "prestige year" "2018" + "pedestal display model" "models/inventory_items/service_medal_2018_lvl5.mdl" + } + } + "1372" + { + "name" "prestige coin 2018 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2018" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2018" + "image_inventory" "econ/status_icons/service_medal_2018_lvl6" + "attributes" + { + "prestige year" "2018" + "pedestal display model" "models/inventory_items/service_medal_2018_lvl6.mdl" + } + } + "1376" + { + "name" "prestige coin 2019" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2019" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2019" + "image_inventory" "econ/status_icons/service_medal_2019_lvl1" + "attributes" + { + "prestige year" "2019" + "pedestal display model" "models/inventory_items/service_medal_2019_lvl1.mdl" + } + } + "1377" + { + "name" "prestige coin 2019 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2019" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2019" + "image_inventory" "econ/status_icons/service_medal_2019_lvl2" + "attributes" + { + "prestige year" "2019" + "pedestal display model" "models/inventory_items/service_medal_2019_lvl2.mdl" + } + } + "1378" + { + "name" "prestige coin 2019 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2019" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2019" + "image_inventory" "econ/status_icons/service_medal_2019_lvl3" + "attributes" + { + "prestige year" "2019" + "pedestal display model" "models/inventory_items/service_medal_2019_lvl3.mdl" + } + } + "1379" + { + "name" "prestige coin 2019 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2019" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2019" + "image_inventory" "econ/status_icons/service_medal_2019_lvl4" + "attributes" + { + "prestige year" "2019" + "pedestal display model" "models/inventory_items/service_medal_2019_lvl4.mdl" + } + } + "1380" + { + "name" "prestige coin 2019 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2019" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2019" + "image_inventory" "econ/status_icons/service_medal_2019_lvl5" + "attributes" + { + "prestige year" "2019" + "pedestal display model" "models/inventory_items/service_medal_2019_lvl5.mdl" + } + } + "1381" + { + "name" "prestige coin 2019 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2019" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2019" + "image_inventory" "econ/status_icons/service_medal_2019_lvl6" + "attributes" + { + "prestige year" "2019" + "pedestal display model" "models/inventory_items/service_medal_2019_lvl6.mdl" + } + } + "4674" + { + "name" "prestige coin 2020" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2020" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2020" + "image_inventory" "econ/status_icons/service_medal_2020_lvl1" + "attributes" + { + "prestige year" "2020" + "pedestal display model" "models/inventory_items/service_medal_2020_lvl1.mdl" + } + } + "4675" + { + "name" "prestige coin 2020 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2020" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2020" + "image_inventory" "econ/status_icons/service_medal_2020_lvl2" + "attributes" + { + "prestige year" "2020" + "pedestal display model" "models/inventory_items/service_medal_2020_lvl2.mdl" + } + } + "4676" + { + "name" "prestige coin 2020 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2020" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2020" + "image_inventory" "econ/status_icons/service_medal_2020_lvl3" + "attributes" + { + "prestige year" "2020" + "pedestal display model" "models/inventory_items/service_medal_2020_lvl3.mdl" + } + } + "4677" + { + "name" "prestige coin 2020 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2020" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2020" + "image_inventory" "econ/status_icons/service_medal_2020_lvl4" + "attributes" + { + "prestige year" "2020" + "pedestal display model" "models/inventory_items/service_medal_2020_lvl4.mdl" + } + } + "4678" + { + "name" "prestige coin 2020 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2020" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2020" + "image_inventory" "econ/status_icons/service_medal_2020_lvl5" + "attributes" + { + "prestige year" "2020" + "pedestal display model" "models/inventory_items/service_medal_2020_lvl5.mdl" + } + } + "4679" + { + "name" "prestige coin 2020 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2020" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2020" + "image_inventory" "econ/status_icons/service_medal_2020_lvl6" + "attributes" + { + "prestige year" "2020" + "pedestal display model" "models/inventory_items/service_medal_2020_lvl6.mdl" + } + } + "4607" + { + "name" "xpgrant" + "prefab" "csgo_tool" + "item_type_name" "#CSGO_Type_Ticket" + "inv_container_and_tools" "tool" + "item_quality" "unique" + "item_rarity" "common" + "item_name" "#CSGO_tool_xpgrant" + "item_description" "#CSGO_tool_xpgrant_desc" + "image_inventory" "econ/status_icons/xpgrant" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "xpgrant" + "use_string" "#ConsumeItem" + } + "attributes" + { + "cannot trade" "1" + } + } + "4748" + { + "name" "subscription1" + "prefab" "valve csgo_tool" + "item_type_name" "#CSGO_Type_Ticket" + "inv_container_and_tools" "tool" + "item_quality" "unique" + "item_rarity" "common" + "item_type" "subscription" + "item_name" "#CSGO_tool_subscription1" + "item_description" "#CSGO_tool_subscription1_desc" + "image_inventory" "econ/status_icons/subscription1" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "cannot trade" "1" + } + } + "4737" + { + "name" "prestige coin 2021" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2021" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2021" + "image_inventory" "econ/status_icons/service_medal_2021_lvl1" + "attributes" + { + "prestige year" "2021" + "pedestal display model" "models/inventory_items/service_medal_2021_lvl1.mdl" + } + } + "4738" + { + "name" "prestige coin 2021 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2021" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2021" + "image_inventory" "econ/status_icons/service_medal_2021_lvl2" + "attributes" + { + "prestige year" "2021" + "pedestal display model" "models/inventory_items/service_medal_2021_lvl2.mdl" + } + } + "4739" + { + "name" "prestige coin 2021 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2021" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2021" + "image_inventory" "econ/status_icons/service_medal_2021_lvl3" + "attributes" + { + "prestige year" "2021" + "pedestal display model" "models/inventory_items/service_medal_2021_lvl3.mdl" + } + } + "4740" + { + "name" "prestige coin 2021 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2021" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2021" + "image_inventory" "econ/status_icons/service_medal_2021_lvl4" + "attributes" + { + "prestige year" "2021" + "pedestal display model" "models/inventory_items/service_medal_2021_lvl4.mdl" + } + } + "4741" + { + "name" "prestige coin 2021 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2021" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2021" + "image_inventory" "econ/status_icons/service_medal_2021_lvl5" + "attributes" + { + "prestige year" "2021" + "pedestal display model" "models/inventory_items/service_medal_2021_lvl5.mdl" + } + } + "4742" + { + "name" "prestige coin 2021 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2021" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2021" + "image_inventory" "econ/status_icons/service_medal_2021_lvl6" + "attributes" + { + "prestige year" "2021" + "pedestal display model" "models/inventory_items/service_medal_2021_lvl6.mdl" + } + } + "4819" + { + "name" "prestige coin 2022" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2022" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2022" + "image_inventory" "econ/status_icons/service_medal_2022_lvl1" + "attributes" + { + "prestige year" "2022" + "pedestal display model" "models/inventory_items/service_medal_2022_lvl1.mdl" + } + } + "4820" + { + "name" "prestige coin 2022 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2022" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2022" + "image_inventory" "econ/status_icons/service_medal_2022_lvl2" + "attributes" + { + "prestige year" "2022" + "pedestal display model" "models/inventory_items/service_medal_2022_lvl2.mdl" + } + } + "4821" + { + "name" "prestige coin 2022 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2022" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2022" + "image_inventory" "econ/status_icons/service_medal_2022_lvl3" + "attributes" + { + "prestige year" "2022" + "pedestal display model" "models/inventory_items/service_medal_2022_lvl3.mdl" + } + } + "4822" + { + "name" "prestige coin 2022 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2022" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2022" + "image_inventory" "econ/status_icons/service_medal_2022_lvl4" + "attributes" + { + "prestige year" "2022" + "pedestal display model" "models/inventory_items/service_medal_2022_lvl4.mdl" + } + } + "4823" + { + "name" "prestige coin 2022 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2022" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2022" + "image_inventory" "econ/status_icons/service_medal_2022_lvl5" + "attributes" + { + "prestige year" "2022" + "pedestal display model" "models/inventory_items/service_medal_2022_lvl5.mdl" + } + } + "4824" + { + "name" "prestige coin 2022 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2022" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2022" + "image_inventory" "econ/status_icons/service_medal_2022_lvl6" + "attributes" + { + "prestige year" "2022" + "pedestal display model" "models/inventory_items/service_medal_2022_lvl6.mdl" + } + } + "4873" + { + "name" "prestige coin 2023" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2023" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2023" + "image_inventory" "econ/status_icons/service_medal_2023_lvl1" + "attributes" + { + "prestige year" "2023" + "pedestal display model" "models/inventory_items/service_medal_2023_lvl1.mdl" + } + } + "4874" + { + "name" "prestige coin 2023 level 2" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2023" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2023" + "image_inventory" "econ/status_icons/service_medal_2023_lvl2" + "attributes" + { + "prestige year" "2023" + "pedestal display model" "models/inventory_items/service_medal_2023_lvl2.mdl" + } + } + "4875" + { + "name" "prestige coin 2023 level 3" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2023" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2023" + "image_inventory" "econ/status_icons/service_medal_2023_lvl3" + "attributes" + { + "prestige year" "2023" + "pedestal display model" "models/inventory_items/service_medal_2023_lvl3.mdl" + } + } + "4876" + { + "name" "prestige coin 2023 level 4" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2023" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2023" + "image_inventory" "econ/status_icons/service_medal_2023_lvl4" + "attributes" + { + "prestige year" "2023" + "pedestal display model" "models/inventory_items/service_medal_2023_lvl4.mdl" + } + } + "4877" + { + "name" "prestige coin 2023 level 5" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2023" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2023" + "image_inventory" "econ/status_icons/service_medal_2023_lvl5" + "attributes" + { + "prestige year" "2023" + "pedestal display model" "models/inventory_items/service_medal_2023_lvl5.mdl" + } + } + "4878" + { + "name" "prestige coin 2023 level 6" + "prefab" "prestige_coin" + "item_name" "#CSGO_Collectible_GlobalGeneral2023" + "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2023" + "image_inventory" "econ/status_icons/service_medal_2023_lvl6" + "attributes" + { + "prestige year" "2023" + "pedestal display model" "models/inventory_items/service_medal_2023_lvl6.mdl" + } + } + "4001" + { + "item_name" "#CSGO_crate_valve_1" + "name" "crate_valve_1" + "image_inventory" "econ/weapon_cases/crate_valve_1" + "model_player" "models/props/crates/csgo_drop_crate_armsdeal1.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1203" "1" + } + "tool" + { + "restriction" "generic_valve_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "1" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_weapons_i" + "tag_text" "#CSGO_set_weapons_i" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4002" + { + "item_name" "#CSGO_crate_esports_2013" + "item_description" "#CSGO_crate_esports_2013_desc" + "name" "crate_esports_2013" + "image_inventory" "econ/weapon_cases/crate_esports_2013" + "prefab" "weapon_case" + "associated_items" + { + "1204" "1" + } + "tool" + { + "restriction" "esports_crate_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "2" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_esports" + "tag_text" "#CSGO_set_esports" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4004" + { + "item_name" "#CSGO_crate_valve_2" + "name" "crate_valve_2" + "image_inventory" "econ/weapon_cases/crate_valve_2" + "model_player" "models/props/crates/csgo_drop_crate_armsdeal2.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1203" "1" + } + "tool" + { + "restriction" "generic_valve_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_weapons_ii" + "tag_text" "#CSGO_set_weapons_ii" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4003" + { + "item_name" "#CSGO_crate_operation_ii" + "name" "crate_operation_ii" + "image_inventory" "econ/weapon_cases/crate_operation_ii" + "model_player" "models/props/crates/csgo_drop_crate_bravo.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1203" "1" + } + "tool" + { + "restriction" "generic_valve_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "3" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_bravo_i" + "tag_text" "#CSGO_set_bravo_i" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4005" + { + "item_name" "#CSGO_crate_esports_2013_winter" + "item_description" "#CSGO_crate_esports_2013_winter_desc" + "name" "crate_esports_2013_winter" + "image_inventory" "econ/weapon_cases/crate_esports_2013_14" + "prefab" "weapon_case" + "associated_items" + { + "1204" "1" + } + "tool" + { + "restriction" "esports_crate_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_esports_ii" + "tag_text" "#CSGO_set_esports_ii" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4006" + { + "item_name" "#CSGO_crate_dhw13_promo" + "name" "crate_dhw13_promo" + "image_inventory" "econ/weapon_cases/crate_dhw13_promo" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "6" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "1" + } + } + } + "4007" + { + "item_name" "#CSGO_crate_sticker_pack01" + "name" "crate_sticker_pack01" + "image_inventory" "econ/weapon_cases/crate_sticker_pack01" + "prefab" "sticker_capsule" + "associated_items" + { + "1212" "1" + } + "tool" + { + "restriction" "sticker_crate_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "9" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack01" + "tag_text" "#CSGO_crate_sticker_pack01" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4009" + { + "item_name" "#CSGO_crate_community_1" + "name" "crate_community_1" + "image_inventory" "econ/weapon_cases/crate_community_1" + "model_player" "models/props/crates/csgo_drop_crate_winteroffensive.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1214" "1" + } + "tool" + { + "restriction" "community_case_1" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_1" + "tag_text" "#CSGO_set_community_1" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4010" + { + "item_name" "#CSGO_crate_valve_3" + "name" "crate_valve_3" + "image_inventory" "econ/weapon_cases/crate_valve_3" + "model_player" "models/props/crates/csgo_drop_crate_armsdeal3.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1203" "1" + } + "tool" + { + "restriction" "generic_valve_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_weapons_iii" + "tag_text" "#CSGO_set_weapons_iii" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4011" + { + "item_name" "#CSGO_crate_community_2" + "name" "crate_community_2" + "image_inventory" "econ/weapon_cases/crate_community_2" + "model_player" "models/props/crates/csgo_drop_crate_phoenix.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1303" "1" + } + "tool" + { + "restriction" "community_case_2" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_2" + "tag_text" "#CSGO_set_community_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4012" + { + "item_name" "#CSGO_crate_sticker_pack02" + "name" "crate_sticker_pack02" + "image_inventory" "econ/weapon_cases/crate_sticker_pack02" + "prefab" "sticker_capsule" + "associated_items" + { + "1212" "1" + } + "tool" + { + "restriction" "sticker_crate_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "12" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack02" + "tag_text" "#CSGO_crate_sticker_pack02" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4013" + { + "item_name" "#CSGO_crate_ems14_promo" + "name" "crate_ems14_promo" + "image_inventory" "econ/weapon_cases/crate_ems14_promo" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "13" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "3" + } + } + } + "4014" + { + "item_name" "#CSGO_crate_sticker_pack_kat2014_01" + "name" "crate_sticker_pack_kat2014_01" + "item_description" "#CSGO_crate_sticker_pack_kat2014_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_kat2014_01" + "first_sale_date" "2014/03/02" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "14" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "3" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_kat2014_01" + "tag_text" "#CSGO_crate_sticker_pack_kat2014_01" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4015" + { + "item_name" "#CSGO_crate_sticker_pack_kat2014_02" + "item_description" "#CSGO_crate_sticker_pack_kat2014_desc" + "name" "crate_sticker_pack_kat2014_02" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_kat2014_02" + "first_sale_date" "2014/03/02" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "15" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "3" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_kat2014_02" + "tag_text" "#CSGO_crate_sticker_pack_kat2014_02" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4016" + { + "item_name" "#CSGO_crate_sticker_pack_community01" + "item_description" "CSGO_crate_sticker_pack_community01_desc" + "name" "crate_sticker_pack_community01" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_community01" + "prefab" "sticker_capsule" + "associated_items" + { + "1308" "1" + } + "tool" + { + "restriction" "sticker_pack_community01_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "16" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_community01" + "tag_text" "#CSGO_crate_sticker_pack_community01" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4017" + { + "item_name" "#CSGO_crate_community_3" + "name" "crate_community_3" + "image_inventory" "econ/weapon_cases/crate_community_3" + "model_player" "models/props/crates/csgo_drop_crate_huntsman.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1307" "1" + } + "tool" + { + "restriction" "community_case_3" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "17" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_3" + "tag_text" "#CSGO_set_community_3" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_3_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_3_unusual_itemname" + "image_unusual_item" "econ/weapon_cases/crate_community_3_rare_item" + } + "4018" + { + "item_name" "#CSGO_crate_community_4" + "name" "crate_community_4" + "image_inventory" "econ/weapon_cases/crate_community_4" + "model_player" "models/props/crates/csgo_drop_crate_breakout.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1313" "1" + } + "tool" + { + "restriction" "community_case_4" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_4" + "tag_text" "#CSGO_set_community_4" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_4_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_4_unusual_itemname" + "image_unusual_item" "econ/weapon_cases/crate_community_4_rare_item" + } + "4019" + { + "item_name" "#CSGO_crate_esports_2014_summer" + "item_description" "#CSGO_crate_esports_2014_summer_desc" + "name" "crate_esports_2014_summer" + "image_inventory" "econ/weapon_cases/crate_esports_2014_summer" + "prefab" "weapon_case" + "associated_items" + { + "1204" "1" + } + "tool" + { + "restriction" "esports_crate_key" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_esports_iii" + "tag_text" "#CSGO_set_esports_iii" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4020" + { + "item_name" "#CSGO_crate_sticker_pack_cologne2014_01" + "name" "crate_sticker_pack_cologne2014_01" + "item_description" "#CSGO_crate_sticker_pack_cologne2014_desc01" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2014_01" + "first_sale_date" "2014/08/01" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "20" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_cologne2014_01" + "tag_text" "#CSGO_crate_sticker_pack_cologne2014_01" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4021" + { + "item_name" "#CSGO_crate_sticker_pack_cologne2014_02" + "name" "crate_sticker_pack_cologne2014_02" + "item_description" "#CSGO_crate_sticker_pack_cologne2014_desc02" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2014_02" + "first_sale_date" "2014/08/01" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "21" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_cologne2014_02" + "tag_text" "#CSGO_crate_sticker_pack_cologne2014_02" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4022" + { + "item_name" "#CSGO_crate_esl14_promo_de_dust2" + "name" "crate_esl14_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "22" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4023" + { + "item_name" "#CSGO_crate_esl14_promo_de_inferno" + "name" "crate_esl14_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "23" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4024" + { + "item_name" "#CSGO_crate_esl14_promo_de_mirage" + "name" "crate_esl14_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "24" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4025" + { + "item_name" "#CSGO_crate_esl14_promo_de_nuke" + "name" "crate_esl14_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "25" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4026" + { + "item_name" "#CSGO_crate_esl14_promo_de_cache" + "name" "crate_esl14_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "26" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4027" + { + "item_name" "#CSGO_crate_esl14_promo_de_cbble" + "name" "crate_esl14_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "27" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4028" + { + "item_name" "#CSGO_crate_esl14_promo_de_overpass" + "name" "crate_esl14_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "28" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "4" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4029" + { + "item_name" "#CSGO_crate_operation_vanguard" + "item_description" "#CSGO_crate_operation_vanguard_desc" + "model_player" "models/props/crates/csgo_drop_crate_vanguard.mdl" + "name" "crate_operation_vanguard" + "image_inventory" "econ/weapon_cases/crate_community_5" + "prefab" "weapon_case" + "associated_items" + { + "1322" "1" + } + "tool" + { + "restriction" "community_case_5" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "29" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_5" + "tag_text" "#CSGO_set_community_5" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4030" + { + "item_name" "#CSGO_crate_sticker_pack_dhw2014_01" + "name" "crate_sticker_pack_dhw2014_01" + "item_description" "#CSGO_crate_sticker_pack_dhw2014_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_dhw2014_01" + "first_sale_date" "2014/11/20" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "30" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_dhw2014_01_collection" + "tag_text" "#CSGO_crate_sticker_pack_dhw2014_01_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4031" + { + "item_name" "#CSGO_crate_dhw14_promo_de_dust2" + "name" "crate_dhw14_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "31" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4032" + { + "item_name" "#CSGO_crate_dhw14_promo_de_inferno" + "name" "crate_dhw14_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "32" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4033" + { + "item_name" "#CSGO_crate_dhw14_promo_de_mirage" + "name" "crate_dhw14_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "33" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4034" + { + "item_name" "#CSGO_crate_dhw14_promo_de_nuke" + "name" "crate_dhw14_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "34" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4035" + { + "item_name" "#CSGO_crate_dhw14_promo_de_cache" + "name" "crate_dhw14_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "35" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4036" + { + "item_name" "#CSGO_crate_dhw14_promo_de_cbble" + "name" "crate_dhw14_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "36" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4037" + { + "item_name" "#CSGO_crate_dhw14_promo_de_overpass" + "name" "crate_dhw14_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "37" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "5" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4038" + { + "item_name" "#StickerKit_dhw2014_fnatic" + "name" "crate_sticker_pack_dhw2014_fnatic" + "item_description" "#StickerKit_desc_dhw2014_fnatic" + "image_inventory" "econ/stickers/dhw2014/fnatic" + "loot_list_name" "dhw2014_fnatic_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4039" + { + "item_name" "#StickerKit_dhw2014_cloud9" + "name" "crate_sticker_pack_dhw2014_cloud9" + "item_description" "#StickerKit_desc_dhw2014_cloud9" + "image_inventory" "econ/stickers/dhw2014/cloud9" + "loot_list_name" "dhw2014_cloud9_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4041" + { + "item_name" "#StickerKit_dhw2014_ninjasinpyjamas" + "name" "crate_sticker_pack_dhw2014_ninjasinpyjamas" + "item_description" "#StickerKit_desc_dhw2014_ninjasinpyjamas" + "image_inventory" "econ/stickers/dhw2014/ninjasinpyjamas" + "loot_list_name" "dhw2014_ninjasinpyjamas_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4042" + { + "item_name" "#StickerKit_dhw2014_virtuspro" + "name" "crate_sticker_pack_dhw2014_virtuspro" + "item_description" "#StickerKit_desc_dhw2014_virtuspro" + "image_inventory" "econ/stickers/dhw2014/virtuspro" + "loot_list_name" "dhw2014_virtuspro_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4043" + { + "item_name" "#StickerKit_dhw2014_navi" + "name" "crate_sticker_pack_dhw2014_navi" + "item_description" "#StickerKit_desc_dhw2014_navi" + "image_inventory" "econ/stickers/dhw2014/navi" + "loot_list_name" "dhw2014_navi_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4045" + { + "item_name" "#StickerKit_dhw2014_teamdignitas" + "name" "crate_sticker_pack_dhw2014_dignitas" + "item_description" "#StickerKit_desc_dhw2014_dignitas" + "image_inventory" "econ/stickers/dhw2014/dignitas" + "loot_list_name" "dhw2014_dignitas_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4046" + { + "item_name" "#StickerKit_dhw2014_bravadogaming" + "name" "crate_sticker_pack_dhw2014_bravadogaming" + "item_description" "#StickerKit_desc_dhw2014_bravadogaming" + "image_inventory" "econ/stickers/dhw2014/bravadogaming" + "loot_list_name" "dhw2014_bravadogaming_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4047" + { + "item_name" "#StickerKit_dhw2014_escgaming" + "name" "crate_sticker_pack_dhw2014_escgaming" + "item_description" "#StickerKit_desc_dhw2014_escgaming" + "image_inventory" "econ/stickers/dhw2014/escgaming" + "loot_list_name" "dhw2014_escgaming_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4048" + { + "item_name" "#StickerKit_dhw2014_hellraisers" + "name" "crate_sticker_pack_dhw2014_hellraisers" + "item_description" "#StickerKit_desc_dhw2014_hellraisers" + "image_inventory" "econ/stickers/dhw2014/hellraisers" + "loot_list_name" "dhw2014_hellraisers_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4049" + { + "item_name" "#StickerKit_dhw2014_myxmg" + "name" "crate_sticker_pack_dhw2014_myxmg" + "item_description" "#StickerKit_desc_dhw2014_myxmg" + "image_inventory" "econ/stickers/dhw2014/myxmg" + "loot_list_name" "dhw2014_myxmg_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4050" + { + "item_name" "#StickerKit_dhw2014_ibuypower" + "name" "crate_sticker_pack_dhw2014_ibuypower" + "item_description" "#StickerKit_desc_dhw2014_ibuypower" + "image_inventory" "econ/stickers/dhw2014/ibuypower" + "loot_list_name" "dhw2014_ibuypower_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4051" + { + "item_name" "#StickerKit_dhw2014_teamldlc" + "name" "crate_sticker_pack_dhw2014_teamldlc" + "item_description" "#StickerKit_desc_dhw2014_teamldlc" + "image_inventory" "econ/stickers/dhw2014/teamldlc" + "loot_list_name" "dhw2014_teamldlc_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4052" + { + "item_name" "#StickerKit_dhw2014_pentasports" + "name" "crate_sticker_pack_dhw2014_pentasports" + "item_description" "#StickerKit_desc_dhw2014_pentasports" + "image_inventory" "econ/stickers/dhw2014/pentasports" + "loot_list_name" "dhw2014_pentasports_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4053" + { + "item_name" "#StickerKit_dhw2014_planetkeydynamics" + "name" "crate_sticker_pack_dhw2014_planetkeydynamics" + "item_description" "#StickerKit_desc_dhw2014_planetkeydynamics" + "image_inventory" "econ/stickers/dhw2014/planetkeydynamics" + "loot_list_name" "dhw2014_planetkeydynamics_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4054" + { + "item_name" "#StickerKit_dhw2014_dhw" + "name" "crate_sticker_pack_dhw2014_dhw" + "item_description" "#StickerKit_desc_dhw2014_dhw" + "image_inventory" "econ/stickers/dhw2014/dreamhackwinter2014" + "loot_list_name" "dhw2014_dhw_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4055" + { + "item_name" "#StickerKit_dhw2014_3dmax" + "name" "crate_sticker_pack_dhw2014_3dmax" + "item_description" "#StickerKit_desc_dhw2014_3dmax" + "image_inventory" "econ/stickers/dhw2014/3dmax" + "loot_list_name" "dhw2014_3dmax_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4056" + { + "item_name" "#StickerKit_dhw2014_copenhagenwolves" + "name" "crate_sticker_pack_dhw2014_copenhagenwolves" + "item_description" "#StickerKit_desc_dhw2014_copenhagenwolves" + "image_inventory" "econ/stickers/dhw2014/copenhagenwolves" + "loot_list_name" "dhw2014_copenhagenwolves_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4057" + { + "item_name" "#StickerKit_dhw2014_datteam" + "name" "crate_sticker_pack_dhw2014_datteam" + "item_description" "#StickerKit_desc_dhw2014_datteam" + "image_inventory" "econ/stickers/dhw2014/datteam" + "loot_list_name" "dhw2014_datteam_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4058" + { + "item_name" "#StickerKit_dhw2014_londonconspiracy" + "name" "crate_sticker_pack_dhw2014_londonconspiracy" + "item_description" "#StickerKit_desc_dhw2014_londonconspiracy" + "image_inventory" "econ/stickers/dhw2014/londonconspiracy" + "loot_list_name" "dhw2014_londonconspiracy_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4059" + { + "item_name" "#StickerKit_dhw2014_mousesports" + "name" "crate_sticker_pack_dhw2014_mousesports" + "item_description" "#StickerKit_desc_dhw2014_mousesports" + "image_inventory" "econ/stickers/dhw2014/mousesports" + "loot_list_name" "dhw2014_mousesports_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4060" + { + "item_name" "#StickerKit_dhw2014_flipsid3" + "name" "crate_sticker_pack_dhw2014_flipsid3" + "item_description" "#StickerKit_desc_dhw2014_flipsid3" + "image_inventory" "econ/stickers/dhw2014/flipsid3" + "loot_list_name" "dhw2014_flipsid3_rare" + "prefab" "dhw14_sticker_capsule_prefab" + } + "4061" + { + "item_name" "#CSGO_crate_community_6" + "item_description" "#CSGO_crate_community_6_desc" + "model_player" "models/props/crates/csgo_drop_crate_chroma.mdl" + "first_sale_date" "2015/1/8" + "name" "crate_community_6" + "image_inventory" "econ/weapon_cases/crate_community_6" + "prefab" "weapon_case" + "associated_items" + { + "1323" "1" + } + "tool" + { + "restriction" "community_case_6" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "38" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_6" + "tag_text" "#CSGO_set_community_6" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4062" + { + "item_name" "#StickerKit_eslkatowice2015_3dmax" + "name" "crate_sticker_pack_eslkatowice2015_3dmax" + "item_description" "#StickerKit_desc_eslkatowice2015_3dmax" + "image_inventory" "econ/stickers/eslkatowice2015/3dmax" + "loot_list_name" "eslkatowice2015_3dmax_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4063" + { + "item_name" "#StickerKit_eslkatowice2015_cloud9" + "name" "crate_sticker_pack_eslkatowice2015_cloud9" + "item_description" "#StickerKit_desc_eslkatowice2015_cloud9" + "image_inventory" "econ/stickers/eslkatowice2015/cloud9" + "loot_list_name" "eslkatowice2015_cloud9_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4064" + { + "item_name" "#StickerKit_eslkatowice2015_counterlogic" + "name" "crate_sticker_pack_eslkatowice2015_counterlogic" + "item_description" "#StickerKit_desc_eslkatowice2015_counterlogic" + "image_inventory" "econ/stickers/eslkatowice2015/counterlogic" + "loot_list_name" "eslkatowice2015_counterlogic_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4065" + { + "item_name" "#StickerKit_eslkatowice2015_flipsid3" + "name" "crate_sticker_pack_eslkatowice2015_flipsid3" + "item_description" "#StickerKit_desc_eslkatowice2015_flipsid3" + "image_inventory" "econ/stickers/eslkatowice2015/flipsid3" + "loot_list_name" "eslkatowice2015_flipsid3_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4066" + { + "item_name" "#StickerKit_eslkatowice2015_fnatic" + "name" "crate_sticker_pack_eslkatowice2015_fnatic" + "item_description" "#StickerKit_desc_eslkatowice2015_fnatic" + "image_inventory" "econ/stickers/eslkatowice2015/fnatic" + "loot_list_name" "eslkatowice2015_fnatic_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4067" + { + "item_name" "#StickerKit_eslkatowice2015_hellraisers" + "name" "crate_sticker_pack_eslkatowice2015_hellraisers" + "item_description" "#StickerKit_desc_eslkatowice2015_hellraisers" + "image_inventory" "econ/stickers/eslkatowice2015/hellraisers" + "loot_list_name" "eslkatowice2015_hellraisers_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4068" + { + "item_name" "#StickerKit_eslkatowice2015_keyd" + "name" "crate_sticker_pack_eslkatowice2015_keyd" + "item_description" "#StickerKit_desc_eslkatowice2015_keyd" + "image_inventory" "econ/stickers/eslkatowice2015/keyd" + "loot_list_name" "eslkatowice2015_keyd_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4069" + { + "item_name" "#StickerKit_eslkatowice2015_lgb" + "name" "crate_sticker_pack_eslkatowice2015_lgb" + "item_description" "#StickerKit_desc_eslkatowice2015_lgb" + "image_inventory" "econ/stickers/eslkatowice2015/lgb" + "loot_list_name" "eslkatowice2015_lgb_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4070" + { + "item_name" "#StickerKit_eslkatowice2015_navi" + "name" "crate_sticker_pack_eslkatowice2015_navi" + "item_description" "#StickerKit_desc_eslkatowice2015_navi" + "image_inventory" "econ/stickers/eslkatowice2015/navi" + "loot_list_name" "eslkatowice2015_navi_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4071" + { + "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas" + "name" "crate_sticker_pack_eslkatowice2015_ninjasinpyjamas" + "item_description" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas" + "image_inventory" "econ/stickers/eslkatowice2015/ninjasinpyjamas" + "loot_list_name" "eslkatowice2015_ninjasinpyjamas_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4072" + { + "item_name" "#StickerKit_eslkatowice2015_pentasports" + "name" "crate_sticker_pack_eslkatowice2015_pentasports" + "item_description" "#StickerKit_desc_eslkatowice2015_pentasports" + "image_inventory" "econ/stickers/eslkatowice2015/pentasports" + "loot_list_name" "eslkatowice2015_pentasports_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4073" + { + "item_name" "#StickerKit_eslkatowice2015_teamenvyus" + "name" "crate_sticker_pack_eslkatowice2015_teamenvyus" + "item_description" "#StickerKit_desc_eslkatowice2015_teamenvyus" + "image_inventory" "econ/stickers/eslkatowice2015/teamenvyus" + "loot_list_name" "eslkatowice2015_teamenvyus_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4074" + { + "item_name" "#StickerKit_eslkatowice2015_teamsolomid" + "name" "crate_sticker_pack_eslkatowice2015_teamsolomid" + "item_description" "#StickerKit_desc_eslkatowice2015_teamsolomid" + "image_inventory" "econ/stickers/eslkatowice2015/teamsolomid" + "loot_list_name" "eslkatowice2015_teamsolomid_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4075" + { + "item_name" "#StickerKit_eslkatowice2015_titan" + "name" "crate_sticker_pack_eslkatowice2015_titan" + "item_description" "#StickerKit_desc_eslkatowice2015_titan" + "image_inventory" "econ/stickers/eslkatowice2015/titan" + "loot_list_name" "eslkatowice2015_titan_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4076" + { + "item_name" "#StickerKit_eslkatowice2015_virtuspro" + "name" "crate_sticker_pack_eslkatowice2015_virtuspro" + "item_description" "#StickerKit_desc_eslkatowice2015_virtuspro" + "image_inventory" "econ/stickers/eslkatowice2015/virtuspro" + "loot_list_name" "eslkatowice2015_virtuspro_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4077" + { + "item_name" "#StickerKit_eslkatowice2015_voxeminor" + "name" "crate_sticker_pack_eslkatowice2015_voxeminor" + "item_description" "#StickerKit_desc_eslkatowice2015_voxeminor" + "image_inventory" "econ/stickers/eslkatowice2015/voxeminor" + "loot_list_name" "eslkatowice2015_voxeminor_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4078" + { + "item_name" "#StickerKit_eslkatowice2015_esl_a" + "name" "crate_sticker_pack_eslkatowice2015_esl_a" + "item_description" "#StickerKit_desc_eslkatowice2015_esl_a" + "image_inventory" "econ/stickers/eslkatowice2015/esl_a" + "loot_list_name" "eslkatowice2015_esl_a_rare" + "prefab" "eslkatowice2015_sticker_capsule_prefab" + } + "4079" + { + "item_name" "#CSGO_crate_eslkatowice2015_promo_de_dust2" + "name" "crate_eslkatowice2015_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "39" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4080" + { + "item_name" "#CSGO_crate_eslkatowice2015_promo_de_inferno" + "name" "crate_eslkatowice2015_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "40" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4081" + { + "item_name" "#CSGO_crate_eslkatowice2015_promo_de_mirage" + "name" "crate_eslkatowice2015_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "41" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4082" + { + "item_name" "#CSGO_crate_eslkatowice2015_promo_de_nuke" + "name" "crate_eslkatowice2015_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "42" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4083" + { + "item_name" "#CSGO_crate_eslkatowice2015_promo_de_cache" + "name" "crate_eslkatowice2015_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "43" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4084" + { + "item_name" "#CSGO_crate_eslkatowice2015_promo_de_cbble" + "name" "crate_eslkatowice2015_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "44" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4085" + { + "item_name" "#CSGO_crate_eslkatowice2015_promo_de_overpass" + "name" "crate_eslkatowice2015_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "45" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4086" + { + "item_name" "#CSGO_crate_sticker_pack_eslkatowice2015_01" + "name" "crate_sticker_pack_eslkatowice2015_01" + "item_description" "#CSGO_crate_sticker_pack_eslkatowice2015_desc01" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01" + "first_sale_date" "2015/02/26" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "46" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_eslkatowice2015_01_collection" + "tag_text" "#CSGO_crate_sticker_pack_eslkatowice2015_01_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4087" + { + "item_name" "#CSGO_crate_sticker_pack_eslkatowice2015_02" + "name" "crate_sticker_pack_eslkatowice2015_02" + "item_description" "#CSGO_crate_sticker_pack_eslkatowice2015_desc02" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02" + "first_sale_date" "2015/02/26" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "47" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "6" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_eslkatowice2015_02_collection" + "tag_text" "#CSGO_crate_sticker_pack_eslkatowice2015_02_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4088" + { + "name" "crate_stattrak_swap_tool" + "first_sale_date" "2015/3/30" + "prefab" "valve weapon_case_base" + "item_name" "#CSGO_crate_tool_stattrak_swap" + "item_description" "#CSGO_desc_crate_tool_stattrak_swap" + "item_type" "self_opening_purchase" + "image_inventory" "econ/weapon_cases/stattrak_swap_tool_bundle" + "loot_list_name" "bundle_tool_stattrak_swap" + } + "4089" + { + "item_name" "#CSGO_crate_community_7" + "item_description" "#CSGO_crate_community_7_desc" + "model_player" "models/props/crates/csgo_drop_crate_chroma2.mdl" + "first_sale_date" "2015/4/15" + "name" "crate_community_7" + "image_inventory" "econ/weapon_cases/crate_community_7" + "prefab" "weapon_case" + "associated_items" + { + "1325" "1" + } + "tool" + { + "restriction" "community_case_7" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "48" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_7" + "tag_text" "#CSGO_set_community_7" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4090" + { + "item_name" "#CSGO_crate_sticker_pack_enfu_capsule" + "name" "crate_sticker_pack_enfu_capsule" + "item_description" "#CSGO_crate_sticker_pack_enfu_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_enfu_capsule" + "first_sale_date" "2015/04/22" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "49" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_enfu_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_enfu_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4091" + { + "item_name" "#CSGO_crate_community_8" + "item_description" "#CSGO_crate_community_8_desc" + "model_player" "models/props/crates/csgo_drop_crate_bloodhound.mdl" + "first_sale_date" "2015/4/15" + "name" "crate_community_8" + "image_inventory" "econ/weapon_cases/crate_community_8" + "prefab" "weapon_case" + "associated_items" + { + "1330" "1" + } + "tool" + { + "restriction" "community_case_8" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "50" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_8" + "tag_text" "#CSGO_set_community_8" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_8_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_8_unusual_itemname" + "image_unusual_item" "econ/weapon_cases/crate_community_8_rare_item" + } + "4092" + { + "item_name" "#StickerKit_eslcologne2015_team_fnatic" + "name" "crate_sticker_pack_eslcologne2015_fnatic" + "item_description" "#StickerKit_desc_eslcologne2015_team_fnatic" + "image_inventory" "econ/stickers/cologne2015/fnatic" + "loot_list_name" "eslcologne2015_rare_fnatic" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4093" + { + "item_name" "#StickerKit_eslcologne2015_team_virtuspro" + "name" "crate_sticker_pack_eslcologne2015_virtuspro" + "item_description" "#StickerKit_desc_eslcologne2015_team_virtuspro" + "image_inventory" "econ/stickers/cologne2015/virtuspro" + "loot_list_name" "eslcologne2015_rare_virtuspro" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4094" + { + "item_name" "#StickerKit_eslcologne2015_team_mousesports" + "name" "crate_sticker_pack_eslcologne2015_mousesports" + "item_description" "#StickerKit_desc_eslcologne2015_team_mousesports" + "image_inventory" "econ/stickers/cologne2015/mousesports" + "loot_list_name" "eslcologne2015_rare_mousesports" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4095" + { + "item_name" "#StickerKit_eslcologne2015_team_navi" + "name" "crate_sticker_pack_eslcologne2015_navi" + "item_description" "#StickerKit_desc_eslcologne2015_team_navi" + "image_inventory" "econ/stickers/cologne2015/navi" + "loot_list_name" "eslcologne2015_rare_navi" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4096" + { + "item_name" "#StickerKit_eslcologne2015_team_renegades" + "name" "crate_sticker_pack_eslcologne2015_renegades" + "item_description" "#StickerKit_desc_eslcologne2015_team_renegades" + "image_inventory" "econ/stickers/cologne2015/renegades" + "loot_list_name" "eslcologne2015_rare_renegades" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4097" + { + "item_name" "#StickerKit_eslcologne2015_team_kinguin" + "name" "crate_sticker_pack_eslcologne2015_kinguin" + "item_description" "#StickerKit_desc_eslcologne2015_team_kinguin" + "image_inventory" "econ/stickers/cologne2015/kinguin" + "loot_list_name" "eslcologne2015_rare_kinguin" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4098" + { + "item_name" "#StickerKit_eslcologne2015_team_ebettle" + "name" "crate_sticker_pack_eslcologne2015_ebettle" + "item_description" "#StickerKit_desc_eslcologne2015_team_ebettle" + "image_inventory" "econ/stickers/cologne2015/ebettle" + "loot_list_name" "eslcologne2015_rare_ebettle" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4099" + { + "item_name" "#StickerKit_eslcologne2015_team_cloud9" + "name" "crate_sticker_pack_eslcologne2015_cloud9" + "item_description" "#StickerKit_desc_eslcologne2015_team_cloud9" + "image_inventory" "econ/stickers/cologne2015/cloud9" + "loot_list_name" "eslcologne2015_rare_cloud9" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4100" + { + "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas" + "name" "crate_sticker_pack_eslcologne2015_ninjasinpyjamas" + "item_description" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas" + "image_inventory" "econ/stickers/cologne2015/ninjasinpyjamas" + "loot_list_name" "eslcologne2015_rare_ninjasinpyjamas" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4101" + { + "item_name" "#StickerKit_eslcologne2015_team_envyus" + "name" "crate_sticker_pack_eslcologne2015_envyus" + "item_description" "#StickerKit_desc_eslcologne2015_team_envyus" + "image_inventory" "econ/stickers/cologne2015/envyus" + "loot_list_name" "eslcologne2015_rare_envyus" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4102" + { + "item_name" "#StickerKit_eslcologne2015_team_luminositygaming" + "name" "crate_sticker_pack_eslcologne2015_luminositygaming" + "item_description" "#StickerKit_desc_eslcologne2015_team_luminositygaming" + "image_inventory" "econ/stickers/cologne2015/luminositygaming" + "loot_list_name" "eslcologne2015_rare_luminositygaming" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4103" + { + "item_name" "#StickerKit_eslcologne2015_team_solomid" + "name" "crate_sticker_pack_eslcologne2015_solomid" + "item_description" "#StickerKit_desc_eslcologne2015_team_solomid" + "image_inventory" "econ/stickers/cologne2015/solomid" + "loot_list_name" "eslcologne2015_rare_solomid" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4104" + { + "item_name" "#StickerKit_eslcologne2015_team_teamimmunity" + "name" "crate_sticker_pack_eslcologne2015_teamimmunity" + "item_description" "#StickerKit_desc_eslcologne2015_team_teamimmunity" + "image_inventory" "econ/stickers/cologne2015/teamimmunity" + "loot_list_name" "eslcologne2015_rare_teamimmunity" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4105" + { + "item_name" "#StickerKit_eslcologne2015_team_flipside" + "name" "crate_sticker_pack_eslcologne2015_flipside" + "item_description" "#StickerKit_desc_eslcologne2015_team_flipside" + "image_inventory" "econ/stickers/cologne2015/flipside" + "loot_list_name" "eslcologne2015_rare_flipside" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4106" + { + "item_name" "#StickerKit_eslcologne2015_team_titan" + "name" "crate_sticker_pack_eslcologne2015_titan" + "item_description" "#StickerKit_desc_eslcologne2015_team_titan" + "image_inventory" "econ/stickers/cologne2015/titan" + "loot_list_name" "eslcologne2015_rare_titan" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4107" + { + "item_name" "#StickerKit_eslcologne2015_team_clg" + "name" "crate_sticker_pack_eslcologne2015_clg" + "item_description" "#StickerKit_desc_eslcologne2015_team_clg" + "image_inventory" "econ/stickers/cologne2015/clg" + "loot_list_name" "eslcologne2015_rare_clg" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4108" + { + "item_name" "#StickerKit_eslcologne2015_team_esl" + "name" "crate_sticker_pack_eslcologne2015_esl" + "item_description" "#StickerKit_desc_eslcologne2015_team_esl" + "image_inventory" "econ/stickers/cologne2015/esl" + "loot_list_name" "eslcologne2015_rare_esl" + "prefab" "eslcologne2015_sticker_capsule_prefab" + } + "4109" + { + "item_name" "#CSGO_crate_sticker_pack_eslcologne2015_legends" + "name" "crate_sticker_pack_eslcologne2015_legends" + "item_description" "#CSGO_crate_sticker_pack_eslcologne2015_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_01" + "first_sale_date" "2015/8/10" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "51" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_eslcologne2015_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_eslcologne2015_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4110" + { + "item_name" "#CSGO_crate_sticker_pack_eslcologne2015_challengers" + "name" "crate_sticker_pack_eslcologne2015_challengers" + "item_description" "#CSGO_crate_sticker_pack_eslcologne2015_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_02" + "first_sale_date" "2015/8/10" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "52" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_eslcologne2015_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_eslcologne2015_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4111" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_1" + "name" "crate_signature_pack_eslcologne2015_group_1" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_1_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_1" + "first_sale_date" "2015/8/10" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "53" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4112" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_2" + "name" "crate_signature_pack_eslcologne2015_group_2" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_2_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_2" + "first_sale_date" "2015/8/10" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "54" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4113" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_3" + "name" "crate_signature_pack_eslcologne2015_group_3" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_3_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_3" + "first_sale_date" "2015/8/10" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "55" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4114" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_4" + "name" "crate_signature_pack_eslcologne2015_group_4" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_4_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_4" + "first_sale_date" "2015/8/10" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "56" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_eslcologne2015_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4115" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_fnatic" + "name" "crate_signature_pack_eslcologne2015_fnatic" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_fnatic_desc" + "image_inventory" "econ/weapon_cases/cologne2015_fnatic" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "57" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "6" + } + } + } + "4116" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming" + "name" "crate_signature_pack_eslcologne2015_luminositygaming" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming_desc" + "image_inventory" "econ/weapon_cases/cologne2015_luminositygaming" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "58" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "57" + } + } + } + "4117" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_navi" + "name" "crate_signature_pack_eslcologne2015_navi" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_navi_desc" + "image_inventory" "econ/weapon_cases/cologne2015_navi" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "59" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "12" + } + } + } + "4118" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas" + "name" "crate_signature_pack_eslcologne2015_ninjasinpyjamas" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas_desc" + "image_inventory" "econ/weapon_cases/cologne2015_ninjasinpyjamas" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "60" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "1" + } + } + } + "4119" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_envyus" + "name" "crate_signature_pack_eslcologne2015_envyus" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_envyus_desc" + "image_inventory" "econ/weapon_cases/cologne2015_envyus" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "61" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "46" + } + } + } + "4120" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_titan" + "name" "crate_signature_pack_eslcologne2015_titan" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_titan_desc" + "image_inventory" "econ/weapon_cases/cologne2015_titan" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "62" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "27" + } + } + } + "4121" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_solomid" + "name" "crate_signature_pack_eslcologne2015_solomid" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_solomid_desc" + "image_inventory" "econ/weapon_cases/cologne2015_solomid" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "63" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "58" + } + } + } + "4122" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_virtuspro" + "name" "crate_signature_pack_eslcologne2015_virtuspro" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_virtuspro_desc" + "image_inventory" "econ/weapon_cases/cologne2015_virtuspro" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "64" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "31" + } + } + } + "4123" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_mousesports" + "name" "crate_signature_pack_eslcologne2015_mousesports" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_mousesports_desc" + "image_inventory" "econ/weapon_cases/cologne2015_mousesports" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "65" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "29" + } + } + } + "4124" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_renegades" + "name" "crate_signature_pack_eslcologne2015_renegades" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_renegades_desc" + "image_inventory" "econ/weapon_cases/cologne2015_renegades" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "66" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "53" + } + } + } + "4125" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity" + "name" "crate_signature_pack_eslcologne2015_teamimmunity" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity_desc" + "image_inventory" "econ/weapon_cases/cologne2015_teamimmunity" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "67" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "54" + } + } + } + "4126" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_ebettle" + "name" "crate_signature_pack_eslcologne2015_ebettle" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_ebettle_desc" + "image_inventory" "econ/weapon_cases/cologne2015_ebettle" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "68" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "56" + } + } + } + "4127" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_kinguin" + "name" "crate_signature_pack_eslcologne2015_kinguin" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_kinguin_desc" + "image_inventory" "econ/weapon_cases/cologne2015_kinguin" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "69" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "55" + } + } + } + "4128" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_flipside" + "name" "crate_signature_pack_eslcologne2015_flipside" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_flipside_desc" + "image_inventory" "econ/weapon_cases/cologne2015_flipside" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "70" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "43" + } + } + } + "4129" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_clg" + "name" "crate_signature_pack_eslcologne2015_clg" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_clg_desc" + "image_inventory" "econ/weapon_cases/cologne2015_clg" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "71" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "49" + } + } + } + "4130" + { + "item_name" "#CSGO_crate_signature_pack_eslcologne2015_cloud9" + "name" "crate_signature_pack_eslcologne2015_cloud9" + "item_description" "#CSGO_crate_signature_pack_eslcologne2015_cloud9_desc" + "image_inventory" "econ/weapon_cases/cologne2015_cloud9" + "prefab" "weapon_case_base" + "first_sale_date" "2015/8/10" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "72" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "52" + } + } + } + "4131" + { + "item_name" "#CSGO_crate_eslcologne2015_promo_de_dust2" + "name" "crate_eslcologne2015_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "73" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4132" + { + "item_name" "#CSGO_crate_eslcologne2015_promo_de_mirage" + "name" "crate_eslcologne2015_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "74" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4133" + { + "item_name" "#CSGO_crate_eslcologne2015_promo_de_inferno" + "name" "crate_eslcologne2015_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "75" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4134" + { + "item_name" "#CSGO_crate_eslcologne2015_promo_de_cbble" + "name" "crate_eslcologne2015_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "76" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4135" + { + "item_name" "#CSGO_crate_eslcologne2015_promo_de_overpass" + "name" "crate_eslcologne2015_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "77" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4136" + { + "item_name" "#CSGO_crate_eslcologne2015_promo_de_cache" + "name" "crate_eslcologne2015_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "78" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4137" + { + "item_name" "#CSGO_crate_eslcologne2015_promo_de_train" + "name" "crate_eslcologne2015_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "79" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "7" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4138" + { + "item_name" "#CSGO_crate_community_9" + "item_description" "#CSGO_crate_community_9_desc" + "model_player" "models/props/crates/csgo_drop_crate_shadow.mdl" + "first_sale_date" "2015/9/15" + "name" "crate_community_9" + "image_inventory" "econ/weapon_cases/crate_community_9" + "prefab" "weapon_case" + "associated_items" + { + "1333" "1" + } + "tool" + { + "restriction" "community_case_9" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "80" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_9" + "tag_text" "#CSGO_set_community_9" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_9_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_9_unusual_itemname" + "image_unusual_item" "econ/weapon_cases/crate_community_9_rare_item" + } + "4139" + { + "item_name" "#StickerKit_cluj2015_team_nip" + "name" "crate_sticker_pack_cluj2015_nip" + "item_description" "#StickerKit_desc_cluj2015_team_nip" + "image_inventory" "econ/stickers/cluj2015/nip" + "loot_list_name" "cluj2015_rare_nip" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4140" + { + "item_name" "#StickerKit_cluj2015_team_dig" + "name" "crate_sticker_pack_cluj2015_dig" + "item_description" "#StickerKit_desc_cluj2015_team_dig" + "image_inventory" "econ/stickers/cluj2015/dig" + "loot_list_name" "cluj2015_rare_dig" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4141" + { + "item_name" "#StickerKit_cluj2015_team_clg" + "name" "crate_sticker_pack_cluj2015_clg" + "item_description" "#StickerKit_desc_cluj2015_team_clg" + "image_inventory" "econ/stickers/cluj2015/clg" + "loot_list_name" "cluj2015_rare_clg" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4142" + { + "item_name" "#StickerKit_cluj2015_team_vex" + "name" "crate_sticker_pack_cluj2015_vex" + "item_description" "#StickerKit_desc_cluj2015_team_vex" + "image_inventory" "econ/stickers/cluj2015/vex" + "loot_list_name" "cluj2015_rare_vex" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4143" + { + "item_name" "#StickerKit_cluj2015_team_flip" + "name" "crate_sticker_pack_cluj2015_flip" + "item_description" "#StickerKit_desc_cluj2015_team_flip" + "image_inventory" "econ/stickers/cluj2015/flip" + "loot_list_name" "cluj2015_rare_flip" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4144" + { + "item_name" "#StickerKit_cluj2015_team_liq" + "name" "crate_sticker_pack_cluj2015_liq" + "item_description" "#StickerKit_desc_cluj2015_team_liq" + "image_inventory" "econ/stickers/cluj2015/liq" + "loot_list_name" "cluj2015_rare_liq" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4145" + { + "item_name" "#StickerKit_cluj2015_team_mss" + "name" "crate_sticker_pack_cluj2015_mss" + "item_description" "#StickerKit_desc_cluj2015_team_mss" + "image_inventory" "econ/stickers/cluj2015/mss" + "loot_list_name" "cluj2015_rare_mss" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4146" + { + "item_name" "#StickerKit_cluj2015_team_navi" + "name" "crate_sticker_pack_cluj2015_navi" + "item_description" "#StickerKit_desc_cluj2015_team_navi" + "image_inventory" "econ/stickers/cluj2015/navi" + "loot_list_name" "cluj2015_rare_navi" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4147" + { + "item_name" "#StickerKit_cluj2015_team_vp" + "name" "crate_sticker_pack_cluj2015_vp" + "item_description" "#StickerKit_desc_cluj2015_team_vp" + "image_inventory" "econ/stickers/cluj2015/vp" + "loot_list_name" "cluj2015_rare_vp" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4148" + { + "item_name" "#StickerKit_cluj2015_team_c9" + "name" "crate_sticker_pack_cluj2015_c9" + "item_description" "#StickerKit_desc_cluj2015_team_c9" + "image_inventory" "econ/stickers/cluj2015/c9" + "loot_list_name" "cluj2015_rare_c9" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4149" + { + "item_name" "#StickerKit_cluj2015_team_g2" + "name" "crate_sticker_pack_cluj2015_g2" + "item_description" "#StickerKit_desc_cluj2015_team_g2" + "image_inventory" "econ/stickers/cluj2015/g2" + "loot_list_name" "cluj2015_rare_g2" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4150" + { + "item_name" "#StickerKit_cluj2015_team_tit" + "name" "crate_sticker_pack_cluj2015_tit" + "item_description" "#StickerKit_desc_cluj2015_team_tit" + "image_inventory" "econ/stickers/cluj2015/tit" + "loot_list_name" "cluj2015_rare_tit" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4151" + { + "item_name" "#StickerKit_cluj2015_team_tsolo" + "name" "crate_sticker_pack_cluj2015_tsolo" + "item_description" "#StickerKit_desc_cluj2015_team_tsolo" + "image_inventory" "econ/stickers/cluj2015/tsolo" + "loot_list_name" "cluj2015_rare_tsolo" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4152" + { + "item_name" "#StickerKit_cluj2015_team_nv" + "name" "crate_sticker_pack_cluj2015_nv" + "item_description" "#StickerKit_desc_cluj2015_team_nv" + "image_inventory" "econ/stickers/cluj2015/nv" + "loot_list_name" "cluj2015_rare_nv" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4153" + { + "item_name" "#StickerKit_cluj2015_team_fntc" + "name" "crate_sticker_pack_cluj2015_fntc" + "item_description" "#StickerKit_desc_cluj2015_team_fntc" + "image_inventory" "econ/stickers/cluj2015/fntc" + "loot_list_name" "cluj2015_rare_fntc" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4154" + { + "item_name" "#StickerKit_cluj2015_team_lumi" + "name" "crate_sticker_pack_cluj2015_lumi" + "item_description" "#StickerKit_desc_cluj2015_team_lumi" + "image_inventory" "econ/stickers/cluj2015/lumi" + "loot_list_name" "cluj2015_rare_lumi" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4155" + { + "item_name" "#StickerKit_cluj2015_team_dhc" + "name" "crate_sticker_pack_cluj2015_dhc" + "item_description" "#StickerKit_desc_cluj2015_team_dhc" + "image_inventory" "econ/stickers/cluj2015/dhc" + "loot_list_name" "cluj2015_rare_dhc" + "prefab" "cluj2015_sticker_capsule_prefab" + } + "4156" + { + "item_name" "#CSGO_crate_sticker_pack_cluj2015_legends" + "name" "crate_sticker_pack_cluj2015_legends" + "item_description" "#CSGO_crate_sticker_pack_cluj2015_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_01" + "first_sale_date" "2015/10/20" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "81" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_cluj2015_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_cluj2015_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4157" + { + "item_name" "#CSGO_crate_sticker_pack_cluj2015_challengers" + "name" "crate_sticker_pack_cluj2015_challengers" + "item_description" "#CSGO_crate_sticker_pack_cluj2015_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_02" + "first_sale_date" "2015/10/20" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "82" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_cluj2015_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_cluj2015_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4158" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_group_1" + "name" "crate_signature_pack_cluj2015_group_1" + "item_description" "#CSGO_crate_signature_pack_cluj2015_group_1_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_group_1" + "first_sale_date" "2015/10/20" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "83" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_cluj2015_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_cluj2015_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4159" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_group_2" + "name" "crate_signature_pack_cluj2015_group_2" + "item_description" "#CSGO_crate_signature_pack_cluj2015_group_2_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_group_2" + "first_sale_date" "2015/10/20" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "84" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_cluj2015_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_cluj2015_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4160" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_nip" + "name" "crate_signature_pack_cluj2015_nip" + "item_description" "#CSGO_crate_signature_pack_cluj2015_nip_desc" + "image_inventory" "econ/weapon_cases/cluj2015_nip" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "85" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "1" + } + } + } + "4161" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_dig" + "name" "crate_signature_pack_cluj2015_dig" + "item_description" "#CSGO_crate_signature_pack_cluj2015_dig_desc" + "image_inventory" "econ/weapon_cases/cluj2015_dig" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "86" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "24" + } + } + } + "4162" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_clg" + "name" "crate_signature_pack_cluj2015_clg" + "item_description" "#CSGO_crate_signature_pack_cluj2015_clg_desc" + "image_inventory" "econ/weapon_cases/cluj2015_clg" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "87" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "49" + } + } + } + "4163" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_vex" + "name" "crate_signature_pack_cluj2015_vex" + "item_description" "#CSGO_crate_signature_pack_cluj2015_vex_desc" + "image_inventory" "econ/weapon_cases/cluj2015_vex" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "88" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "47" + } + } + } + "4164" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_flip" + "name" "crate_signature_pack_cluj2015_flip" + "item_description" "#CSGO_crate_signature_pack_cluj2015_flip_desc" + "image_inventory" "econ/weapon_cases/cluj2015_flip" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "89" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "43" + } + } + } + "4165" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_liq" + "name" "crate_signature_pack_cluj2015_liq" + "item_description" "#CSGO_crate_signature_pack_cluj2015_liq_desc" + "image_inventory" "econ/weapon_cases/cluj2015_liq" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "90" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "48" + } + } + } + "4166" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_mss" + "name" "crate_signature_pack_cluj2015_mss" + "item_description" "#CSGO_crate_signature_pack_cluj2015_mss_desc" + "image_inventory" "econ/weapon_cases/cluj2015_mss" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "91" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "29" + } + } + } + "4167" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_navi" + "name" "crate_signature_pack_cluj2015_navi" + "item_description" "#CSGO_crate_signature_pack_cluj2015_navi_desc" + "image_inventory" "econ/weapon_cases/cluj2015_navi" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "92" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "12" + } + } + } + "4168" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_vp" + "name" "crate_signature_pack_cluj2015_vp" + "item_description" "#CSGO_crate_signature_pack_cluj2015_vp_desc" + "image_inventory" "econ/weapon_cases/cluj2015_vp" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "93" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "31" + } + } + } + "4169" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_c9" + "name" "crate_signature_pack_cluj2015_c9" + "item_description" "#CSGO_crate_signature_pack_cluj2015_c9_desc" + "image_inventory" "econ/weapon_cases/cluj2015_c9" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "94" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "33" + } + } + } + "4170" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_g2" + "name" "crate_signature_pack_cluj2015_g2" + "item_description" "#CSGO_crate_signature_pack_cluj2015_g2_desc" + "image_inventory" "econ/weapon_cases/cluj2015_g2" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "95" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "59" + } + } + } + "4171" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_tit" + "name" "crate_signature_pack_cluj2015_tit" + "item_description" "#CSGO_crate_signature_pack_cluj2015_tit_desc" + "image_inventory" "econ/weapon_cases/cluj2015_tit" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "96" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "27" + } + } + } + "4172" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_tsolo" + "name" "crate_signature_pack_cluj2015_tsolo" + "item_description" "#CSGO_crate_signature_pack_cluj2015_tsolo_desc" + "image_inventory" "econ/weapon_cases/cluj2015_tsolo" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "97" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "58" + } + } + } + "4173" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_nv" + "name" "crate_signature_pack_cluj2015_nv" + "item_description" "#CSGO_crate_signature_pack_cluj2015_nv_desc" + "image_inventory" "econ/weapon_cases/cluj2015_nv" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "98" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "46" + } + } + } + "4174" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_fntc" + "name" "crate_signature_pack_cluj2015_fntc" + "item_description" "#CSGO_crate_signature_pack_cluj2015_fntc_desc" + "image_inventory" "econ/weapon_cases/cluj2015_fntc" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "99" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "6" + } + } + } + "4175" + { + "item_name" "#CSGO_crate_signature_pack_cluj2015_lumi" + "name" "crate_signature_pack_cluj2015_lumi" + "item_description" "#CSGO_crate_signature_pack_cluj2015_lumi_desc" + "image_inventory" "econ/weapon_cases/cluj2015_lumi" + "prefab" "weapon_case_base" + "first_sale_date" "2015/10/20" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "100" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "57" + } + } + } + "4176" + { + "item_name" "#CSGO_crate_cluj2015_promo_de_dust2" + "name" "crate_cluj2015_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "101" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4177" + { + "item_name" "#CSGO_crate_cluj2015_promo_de_mirage" + "name" "crate_cluj2015_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "102" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4178" + { + "item_name" "#CSGO_crate_cluj2015_promo_de_inferno" + "name" "crate_cluj2015_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "103" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4179" + { + "item_name" "#CSGO_crate_cluj2015_promo_de_cbble" + "name" "crate_cluj2015_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "104" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4180" + { + "item_name" "#CSGO_crate_cluj2015_promo_de_overpass" + "name" "crate_cluj2015_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "105" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4181" + { + "item_name" "#CSGO_crate_cluj2015_promo_de_cache" + "name" "crate_cluj2015_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "106" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4182" + { + "item_name" "#CSGO_crate_cluj2015_promo_de_train" + "name" "crate_cluj2015_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "107" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "8" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4183" + { + "item_name" "#CSGO_crate_sticker_pack_pinups_capsule" + "name" "crate_sticker_pack_pinups_capsule" + "item_description" "#CSGO_crate_sticker_pack_pinups_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_pinups_capsule" + "first_sale_date" "2015/12/01" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "108" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_pinups_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_pinups_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4184" + { + "item_name" "#CSGO_crate_sticker_pack_slid3_capsule" + "name" "crate_sticker_pack_slid3_capsule" + "item_description" "#CSGO_crate_sticker_pack_slid3_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_slid3_capsule" + "first_sale_date" "2015/12/01" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "109" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_slid3_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_slid3_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4185" + { + "item_name" "#CSGO_crate_sticker_pack_team_roles_capsule" + "name" "crate_sticker_pack_team_roles_capsule" + "item_description" "#CSGO_crate_sticker_pack_team_roles_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_team_roles_capsule" + "first_sale_date" "2015/12/01" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "110" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_team_roles_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_team_roles_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4186" + { + "item_name" "#CSGO_crate_community_10" + "item_description" "#CSGO_crate_community_10_desc" + "model_player" "models/props/crates/csgo_drop_crate_revolver.mdl" + "name" "crate_community_10" + "image_inventory" "econ/weapon_cases/crate_community_10" + "prefab" "weapon_case" + "associated_items" + { + "1334" "1" + } + "tool" + { + "restriction" "crate_community_10" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "111" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_10" + "tag_text" "#CSGO_set_community_10" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4187" + { + "item_name" "#CSGO_crate_community_11" + "item_description" "#CSGO_crate_community_11_desc" + "model_player" "models/props/crates/csgo_drop_crate_wildfire.mdl" + "name" "crate_community_11" + "image_inventory" "econ/weapon_cases/crate_community_11" + "prefab" "weapon_case" + "associated_items" + { + "7000" "1" + } + "tool" + { + "restriction" "crate_community_11" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "112" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_11" + "tag_text" "#CSGO_set_community_11" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_11_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_11_unusual_itemname" + "image_unusual_item" "econ/weapon_cases/crate_community_11_rare_item" + } + "5027" + { + "name" "studded_bloodhound_gloves" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_bloodhound/v_glove_bloodhound.mdl" + "item_name" "#CSGO_Wearable_t_studdedgloves" + "item_description" "#CSGO_Wearable_t_studdedgloves_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_bloodhound.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_bloodhound.mdl" + "icon_default_image" "materials/icons/inventory_icon_studded_bloodhound_gloves.vtf" + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_bloodhound/v_glove_bloodhound_icon.mdl" + } + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_bloodhound/glove_bloodhound_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_bloodhound/glove_bloodhound_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "5028" + { + "name" "t_gloves" + "prefab" "hands" + "model_player" "models/weapons/v_models/arms/glove_fingerless/v_glove_fingerless.mdl" + "item_name" "#CSGO_Wearable_t_defaultgloves" + "item_description" "#CSGO_Wearable_t_defaultgloves_Desc" + "image_inventory" "econ/weapons/base_weapons/t_gloves" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_fingerless/v_glove_fingerless_icon.mdl" + } + "baseitem" "1" + "default_slot_item" "1" + } + "5029" + { + "name" "ct_gloves" + "prefab" "hands" + "model_player" "models/weapons/v_models/arms/glove_hardknuckle/v_glove_hardknuckle.mdl" + "item_name" "#CSGO_Wearable_ct_defaultgloves" + "item_description" "#CSGO_Wearable_ct_defaultgloves_Desc" + "image_inventory" "econ/weapons/base_weapons/ct_gloves" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_hardknuckle/v_glove_ct_hardknuckle_icon.mdl" + } + "baseitem" "1" + "default_slot_item" "1" + } + "5030" + { + "name" "sporty_gloves" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_sporty/v_glove_sporty.mdl" + "item_name" "#CSGO_Wearable_v_sporty_glove" + "item_description" "#CSGO_Wearable_v_sporty_glove_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_sporty.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_sporty.mdl" + "icon_default_image" "materials/icons/inventory_icon_sporty_gloves.vtf" + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_sporty/v_glove_sporty_icon.mdl" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_sporty/glove_sporty_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_sporty/glove_sporty_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "5031" + { + "name" "slick_gloves" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_slick/v_glove_slick.mdl" + "item_name" "#CSGO_Wearable_v_slick_glove" + "item_description" "#CSGO_Wearable_v_slick_glove_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_slick.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_slick.mdl" + "icon_default_image" "materials/icons/inventory_icon_sporty_gloves.vtf" + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_slick/v_glove_slick_icon.mdl" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_slick/glove_slick_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_slick/glove_slick_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "5032" + { + "name" "leather_handwraps" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_handwrap_leathery/v_glove_handwrap_leathery.mdl" + "item_name" "#CSGO_Wearable_v_leather_handwrap" + "item_description" "#CSGO_Wearable_v_leather_handwrap_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_handwrap_leathery.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_handwrap_leathery.mdl" + "icon_default_image" "materials/icons/inventory_icon_leather_handwraps.vtf" + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_handwrap_leathery/glove_handwrap_leathery_icon.mdl" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_handwrap_leathery/glove_handwrap_leathery_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_handwrap_leathery/glove_handwrap_leathery_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "5033" + { + "name" "motorcycle_gloves" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_motorcycle/v_glove_motorcycle.mdl" + "item_name" "#CSGO_Wearable_v_motorcycle_glove" + "item_description" "#CSGO_Wearable_v_motorcycle_glove_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_motorcycle.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_motorcycle.mdl" + "icon_default_image" "materials/icons/inventory_icon_motorcycle_gloves.vtf" + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_motorcycle/v_glove_motorcycle_icon.mdl" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_motorcycle/glove_motorcycle_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_motorcycle/glove_motorcycle_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "5034" + { + "name" "specialist_gloves" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_specialist/v_glove_specialist.mdl" + "item_name" "#CSGO_Wearable_v_specialist_glove" + "item_description" "#CSGO_Wearable_v_specialist_glove_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_specialist.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_specialist.mdl" + "icon_default_image" "materials/icons/inventory_icon_specialist_gloves.vtf" + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_specialist/v_glove_specialist_icon.mdl" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_specialist/glove_specialist_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_specialist/glove_specialist_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "5035" + { + "name" "studded_hydra_gloves" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_bloodhound/v_glove_bloodhound_hydra.mdl" + "item_name" "#CSGO_Wearable_t_studded_hydra_gloves" + "item_description" "#CSGO_Wearable_t_studded_hydra_gloves_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_bloodhound_hydra.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_bloodhound_hydra.mdl" + "icon_default_image" "materials/icons/inventory_icon_studded_bloodhound_gloves.vtf" + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_bloodhound/v_glove_bloodhound_hydra_icon.mdl" + } + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_bloodhound/glove_hydra_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_bloodhound/glove_hydra_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "4725" + { + "name" "studded_brokenfang_gloves" + "prefab" "hands_paintable" + "model_player" "models/weapons/v_models/arms/glove_bloodhound/v_glove_bloodhound_brokenfang.mdl" + "item_name" "#CSGO_Wearable_t_studded_brokenfang_gloves" + "item_description" "#CSGO_Wearable_t_studded_brokenfang_gloves_Desc" + "model_world" "models/weapons/w_models/arms/w_glove_bloodhound_brokenfang.mdl" + "model_dropped" "models/weapons/w_models/arms/w_glove_bloodhound_brokenfang.mdl" + "icon_default_image" "materials/icons/inventory_icon_studded_bloodhound_gloves.vtf" + "attributes" + { + "icon display model" "models/weapons/v_models/arms/glove_bloodhound/v_glove_bloodhound_brokenfang_icon.mdl" + } + "used_by_classes" + { + "counter-terrorists" "1" + "terrorists" "1" + } + "paint_data" + { + "PaintableMaterial0" + { + "Name" "materials/models/weapons/v_models/arms/glove_bloodhound/glove_brokenfang_left.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + } + "PaintableMaterial1" + { + "Name" "materials/models/weapons/v_models/arms/glove_bloodhound/glove_brokenfang_right.vmt" + "ViewmodelDim" "1024" + "WorldDim" "128" + "MirrorPattern" "1" + } + } + } + "5036" + { + "name" "customplayer_t_map_based" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_phoenix.mdl" + "item_name" "#CSGO_CustomPlayer_t_map_based" + "item_description" "#CSGO_CustomPlayer_t_map_based_Desc" + "image_inventory" "econ/characters/customplayer_t_map_based" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + } + "baseitem" "1" + "default_slot_item" "1" + } + "5037" + { + "name" "customplayer_ct_map_based" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_sas.mdl" + "item_name" "#CSGO_CustomPlayer_ct_map_based" + "item_description" "#CSGO_CustomPlayer_ct_map_based_Desc" + "image_inventory" "econ/characters/customplayer_ct_map_based" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + } + "baseitem" "1" + "default_slot_item" "1" + } + "6001" + { + "name" "Collectible Pin - Dust II" + "prefab" "attendance_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_DustII" + "item_description" "#CSGO_Collectible_Pin_DustII_Desc" + "image_inventory" "econ/status_icons/collectible_pin_dust2" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_dust2.mdl" + } + } + "6002" + { + "name" "Collectible Pin - Guardian Elite" + "prefab" "attendance_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_GuardianElite" + "item_description" "#CSGO_Collectible_Pin_GuardianElite_Desc" + "image_inventory" "econ/status_icons/collectible_pin_guardianelite" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardianelite.mdl" + } + } + "6003" + { + "name" "Collectible Pin - Mirage" + "prefab" "attendance_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_Mirage" + "item_description" "#CSGO_Collectible_Pin_Mirage_Desc" + "image_inventory" "econ/status_icons/collectible_pin_mirage" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_mirage.mdl" + } + } + "6004" + { + "name" "Collectible Pin - Inferno" + "prefab" "attendance_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_Inferno" + "item_description" "#CSGO_Collectible_Pin_Inferno_Desc" + "image_inventory" "econ/status_icons/collectible_pin_inferno" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_inferno.mdl" + } + } + "6005" + { + "name" "Collectible Pin - Italy" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_Italy" + "item_description" "#CSGO_Collectible_Pin_Italy_Desc" + "image_inventory" "econ/status_icons/collectible_pin_italy" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_italy.mdl" + } + } + "6006" + { + "name" "Collectible Pin - Victory" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_Victory" + "item_description" "#CSGO_Collectible_Pin_Victory_Desc" + "image_inventory" "econ/status_icons/collectible_pin_victory" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_victory.mdl" + } + } + "6007" + { + "name" "Collectible Pin - Militia" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_Militia" + "item_description" "#CSGO_Collectible_Pin_Militia_Desc" + "image_inventory" "econ/status_icons/collectible_pin_militia" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_militia.mdl" + } + } + "6008" + { + "name" "Collectible Pin - Nuke" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Nuke" + "item_description" "#CSGO_Collectible_Pin_Nuke_Desc" + "image_inventory" "econ/status_icons/collectible_pin_nuke" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_nuke.mdl" + } + } + "6009" + { + "name" "Collectible Pin - Train" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Train" + "item_description" "#CSGO_Collectible_Pin_Train_Desc" + "image_inventory" "econ/status_icons/collectible_pin_train" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_train.mdl" + } + } + "6010" + { + "name" "Collectible Pin - Guardian" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Guardian" + "item_description" "#CSGO_Collectible_Pin_Guardian_Desc" + "image_inventory" "econ/status_icons/collectible_pin_guardian" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardian.mdl" + } + } + "6011" + { + "name" "Collectible Pin - Tactics" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Tactics" + "item_description" "#CSGO_Collectible_Pin_Tactics_Desc" + "image_inventory" "econ/status_icons/collectible_pin_tactics" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_tactics.mdl" + } + } + "6012" + { + "name" "Collectible Pin - Guardian 2" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_guardian_2" + "item_description" "#CSGO_Collectible_Pin_guardian_2_desc" + "image_inventory" "econ/status_icons/collectible_pin_guardian_2" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardian_2.mdl" + } + } + "6112" + { + "name" "Commodity Pin - Guardian 2" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_guardian_2" + "item_description" "#CSGO_Collectible_Pin_guardian_2_desc" + "image_inventory" "econ/status_icons/collectible_pin_guardian_2" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardian_2.mdl" + "upgrade threshold" "6012" + } + } + "6013" + { + "name" "Collectible Pin - Bravo" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_bravo" + "item_description" "#CSGO_Collectible_Pin_bravo_desc" + "image_inventory" "econ/status_icons/collectible_pin_bravo" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_bravo.mdl" + } + } + "6113" + { + "name" "Commodity Pin - Bravo" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_bravo" + "item_description" "#CSGO_Collectible_Pin_bravo_desc" + "image_inventory" "econ/status_icons/collectible_pin_bravo" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_bravo.mdl" + "upgrade threshold" "6013" + } + } + "6014" + { + "name" "Collectible Pin - Baggage" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_baggage" + "item_description" "#CSGO_Collectible_Pin_baggage_desc" + "image_inventory" "econ/status_icons/collectible_pin_baggage" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_baggage.mdl" + } + } + "6114" + { + "name" "Commodity Pin - Baggage" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_baggage" + "item_description" "#CSGO_Collectible_Pin_baggage_desc" + "image_inventory" "econ/status_icons/collectible_pin_baggage" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_baggage.mdl" + "upgrade threshold" "6014" + } + } + "6015" + { + "name" "Collectible Pin - Phoenix" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_phoenix" + "item_description" "#CSGO_Collectible_Pin_phoenix_desc" + "image_inventory" "econ/status_icons/collectible_pin_phoenix" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_phoenix.mdl" + } + } + "6115" + { + "name" "Commodity Pin - Phoenix" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_phoenix" + "item_description" "#CSGO_Collectible_Pin_phoenix_desc" + "image_inventory" "econ/status_icons/collectible_pin_phoenix" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_phoenix.mdl" + "upgrade threshold" "6015" + } + } + "6016" + { + "name" "Collectible Pin - Office" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_office" + "item_description" "#CSGO_Collectible_Pin_office_desc" + "image_inventory" "econ/status_icons/collectible_pin_office" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_office.mdl" + } + } + "6116" + { + "name" "Commodity Pin - Office" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_office" + "item_description" "#CSGO_Collectible_Pin_office_desc" + "image_inventory" "econ/status_icons/collectible_pin_office" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_office.mdl" + "upgrade threshold" "6016" + } + } + "6017" + { + "name" "Collectible Pin - Cobblestone" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_cobblestone" + "item_description" "#CSGO_Collectible_Pin_cobblestone_desc" + "image_inventory" "econ/status_icons/collectible_pin_cobblestone" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_cobblestone.mdl" + } + } + "6117" + { + "name" "Commodity Pin - Cobblestone" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_cobblestone" + "item_description" "#CSGO_Collectible_Pin_cobblestone_desc" + "image_inventory" "econ/status_icons/collectible_pin_cobblestone" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_cobblestone.mdl" + "upgrade threshold" "6017" + } + } + "6018" + { + "name" "Collectible Pin - Overpass" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_overpass" + "item_description" "#CSGO_Collectible_Pin_overpass_desc" + "image_inventory" "econ/status_icons/collectible_pin_overpass" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_overpass.mdl" + } + } + "6118" + { + "name" "Commodity Pin - Overpass" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_overpass" + "item_description" "#CSGO_Collectible_Pin_overpass_desc" + "image_inventory" "econ/status_icons/collectible_pin_overpass" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_overpass.mdl" + "upgrade threshold" "6018" + } + } + "6019" + { + "name" "Collectible Pin - Bloodhound" + "prefab" "attendance_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_bloodhound" + "item_description" "#CSGO_Collectible_Pin_bloodhound_desc" + "image_inventory" "econ/status_icons/collectible_pin_bloodhound" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_bloodhound.mdl" + } + } + "6119" + { + "name" "Commodity Pin - Bloodhound" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_bloodhound" + "item_description" "#CSGO_Collectible_Pin_bloodhound_desc" + "image_inventory" "econ/status_icons/collectible_pin_bloodhound" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_bloodhound.mdl" + "upgrade threshold" "6019" + } + } + "6020" + { + "name" "Collectible Pin - Cache" + "prefab" "attendance_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_cache" + "item_description" "#CSGO_Collectible_Pin_cache_desc" + "image_inventory" "econ/status_icons/collectible_pin_cache" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_cache.mdl" + } + } + "6120" + { + "name" "Commodity Pin - Cache" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_cache" + "item_description" "#CSGO_Collectible_Pin_cache_desc" + "image_inventory" "econ/status_icons/collectible_pin_cache" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_cache.mdl" + "upgrade threshold" "6020" + } + } + "6021" + { + "name" "Collectible Pin - Valeria" + "prefab" "attendance_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_valeria" + "item_description" "#CSGO_Collectible_Pin_valeria_desc" + "image_inventory" "econ/status_icons/collectible_pin_valeria" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_valeria.mdl" + } + } + "6121" + { + "name" "Commodity Pin - Valeria" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_valeria" + "item_description" "#CSGO_Collectible_Pin_valeria_desc" + "image_inventory" "econ/status_icons/collectible_pin_valeria" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_valeria.mdl" + "upgrade threshold" "6021" + } + } + "6022" + { + "name" "Collectible Pin - Chroma" + "prefab" "attendance_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_chroma" + "item_description" "#CSGO_Collectible_Pin_chroma_desc" + "image_inventory" "econ/status_icons/collectible_pin_chroma" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_chroma.mdl" + } + } + "6122" + { + "name" "Commodity Pin - Chroma" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_chroma" + "item_description" "#CSGO_Collectible_Pin_chroma_desc" + "image_inventory" "econ/status_icons/collectible_pin_chroma" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_chroma.mdl" + "upgrade threshold" "6022" + } + } + "6023" + { + "name" "Collectible Pin - Guardian 3" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_guardian_3" + "item_description" "#CSGO_Collectible_Pin_guardian_3_desc" + "image_inventory" "econ/status_icons/collectible_pin_guardian_3" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardian_3.mdl" + } + } + "6123" + { + "name" "Commodity Pin - Guardian 3" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_guardian_3" + "item_description" "#CSGO_Collectible_Pin_guardian_3_desc" + "image_inventory" "econ/status_icons/collectible_pin_guardian_3" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardian_3.mdl" + "upgrade threshold" "6023" + } + } + "6024" + { + "name" "Collectible Pin - Canals" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_canals" + "item_description" "#CSGO_Collectible_Pin_canals_desc" + "image_inventory" "econ/status_icons/collectible_pin_canals" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_canals.mdl" + } + } + "6124" + { + "name" "Commodity Pin - Canals" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_canals" + "item_description" "#CSGO_Collectible_Pin_canals_desc" + "image_inventory" "econ/status_icons/collectible_pin_canals" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_canals.mdl" + "upgrade threshold" "6024" + } + } + "6025" + { + "name" "Collectible Pin - Welcome to the Clutch" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_welcome_to_the_clutch" + "item_description" "#CSGO_Collectible_Pin_welcome_to_the_clutch_desc" + "image_inventory" "econ/status_icons/collectible_pin_welcome_to_the_clutch" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_welcome_to_the_clutch.mdl" + } + } + "6125" + { + "name" "Commodity Pin - Welcome to the Clutch" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_welcome_to_the_clutch" + "item_description" "#CSGO_Collectible_Pin_welcome_to_the_clutch_desc" + "image_inventory" "econ/status_icons/collectible_pin_welcome_to_the_clutch" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_welcome_to_the_clutch.mdl" + "upgrade threshold" "6025" + } + } + "6026" + { + "name" "Collectible Pin - Death Sentence" + "prefab" "attendance_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_death_sentence" + "item_description" "#CSGO_Collectible_Pin_death_sentence_desc" + "image_inventory" "econ/status_icons/collectible_pin_death_sentence" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_death_sentence.mdl" + } + } + "6126" + { + "name" "Commodity Pin - Death Sentence" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_death_sentence" + "item_description" "#CSGO_Collectible_Pin_death_sentence_desc" + "image_inventory" "econ/status_icons/collectible_pin_death_sentence" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_death_sentence.mdl" + "upgrade threshold" "6026" + } + } + "6027" + { + "name" "Collectible Pin - Inferno 2" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_inferno_2" + "item_description" "#CSGO_Collectible_Pin_inferno_2_desc" + "image_inventory" "econ/status_icons/collectible_pin_inferno_2" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_inferno_2.mdl" + } + } + "6127" + { + "name" "Commodity Pin - Inferno 2" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_inferno_2" + "item_description" "#CSGO_Collectible_Pin_inferno_2_desc" + "image_inventory" "econ/status_icons/collectible_pin_inferno_2" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_inferno_2.mdl" + "upgrade threshold" "6027" + } + } + "6028" + { + "name" "Collectible Pin - Wildfire" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_wildfire" + "item_description" "#CSGO_Collectible_Pin_wildfire_desc" + "image_inventory" "econ/status_icons/collectible_pin_wildfire" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_wildfire.mdl" + } + } + "6128" + { + "name" "Commodity Pin - Wildfire" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_wildfire" + "item_description" "#CSGO_Collectible_Pin_wildfire_desc" + "image_inventory" "econ/status_icons/collectible_pin_wildfire" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_wildfire.mdl" + "upgrade threshold" "6028" + } + } + "6029" + { + "name" "Collectible Pin - Easy Peasy" + "prefab" "attendance_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_easy_peasy" + "item_description" "#CSGO_Collectible_Pin_easy_peasy_desc" + "image_inventory" "econ/status_icons/collectible_pin_easy_peasy" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_easy_peasy.mdl" + } + } + "6129" + { + "name" "Commodity Pin - Easy Peasy" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_easy_peasy" + "item_description" "#CSGO_Collectible_Pin_easy_peasy_desc" + "image_inventory" "econ/status_icons/collectible_pin_easy_peasy" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_easy_peasy.mdl" + "upgrade threshold" "6029" + } + } + "6030" + { + "name" "Collectible Pin - Aces High" + "prefab" "attendance_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_aces_high" + "item_description" "#CSGO_Collectible_Pin_aces_high_desc" + "image_inventory" "econ/status_icons/collectible_pin_aces_high" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_aces_high.mdl" + } + } + "6130" + { + "name" "Commodity Pin - Aces High" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_aces_high" + "item_description" "#CSGO_Collectible_Pin_aces_high_desc" + "image_inventory" "econ/status_icons/collectible_pin_aces_high" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_aces_high.mdl" + "upgrade threshold" "6030" + } + } + "6031" + { + "name" "Collectible Pin - Hydra" + "prefab" "attendance_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_hydra" + "item_description" "#CSGO_Collectible_Pin_hydra_desc" + "image_inventory" "econ/status_icons/collectible_pin_hydra" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_hydra.mdl" + } + } + "6131" + { + "name" "Commodity Pin - Hydra" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_hydra" + "item_description" "#CSGO_Collectible_Pin_hydra_desc" + "image_inventory" "econ/status_icons/collectible_pin_hydra" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_hydra.mdl" + "upgrade threshold" "6031" + } + } + "6032" + { + "name" "Collectible Pin - Howl" + "prefab" "attendance_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_howl" + "item_description" "#CSGO_Collectible_Pin_howl_desc" + "image_inventory" "econ/status_icons/collectible_pin_howl" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_howl.mdl" + } + } + "6132" + { + "name" "Commodity Pin - Howl" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_howl" + "item_description" "#CSGO_Collectible_Pin_howl_desc" + "image_inventory" "econ/status_icons/collectible_pin_howl" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_howl.mdl" + "upgrade threshold" "6032" + } + } + "6033" + { + "name" "Collectible Pin - Brigadier General" + "prefab" "attendance_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_brigadier_general" + "item_description" "#CSGO_Collectible_Pin_brigadier_general_desc" + "image_inventory" "econ/status_icons/collectible_pin_brigadier_general" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_brigadier_general.mdl" + } + } + "6133" + { + "name" "Commodity Pin - Brigadier General" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_brigadier_general" + "item_description" "#CSGO_Collectible_Pin_brigadier_general_desc" + "image_inventory" "econ/status_icons/collectible_pin_brigadier_general" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_brigadier_general.mdl" + "upgrade threshold" "6033" + } + } + "6034" + { + "name" "Collectible Pin - alyx_10" + "prefab" "attendance_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_alyx_10" + "item_description" "#CSGO_Collectible_Pin_alyx_10_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_10" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_10.mdl" + } + } + "6134" + { + "name" "Commodity Pin - alyx_10" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_alyx_10" + "item_description" "#CSGO_Collectible_Pin_alyx_10_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_10" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_10.mdl" + "upgrade threshold" "6034" + } + } + "6035" + { + "name" "item 6035" + "prefab" "collectible_untradable_coin" + } + "6036" + { + "name" "item 6036" + "prefab" "collectible_untradable_coin" + } + "6037" + { + "name" "item 6037" + "prefab" "collectible_untradable_coin" + } + "6038" + { + "name" "item 6038" + "prefab" "collectible_untradable_coin" + } + "6039" + { + "name" "item 6039" + "prefab" "collectible_untradable_coin" + } + "6040" + { + "name" "item 6040" + "prefab" "collectible_untradable_coin" + } + "6041" + { + "name" "item 6041" + "prefab" "collectible_untradable_coin" + } + "6042" + { + "name" "item 6042" + "prefab" "collectible_untradable_coin" + } + "6043" + { + "name" "item 6043" + "prefab" "collectible_untradable_coin" + } + "6044" + { + "name" "item 6044" + "prefab" "collectible_untradable_coin" + } + "6045" + { + "name" "item 6045" + "prefab" "collectible_untradable_coin" + } + "6046" + { + "name" "item 6046" + "prefab" "collectible_untradable_coin" + } + "6047" + { + "name" "item 6047" + "prefab" "collectible_untradable_coin" + } + "6048" + { + "name" "item 6048" + "prefab" "collectible_untradable_coin" + } + "6049" + { + "name" "item 6049" + "prefab" "collectible_untradable_coin" + } + "6050" + { + "name" "item 6050" + "prefab" "collectible_untradable_coin" + } + "6051" + { + "name" "item 6051" + "prefab" "collectible_untradable_coin" + } + "6052" + { + "name" "item 6052" + "prefab" "collectible_untradable_coin" + } + "6053" + { + "name" "item 6053" + "prefab" "collectible_untradable_coin" + } + "6054" + { + "name" "item 6054" + "prefab" "collectible_untradable_coin" + } + "6055" + { + "name" "item 6055" + "prefab" "collectible_untradable_coin" + } + "6056" + { + "name" "item 6056" + "prefab" "collectible_untradable_coin" + } + "6057" + { + "name" "item 6057" + "prefab" "collectible_untradable_coin" + } + "6058" + { + "name" "item 6058" + "prefab" "collectible_untradable_coin" + } + "6059" + { + "name" "item 6059" + "prefab" "collectible_untradable_coin" + } + "6060" + { + "name" "item 6060" + "prefab" "collectible_untradable_coin" + } + "6061" + { + "name" "item 6061" + "prefab" "collectible_untradable_coin" + } + "6062" + { + "name" "item 6062" + "prefab" "collectible_untradable_coin" + } + "6063" + { + "name" "item 6063" + "prefab" "collectible_untradable_coin" + } + "6064" + { + "name" "item 6064" + "prefab" "collectible_untradable_coin" + } + "6065" + { + "name" "item 6065" + "prefab" "collectible_untradable_coin" + } + "6066" + { + "name" "item 6066" + "prefab" "collectible_untradable_coin" + } + "6067" + { + "name" "item 6067" + "prefab" "collectible_untradable_coin" + } + "6068" + { + "name" "item 6068" + "prefab" "collectible_untradable_coin" + } + "6069" + { + "name" "item 6069" + "prefab" "collectible_untradable_coin" + } + "6070" + { + "name" "item 6070" + "prefab" "collectible_untradable_coin" + } + "6071" + { + "name" "item 6071" + "prefab" "collectible_untradable_coin" + } + "6072" + { + "name" "item 6072" + "prefab" "collectible_untradable_coin" + } + "6073" + { + "name" "item 6073" + "prefab" "collectible_untradable_coin" + } + "6074" + { + "name" "item 6074" + "prefab" "collectible_untradable_coin" + } + "6075" + { + "name" "item 6075" + "prefab" "collectible_untradable_coin" + } + "6076" + { + "name" "item 6076" + "prefab" "collectible_untradable_coin" + } + "6077" + { + "name" "item 6077" + "prefab" "collectible_untradable_coin" + } + "6078" + { + "name" "item 6078" + "prefab" "collectible_untradable_coin" + } + "6079" + { + "name" "item 6079" + "prefab" "collectible_untradable_coin" + } + "6080" + { + "name" "item 6080" + "prefab" "collectible_untradable_coin" + } + "6081" + { + "name" "item 6081" + "prefab" "collectible_untradable_coin" + } + "6082" + { + "name" "item 6082" + "prefab" "collectible_untradable_coin" + } + "6083" + { + "name" "item 6083" + "prefab" "collectible_untradable_coin" + } + "6084" + { + "name" "item 6084" + "prefab" "collectible_untradable_coin" + } + "6085" + { + "name" "item 6085" + "prefab" "collectible_untradable_coin" + } + "6086" + { + "name" "item 6086" + "prefab" "collectible_untradable_coin" + } + "6087" + { + "name" "item 6087" + "prefab" "collectible_untradable_coin" + } + "6088" + { + "name" "item 6088" + "prefab" "collectible_untradable_coin" + } + "6101" + { + "name" "Commodity Pin - Dust II" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_DustII" + "item_description" "#CSGO_Collectible_Pin_DustII_Desc" + "image_inventory" "econ/status_icons/collectible_pin_dust2" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_dust2.mdl" + "upgrade threshold" "6001" + } + } + "6102" + { + "name" "Commodity Pin - Guardian Elite" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_GuardianElite" + "item_description" "#CSGO_Collectible_Pin_GuardianElite_Desc" + "image_inventory" "econ/status_icons/collectible_pin_guardianelite" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardianelite.mdl" + "upgrade threshold" "6002" + } + } + "6103" + { + "name" "Commodity Pin - Mirage" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_Mirage" + "item_description" "#CSGO_Collectible_Pin_Mirage_Desc" + "image_inventory" "econ/status_icons/collectible_pin_mirage" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_mirage.mdl" + "upgrade threshold" "6003" + } + } + "6104" + { + "name" "Commodity Pin - Inferno" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_Inferno" + "item_description" "#CSGO_Collectible_Pin_Inferno_Desc" + "image_inventory" "econ/status_icons/collectible_pin_inferno" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_inferno.mdl" + "upgrade threshold" "6004" + } + } + "6105" + { + "name" "Commodity Pin - Italy" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_Italy" + "item_description" "#CSGO_Collectible_Pin_Italy_Desc" + "image_inventory" "econ/status_icons/collectible_pin_italy" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_italy.mdl" + "upgrade threshold" "6005" + } + } + "6106" + { + "name" "Commodity Pin - Victory" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_Victory" + "item_description" "#CSGO_Collectible_Pin_Victory_Desc" + "image_inventory" "econ/status_icons/collectible_pin_victory" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_victory.mdl" + "upgrade threshold" "6006" + } + } + "6107" + { + "name" "Commodity Pin - Militia" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_Militia" + "item_description" "#CSGO_Collectible_Pin_Militia_Desc" + "image_inventory" "econ/status_icons/collectible_pin_militia" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_militia.mdl" + "upgrade threshold" "6007" + } + } + "6108" + { + "name" "Commodity Pin - Nuke" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Nuke" + "item_description" "#CSGO_Collectible_Pin_Nuke_Desc" + "image_inventory" "econ/status_icons/collectible_pin_nuke" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_nuke.mdl" + "upgrade threshold" "6008" + } + } + "6109" + { + "name" "Commodity Pin - Train" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Train" + "item_description" "#CSGO_Collectible_Pin_Train_Desc" + "image_inventory" "econ/status_icons/collectible_pin_train" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_train.mdl" + "upgrade threshold" "6009" + } + } + "6110" + { + "name" "Commodity Pin - Guardian" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Guardian" + "item_description" "#CSGO_Collectible_Pin_Guardian_Desc" + "image_inventory" "econ/status_icons/collectible_pin_guardian" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_guardian.mdl" + "upgrade threshold" "6010" + } + } + "6111" + { + "name" "Commodity Pin - Tactics" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_Tactics" + "item_description" "#CSGO_Collectible_Pin_Tactics_Desc" + "image_inventory" "econ/status_icons/collectible_pin_tactics" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_tactics.mdl" + "upgrade threshold" "6011" + } + } + "4682" + { + "name" "Commodity Pin - alyx_04" + "prefab" "commodity_pin" + "item_rarity" "ancient" + "item_name" "#CSGO_Collectible_Pin_alyx_04" + "item_description" "#CSGO_Collectible_Pin_alyx_04_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_04" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_04.mdl" + "upgrade threshold" "0" + } + } + "4683" + { + "name" "Commodity Pin - alyx_07" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_alyx_07" + "item_description" "#CSGO_Collectible_Pin_alyx_07_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_07" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_07.mdl" + "upgrade threshold" "0" + } + } + "4684" + { + "name" "Commodity Pin - alyx_09" + "prefab" "commodity_pin" + "item_rarity" "legendary" + "item_name" "#CSGO_Collectible_Pin_alyx_09" + "item_description" "#CSGO_Collectible_Pin_alyx_09_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_09" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_09.mdl" + "upgrade threshold" "0" + } + } + "4685" + { + "name" "Commodity Pin - alyx_05" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_alyx_05" + "item_description" "#CSGO_Collectible_Pin_alyx_05_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_05" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_05.mdl" + "upgrade threshold" "0" + } + } + "4686" + { + "name" "Commodity Pin - alyx_12" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_alyx_12" + "item_description" "#CSGO_Collectible_Pin_alyx_12_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_12" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_12.mdl" + "upgrade threshold" "0" + } + } + "4687" + { + "name" "Commodity Pin - alyx_01" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_alyx_01" + "item_description" "#CSGO_Collectible_Pin_alyx_01_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_01" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_01.mdl" + "upgrade threshold" "0" + } + } + "4688" + { + "name" "Commodity Pin - alyx_02" + "prefab" "commodity_pin" + "item_rarity" "mythical" + "item_name" "#CSGO_Collectible_Pin_alyx_02" + "item_description" "#CSGO_Collectible_Pin_alyx_02_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_02" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_02.mdl" + "upgrade threshold" "0" + } + } + "4689" + { + "name" "Commodity Pin - alyx_03" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_alyx_03" + "item_description" "#CSGO_Collectible_Pin_alyx_03_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_03" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_03.mdl" + "upgrade threshold" "0" + } + } + "4690" + { + "name" "Commodity Pin - alyx_06" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_alyx_06" + "item_description" "#CSGO_Collectible_Pin_alyx_06_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_06" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_06.mdl" + "upgrade threshold" "0" + } + } + "4691" + { + "name" "Commodity Pin - alyx_08" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_alyx_08" + "item_description" "#CSGO_Collectible_Pin_alyx_08_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_08" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_08.mdl" + "upgrade threshold" "0" + } + } + "4692" + { + "name" "Commodity Pin - alyx_11" + "prefab" "commodity_pin" + "item_rarity" "rare" + "item_name" "#CSGO_Collectible_Pin_alyx_11" + "item_description" "#CSGO_Collectible_Pin_alyx_11_desc" + "image_inventory" "econ/status_icons/collectible_pin_alyx_11" + "attributes" + { + "pedestal display model" "models/inventory_items/collectible_pin_alyx_11.mdl" + "upgrade threshold" "0" + } + } + "7000" + { + "name" "community_11 Key" + "item_name" "#CSGO_crate_key_community_11" + "item_description" "#CSGO_crate_key_community_11_desc" + "first_sale_date" "2016-01-19" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_11" + "tool" + { + "restriction" "crate_community_11" + } + } + "20000" + { + "name" "coupon - bossyburger" + "item_name" "#coupon_bossyburger" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - bossyburger" + "prefab" "coupon_prefab" + } + "20001" + { + "name" "coupon - catcall" + "item_name" "#coupon_catcall" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - catcall" + "prefab" "coupon_prefab" + } + "20002" + { + "name" "coupon - chickenstrike" + "item_name" "#coupon_chickenstrike" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - chickenstrike" + "prefab" "coupon_prefab" + } + "20003" + { + "name" "coupon - ctbanana" + "item_name" "#coupon_ctbanana" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - ctbanana" + "prefab" "coupon_prefab" + } + "20004" + { + "name" "coupon - dontworryimpro" + "item_name" "#coupon_dontworryimpro" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - dontworryimpro" + "prefab" "coupon_prefab" + } + "20005" + { + "name" "coupon - fightlikeagirl" + "item_name" "#coupon_fightlikeagirl" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - fightlikeagirl" + "prefab" "coupon_prefab" + } + "20006" + { + "name" "coupon - handmadeflash" + "item_name" "#coupon_handmadeflash" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - handmadeflash" + "prefab" "coupon_prefab" + } + "20007" + { + "name" "coupon - kawaiikiller" + "item_name" "#coupon_kawaiikiller" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - kawaiikiller" + "prefab" "coupon_prefab" + } + "20008" + { + "name" "coupon - neluthebear" + "item_name" "#coupon_neluthebear" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - neluthebear" + "prefab" "coupon_prefab" + } + "20009" + { + "name" "coupon - oneshotonekill" + "item_name" "#coupon_oneshotonekill" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - oneshotonekill" + "prefab" "coupon_prefab" + } + "20010" + { + "name" "coupon - shootingstar" + "item_name" "#coupon_shootingstar" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - shootingstar" + "prefab" "coupon_prefab" + } + "20012" + { + "name" "coupon - warpenguin" + "item_name" "#coupon_warpenguin" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - warpenguin" + "prefab" "coupon_prefab" + } + "20013" + { + "name" "coupon - windywalking" + "item_name" "#coupon_windywalking" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - windywalking" + "prefab" "coupon_prefab" + } + "20014" + { + "name" "coupon - blitzkrieg" + "item_name" "#coupon_blitzkrieg" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - blitzkrieg" + "prefab" "coupon_prefab" + } + "20015" + { + "name" "coupon - pigeonmaster" + "item_name" "#coupon_pigeonmaster" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pigeonmaster" + "prefab" "coupon_prefab" + } + "20016" + { + "name" "coupon - terrorized" + "item_name" "#coupon_terrorized" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - terrorized" + "prefab" "coupon_prefab" + } + "20017" + { + "name" "coupon - tilldeathdouspart" + "item_name" "#coupon_tilldeathdouspart" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - tilldeathdouspart" + "prefab" "coupon_prefab" + } + "20018" + { + "name" "coupon - stayfrosty" + "item_name" "#coupon_stayfrosty" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - stayfrosty" + "prefab" "coupon_prefab" + } + "20019" + { + "name" "coupon - toncat" + "item_name" "#coupon_toncat" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - toncat" + "prefab" "coupon_prefab" + } + "20020" + { + "name" "coupon - danielsadowski_01" + "item_name" "#coupon_danielsadowski_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - danielsadowski_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/danielsadowski_01" + } + "20021" + { + "name" "coupon - noisia_01" + "item_name" "#coupon_noisia_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - noisia_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/noisia_01" + } + "20022" + { + "name" "coupon - robertallaire_01" + "item_name" "#coupon_robertallaire_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - robertallaire_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/robertallaire_01" + } + "20023" + { + "name" "coupon - seanmurray_01" + "item_name" "#coupon_seanmurray_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - seanmurray_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/seanmurray_01" + } + "20024" + { + "name" "coupon - feedme_01" + "item_name" "#coupon_feedme_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - feedme_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/feedme_01" + } + "20025" + { + "name" "coupon - dren_01" + "item_name" "#coupon_dren_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - dren_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/dren_01" + } + "20026" + { + "name" "coupon - austinwintory_01" + "item_name" "#coupon_austinwintory_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - austinwintory_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/austinwintory_01" + } + "20027" + { + "name" "coupon - sasha_01" + "item_name" "#coupon_sasha_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - sasha_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/sasha_01" + } + "20028" + { + "name" "coupon - skog_01" + "item_name" "#coupon_skog_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - skog_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/skog_01" + } + "20029" + { + "name" "coupon - doomed" + "item_name" "#coupon_doomed" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - doomed" + "prefab" "coupon_prefab" + } + "20030" + { + "name" "coupon - queenofpain" + "item_name" "#coupon_queenofpain" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - queenofpain" + "prefab" "coupon_prefab" + } + "20031" + { + "name" "coupon - trickorthreat" + "item_name" "#coupon_trickorthreat" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - trickorthreat" + "prefab" "coupon_prefab" + } + "20032" + { + "name" "coupon - trickortreat" + "item_name" "#coupon_trickortreat" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - trickortreat" + "prefab" "coupon_prefab" + } + "20033" + { + "name" "coupon - witch" + "item_name" "#coupon_witch" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - witch" + "prefab" "coupon_prefab" + } + "20034" + { + "name" "coupon - zombielover" + "item_name" "#coupon_zombielover" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - zombielover" + "prefab" "coupon_prefab" + } + "20035" + { + "name" "coupon - blood_broiler" + "item_name" "#coupon_blood_broiler" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - blood_broiler" + "prefab" "coupon_prefab" + } + "20036" + { + "name" "coupon - dinked" + "item_name" "#coupon_dinked" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - dinked" + "prefab" "coupon_prefab" + } + "20037" + { + "name" "coupon - drugwarveteran" + "item_name" "#coupon_drugwarveteran" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - drugwarveteran" + "prefab" "coupon_prefab" + } + "20038" + { + "name" "coupon - hohoho" + "item_name" "#coupon_hohoho" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - hohoho" + "prefab" "coupon_prefab" + } + "20039" + { + "name" "coupon - massivepear" + "item_name" "#coupon_massivepear" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - massivepear" + "prefab" "coupon_prefab" + } + "20040" + { + "name" "coupon - mylittlefriend" + "item_name" "#coupon_mylittlefriend" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - mylittlefriend" + "prefab" "coupon_prefab" + } + "20041" + { + "name" "coupon - pandamonium" + "item_name" "#coupon_pandamonium" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pandamonium" + "prefab" "coupon_prefab" + } + "20042" + { + "name" "coupon - pieceofcake" + "item_name" "#coupon_pieceofcake" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pieceofcake" + "prefab" "coupon_prefab" + } + "20043" + { + "name" "coupon - saschicken" + "item_name" "#coupon_saschicken" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - saschicken" + "prefab" "coupon_prefab" + } + "20044" + { + "name" "coupon - thuglife" + "item_name" "#coupon_thuglife" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - thuglife" + "prefab" "coupon_prefab" + } + "20045" + { + "name" "coupon - trekt" + "item_name" "#coupon_trekt" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - trekt" + "prefab" "coupon_prefab" + } + "20046" + { + "name" "coupon - warowl" + "item_name" "#coupon_warowl" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - warowl" + "prefab" "coupon_prefab" + } + "20047" + { + "name" "coupon - workforfood" + "item_name" "#coupon_workforfood" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - workforfood" + "prefab" "coupon_prefab" + } + "20048" + { + "name" "coupon - phoenix_foil" + "item_name" "#coupon_phoenix_foil" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - phoenix_foil" + "prefab" "coupon_prefab" + } + "20049" + { + "name" "coupon - bombsquad_foil" + "item_name" "#coupon_bombsquad_foil" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - bombsquad_foil" + "prefab" "coupon_prefab" + } + "20050" + { + "name" "coupon - midnightriders_01" + "item_name" "#coupon_midnightriders_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - midnightriders_01" + "prefab" "valve coupon_prefab" + "image_inventory" "econ/music_kits/midnightriders_01" + } + "20051" + { + "name" "coupon - danielsadowski_02" + "item_name" "#coupon_danielsadowski_02" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - danielsadowski_02" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/danielsadowski_02" + } + "20052" + { + "name" "coupon - hotlinemiami_01" + "item_name" "#coupon_hotlinemiami_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - hotlinemiami_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/hotlinemiami_01" + } + "20053" + { + "name" "coupon - mattlange_01" + "item_name" "#coupon_mattlange_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - mattlange_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/mattlange_01" + } + "20054" + { + "name" "coupon - mateomessina_01" + "item_name" "#coupon_mateomessina_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - mateomessina_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/mateomessina_01" + } + "20055" + { + "name" "coupon - damjanmravunac_01" + "item_name" "#coupon_damjanmravunac_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - damjanmravunac_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/damjanmravunac_01" + } + "20056" + { + "name" "coupon - flickshot" + "item_name" "#coupon_flickshot" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - flickshot" + "prefab" "coupon_prefab" + } + "20057" + { + "name" "coupon - headshot_guarantee" + "item_name" "#coupon_headshot_guarantee" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - headshot_guarantee" + "prefab" "coupon_prefab" + } + "20058" + { + "name" "coupon - eco_rush" + "item_name" "#coupon_eco_rush" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - eco_rush" + "prefab" "coupon_prefab" + } + "20059" + { + "name" "coupon - just_trolling" + "item_name" "#coupon_just_trolling" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - just_trolling" + "prefab" "valve coupon_prefab" + } + "20061" + { + "name" "coupon - firestarter_holo" + "item_name" "#coupon_firestarter_holo" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - firestarter_holo" + "prefab" "coupon_prefab" + } + "20062" + { + "name" "coupon - lucky_cat_foil" + "item_name" "#coupon_lucky_cat_foil" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - lucky_cat_foil" + "prefab" "coupon_prefab" + } + "20063" + { + "name" "coupon - robot_head" + "item_name" "#coupon_robot_head" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - robot_head" + "prefab" "coupon_prefab" + } + "20064" + { + "name" "coupon - witchcraft" + "item_name" "#coupon_witchcraft" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - witchcraft" + "prefab" "coupon_prefab" + } + "20065" + { + "name" "coupon - wanna_fight" + "item_name" "#coupon_wanna_fight" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - wanna_fight" + "prefab" "coupon_prefab" + } + "20066" + { + "name" "coupon - hostage_rescue" + "item_name" "#coupon_hostage_rescue" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - hostage_rescue" + "prefab" "coupon_prefab" + } + "20067" + { + "name" "coupon - hamster_hawk" + "item_name" "#coupon_hamster_hawk" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - hamster_hawk" + "prefab" "coupon_prefab" + } + "20068" + { + "name" "coupon - headless_chicken" + "item_name" "#coupon_headless_chicken" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - headless_chicken" + "prefab" "coupon_prefab" + } + "20069" + { + "name" "coupon - proxy_01" + "item_name" "#coupon_proxy_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - proxy_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/proxy_01" + } + "20070" + { + "name" "coupon - kitheory_01" + "item_name" "#coupon_kitheory_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - kitheory_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/kitheory_01" + } + "20071" + { + "name" "coupon - troelsfolmann_01" + "item_name" "#coupon_troelsfolmann_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - troelsfolmann_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/troelsfolmann_01" + } + "20072" + { + "name" "coupon - kellybailey_01" + "item_name" "#coupon_kellybailey_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - kellybailey_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/kellybailey_01" + } + "20073" + { + "name" "coupon - skog_02" + "item_name" "#coupon_skog_02" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - skog_02" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/skog_02" + } + "20074" + { + "name" "coupon - enfu_sticker_capsule" + "item_name" "#coupon_enfu_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - enfu_sticker_capsule" + "prefab" "coupon_enfu_capsule_prefab" + } + "20075" + { + "name" "coupon - awp_country" + "item_name" "#coupon_awp_country" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - awp_country" + "prefab" "coupon_prefab" + } + "20076" + { + "name" "coupon - chi_bomb" + "item_name" "#coupon_chi_bomb" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - chi_bomb" + "prefab" "coupon_prefab" + } + "20077" + { + "name" "coupon - fox" + "item_name" "#coupon_fox" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - fox" + "prefab" "coupon_prefab" + } + "20078" + { + "name" "coupon - knifeclub" + "item_name" "#coupon_knifeclub" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - knifeclub" + "prefab" "coupon_prefab" + } + "20079" + { + "name" "coupon - cs_on_the_mind" + "item_name" "#coupon_cs_on_the_mind" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - cs_on_the_mind" + "prefab" "coupon_prefab" + } + "20080" + { + "name" "coupon - ninja_defuse" + "item_name" "#coupon_ninja_defuse" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - ninja_defuse" + "prefab" "coupon_prefab" + } + "20081" + { + "name" "coupon - pros_dont_fake" + "item_name" "#coupon_pros_dont_fake" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pros_dont_fake" + "prefab" "coupon_prefab" + } + "20082" + { + "name" "coupon - kawaiikiller_t" + "item_name" "#coupon_kawaiikiller_t" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - kawaiikiller_t" + "prefab" "coupon_prefab" + } + "20083" + { + "name" "coupon - baackstabber" + "item_name" "#coupon_baackstabber" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - baackstabber" + "prefab" "coupon_prefab" + } + "20084" + { + "name" "coupon - delicious_tears" + "item_name" "#coupon_delicious_tears" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - delicious_tears" + "prefab" "coupon_prefab" + } + "20085" + { + "name" "coupon - danielsadowski_03" + "item_name" "#coupon_danielsadowski_03" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - danielsadowski_03" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/danielsadowski_03" + } + "20086" + { + "name" "coupon - awolnation_01" + "item_name" "#coupon_awolnation_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - awolnation_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/awolnation_01" + } + "20087" + { + "name" "coupon - mordfustang_01" + "item_name" "#coupon_mordfustang_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - mordfustang_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/mordfustang_01" + } + "20088" + { + "name" "coupon - michaelbross_01" + "item_name" "#coupon_michaelbross_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - michaelbross_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/michaelbross_01" + } + "20089" + { + "name" "coupon - ianhultquist_01" + "item_name" "#coupon_ianhultquist_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - ianhultquist_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/ianhultquist_01" + } + "20090" + { + "name" "coupon - newbeatfund_01" + "item_name" "#coupon_newbeatfund_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - newbeatfund_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/newbeatfund_01" + } + "20091" + { + "name" "coupon - beartooth_01" + "item_name" "#coupon_beartooth_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - beartooth_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/beartooth_01" + } + "20092" + { + "name" "coupon - lenniemoore_01" + "item_name" "#coupon_lenniemoore_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - lenniemoore_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/lenniemoore_01" + } + "20093" + { + "name" "coupon - darude_01" + "item_name" "#coupon_darude_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - darude_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/darude_01" + } + "20094" + { + "name" "coupon - proxy_01_stattrak" + "item_name" "#coupon_proxy_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - proxy_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/proxy_01" + "will_produce_stattrak" "1" + } + "20095" + { + "name" "coupon - kitheory_01_stattrak" + "item_name" "#coupon_kitheory_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - kitheory_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/kitheory_01" + "will_produce_stattrak" "1" + } + "20096" + { + "name" "coupon - troelsfolmann_01_stattrak" + "item_name" "#coupon_troelsfolmann_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - troelsfolmann_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/troelsfolmann_01" + "will_produce_stattrak" "1" + } + "20097" + { + "name" "coupon - kellybailey_01_stattrak" + "item_name" "#coupon_kellybailey_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - kellybailey_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/kellybailey_01" + "will_produce_stattrak" "1" + } + "20098" + { + "name" "coupon - skog_02_stattrak" + "item_name" "#coupon_skog_02_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - skog_02_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/skog_02" + "will_produce_stattrak" "1" + } + "20099" + { + "name" "coupon - danielsadowski_03_stattrak" + "item_name" "#coupon_danielsadowski_03_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - danielsadowski_03_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/danielsadowski_03" + "will_produce_stattrak" "1" + } + "20100" + { + "name" "coupon - awolnation_01_stattrak" + "item_name" "#coupon_awolnation_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - awolnation_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/awolnation_01" + "will_produce_stattrak" "1" + } + "20101" + { + "name" "coupon - mordfustang_01_stattrak" + "item_name" "#coupon_mordfustang_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - mordfustang_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/mordfustang_01" + "will_produce_stattrak" "1" + } + "20102" + { + "name" "coupon - michaelbross_01_stattrak" + "item_name" "#coupon_michaelbross_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - michaelbross_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/michaelbross_01" + "will_produce_stattrak" "1" + } + "20103" + { + "name" "coupon - ianhultquist_01_stattrak" + "item_name" "#coupon_ianhultquist_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - ianhultquist_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/ianhultquist_01" + "will_produce_stattrak" "1" + } + "20104" + { + "name" "coupon - newbeatfund_01_stattrak" + "item_name" "#coupon_newbeatfund_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - newbeatfund_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/newbeatfund_01" + "will_produce_stattrak" "1" + } + "20105" + { + "name" "coupon - beartooth_01_stattrak" + "item_name" "#coupon_beartooth_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - beartooth_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/beartooth_01" + "will_produce_stattrak" "1" + } + "20106" + { + "name" "coupon - lenniemoore_01_stattrak" + "item_name" "#coupon_lenniemoore_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - lenniemoore_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/lenniemoore_01" + "will_produce_stattrak" "1" + } + "20107" + { + "name" "coupon - darude_01_stattrak" + "item_name" "#coupon_darude_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - darude_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/darude_01" + "will_produce_stattrak" "1" + } + "20108" + { + "name" "coupon - danielsadowski_01_stattrak" + "item_name" "#coupon_danielsadowski_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - danielsadowski_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/danielsadowski_01" + "will_produce_stattrak" "1" + } + "20109" + { + "name" "coupon - noisia_01_stattrak" + "item_name" "#coupon_noisia_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - noisia_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/noisia_01" + "will_produce_stattrak" "1" + } + "20110" + { + "name" "coupon - robertallaire_01_stattrak" + "item_name" "#coupon_robertallaire_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - robertallaire_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/robertallaire_01" + "will_produce_stattrak" "1" + } + "20111" + { + "name" "coupon - seanmurray_01_stattrak" + "item_name" "#coupon_seanmurray_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - seanmurray_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/seanmurray_01" + "will_produce_stattrak" "1" + } + "20112" + { + "name" "coupon - feedme_01_stattrak" + "item_name" "#coupon_feedme_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - feedme_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/feedme_01" + "will_produce_stattrak" "1" + } + "20113" + { + "name" "coupon - dren_01_stattrak" + "item_name" "#coupon_dren_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - dren_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/dren_01" + "will_produce_stattrak" "1" + } + "20114" + { + "name" "coupon - austinwintory_01_stattrak" + "item_name" "#coupon_austinwintory_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - austinwintory_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/austinwintory_01" + "will_produce_stattrak" "1" + } + "20115" + { + "name" "coupon - sasha_01_stattrak" + "item_name" "#coupon_sasha_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - sasha_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/sasha_01" + "will_produce_stattrak" "1" + } + "20116" + { + "name" "coupon - skog_01_stattrak" + "item_name" "#coupon_skog_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - skog_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/skog_01" + "will_produce_stattrak" "1" + } + "20117" + { + "name" "coupon - midnightriders_01_stattrak" + "item_name" "#coupon_midnightriders_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - midnightriders_01_stattrak" + "prefab" "valve coupon_prefab" + "image_inventory" "econ/music_kits/midnightriders_01" + "will_produce_stattrak" "1" + } + "20118" + { + "name" "coupon - danielsadowski_02_stattrak" + "item_name" "#coupon_danielsadowski_02_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - danielsadowski_02_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/danielsadowski_02" + "will_produce_stattrak" "1" + } + "20119" + { + "name" "coupon - hotlinemiami_01_stattrak" + "item_name" "#coupon_hotlinemiami_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - hotlinemiami_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/hotlinemiami_01" + "will_produce_stattrak" "1" + } + "20120" + { + "name" "coupon - mattlange_01_stattrak" + "item_name" "#coupon_mattlange_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - mattlange_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/mattlange_01" + "will_produce_stattrak" "1" + } + "20121" + { + "name" "coupon - mateomessina_01_stattrak" + "item_name" "#coupon_mateomessina_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - mateomessina_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/mateomessina_01" + "will_produce_stattrak" "1" + } + "20122" + { + "name" "coupon - damjanmravunac_01_stattrak" + "item_name" "#coupon_damjanmravunac_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - damjanmravunac_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/damjanmravunac_01" + "will_produce_stattrak" "1" + } + "20123" + { + "name" "coupon - pinups_sticker_capsule" + "item_name" "#coupon_pinups_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pinups_sticker_capsule" + "prefab" "coupon_pinups_capsule_prefab" + } + "20124" + { + "name" "coupon - slid3_sticker_capsule" + "item_name" "#coupon_slid3_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - slid3_sticker_capsule" + "prefab" "coupon_slid3_capsule_prefab" + } + "20125" + { + "name" "coupon - team_roles_sticker_capsule" + "item_name" "#coupon_team_roles_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - team_roles_sticker_capsule" + "prefab" "coupon_team_roles_capsule_prefab" + } + "20126" + { + "name" "coupon - pins_series_1" + "item_name" "#coupon_pins_series_1" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pins_series_1" + "prefab" "valve coupon_prefab" + } + "20127" + { + "name" "coupon - sugarface_sticker_capsule" + "item_name" "#coupon_sugarface_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - sugarface_sticker_capsule" + "prefab" "coupon_sugarface_capsule_prefab" + } + "20128" + { + "name" "coupon - bestiary_sticker_capsule" + "item_name" "#coupon_bestiary_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - bestiary_sticker_capsule" + "prefab" "coupon_bestiary_capsule_prefab" + } + "20129" + { + "name" "coupon - crate_sprays_vcap1" + "item_name" "#coupon_crate_sprays_vcap1" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - crate_sprays_vcap1" + "prefab" "valve coupon_prefab" + } + "20130" + { + "name" "coupon - crate_sprays_community_1" + "item_name" "#coupon_crate_sprays_community_1" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - crate_sprays_community_1" + "prefab" "coupon_sprays_capsule_community_1" + } + "20131" + { + "name" "coupon - pins_series_2" + "item_name" "#coupon_pins_series_2" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pins_series_2" + "prefab" "valve coupon_prefab" + } + "20133" + { + "name" "coupon - radicals_stattrak_musickit_capsule" + "item_name" "#coupon_radicals_stattrak_musickit_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - radicals_stattrak_musickit_capsule" + "prefab" "coupon_radicals_capsule_prefab" + "will_produce_stattrak" "1" + } + "20134" + { + "name" "coupon - illuminate_capsule_01" + "item_name" "#coupon_illuminate_capsule_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - illuminate_capsule_01" + "prefab" "valve coupon_prefab" + } + "20135" + { + "name" "coupon - illuminate_capsule_02" + "item_name" "#coupon_illuminate_capsule_02" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - illuminate_capsule_02" + "prefab" "valve coupon_prefab" + } + "20136" + { + "name" "coupon - illuminate_sprays_capsule_01" + "item_name" "#coupon_illuminate_sprays_capsule_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - illuminate_sprays_capsule_01" + "prefab" "valve coupon_prefab" + } + "20137" + { + "name" "coupon - comm2018_01_sticker_capsule" + "item_name" "#coupon_comm2018_01_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - comm2018_01_sticker_capsule" + "prefab" "coupon_comm2018_01_capsule_prefab" + } + "20138" + { + "name" "coupon - pins_series_3" + "item_name" "#coupon_pins_series_3" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pins_series_3" + "prefab" "valve coupon_prefab" + } + "20139" + { + "name" "coupon - skillgroup_sticker_capsule" + "item_name" "#coupon_skillgroup_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - skillgroup_sticker_capsule" + "prefab" "coupon_skillgroup_capsule_prefab" + } + "20140" + { + "name" "coupon - theverkkars_01" + "item_name" "#coupon_theverkkars_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - theverkkars_01" + "prefab" "valve coupon_prefab" + "image_inventory" "econ/music_kits/theverkkars_01" + } + "20141" + { + "name" "coupon - theverkkars_01_stattrak" + "item_name" "#coupon_theverkkars_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - theverkkars_01_stattrak" + "prefab" "valve coupon_prefab" + "image_inventory" "econ/music_kits/theverkkars_01" + "will_produce_stattrak" "1" + } + "20142" + { + "name" "coupon - feral_predators_sticker_capsule" + "item_name" "#coupon_feral_predators_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - feral_predators_sticker_capsule" + "prefab" "coupon_feral_predators_capsule_prefab" + } + "20143" + { + "name" "coupon - chicken_sticker_capsule" + "item_name" "#coupon_chicken_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - chicken_sticker_capsule" + "prefab" "coupon_chicken_capsule_prefab" + } + "20144" + { + "name" "coupon - crate_xray_p250" + "item_name" "#coupon_crate_xray_p250" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - crate_xray_p250" + "prefab" "valve coupon_prefab" + } + "20145" + { + "name" "coupon - cs20_sticker_capsule" + "item_name" "#coupon_cs20_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - cs20_sticker_capsule" + "prefab" "coupon_cs20_capsule_prefab" + } + "20146" + { + "name" "coupon - halo_sticker_capsule" + "item_name" "#coupon_halo_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - halo_sticker_capsule" + "prefab" "coupon_halo_capsule_prefab" + } + "20147" + { + "name" "coupon - scarlxrd_01" + "item_name" "#coupon_scarlxrd_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - scarlxrd_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/scarlxrd_01" + } + "20148" + { + "name" "coupon - scarlxrd_01_stattrak" + "item_name" "#coupon_scarlxrd_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - scarlxrd_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/scarlxrd_01" + "will_produce_stattrak" "1" + } + "20149" + { + "name" "coupon - crate_patch_pack01" + "item_name" "#coupon_crate_patch_pack01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - crate_patch_pack01" + "prefab" "valve coupon_prefab" + } + "20152" + { + "name" "coupon - pins_hlalyx" + "item_name" "#coupon_pins_hlalyx" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - pins_hlalyx" + "prefab" "valve coupon_prefab" + } + "20153" + { + "name" "coupon - hlalyx_sticker_capsule" + "item_name" "#coupon_hlalyx_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - hlalyx_sticker_capsule" + "prefab" "valve coupon_prefab" + } + "20154" + { + "name" "coupon - crate_patch_pack_hlalyx" + "item_name" "#coupon_crate_patch_pack_hlalyx" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - crate_patch_pack_hlalyx" + "prefab" "valve coupon_prefab" + } + "20169" + { + "name" "coupon - masterminds_musickit_capsule" + "item_name" "#coupon_masterminds_musickit_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - masterminds_musickit_capsule" + "prefab" "coupon_masterminds_capsule_prefab" + } + "20170" + { + "name" "coupon - masterminds_stattrak_musickit_capsule" + "item_name" "#coupon_masterminds_stattrak_musickit_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - masterminds_stattrak_musickit_capsule" + "prefab" "coupon_masterminds_capsule_prefab" + "will_produce_stattrak" "1" + } + "20171" + { + "name" "coupon - warhammer_sticker_capsule" + "item_name" "#coupon_warhammer_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - warhammer_sticker_capsule" + "prefab" "coupon_warhammer_capsule_prefab" + } + "20172" + { + "name" "coupon - amontobin_01" + "item_name" "#coupon_amontobin_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - amontobin_01" + "prefab" "valve coupon_prefab" + "image_inventory" "econ/music_kits/amontobin_01" + } + "20173" + { + "name" "coupon - amontobin_01_stattrak" + "item_name" "#coupon_amontobin_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - amontobin_01_stattrak" + "prefab" "valve coupon_prefab" + "image_inventory" "econ/music_kits/amontobin_01" + "will_produce_stattrak" "1" + } + "20174" + { + "name" "coupon - poorly_drawn_sticker_capsule" + "item_name" "#coupon_poorly_drawn_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - poorly_drawn_sticker_capsule" + "prefab" "coupon_poorly_drawn_capsule_prefab" + } + "20175" + { + "name" "coupon - neckdeep_02" + "item_name" "#coupon_neckdeep_02" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - neckdeep_02" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/neckdeep_02" + } + "20176" + { + "name" "coupon - neckdeep_02_stattrak" + "item_name" "#coupon_neckdeep_02_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - neckdeep_02_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/neckdeep_02" + "will_produce_stattrak" "1" + } + "20177" + { + "name" "coupon - scarlxrd_02" + "item_name" "#coupon_scarlxrd_02" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - scarlxrd_02" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/scarlxrd_02" + } + "20178" + { + "name" "coupon - scarlxrd_02_stattrak" + "item_name" "#coupon_scarlxrd_02_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - scarlxrd_02_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/scarlxrd_02" + "will_produce_stattrak" "1" + } + "20179" + { + "name" "coupon - tacticians_musickit_capsule" + "item_name" "#coupon_tacticians_musickit_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - tacticians_musickit_capsule" + "prefab" "coupon_tacticians_capsule_prefab" + } + "20180" + { + "name" "coupon - tacticians_stattrak_musickit_capsule" + "item_name" "#coupon_tacticians_stattrak_musickit_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - tacticians_stattrak_musickit_capsule" + "prefab" "coupon_tacticians_capsule_prefab" + "will_produce_stattrak" "1" + } + "20181" + { + "name" "coupon - community2021_sticker_capsule" + "item_name" "#coupon_community2021_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - community2021_sticker_capsule" + "prefab" "coupon_community2021_capsule_prefab" + } + "20182" + { + "name" "coupon - bf2042_sticker_capsule" + "item_name" "#coupon_bf2042_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - bf2042_sticker_capsule" + "prefab" "coupon_bf2042_capsule_prefab" + } + "20183" + { + "name" "coupon - bbnos_01" + "item_name" "#coupon_bbnos_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - bbnos_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/bbnos_01" + } + "20184" + { + "name" "coupon - bbnos_01_stattrak" + "item_name" "#coupon_bbnos_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - bbnos_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/bbnos_01" + "will_produce_stattrak" "1" + } + "20185" + { + "name" "coupon - theverkkars_02" + "item_name" "#coupon_theverkkars_02" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - theverkkars_02" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/theverkkars_02" + } + "20186" + { + "name" "coupon - theverkkars_02_stattrak" + "item_name" "#coupon_theverkkars_02_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - theverkkars_02_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/theverkkars_02" + "will_produce_stattrak" "1" + } + "20187" + { + "name" "coupon - spring2022_sticker_capsule" + "item_name" "#coupon_spring2022_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - spring2022_sticker_capsule" + "prefab" "coupon_spring2022_capsule_prefab" + } + "20188" + { + "name" "coupon - csgo10_sticker_capsule" + "item_name" "#coupon_csgo10_sticker_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - csgo10_sticker_capsule" + "prefab" "coupon_csgo10_capsule_prefab" + } + "20189" + { + "name" "coupon - initiators_musickit_capsule" + "item_name" "#coupon_initiators_musickit_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - initiators_musickit_capsule" + "prefab" "coupon_initiators_capsule_prefab" + } + "20190" + { + "name" "coupon - initiators_stattrak_musickit_capsule" + "item_name" "#coupon_initiators_stattrak_musickit_capsule" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - initiators_stattrak_musickit_capsule" + "prefab" "coupon_initiators_capsule_prefab" + "will_produce_stattrak" "1" + } + "20191" + { + "name" "coupon - perfectworld_01" + "item_name" "#coupon_perfectworld_01" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - perfectworld_01" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/perfectworld_01" + } + "20192" + { + "name" "coupon - perfectworld_01_stattrak" + "item_name" "#coupon_perfectworld_01_stattrak" + "item_description" "#coupon_desc" + "loot_list_name" "coupon loot list - perfectworld_01_stattrak" + "prefab" "coupon_prefab" + "image_inventory" "econ/music_kits/perfectworld_01" + "will_produce_stattrak" "1" + } + } + "attributes" + { + "1" + { + "name" "always tradable" + "attribute_class" "always_tradable" + "description_format" "value_is_additive" + "description_string" "#Attrib_AlwaysTradable" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "2" + { + "name" "cannot trade" + "attribute_class" "cannot_trade" + "description_format" "value_is_additive" + "description_string" "#Attrib_CannotTrade" + "hidden" "1" + "effect_type" "negative" + "stored_as_integer" "1" + } + "3" + { + "name" "referenced item id low" + "attribute_class" "referenced_item_id_low" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "4" + { + "name" "referenced item id high" + "attribute_class" "referenced_item_id_high" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "6" + { + "name" "set item texture prefab" + "attribute_class" "set_item_texture_prefab" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "7" + { + "name" "set item texture seed" + "attribute_class" "set_item_texture_seed" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + } + "8" + { + "name" "set item texture wear" + "attribute_class" "set_item_texture_wear" + "hidden" "1" + "description_string" "#Attrib_SetItemTextureWear" + "description_format" "value_is_additive" + "effect_type" "neutral" + "stored_as_integer" "0" + } + "10" + { + "name" "has silencer" + "attribute_class" "has_silencer" + "description_format" "value_is_additive" + "description_string" "#Attrib_HasSilencer" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "13" + { + "name" "has burst mode" + "attribute_class" "has_burst_mode" + "description_format" "value_is_additive" + "description_string" "#Attrib_HasBurstMode" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "14" + { + "name" "cycletime when in burst mode" + "attribute_class" "cycletime_when_in_burst_mode" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "15" + { + "name" "time between burst shots" + "attribute_class" "time_between_burst_shots" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "16" + { + "name" "unzoom after shot" + "attribute_class" "unzoom_after_shot" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "17" + { + "name" "cycletime when zoomed" + "attribute_class" "cycletime_when_zoomed" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "18" + { + "name" "cannot shoot underwater" + "attribute_class" "cannot_shoot_underwater" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "19" + { + "name" "in game price" + "attribute_class" "in_game_price" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "20" + { + "name" "primary clip size" + "attribute_class" "primary_clip_size" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "21" + { + "name" "secondary clip size" + "attribute_class" "secondary_clip_size" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "22" + { + "name" "is full auto" + "attribute_class" "is_full_auto" + "description_format" "value_is_additive" + "description_string" "#Attrib_FullAuto" + "hidden" "0" + "effect_type" "positive" + "attribute_type" "uint32" + } + "23" + { + "name" "heat per shot" + "attribute_class" "heat_per_shot" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "24" + { + "name" "addon scale" + "attribute_class" "addon_scale" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "25" + { + "name" "tracer frequency" + "attribute_class" "tracer_frequency" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "26" + { + "name" "max player speed" + "attribute_class" "max_player_speed" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "27" + { + "name" "max player speed alt" + "attribute_class" "max_player_speed_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "28" + { + "name" "armor ratio" + "attribute_class" "armor_ratio" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "29" + { + "name" "crosshair min distance" + "attribute_class" "crosshair_min_distance" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "30" + { + "name" "crosshair delta distance" + "attribute_class" "crosshair_delta_distance" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "31" + { + "name" "penetration" + "attribute_class" "penetration" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "32" + { + "name" "damage" + "attribute_class" "damage" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "33" + { + "name" "range" + "attribute_class" "range" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "34" + { + "name" "range modifier" + "attribute_class" "range_modifier" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "35" + { + "name" "bullets" + "attribute_class" "bullets" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "36" + { + "name" "cycletime" + "attribute_class" "cycletime" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "37" + { + "name" "time to idle" + "attribute_class" "time_to_idle" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "38" + { + "name" "idle interval" + "attribute_class" "idle interval" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "39" + { + "name" "flinch velocity modifier large" + "attribute_class" "flinch_velocity_modifier_large" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "40" + { + "name" "flinch velocity modifier small" + "attribute_class" "flinch velocity modifier small" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "41" + { + "name" "spread" + "attribute_class" "spread" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "42" + { + "name" "inaccuracy crouch" + "attribute_class" "inaccuracy_crouch" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "43" + { + "name" "inaccuracy stand" + "attribute_class" "inaccuracy_stand" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "44" + { + "name" "inaccuracy jump" + "attribute_class" "inaccuracy_jump" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "45" + { + "name" "inaccuracy land" + "attribute_class" "inaccuracy_land" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "46" + { + "name" "inaccuracy ladder" + "attribute_class" "inaccuracy_ladder" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "47" + { + "name" "inaccuracy fire" + "attribute_class" "inaccuracy_fire" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "48" + { + "name" "inaccuracy move" + "attribute_class" "inaccuracy_move" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "49" + { + "name" "spread alt" + "attribute_class" "spread_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "50" + { + "name" "inaccuracy crouch alt" + "attribute_class" "inaccuracy_crouch_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "51" + { + "name" "inaccuracy stand alt" + "attribute_class" "inaccuracy_stand_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "52" + { + "name" "inaccuracy jump alt" + "attribute_class" "inaccuracy_jump_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "53" + { + "name" "inaccuracy land alt" + "attribute_class" "inaccuracy_land_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "54" + { + "name" "inaccuracy ladder alt" + "attribute_class" "inaccuracy_ladder_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "55" + { + "name" "inaccuracy fire alt" + "attribute_class" "inaccuracy_fire_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "56" + { + "name" "inaccuracy move alt" + "attribute_class" "inaccuracy_move_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "57" + { + "name" "recovery time crouch" + "attribute_class" "recovery_time_crouch" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "58" + { + "name" "recovery time stand" + "attribute_class" "recovery_time_stand" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "59" + { + "name" "recoil seed" + "attribute_class" "recoil_seed" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "60" + { + "name" "recoil angle" + "attribute_class" "recoil_angle" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "61" + { + "name" "recoil angle variance" + "attribute_class" "recoil_angle_variance" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "62" + { + "name" "recoil magnitude" + "attribute_class" "recoil_magnitude" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "63" + { + "name" "recoil magnitude variance" + "attribute_class" "recoil_magnitude_variance" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "64" + { + "name" "recoil angle alt" + "attribute_class" "recoil_angle_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "65" + { + "name" "recoil angle variance alt" + "attribute_class" "recoil_angle_variance_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "66" + { + "name" "recoil magnitude alt" + "attribute_class" "recoil_magnitude_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "67" + { + "name" "recoil magnitude variance alt" + "attribute_class" "recoil_magnitude_variance_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "68" + { + "name" "set supply crate series" + "attribute_class" "supply_crate_series" + "description_string" "#Attrib_SupplyCrateSeries" + "description_format" "value_is_additive" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "69" + { + "name" "minutes played" + "attribute_class" "minutes_played" + "description_string" "#Attrib_MinutesPlayedAsHrs" + "description_format" "value_is_mins_as_hours" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "0" + "score" "10000" + } + "70" + { + "name" "alternate icon" + "attribute_class" "alternate_icon" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "71" + { + "name" "season access" + "attribute_class" "season_access" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "72" + { + "name" "disallow recycling" + "attribute_class" "disallow_recycling" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "73" + { + "name" "upgrade threshold" + "attribute_class" "upgrade_threshold" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "75" + { + "name" "tradable after date" + "attribute_class" "tradable_after_date" + "description_format" "value_is_date" + "description_string" "#Attrib_TradableAfterDate" + "hidden" "1" + "effect_type" "negative" + "stored_as_integer" "1" + } + "76" + { + "name" "is revolver" + "attribute_class" "is_revolver" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "77" + { + "name" "scope dot model" + "attribute_class" "scope_dot_model" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "string" + } + "78" + { + "name" "elevate quality" + "attribute_class" "set_elevated_quality" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "79" + { + "name" "cycletime alt" + "attribute_class" "cycletime_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "80" + { + "name" "kill eater" + "attribute_class" "kill_eater" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "81" + { + "name" "kill eater score type" + "attribute_class" "kill_eater_score_type" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "score" "6" + "stored_as_integer" "1" + } + "82" + { + "name" "kill eater user 1" + "attribute_class" "kill_eater_user_1" + "description_format" "value_is_additive" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "83" + { + "name" "kill eater user score type 1" + "attribute_class" "kill_eater_user_score_type_1" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "score" "6" + "stored_as_integer" "1" + } + "84" + { + "name" "kill eater user 2" + "attribute_class" "kill_eater_user_2" + "description_format" "value_is_additive" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "85" + { + "name" "kill eater user score type 2" + "attribute_class" "kill_eater_user_score_type_2" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "score" "6" + "stored_as_integer" "1" + } + "86" + { + "name" "kill eater user 3" + "attribute_class" "kill_eater_user_3" + "description_format" "value_is_additive" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "87" + { + "name" "kill eater user score type 3" + "attribute_class" "kill_eater_user_score_type_3" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "score" "6" + "stored_as_integer" "1" + } + "88" + { + "name" "kill eater 2" + "attribute_class" "kill_eater_2" + "description_format" "value_is_additive" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "89" + { + "name" "kill eater score type 2" + "attribute_class" "kill_eater_score_type_2" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "score" "6" + "stored_as_integer" "1" + } + "92" + { + "name" "tracer frequency alt" + "attribute_class" "tracer_frequency_alt" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "93" + { + "name" "primary default clip size" + "attribute_class" "primary_default_clip_size" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "94" + { + "name" "secondary default clip size" + "attribute_class" "secondary_default_clip_size" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "95" + { + "name" "recipe filter" + "attribute_class" "recipe_filter" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + } + "97" + { + "name" "competitive kills" + "attribute_class" "competitive_kills" + "description_format" "value_is_additive" + "description_string" "#Attrib_CompetitiveKills" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8000" + } + "98" + { + "name" "competitive 3k" + "attribute_class" "competitive_3k" + "description_format" "value_is_additive" + "description_string" "#Attrib_Competitive3k" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "7000" + } + "99" + { + "name" "competitive 4k" + "attribute_class" "competitive_4k" + "description_format" "value_is_additive" + "description_string" "#Attrib_Competitive4k" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "6900" + } + "101" + { + "name" "competitive 5k" + "attribute_class" "competitive_5k" + "description_format" "value_is_additive" + "description_string" "#Attrib_Competitive5k" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "6800" + } + "102" + { + "name" "competitive hsp" + "attribute_class" "competitive_hsp" + "description_format" "value_is_additive" + "description_string" "#Attrib_CompetitiveHSP" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + "score" "7500" + } + "103" + { + "name" "competitive wins" + "attribute_class" "competitive_wins" + "description_format" "value_is_additive" + "description_string" "#Attrib_CompetitiveWins" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8500" + } + "104" + { + "name" "competitive mvps" + "attribute_class" "competitive_mvps" + "description_format" "value_is_additive" + "description_string" "#Attrib_CompetitiveMVPs" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8400" + } + "105" + { + "name" "competitive minutes played" + "attribute_class" "competitive_minutes_played" + "description_string" "#Attrib_CompetitiveMinutesPlayedAsHrs" + "description_format" "value_is_mins_as_hours" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "9000" + } + "106" + { + "name" "match wins" + "attribute_class" "match_wins" + "description_format" "value_is_additive" + "description_string" "#Attrib_MatchWins" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "9500" + } + "107" + { + "name" "preferred sort" + "attribute_class" "preferred_sort" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + } + "111" + { + "name" "custom name attr" + "attribute_class" "custom_name_attr" + "attribute_type" "string" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + } + "112" + { + "name" "custom desc attr" + "attribute_class" "custom_desc_attr" + "attribute_type" "string" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + } + "113" + { + "name" "sticker slot 0 id" + "attribute_class" "sticker_slot_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "114" + { + "name" "sticker slot 0 wear" + "attribute_class" "sticker_slot_wear" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "115" + { + "name" "sticker slot 0 scale" + "attribute_class" "sticker_slot_scale" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "116" + { + "name" "sticker slot 0 rotation" + "attribute_class" "sticker_slot_rotation" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "117" + { + "name" "sticker slot 1 id" + "attribute_class" "sticker_slot_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "118" + { + "name" "sticker slot 1 wear" + "attribute_class" "sticker_slot_wear" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "119" + { + "name" "sticker slot 1 scale" + "attribute_class" "sticker_slot_scale" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "120" + { + "name" "sticker slot 1 rotation" + "attribute_class" "sticker_slot_rotation" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "121" + { + "name" "sticker slot 2 id" + "attribute_class" "sticker_slot_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "122" + { + "name" "sticker slot 2 wear" + "attribute_class" "sticker_slot_wear" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "123" + { + "name" "sticker slot 2 scale" + "attribute_class" "sticker_slot_scale" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "124" + { + "name" "sticker slot 2 rotation" + "attribute_class" "sticker_slot_rotation" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "125" + { + "name" "sticker slot 3 id" + "attribute_class" "sticker_slot_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "126" + { + "name" "sticker slot 3 wear" + "attribute_class" "sticker_slot_wear" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "127" + { + "name" "sticker slot 3 scale" + "attribute_class" "sticker_slot_scale" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "128" + { + "name" "sticker slot 3 rotation" + "attribute_class" "sticker_slot_rotation" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "129" + { + "name" "sticker slot 4 id" + "attribute_class" "sticker_slot_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "130" + { + "name" "sticker slot 4 wear" + "attribute_class" "sticker_slot_wear" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "131" + { + "name" "sticker slot 4 scale" + "attribute_class" "sticker_slot_scale" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "132" + { + "name" "sticker slot 4 rotation" + "attribute_class" "sticker_slot_rotation" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "133" + { + "name" "sticker slot 5 id" + "attribute_class" "sticker_slot_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "134" + { + "name" "sticker slot 5 wear" + "attribute_class" "sticker_slot_wear" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "135" + { + "name" "sticker slot 5 scale" + "attribute_class" "sticker_slot_scale" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "136" + { + "name" "sticker slot 5 rotation" + "attribute_class" "sticker_slot_rotation" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + } + "137" + { + "name" "tournament event id" + "attribute_class" "tournament_event_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "138" + { + "name" "tournament event stage id" + "attribute_class" "tournament_event_stage_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "139" + { + "name" "tournament event team0 id" + "attribute_class" "tournament_event_team_id" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "140" + { + "name" "tournament event team1 id" + "attribute_class" "tournament_event_team_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "142" + { + "name" "icon display model" + "attribute_class" "icon_display_model" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "attribute_type" "string" + } + "143" + { + "name" "buymenu display model" + "attribute_class" "buymenu_display_model" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "attribute_type" "string" + } + "144" + { + "name" "pedestal display model" + "attribute_class" "pedestal_display_model" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "attribute_type" "string" + } + "145" + { + "name" "magazine model" + "attribute_class" "magazine_model" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "attribute_type" "string" + } + "146" + { + "name" "uid model" + "attribute_class" "uid_model" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "attribute_type" "string" + } + "147" + { + "name" "stattrak model" + "attribute_class" "stattrak_model" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "attribute_type" "string" + } + "150" + { + "name" "aimsight capable" + "attribute_class" "aimsight_capable" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "151" + { + "name" "aimsight eye pos" + "attribute_class" "aimsight_eye_pos" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "vector" + } + "154" + { + "name" "aimsight pivot angle" + "attribute_class" "aimsight_pivot_angle" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "vector" + } + "157" + { + "name" "aimsight speed up" + "attribute_class" "aimsight_speed_up" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + "attribute_type" "float" + } + "158" + { + "name" "aimsight speed down" + "attribute_class" "aimsight_speed_down" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + "attribute_type" "float" + } + "159" + { + "name" "aimsight looseness" + "attribute_class" "aimsight_looseness" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + "attribute_type" "float" + } + "160" + { + "name" "aimsight fov" + "attribute_class" "aimsight_fov" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + "attribute_type" "float" + } + "161" + { + "name" "aimsight pivot forward" + "attribute_class" "aimsight_pivot_forward" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + "attribute_type" "float" + } + "162" + { + "name" "gifter account id" + "attribute_class" "gifter_account_id" + "description_format" "value_is_account_id" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "163" + { + "name" "radio use sound" + "attribute_class" "radio_use_sound" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + "attribute_type" "string" + } + "164" + { + "name" "radio use subtitle" + "attribute_class" "radio_use_subtitle" + "description_format" "value_is_replace" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "0" + "attribute_type" "string" + } + "165" + { + "name" "aimsight lens mask" + "attribute_class" "aimsight_lens_mask" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "attribute_type" "string" + } + "166" + { + "name" "music id" + "attribute_class" "music_id" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "168" + { + "name" "quest id" + "attribute_class" "quest_id" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "169" + { + "name" "quest points remaining" + "attribute_class" "quest_points_remaining" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "170" + { + "name" "quest reward lootlist" + "attribute_class" "quest_reward_lootlist" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "171" + { + "name" "quests complete" + "attribute_class" "quests_complete" + "description_format" "value_is_additive" + "description_string" "#Attrib_QuestsComplete" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8600" + } + "172" + { + "name" "operation kills" + "attribute_class" "operation_kills" + "description_format" "value_is_additive" + "description_string" "#Attrib_OperationKills" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8000" + } + "173" + { + "name" "operation 3k" + "attribute_class" "operation_3k" + "description_format" "value_is_additive" + "description_string" "#Attrib_Operation3k" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "7000" + } + "174" + { + "name" "operation 4k" + "attribute_class" "operation_4k" + "description_format" "value_is_additive" + "description_string" "#Attrib_Operation4k" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "6900" + } + "175" + { + "name" "operation 5k" + "attribute_class" "operation_5k" + "description_format" "value_is_additive" + "description_string" "#Attrib_Operation5k" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "6800" + } + "176" + { + "name" "operation hsp" + "attribute_class" "operation_hsp" + "description_format" "value_is_additive" + "description_string" "#Attrib_OperationHSP" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "0" + "score" "7500" + } + "177" + { + "name" "operation mvps" + "attribute_class" "operation_mvps" + "description_format" "value_is_additive" + "description_string" "#Attrib_OperationMVPs" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8400" + } + "178" + { + "name" "operation minutes played" + "attribute_class" "operation_minutes_played" + "description_string" "#Attrib_OperationMinutesPlayedAsHrs" + "description_format" "value_is_mins_as_hours" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "9000" + } + "179" + { + "name" "operation wins" + "attribute_class" "operation_wins" + "description_format" "value_is_additive" + "description_string" "#Attrib_OperationWins" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "9500" + } + "180" + { + "name" "deployment date" + "attribute_class" "deployment_date" + "description_format" "value_is_date" + "description_string" "#Attrib_DeploymentDate" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "182" + { + "name" "use after date" + "attribute_class" "use_after_date" + "description_format" "value_is_date" + "description_string" "#Attrib_UseAfterDate" + "hidden" "1" + "effect_type" "negative" + "stored_as_integer" "1" + } + "183" + { + "name" "expiration date" + "attribute_class" "expiration_date" + "description_string" "#Attrib_ExpirationDate" + "description_format" "value_is_date" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "184" + { + "name" "campaign id" + "attribute_class" "campaign_id" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "185" + { + "name" "campaign completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "187" + { + "name" "last campaign completion" + "attribute_class" "last_campaign_completion" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "188" + { + "name" "operation points" + "attribute_class" "operation_points" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "190" + { + "name" "zoom time 0" + "attribute_class" "zoom_time_0" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "191" + { + "name" "zoom time 1" + "attribute_class" "zoom_time_1" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "192" + { + "name" "zoom time 2" + "attribute_class" "zoom_time_2" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "193" + { + "name" "zoom fov 1" + "attribute_class" "zoom_fov_1" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "194" + { + "name" "zoom fov 2" + "attribute_class" "zoom_fov_2" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "195" + { + "name" "hide view model zoomed" + "attribute_class" "zoom_fov_1" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "196" + { + "name" "zoom levels" + "attribute_class" "zoom_levels" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "197" + { + "name" "kill award" + "attribute_class" "kill_award" + "description_format" "value_is_additive" + "hidden" "0" + "effect_type" "positive" + "attribute_type" "uint32" + } + "199" + { + "name" "primary reserve ammo max" + "attribute_class" "primary_reserve_ammo_max" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "200" + { + "name" "secondary reserve ammo max" + "attribute_class" "secondary_reserve_ammo_max" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "uint32" + } + "208" + { + "name" "campaign 1 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "209" + { + "name" "campaign 1 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "210" + { + "name" "campaign 2 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "211" + { + "name" "campaign 2 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "212" + { + "name" "campaign 3 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "213" + { + "name" "campaign 3 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "214" + { + "name" "campaign 4 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "215" + { + "name" "campaign 4 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "216" + { + "name" "campaign 5 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "217" + { + "name" "campaign 5 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "218" + { + "name" "campaign 6 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "219" + { + "name" "campaign 6 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "220" + { + "name" "operation bonus points" + "attribute_class" "operation_bonus_points" + "description_format" "value_is_additive" + "description_string" "#Attrib_OperationBonusXP" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "221" + { + "name" "prestige year" + "attribute_class" "prestige_year" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "222" + { + "name" "issue date" + "attribute_class" "issue_date" + "description_format" "value_is_date" + "description_string" "#Attrib_IssueDate" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + } + "223" + { + "name" "tournament mvp account id" + "attribute_class" "tournament_mvp_account_id" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "224" + { + "name" "campaign 7 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "225" + { + "name" "campaign 7 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "226" + { + "name" "campaign 8 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "227" + { + "name" "campaign 8 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "228" + { + "name" "recovery time crouch final" + "attribute_class" "recovery_time_crouch_final" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "229" + { + "name" "recovery time stand final" + "attribute_class" "recovery_time_stand_final" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "230" + { + "name" "recovery transition start bullet" + "attribute_class" "recovery_transition_start_bullet" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "231" + { + "name" "recovery transition end bullet" + "attribute_class" "recovery_transition_end_bullet" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "232" + { + "name" "sprays remaining" + "attribute_class" "sprays_remaining" + "description_format" "value_is_additive" + "description_string" "#Attrib_SpraysRemaining" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8500" + } + "233" + { + "name" "spray tint id" + "attribute_class" "spray_tint_id" + "description_format" "value_is_additive" + "description_string" "#Attrib_SprayTintID" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8500" + } + "234" + { + "name" "inaccuracy jump initial" + "attribute_class" "inaccuracy_jump_initial" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "235" + { + "name" "campaign 9 completion bitfield" + "attribute_class" "campaign_completion_bitfield" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "236" + { + "name" "campaign 9 last completed quest" + "attribute_class" "campaign_last_completed_quest" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "237" + { + "name" "operation drops awarded 1" + "attribute_class" "operation_drops_awarded" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "238" + { + "name" "operation xp awarded 0" + "attribute_class" "operation_xp_awarded" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "239" + { + "name" "operation xp awarded 1" + "attribute_class" "operation_xp_awarded" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "240" + { + "name" "operation drops awarded 0" + "attribute_class" "operation_drops_awarded" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "242" + { + "name" "attack movespeed factor" + "attribute_class" "attack_movespeed_factor" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "243" + { + "name" "allow hand flipping" + "attribute_class" "allow_hand_flipping" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "245" + { + "name" "is melee weapon" + "attribute_class" "is_melee_weapon" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "246" + { + "name" "model right handed" + "attribute_class" "model_right_handed" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "247" + { + "name" "weapon weight" + "attribute_class" "weapon_weight" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "248" + { + "name" "wrong team msg" + "attribute_class" "wrong_team_msg" + "attribute_type" "string" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + } + "249" + { + "name" "itemflag select on empty" + "attribute_class" "itemflag_select_on_empty" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "250" + { + "name" "itemflag no auto reload" + "attribute_class" "itemflag_no_auto_reload" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "251" + { + "name" "itemflag no auto switch empty" + "attribute_class" "itemflag_no_auto_switch_empty" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "252" + { + "name" "itemflag limit in world" + "attribute_class" "itemflag_limit_in_world" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "253" + { + "name" "itemflag exhaustible" + "attribute_class" "itemflag_exhaustible" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "254" + { + "name" "itemflag do hit location dmg" + "attribute_class" "itemflag_do_hit_location_dmg" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "255" + { + "name" "itemflag no ammo pickups" + "attribute_class" "itemflag_no_ammo_pickups" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "256" + { + "name" "itemflag no item pickup" + "attribute_class" "itemflag_no_item_pickup" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "257" + { + "name" "inaccuracy reload" + "attribute_class" "inaccuracy_reload" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "259" + { + "name" "throw velocity" + "attribute_class" "throw_velocity" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "261" + { + "name" "bot audible range" + "attribute_class" "bot_audible_range" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "262" + { + "name" "rumble effect" + "attribute_class" "rumble_effect" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "263" + { + "name" "inaccuracy pitch shift" + "attribute_class" "inaccuracy_pitch_shift" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "264" + { + "name" "inaccuracy alt sound threshold" + "attribute_class" "inaccuracy_alt_sound_threshold" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "265" + { + "name" "silencer model" + "attribute_class" "silencer_model" + "attribute_type" "string" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + } + "266" + { + "name" "spread seed" + "attribute_class" "spread_seed" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "267" + { + "name" "special event id" + "attribute_class" "special_event_id" + "group" "only_on_unique" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "268" + { + "name" "upgrade level" + "attribute_class" "upgrade_level" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "positive" + "stored_as_integer" "1" + } + "270" + { + "name" "items count" + "attribute_class" "items_count" + "description_format" "value_is_additive" + "description_string" "#Attrib_ItemsCount" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "9000" + } + "271" + { + "name" "modification date" + "attribute_class" "modification_date" + "description_format" "value_is_date" + "description_string" "#Attrib_ModificationDate" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "9500" + } + "272" + { + "name" "casket item id low" + "attribute_class" "casket_item_id" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "273" + { + "name" "casket item id high" + "attribute_class" "casket_item_id" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "stored_as_integer" "1" + } + "274" + { + "name" "stars attained" + "attribute_class" "stars_attained" + "description_format" "value_is_additive" + "description_string" "#Attrib_StarsAttained" + "hidden" "0" + "effect_type" "positive" + "stored_as_integer" "1" + "score" "8500" + } + "275" + { + "name" "inaccuracy jump apex" + "attribute_class" "inaccuracy_jump_apex" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + "276" + { + "name" "headshot multiplier" + "attribute_class" "headshot_multiplier" + "description_format" "value_is_additive" + "hidden" "1" + "effect_type" "neutral" + "attribute_type" "float" + } + } + "sticker_kits" + { + "0" + { + "name" "default" + "item_name" "#StickerKit_Default" + "description_string" "#StickerKit_Desc_Default" + } + "1" + { + "name" "dh_gologo1" + "item_name" "#StickerKit_dh_gologo1" + "description_string" "#StickerKit_desc_dh_gologo1" + "sticker_material" "dreamhack/dh_gologo1" + "tournament_event_id" "1" + } + "2" + { + "name" "dh_gologo1_holo" + "item_name" "#StickerKit_dh_gologo1_holo" + "description_string" "#StickerKit_desc_dh_gologo1_holo" + "sticker_material" "dreamhack/dh_gologo1_holo" + "tournament_event_id" "1" + } + "3" + { + "name" "dh_gologo2" + "item_name" "#StickerKit_dh_gologo2" + "description_string" "#StickerKit_desc_dh_gologo2" + "sticker_material" "dreamhack/dh_gologo2" + "tournament_event_id" "1" + } + "4" + { + "name" "dh_gologo2_holo" + "item_name" "#StickerKit_dh_gologo2_holo" + "description_string" "#StickerKit_desc_dh_gologo2_holo" + "sticker_material" "dreamhack/dh_gologo2_holo" + "tournament_event_id" "1" + } + "5" + { + "name" "dh_snowflake2" + "item_name" "#StickerKit_dh_snowflake2" + "description_string" "#StickerKit_desc_dh_snowflake2" + "sticker_material" "dreamhack/dh_snowflake2" + "tournament_event_id" "1" + } + "6" + { + "name" "dh_snowflake3" + "item_name" "#StickerKit_dh_snowflake3" + "description_string" "#StickerKit_desc_dh_snowflake3" + "sticker_material" "dreamhack/dh_snowflake3" + "tournament_event_id" "1" + } + "7" + { + "name" "dh_bears" + "item_name" "#StickerKit_dh_bears" + "description_string" "#StickerKit_desc_dh_bears" + "sticker_material" "dreamhack/dh_bears" + "tournament_event_id" "1" + } + "8" + { + "name" "dh_bears_holo" + "item_name" "#StickerKit_dh_bears_holo" + "description_string" "#StickerKit_desc_dh_bears_holo" + "sticker_material" "dreamhack/dh_bears_holo" + "tournament_event_id" "1" + } + "9" + { + "name" "dh_mountain" + "item_name" "#StickerKit_dh_mountain" + "description_string" "#StickerKit_desc_dh_mountain" + "sticker_material" "dreamhack/dh_mountain" + "tournament_event_id" "1" + } + "10" + { + "name" "dh_mountain_holo" + "item_name" "#StickerKit_dh_mountain_holo" + "description_string" "#StickerKit_desc_dh_mountain_holo" + "sticker_material" "dreamhack/dh_mountain_holo" + "tournament_event_id" "1" + } + "11" + { + "name" "dh_snowman" + "item_name" "#StickerKit_dh_snowman" + "description_string" "#StickerKit_desc_dh_snowman" + "sticker_material" "dreamhack/dh_snowman" + "tournament_event_id" "1" + } + "12" + { + "name" "dh_snowman_holo" + "item_name" "#StickerKit_dh_snowman_holo" + "description_string" "#StickerKit_desc_dh_snowman_holo" + "sticker_material" "dreamhack/dh_snowman_holo" + "tournament_event_id" "1" + } + "13" + { + "name" "std_thirteen" + "item_name" "#StickerKit_std_thirteen" + "description_string" "#StickerKit_desc_std_thirteen" + "sticker_material" "standard/thirteen" + "item_rarity" "rare" + } + "14" + { + "name" "std_aces_high" + "item_name" "#StickerKit_std_aces_high" + "description_string" "#StickerKit_desc_std_aces_high" + "sticker_material" "standard/aces_high" + "item_rarity" "rare" + } + "15" + { + "name" "std_aces_high_holo" + "item_name" "#StickerKit_std_aces_high_holo" + "description_string" "#StickerKit_desc_std_aces_high_holo" + "sticker_material" "standard/aces_high_holo" + "item_rarity" "mythical" + } + "16" + { + "name" "std_conquered" + "item_name" "#StickerKit_std_conquered" + "description_string" "#StickerKit_desc_std_conquered" + "sticker_material" "standard/conquered" + "item_rarity" "rare" + } + "17" + { + "name" "std_destroy" + "item_name" "#StickerKit_std_destroy" + "description_string" "#StickerKit_desc_std_destroy" + "sticker_material" "standard/destroy" + "item_rarity" "rare" + } + "18" + { + "name" "std_dispatch" + "item_name" "#StickerKit_std_dispatch" + "description_string" "#StickerKit_desc_std_dispatch" + "sticker_material" "standard/dispatch" + "item_rarity" "rare" + } + "19" + { + "name" "std_fearsome" + "item_name" "#StickerKit_std_fearsome" + "description_string" "#StickerKit_desc_std_fearsome" + "sticker_material" "standard/fearsome" + "item_rarity" "rare" + } + "20" + { + "name" "std_fearsome_holo" + "item_name" "#StickerKit_std_fearsome_holo" + "description_string" "#StickerKit_desc_std_fearsome_holo" + "sticker_material" "standard/fearsome_holo" + "item_rarity" "mythical" + } + "21" + { + "name" "std_guarding_hell" + "item_name" "#StickerKit_std_guarding_hell" + "description_string" "#StickerKit_desc_std_guarding_hell" + "sticker_material" "standard/guarding_hell" + "item_rarity" "rare" + } + "22" + { + "name" "std_lemon" + "item_name" "#StickerKit_std_lemon" + "description_string" "#StickerKit_desc_std_lemon" + "sticker_material" "standard/lemon" + "item_rarity" "rare" + } + "23" + { + "name" "std_luck" + "item_name" "#StickerKit_std_luck" + "description_string" "#StickerKit_desc_std_luck" + "sticker_material" "standard/luck" + "item_rarity" "rare" + } + "24" + { + "name" "std_vigilance" + "item_name" "#StickerKit_std_vigilance" + "description_string" "#StickerKit_desc_std_vigilance" + "sticker_material" "standard/vigilance" + "item_rarity" "rare" + } + "25" + { + "name" "std_vigilance_holo" + "item_name" "#StickerKit_std_vigilance_holo" + "description_string" "#StickerKit_desc_std_vigilance_holo" + "sticker_material" "standard/vigilance_holo" + "item_rarity" "mythical" + } + "26" + { + "name" "std_thirteen_foil" + "item_name" "#StickerKit_std_thirteen_foil" + "description_string" "#StickerKit_desc_std_thirteen_foil" + "sticker_material" "standard/thirteen_foil" + "item_rarity" "legendary" + } + "27" + { + "name" "std_luck_foil" + "item_name" "#StickerKit_std_luck_foil" + "description_string" "#StickerKit_desc_std_luck_foil" + "sticker_material" "standard/luck_foil" + "item_rarity" "legendary" + } + "31" + { + "name" "std2_bish_holo" + "item_name" "#StickerKit_std2_bish_holo" + "description_string" "#StickerKit_desc_std2_bish_holo" + "sticker_material" "stickers2/bish_holo" + "item_rarity" "mythical" + } + "32" + { + "name" "std2_bash_holo" + "item_name" "#StickerKit_std2_bash_holo" + "description_string" "#StickerKit_desc_std2_bash_holo" + "sticker_material" "stickers2/bash_holo" + "item_rarity" "mythical" + } + "33" + { + "name" "std2_bosh_holo" + "item_name" "#StickerKit_std2_bosh_holo" + "description_string" "#StickerKit_desc_std2_bosh_holo" + "sticker_material" "stickers2/bosh_holo" + "item_rarity" "mythical" + } + "34" + { + "name" "std2_banana" + "item_name" "#StickerKit_std2_banana" + "description_string" "#StickerKit_desc_std2_banana" + "sticker_material" "stickers2/banana" + "item_rarity" "rare" + } + "35" + { + "name" "std2_bomb_code" + "item_name" "#StickerKit_std2_bomb_code" + "description_string" "#StickerKit_desc_std2_bomb_code" + "sticker_material" "stickers2/bomb_code" + "item_rarity" "rare" + } + "36" + { + "name" "std2_chicken_lover" + "item_name" "#StickerKit_std2_chicken_lover" + "description_string" "#StickerKit_desc_std2_chicken_lover" + "sticker_material" "stickers2/chicken_lover" + "item_rarity" "rare" + } + "37" + { + "name" "std_crown_foil" + "item_name" "#StickerKit_std_crown_foil" + "description_string" "#StickerKit_desc_std_crown_foil" + "sticker_material" "stickers2/crown_foil" + "item_rarity" "legendary" + } + "38" + { + "name" "std2_goodgame" + "item_name" "#StickerKit_std2_goodgame" + "description_string" "#StickerKit_desc_std2_goodgame" + "sticker_material" "stickers2/goodgame" + "item_rarity" "rare" + } + "39" + { + "name" "std2_goodluck" + "item_name" "#StickerKit_std2_goodluck" + "description_string" "#StickerKit_desc_std2_goodluck" + "sticker_material" "stickers2/goodluck" + "item_rarity" "rare" + } + "40" + { + "name" "std2_havefun" + "item_name" "#StickerKit_std2_havefun" + "description_string" "#StickerKit_desc_std2_havefun" + "sticker_material" "stickers2/havefun" + "item_rarity" "rare" + } + "41" + { + "name" "std2_lets_roll_oll" + "item_name" "#StickerKit_std2_lets_roll_oll" + "description_string" "#StickerKit_desc_std2_lets_roll_oll" + "sticker_material" "stickers2/lets_roll_oll" + "item_rarity" "rare" + } + "42" + { + "name" "std2_lets_roll_oll_holo" + "item_name" "#StickerKit_std2_lets_roll_oll_holo" + "description_string" "#StickerKit_desc_std2_lets_roll_oll_holo" + "sticker_material" "stickers2/lets_roll_oll_holo" + "item_rarity" "mythical" + } + "43" + { + "name" "std2_metal" + "item_name" "#StickerKit_std2_metal" + "description_string" "#StickerKit_desc_std2_metal" + "sticker_material" "stickers2/metal" + "item_rarity" "rare" + } + "44" + { + "name" "std2_nice_shot" + "item_name" "#StickerKit_std2_nice_shot" + "description_string" "#StickerKit_desc_std2_nice_shot" + "sticker_material" "stickers2/nice_shot" + "item_rarity" "rare" + } + "46" + { + "name" "std2_stupid_banana_foil" + "item_name" "#StickerKit_std2_stupid_banana_foil" + "description_string" "#StickerKit_desc_std2_stupid_banana_foil" + "sticker_material" "stickers2/stupid_banana_foil" + "item_rarity" "legendary" + } + "47" + { + "name" "std2_welcome_clutch" + "item_name" "#StickerKit_std2_welcome_clutch" + "description_string" "#StickerKit_desc_std2_welcome_clutch" + "sticker_material" "stickers2/welcome_clutch" + "item_rarity" "rare" + } + "48" + { + "name" "kat2014_3dmax" + "item_name" "#StickerKit_kat2014_3dmax" + "description_string" "#StickerKit_desc_kat2014_3dmax" + "sticker_material" "emskatowice2014/3dmax" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "28" + } + "49" + { + "name" "kat2014_3dmax_holo" + "item_name" "#StickerKit_kat2014_3dmax_holo" + "description_string" "#StickerKit_desc_kat2014_3dmax_holo" + "sticker_material" "emskatowice2014/3dmax_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "28" + } + "50" + { + "name" "kat2014_complexity" + "item_name" "#StickerKit_kat2014_complexity" + "description_string" "#StickerKit_desc_kat2014_complexity" + "sticker_material" "emskatowice2014/complexity" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "3" + } + "51" + { + "name" "kat2014_complexity_holo" + "item_name" "#StickerKit_kat2014_complexity_holo" + "description_string" "#StickerKit_desc_kat2014_complexity_holo" + "sticker_material" "emskatowice2014/complexity_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "3" + } + "52" + { + "name" "kat2014_dignitas" + "item_name" "#StickerKit_kat2014_dignitas" + "description_string" "#StickerKit_desc_kat2014_dignitas" + "sticker_material" "emskatowice2014/dignitas" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "24" + } + "53" + { + "name" "kat2014_dignitas_holo" + "item_name" "#StickerKit_kat2014_dignitas_holo" + "description_string" "#StickerKit_desc_kat2014_dignitas_holo" + "sticker_material" "emskatowice2014/dignitas_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "24" + } + "55" + { + "name" "kat2014_fnatic" + "item_name" "#StickerKit_kat2014_fnatic" + "description_string" "#StickerKit_desc_kat2014_fnatic" + "sticker_material" "emskatowice2014/fnatic" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "6" + } + "56" + { + "name" "kat2014_fnatic_holo" + "item_name" "#StickerKit_kat2014_fnatic_holo" + "description_string" "#StickerKit_desc_kat2014_fnatic_holo" + "sticker_material" "emskatowice2014/fnatic_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "6" + } + "57" + { + "name" "kat2014_hellraisers" + "item_name" "#StickerKit_kat2014_hellraisers" + "description_string" "#StickerKit_desc_kat2014_hellraisers" + "sticker_material" "emskatowice2014/hellraisers" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "25" + } + "58" + { + "name" "kat2014_hellraisers_holo" + "item_name" "#StickerKit_kat2014_hellraisers_holo" + "description_string" "#StickerKit_desc_kat2014_hellraisers_holo" + "sticker_material" "emskatowice2014/hellraisers_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "25" + } + "59" + { + "name" "kat2014_ibuypower" + "item_name" "#StickerKit_kat2014_ibuypower" + "description_string" "#StickerKit_desc_kat2014_ibuypower" + "sticker_material" "emskatowice2014/ibuypower" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "5" + } + "60" + { + "name" "kat2014_ibuypower_holo" + "item_name" "#StickerKit_kat2014_ibuypower_holo" + "description_string" "#StickerKit_desc_kat2014_ibuypower_holo" + "sticker_material" "emskatowice2014/ibuypower_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "5" + } + "61" + { + "name" "kat2014_ldlc" + "item_name" "#StickerKit_kat2014_ldlc" + "description_string" "#StickerKit_desc_kat2014_ldlc" + "sticker_material" "emskatowice2014/ldlc" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "26" + } + "62" + { + "name" "kat2014_ldlc_holo" + "item_name" "#StickerKit_kat2014_ldlc_holo" + "description_string" "#StickerKit_desc_kat2014_ldlc_holo" + "sticker_material" "emskatowice2014/ldlc_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "26" + } + "63" + { + "name" "kat2014_lgb" + "item_name" "#StickerKit_kat2014_lgb" + "description_string" "#StickerKit_desc_kat2014_lgb" + "sticker_material" "emskatowice2014/lgb" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "9" + } + "64" + { + "name" "kat2014_lgb_holo" + "item_name" "#StickerKit_kat2014_lgb_holo" + "description_string" "#StickerKit_desc_kat2014_lgb_holo" + "sticker_material" "emskatowice2014/lgb_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "9" + } + "65" + { + "name" "kat2014_mousesports" + "item_name" "#StickerKit_kat2014_mousesports" + "description_string" "#StickerKit_desc_kat2014_mousesports" + "sticker_material" "emskatowice2014/mousesports" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "29" + } + "66" + { + "name" "kat2014_mousesports_holo" + "item_name" "#StickerKit_kat2014_mousesports_holo" + "description_string" "#StickerKit_desc_kat2014_mousesports_holo" + "sticker_material" "emskatowice2014/mousesports_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "29" + } + "67" + { + "name" "kat2014_mystik" + "item_name" "#StickerKit_kat2014_mystik" + "description_string" "#StickerKit_desc_kat2014_mystik" + "sticker_material" "emskatowice2014/mystik" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "7" + } + "68" + { + "name" "kat2014_mystik_holo" + "item_name" "#StickerKit_kat2014_mystik_holo" + "description_string" "#StickerKit_desc_kat2014_mystik_holo" + "sticker_material" "emskatowice2014/mystik_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "7" + } + "69" + { + "name" "kat2014_navi" + "item_name" "#StickerKit_kat2014_navi" + "description_string" "#StickerKit_desc_kat2014_navi" + "sticker_material" "emskatowice2014/navi" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "12" + } + "70" + { + "name" "kat2014_navi_holo" + "item_name" "#StickerKit_kat2014_navi_holo" + "description_string" "#StickerKit_desc_kat2014_navi_holo" + "sticker_material" "emskatowice2014/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "12" + } + "71" + { + "name" "kat2014_ninjasinpyjamas" + "item_name" "#StickerKit_kat2014_ninjasinpyjamas" + "description_string" "#StickerKit_desc_kat2014_ninjasinpyjamas" + "sticker_material" "emskatowice2014/ninjasinpyjamas" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "1" + } + "72" + { + "name" "kat2014_ninjasinpyjamas_holo" + "item_name" "#StickerKit_kat2014_ninjasinpyjamas_holo" + "description_string" "#StickerKit_desc_kat2014_ninjasinpyjamas_holo" + "sticker_material" "emskatowice2014/ninjasinpyjamas_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "1" + } + "73" + { + "name" "kat2014_reason" + "item_name" "#StickerKit_kat2014_reason" + "description_string" "#StickerKit_desc_kat2014_reason" + "sticker_material" "emskatowice2014/reason" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "30" + } + "74" + { + "name" "kat2014_reason_holo" + "item_name" "#StickerKit_kat2014_reason_holo" + "description_string" "#StickerKit_desc_kat2014_reason_holo" + "sticker_material" "emskatowice2014/reason_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "30" + } + "75" + { + "name" "kat2014_titan" + "item_name" "#StickerKit_kat2014_titan" + "description_string" "#StickerKit_desc_kat2014_titan" + "sticker_material" "emskatowice2014/titan" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "27" + } + "76" + { + "name" "kat2014_titan_holo" + "item_name" "#StickerKit_kat2014_titan_holo" + "description_string" "#StickerKit_desc_kat2014_titan_holo" + "sticker_material" "emskatowice2014/titan_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "27" + } + "77" + { + "name" "kat2014_virtuspro" + "item_name" "#StickerKit_kat2014_virtuspro" + "description_string" "#StickerKit_desc_kat2014_virtuspro" + "sticker_material" "emskatowice2014/virtuspro" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "31" + } + "78" + { + "name" "kat2014_virtuspro_holo" + "item_name" "#StickerKit_kat2014_virtuspro_holo" + "description_string" "#StickerKit_desc_kat2014_virtuspro_holo" + "sticker_material" "emskatowice2014/virtuspro_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "31" + } + "79" + { + "name" "kat2014_voxeminor" + "item_name" "#StickerKit_kat2014_voxeminor" + "description_string" "#StickerKit_desc_kat2014_voxeminor" + "sticker_material" "emskatowice2014/voxeminor" + "item_rarity" "rare" + "tournament_event_id" "3" + "tournament_team_id" "32" + } + "80" + { + "name" "kat2014_voxeminor_holo" + "item_name" "#StickerKit_kat2014_voxeminor_holo" + "description_string" "#StickerKit_desc_kat2014_voxeminor_holo" + "sticker_material" "emskatowice2014/voxeminor_holo" + "item_rarity" "mythical" + "tournament_event_id" "3" + "tournament_team_id" "32" + } + "81" + { + "name" "kat2014_esl1_foil" + "item_name" "#StickerKit_kat2014_esl1_foil" + "description_string" "#StickerKit_desc_kat2014_esl1_foil" + "sticker_material" "emskatowice2014/wolf_esl_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + } + "82" + { + "name" "kat2014_esl2_foil" + "item_name" "#StickerKit_kat2014_esl2_foil" + "description_string" "#StickerKit_desc_kat2014_esl2_foil" + "sticker_material" "emskatowice2014/wolf_skull_esl_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + } + "83" + { + "name" "kat2014_3dmax_foil" + "item_name" "#StickerKit_kat2014_3dmax_foil" + "description_string" "#StickerKit_desc_kat2014_3dmax_foil" + "sticker_material" "emskatowice2014/3dmax_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "28" + } + "84" + { + "name" "kat2014_complexity_foil" + "item_name" "#StickerKit_kat2014_complexity_foil" + "description_string" "#StickerKit_desc_kat2014_complexity_foil" + "sticker_material" "emskatowice2014/complexity_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "3" + } + "85" + { + "name" "kat2014_dignitas_foil" + "item_name" "#StickerKit_kat2014_dignitas_foil" + "description_string" "#StickerKit_desc_kat2014_dignitas_foil" + "sticker_material" "emskatowice2014/dignitas_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "24" + } + "86" + { + "name" "kat2014_fnatic_foil" + "item_name" "#StickerKit_kat2014_fnatic_foil" + "description_string" "#StickerKit_desc_kat2014_fnatic_foil" + "sticker_material" "emskatowice2014/fnatic_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "6" + } + "87" + { + "name" "kat2014_hellraisers_foil" + "item_name" "#StickerKit_kat2014_hellraisers_foil" + "description_string" "#StickerKit_desc_kat2014_hellraisers_foil" + "sticker_material" "emskatowice2014/hellraisers_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "25" + } + "88" + { + "name" "kat2014_ibuypower_foil" + "item_name" "#StickerKit_kat2014_ibuypower_foil" + "description_string" "#StickerKit_desc_kat2014_ibuypower_foil" + "sticker_material" "emskatowice2014/ibuypower_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "5" + } + "89" + { + "name" "kat2014_ldlc_foil" + "item_name" "#StickerKit_kat2014_ldlc_foil" + "description_string" "#StickerKit_desc_kat2014_ldlc_foil" + "sticker_material" "emskatowice2014/ldlc_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "26" + } + "90" + { + "name" "kat2014_lgb_foil" + "item_name" "#StickerKit_kat2014_lgb_foil" + "description_string" "#StickerKit_desc_kat2014_lgb_foil" + "sticker_material" "emskatowice2014/lgb_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "9" + } + "91" + { + "name" "kat2014_mousesports_foil" + "item_name" "#StickerKit_kat2014_mousesports_foil" + "description_string" "#StickerKit_desc_kat2014_mousesports_foil" + "sticker_material" "emskatowice2014/mousesports_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "29" + } + "92" + { + "name" "kat2014_mystik_foil" + "item_name" "#StickerKit_kat2014_mystik_foil" + "description_string" "#StickerKit_desc_kat2014_mystik_foil" + "sticker_material" "emskatowice2014/mystik_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "7" + } + "93" + { + "name" "kat2014_navi_foil" + "item_name" "#StickerKit_kat2014_navi_foil" + "description_string" "#StickerKit_desc_kat2014_navi_foil" + "sticker_material" "emskatowice2014/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "12" + } + "94" + { + "name" "kat2014_ninjasinpyjamas_foil" + "item_name" "#StickerKit_kat2014_ninjasinpyjamas_foil" + "description_string" "#StickerKit_desc_kat2014_ninjasinpyjamas_foil" + "sticker_material" "emskatowice2014/ninjasinpyjamas_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "1" + } + "95" + { + "name" "kat2014_reason_foil" + "item_name" "#StickerKit_kat2014_reason_foil" + "description_string" "#StickerKit_desc_kat2014_reason_foil" + "sticker_material" "emskatowice2014/reason_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "30" + } + "96" + { + "name" "kat2014_titan_foil" + "item_name" "#StickerKit_kat2014_titan_foil" + "description_string" "#StickerKit_desc_kat2014_titan_foil" + "sticker_material" "emskatowice2014/titan_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "27" + } + "97" + { + "name" "kat2014_virtuspro_foil" + "item_name" "#StickerKit_kat2014_virtuspro_foil" + "description_string" "#StickerKit_desc_kat2014_virtuspro_foil" + "sticker_material" "emskatowice2014/virtuspro_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "31" + } + "98" + { + "name" "kat2014_voxeminor_foil" + "item_name" "#StickerKit_kat2014_voxeminor_foil" + "description_string" "#StickerKit_desc_kat2014_voxeminor_foil" + "sticker_material" "emskatowice2014/voxeminor_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + "tournament_team_id" "32" + } + "99" + { + "name" "kat2014_wolf_esl_gold_foil" + "item_name" "#StickerKit_kat2014_wolf_esl_gold_foil" + "description_string" "#StickerKit_desc_kat2014_wolf_esl_gold_foil" + "sticker_material" "emskatowice2014/wolf_esl_gold_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + } + "100" + { + "name" "kat2014_wolf_skull_esl_gold_foil" + "item_name" "#StickerKit_kat2014_wolf_skull_esl_gold_foil" + "description_string" "#StickerKit_desc_kat2014_wolf_skull_esl_gold_foil" + "sticker_material" "emskatowice2014/wolf_skull_esl_gold_foil" + "item_rarity" "legendary" + "tournament_event_id" "3" + } + "101" + { + "name" "comm01_backstab" + "item_name" "#StickerKit_comm01_backstab" + "description_string" "#StickerKit_desc_comm01_backstab" + "sticker_material" "community01/backstab" + "item_rarity" "rare" + } + "102" + { + "name" "comm01_black_king" + "item_name" "#StickerKit_comm01_black_king" + "description_string" "#StickerKit_desc_comm01_black_king" + "sticker_material" "community01/black_king" + "item_rarity" "rare" + } + "103" + { + "name" "comm01_howling_dawn" + "item_name" "#StickerKit_comm01_howling_dawn" + "description_string" "#StickerKit_desc_comm01_howling_dawn" + "sticker_material" "community01/howling_dawn" + "item_rarity" "rare" + } + "104" + { + "name" "comm01_bomb_doge" + "item_name" "#StickerKit_comm01_bomb_doge" + "description_string" "#StickerKit_desc_comm01_bomb_doge" + "sticker_material" "community01/bomb_doge" + "item_rarity" "rare" + } + "105" + { + "name" "comm01_burn_them_all" + "item_name" "#StickerKit_comm01_burn_them_all" + "description_string" "#StickerKit_desc_comm01_burn_them_all" + "sticker_material" "community01/burn_them_all" + "item_rarity" "rare" + } + "106" + { + "name" "comm01_harp_of_war" + "item_name" "#StickerKit_comm01_harp_of_war" + "description_string" "#StickerKit_desc_comm01_harp_of_war" + "sticker_material" "community01/harp_of_war" + "item_rarity" "mythical" + } + "107" + { + "name" "comm01_flammable_foil" + "item_name" "#StickerKit_comm01_flammable_foil" + "description_string" "#StickerKit_desc_comm01_flammable_foil" + "sticker_material" "community01/flammable_foil" + "item_rarity" "legendary" + } + "108" + { + "name" "comm01_headhunter_foil" + "item_name" "#StickerKit_comm01_headhunter_foil" + "description_string" "#StickerKit_desc_comm01_headhunter_foil" + "sticker_material" "community01/headhunter_foil" + "item_rarity" "legendary" + } + "109" + { + "name" "comm01_llama_cannon" + "item_name" "#StickerKit_comm01_llama_cannon" + "description_string" "#StickerKit_desc_comm01_llama_cannon" + "sticker_material" "community01/llama_cannon" + "item_rarity" "rare" + } + "110" + { + "name" "comm01_new_sheriff_foil" + "item_name" "#StickerKit_comm01_new_sheriff_foil" + "description_string" "#StickerKit_desc_comm01_new_sheriff_foil" + "sticker_material" "community01/new_sheriff_foil" + "item_rarity" "legendary" + } + "111" + { + "name" "comm01_other_awp" + "item_name" "#StickerKit_comm01_other_awp" + "description_string" "#StickerKit_desc_comm01_other_awp" + "sticker_material" "community01/other_awp" + "item_rarity" "rare" + } + "112" + { + "name" "comm01_shavemaster" + "item_name" "#StickerKit_comm01_shavemaster" + "description_string" "#StickerKit_desc_comm01_shavemaster" + "sticker_material" "community01/shavemaster" + "item_rarity" "rare" + } + "113" + { + "name" "comm01_skull" + "item_name" "#StickerKit_comm01_skull" + "description_string" "#StickerKit_desc_comm01_skull" + "sticker_material" "community01/skull" + "item_rarity" "rare" + } + "114" + { + "name" "comm01_sneaky_beaky" + "item_name" "#StickerKit_comm01_sneaky_beaky" + "description_string" "#StickerKit_desc_comm01_sneaky_beaky" + "sticker_material" "community01/sneaky_beaky" + "item_rarity" "rare" + } + "115" + { + "name" "comm01_swag_foil" + "item_name" "#StickerKit_comm01_swag_foil" + "description_string" "#StickerKit_desc_comm01_swag_foil" + "sticker_material" "community01/swag_foil" + "item_rarity" "legendary" + } + "116" + { + "name" "comm01_teamwork_holo" + "item_name" "#StickerKit_comm01_teamwork_holo" + "description_string" "#StickerKit_desc_comm01_teamwork_holo" + "sticker_material" "community01/teamwork_holo" + "item_rarity" "mythical" + } + "117" + { + "name" "comm01_to_b_or_not_to_b" + "item_name" "#StickerKit_comm01_to_b_or_not_to_b" + "description_string" "#StickerKit_desc_comm01_to_b_or_not_to_b" + "sticker_material" "community01/to_b_or_not_to_b" + "item_rarity" "rare" + } + "118" + { + "name" "comm01_winged_defuser" + "item_name" "#StickerKit_comm01_winged_defuser" + "description_string" "#StickerKit_desc_comm01_winged_defuser" + "sticker_material" "community01/winged_defuser" + "item_rarity" "rare" + } + "119" + { + "name" "comm01_pocket_bbq" + "item_name" "#StickerKit_comm01_pocket_bbq" + "description_string" "#StickerKit_desc_comm01_pocket_bbq" + "sticker_material" "community01/pocket_bbq" + "item_rarity" "rare" + } + "120" + { + "name" "comm01_death_comes" + "item_name" "#StickerKit_comm01_death_comes" + "description_string" "#StickerKit_desc_comm01_death_comes" + "sticker_material" "community01/death_comes" + "item_rarity" "rare" + } + "121" + { + "name" "comm01_rekt_holo" + "item_name" "#StickerKit_comm01_rekt_holo" + "description_string" "#StickerKit_desc_comm01_rekt_holo" + "sticker_material" "community01/rekt" + "item_rarity" "mythical" + } + "122" + { + "name" "cologne2014_cloud9" + "item_name" "#StickerKit_cologne2014_cloud9" + "description_string" "#StickerKit_desc_cologne2014_cloud9" + "sticker_material" "cologne2014/cloud9" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "33" + } + "123" + { + "name" "cologne2014_cloud9_holo" + "item_name" "#StickerKit_cologne2014_cloud9_holo" + "description_string" "#StickerKit_desc_cologne2014_cloud9_holo" + "sticker_material" "cologne2014/cloud9_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "33" + } + "124" + { + "name" "cologne2014_fnatic" + "item_name" "#StickerKit_cologne2014_fnatic" + "description_string" "#StickerKit_desc_cologne2014_fnatic" + "sticker_material" "cologne2014/fnatic" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "6" + } + "125" + { + "name" "cologne2014_fnatic_holo" + "item_name" "#StickerKit_cologne2014_fnatic_holo" + "description_string" "#StickerKit_desc_cologne2014_fnatic_holo" + "sticker_material" "cologne2014/fnatic_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "6" + } + "126" + { + "name" "cologne2014_hellraisers" + "item_name" "#StickerKit_cologne2014_hellraisers" + "description_string" "#StickerKit_desc_cologne2014_hellraisers" + "sticker_material" "cologne2014/hellraisers" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "25" + } + "127" + { + "name" "cologne2014_hellraisers_holo" + "item_name" "#StickerKit_cologne2014_hellraisers_holo" + "description_string" "#StickerKit_desc_cologne2014_hellraisers_holo" + "sticker_material" "cologne2014/hellraisers_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "25" + } + "128" + { + "name" "cologne2014_ninjasinpyjamas" + "item_name" "#StickerKit_cologne2014_ninjasinpyjamas" + "description_string" "#StickerKit_desc_cologne2014_ninjasinpyjamas" + "sticker_material" "cologne2014/ninjasinpyjamas" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "1" + } + "129" + { + "name" "cologne2014_ninjasinpyjamas_holo" + "item_name" "#StickerKit_cologne2014_ninjasinpyjamas_holo" + "description_string" "#StickerKit_desc_cologne2014_ninjasinpyjamas_holo" + "sticker_material" "cologne2014/ninjasinpyjamas_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "1" + } + "130" + { + "name" "cologne2014_teamdignitas" + "item_name" "#StickerKit_cologne2014_teamdignitas" + "description_string" "#StickerKit_desc_cologne2014_teamdignitas" + "sticker_material" "cologne2014/teamdignitas" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "24" + } + "131" + { + "name" "cologne2014_teamdignitas_holo" + "item_name" "#StickerKit_cologne2014_teamdignitas_holo" + "description_string" "#StickerKit_desc_cologne2014_teamdignitas_holo" + "sticker_material" "cologne2014/teamdignitas_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "24" + } + "132" + { + "name" "cologne2014_teamldlc" + "item_name" "#StickerKit_cologne2014_teamldlc" + "description_string" "#StickerKit_desc_cologne2014_teamldlc" + "sticker_material" "cologne2014/teamldlc" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "26" + } + "133" + { + "name" "cologne2014_teamldlc_holo" + "item_name" "#StickerKit_cologne2014_teamldlc_holo" + "description_string" "#StickerKit_desc_cologne2014_teamldlc_holo" + "sticker_material" "cologne2014/teamldlc_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "26" + } + "134" + { + "name" "cologne2014_virtuspro" + "item_name" "#StickerKit_cologne2014_virtuspro" + "description_string" "#StickerKit_desc_cologne2014_virtuspro" + "sticker_material" "cologne2014/virtuspro" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "31" + } + "135" + { + "name" "cologne2014_virtuspro_holo" + "item_name" "#StickerKit_cologne2014_virtuspro_holo" + "description_string" "#StickerKit_desc_cologne2014_virtuspro_holo" + "sticker_material" "cologne2014/virtuspro_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "31" + } + "136" + { + "name" "cologne2014_copenhagenwolves" + "item_name" "#StickerKit_cologne2014_copenhagenwolves" + "description_string" "#StickerKit_desc_cologne2014_copenhagenwolves" + "sticker_material" "cologne2014/copenhagenwolves" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "10" + } + "137" + { + "name" "cologne2014_copenhagenwolves_holo" + "item_name" "#StickerKit_cologne2014_copenhagenwolves_holo" + "description_string" "#StickerKit_desc_cologne2014_copenhagenwolves_holo" + "sticker_material" "cologne2014/copenhagenwolves_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "10" + } + "138" + { + "name" "cologne2014_datteam" + "item_name" "#StickerKit_cologne2014_datteam" + "description_string" "#StickerKit_desc_cologne2014_datteam" + "sticker_material" "cologne2014/datteam" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "34" + } + "139" + { + "name" "cologne2014_datteam_holo" + "item_name" "#StickerKit_cologne2014_datteam_holo" + "description_string" "#StickerKit_desc_cologne2014_datteam_holo" + "sticker_material" "cologne2014/datteam_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "34" + } + "140" + { + "name" "cologne2014_epsilonesports" + "item_name" "#StickerKit_cologne2014_epsilonesports" + "description_string" "#StickerKit_desc_cologne2014_epsilonesports" + "sticker_material" "cologne2014/epsilonesports" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "35" + } + "141" + { + "name" "cologne2014_epsilonesports_holo" + "item_name" "#StickerKit_cologne2014_epsilonesports_holo" + "description_string" "#StickerKit_desc_cologne2014_epsilonesports_holo" + "sticker_material" "cologne2014/epsilonesports_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "35" + } + "142" + { + "name" "cologne2014_ibuypower" + "item_name" "#StickerKit_cologne2014_ibuypower" + "description_string" "#StickerKit_desc_cologne2014_ibuypower" + "sticker_material" "cologne2014/ibuypower" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "5" + } + "143" + { + "name" "cologne2014_ibuypower_holo" + "item_name" "#StickerKit_cologne2014_ibuypower_holo" + "description_string" "#StickerKit_desc_cologne2014_ibuypower_holo" + "sticker_material" "cologne2014/ibuypower_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "5" + } + "144" + { + "name" "cologne2014_londonconspiracy" + "item_name" "#StickerKit_cologne2014_londonconspiracy" + "description_string" "#StickerKit_desc_cologne2014_londonconspiracy" + "sticker_material" "cologne2014/londonconspiracy" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "36" + } + "145" + { + "name" "cologne2014_londonconspiracy_holo" + "item_name" "#StickerKit_cologne2014_londonconspiracy_holo" + "description_string" "#StickerKit_desc_cologne2014_londonconspiracy_holo" + "sticker_material" "cologne2014/londonconspiracy_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "36" + } + "146" + { + "name" "cologne2014_navi" + "item_name" "#StickerKit_cologne2014_navi" + "description_string" "#StickerKit_desc_cologne2014_navi" + "sticker_material" "cologne2014/navi" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "12" + } + "147" + { + "name" "cologne2014_navi_holo" + "item_name" "#StickerKit_cologne2014_navi_holo" + "description_string" "#StickerKit_desc_cologne2014_navi_holo" + "sticker_material" "cologne2014/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "12" + } + "148" + { + "name" "cologne2014_titan" + "item_name" "#StickerKit_cologne2014_titan" + "description_string" "#StickerKit_desc_cologne2014_titan" + "sticker_material" "cologne2014/titan" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "27" + } + "149" + { + "name" "cologne2014_titan_holo" + "item_name" "#StickerKit_cologne2014_titan_holo" + "description_string" "#StickerKit_desc_cologne2014_titan_holo" + "sticker_material" "cologne2014/titan_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "27" + } + "150" + { + "name" "cologne2014_voxeminor" + "item_name" "#StickerKit_cologne2014_voxeminor" + "description_string" "#StickerKit_desc_cologne2014_voxeminor" + "sticker_material" "cologne2014/voxeminor" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "32" + } + "151" + { + "name" "cologne2014_voxeminor_holo" + "item_name" "#StickerKit_cologne2014_voxeminor_holo" + "description_string" "#StickerKit_desc_cologne2014_voxeminor_holo" + "sticker_material" "cologne2014/voxeminor_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "32" + } + "152" + { + "name" "cologne2014_wolf" + "item_name" "#StickerKit_cologne2014_wolf" + "description_string" "#StickerKit_desc_cologne2014_wolf" + "sticker_material" "cologne2014/wolf" + "item_rarity" "rare" + "tournament_event_id" "4" + "tournament_team_id" "37" + } + "153" + { + "name" "cologne2014_wolf_holo" + "item_name" "#StickerKit_cologne2014_wolf_holo" + "description_string" "#StickerKit_desc_cologne2014_wolf_holo" + "sticker_material" "cologne2014/wolf_holo" + "item_rarity" "mythical" + "tournament_event_id" "4" + "tournament_team_id" "37" + } + "154" + { + "name" "cologne2014_esl_a" + "item_name" "#StickerKit_cologne2014_esl_a" + "description_string" "#StickerKit_desc_cologne2014_esl_a" + "sticker_material" "cologne2014/esl_a" + "item_rarity" "legendary" + "tournament_event_id" "4" + } + "155" + { + "name" "cologne2014_esl_b" + "item_name" "#StickerKit_cologne2014_esl_b" + "description_string" "#StickerKit_desc_cologne2014_esl_b" + "sticker_material" "cologne2014/esl_b" + "item_rarity" "legendary" + "tournament_event_id" "4" + } + "156" + { + "name" "cologne2014_cloud9_foil" + "item_name" "#StickerKit_cologne2014_cloud9_foil" + "description_string" "#StickerKit_desc_cologne2014_cloud9_foil" + "sticker_material" "cologne2014/cloud9_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "33" + } + "157" + { + "name" "cologne2014_fnatic_foil" + "item_name" "#StickerKit_cologne2014_fnatic_foil" + "description_string" "#StickerKit_desc_cologne2014_fnatic_foil" + "sticker_material" "cologne2014/fnatic_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "6" + } + "158" + { + "name" "cologne2014_hellraisers_foil" + "item_name" "#StickerKit_cologne2014_hellraisers_foil" + "description_string" "#StickerKit_desc_cologne2014_hellraisers_foil" + "sticker_material" "cologne2014/hellraisers_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "25" + } + "159" + { + "name" "cologne2014_ninjasinpyjamas_foil" + "item_name" "#StickerKit_cologne2014_ninjasinpyjamas_foil" + "description_string" "#StickerKit_desc_cologne2014_ninjasinpyjamas_foil" + "sticker_material" "cologne2014/ninjasinpyjamas_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "1" + } + "160" + { + "name" "cologne2014_teamdignitas_foil" + "item_name" "#StickerKit_cologne2014_teamdignitas_foil" + "description_string" "#StickerKit_desc_cologne2014_teamdignitas_foil" + "sticker_material" "cologne2014/teamdignitas_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "24" + } + "161" + { + "name" "cologne2014_teamldlc_foil" + "item_name" "#StickerKit_cologne2014_teamldlc_foil" + "description_string" "#StickerKit_desc_cologne2014_teamldlc_foil" + "sticker_material" "cologne2014/teamldlc_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "26" + } + "162" + { + "name" "cologne2014_virtuspro_foil" + "item_name" "#StickerKit_cologne2014_virtuspro_foil" + "description_string" "#StickerKit_desc_cologne2014_virtuspro_foil" + "sticker_material" "cologne2014/virtuspro_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "31" + } + "163" + { + "name" "cologne2014_copenhagenwolves_foil" + "item_name" "#StickerKit_cologne2014_copenhagenwolves_foil" + "description_string" "#StickerKit_desc_cologne2014_copenhagenwolves_foil" + "sticker_material" "cologne2014/copenhagenwolves_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "10" + } + "164" + { + "name" "cologne2014_datteam_foil" + "item_name" "#StickerKit_cologne2014_datteam_foil" + "description_string" "#StickerKit_desc_cologne2014_datteam_foil" + "sticker_material" "cologne2014/datteam_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "34" + } + "165" + { + "name" "cologne2014_epsilonesports_foil" + "item_name" "#StickerKit_cologne2014_epsilonesports_foil" + "description_string" "#StickerKit_desc_cologne2014_epsilonesports_foil" + "sticker_material" "cologne2014/epsilonesports_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "35" + } + "166" + { + "name" "cologne2014_ibuypower_foil" + "item_name" "#StickerKit_cologne2014_ibuypower_foil" + "description_string" "#StickerKit_desc_cologne2014_ibuypower_foil" + "sticker_material" "cologne2014/ibuypower_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "5" + } + "167" + { + "name" "cologne2014_londonconspiracy_foil" + "item_name" "#StickerKit_cologne2014_londonconspiracy_foil" + "description_string" "#StickerKit_desc_cologne2014_londonconspiracy_foil" + "sticker_material" "cologne2014/londonconspiracy_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "36" + } + "168" + { + "name" "cologne2014_navi_foil" + "item_name" "#StickerKit_cologne2014_navi_foil" + "description_string" "#StickerKit_desc_cologne2014_navi_foil" + "sticker_material" "cologne2014/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "12" + } + "169" + { + "name" "cologne2014_titan_foil" + "item_name" "#StickerKit_cologne2014_titan_foil" + "description_string" "#StickerKit_desc_cologne2014_titan_foil" + "sticker_material" "cologne2014/titan_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "27" + } + "170" + { + "name" "cologne2014_voxeminor_foil" + "item_name" "#StickerKit_cologne2014_voxeminor_foil" + "description_string" "#StickerKit_desc_cologne2014_voxeminor_foil" + "sticker_material" "cologne2014/voxeminor_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "32" + } + "171" + { + "name" "cologne2014_wolf_foil" + "item_name" "#StickerKit_cologne2014_wolf_foil" + "description_string" "#StickerKit_desc_cologne2014_wolf_foil" + "sticker_material" "cologne2014/wolf_foil" + "item_rarity" "legendary" + "tournament_event_id" "4" + "tournament_team_id" "37" + } + "172" + { + "name" "cologne2014_esl_c" + "item_name" "#StickerKit_cologne2014_esl_c" + "description_string" "#StickerKit_desc_cologne2014_esl_c" + "sticker_material" "cologne2014/esl_c" + "item_rarity" "legendary" + "tournament_event_id" "4" + } + "173" + { + "name" "bossyburger" + "item_name" "#StickerKit_comm02_bossyburger" + "description_string" "#StickerKit_desc_comm02_bossyburger" + "sticker_material" "community02/bossyburger" + "item_rarity" "rare" + } + "174" + { + "name" "catcall" + "item_name" "#StickerKit_comm02_catcall" + "description_string" "#StickerKit_desc_comm02_catcall" + "sticker_material" "community02/catcall" + "item_rarity" "rare" + } + "175" + { + "name" "chickenstrike" + "item_name" "#StickerKit_comm02_chickenstrike" + "description_string" "#StickerKit_desc_comm02_chickenstrike" + "sticker_material" "community02/chickenstrike" + "item_rarity" "rare" + } + "176" + { + "name" "ctbanana" + "item_name" "#StickerKit_comm02_ctbanana" + "description_string" "#StickerKit_desc_comm02_ctbanana" + "sticker_material" "community02/ctbanana" + "item_rarity" "rare" + } + "177" + { + "name" "dontworryimpro" + "item_name" "#StickerKit_comm02_dontworryimpro" + "description_string" "#StickerKit_desc_comm02_dontworryimpro" + "sticker_material" "community02/dontworryimpro" + "item_rarity" "rare" + } + "178" + { + "name" "fightlikeagirl" + "item_name" "#StickerKit_comm02_fightlikeagirl" + "description_string" "#StickerKit_desc_comm02_fightlikeagirl" + "sticker_material" "community02/fightlikeagirl" + "item_rarity" "rare" + } + "179" + { + "name" "handmadeflash" + "item_name" "#StickerKit_comm02_handmadeflash" + "description_string" "#StickerKit_desc_comm02_handmadeflash" + "sticker_material" "community02/handmadeflash" + "item_rarity" "rare" + } + "180" + { + "name" "kawaiikiller" + "item_name" "#StickerKit_comm02_kawaiikiller" + "description_string" "#StickerKit_desc_comm02_kawaiikiller" + "sticker_material" "community02/kawaiikiller" + "item_rarity" "rare" + } + "181" + { + "name" "neluthebear" + "item_name" "#StickerKit_comm02_neluthebear" + "description_string" "#StickerKit_desc_comm02_neluthebear" + "sticker_material" "community02/neluthebear" + "item_rarity" "rare" + } + "182" + { + "name" "oneshotonekill" + "item_name" "#StickerKit_comm02_oneshotonekill" + "description_string" "#StickerKit_desc_comm02_oneshotonekill" + "sticker_material" "community02/oneshotonekill" + "item_rarity" "rare" + } + "183" + { + "name" "shootingstar" + "item_name" "#StickerKit_comm02_shootingstar" + "description_string" "#StickerKit_desc_comm02_shootingstar" + "sticker_material" "community02/shootingstar" + "item_rarity" "rare" + } + "184" + { + "name" "toncat" + "item_name" "#StickerKit_comm02_toncat" + "description_string" "#StickerKit_desc_comm02_toncat" + "sticker_material" "community02/toncat" + "item_rarity" "rare" + } + "185" + { + "name" "warpenguin" + "item_name" "#StickerKit_comm02_warpenguin" + "description_string" "#StickerKit_desc_comm02_warpenguin" + "sticker_material" "community02/warpenguin" + "item_rarity" "rare" + } + "186" + { + "name" "windywalking" + "item_name" "#StickerKit_comm02_windywalking" + "description_string" "#StickerKit_desc_comm02_windywalking" + "sticker_material" "community02/windywalking" + "item_rarity" "rare" + } + "187" + { + "name" "blitzkrieg" + "item_name" "#StickerKit_comm02_blitzkrieg" + "description_string" "#StickerKit_desc_comm02_blitzkrieg" + "sticker_material" "community02/blitzkrieg" + "item_rarity" "rare" + } + "188" + { + "name" "pigeonmaster" + "item_name" "#StickerKit_comm02_pigeonmaster" + "description_string" "#StickerKit_desc_comm02_pigeonmaster" + "sticker_material" "community02/pigeonmaster" + "item_rarity" "rare" + } + "189" + { + "name" "terrorized" + "item_name" "#StickerKit_comm02_terrorized" + "description_string" "#StickerKit_desc_comm02_terrorized" + "sticker_material" "community02/terrorized" + "item_rarity" "rare" + } + "190" + { + "name" "tilldeathdouspart" + "item_name" "#StickerKit_comm02_tilldeathdouspart" + "description_string" "#StickerKit_desc_comm02_tilldeathdouspart" + "sticker_material" "community02/tilldeathdouspart" + "item_rarity" "rare" + } + "191" + { + "name" "stayfrosty" + "item_name" "#StickerKit_comm02_stayfrosty" + "description_string" "#StickerKit_desc_comm02_stayfrosty" + "sticker_material" "community02/stayfrosty" + "item_rarity" "rare" + } + "192" + { + "name" "doomed" + "item_name" "#StickerKit_comm02_doomed" + "description_string" "#StickerKit_desc_comm02_doomed" + "sticker_material" "community02/doomed" + "item_rarity" "rare" + } + "193" + { + "name" "queenofpain" + "item_name" "#StickerKit_comm02_queenofpain" + "description_string" "#StickerKit_desc_comm02_queenofpain" + "sticker_material" "community02/queenofpain" + "item_rarity" "rare" + } + "194" + { + "name" "trickorthreat" + "item_name" "#StickerKit_comm02_trickorthreat" + "description_string" "#StickerKit_desc_comm02_trickorthreat" + "sticker_material" "community02/trickorthreat" + "item_rarity" "rare" + } + "195" + { + "name" "trickortreat" + "item_name" "#StickerKit_comm02_trickortreat" + "description_string" "#StickerKit_desc_comm02_trickortreat" + "sticker_material" "community02/trickortreat" + "item_rarity" "rare" + } + "196" + { + "name" "witch" + "item_name" "#StickerKit_comm02_witch" + "description_string" "#StickerKit_desc_comm02_witch" + "sticker_material" "community02/witch" + "item_rarity" "rare" + } + "197" + { + "name" "zombielover" + "item_name" "#StickerKit_comm02_zombielover" + "description_string" "#StickerKit_desc_comm02_zombielover" + "sticker_material" "community02/zombielover" + "item_rarity" "rare" + } + "198" + { + "name" "dhw2014_fnatic" + "item_name" "#StickerKit_dhw2014_fnatic" + "description_string" "#StickerKit_desc_dhw2014_fnatic" + "sticker_material" "dhw2014/fnatic" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "6" + } + "199" + { + "name" "dhw2014_fnatic_holo" + "item_name" "#StickerKit_dhw2014_fnatic_holo" + "description_string" "#StickerKit_desc_dhw2014_fnatic_holo" + "sticker_material" "dhw2014/fnatic_holo" + "item_rarity" "mythical" + "tournament_event_id" "5" + "tournament_team_id" "6" + } + "200" + { + "name" "dhw2014_fnatic_foil" + "item_name" "#StickerKit_dhw2014_fnatic_foil" + "description_string" "#StickerKit_desc_dhw2014_fnatic_foil" + "sticker_material" "dhw2014/fnatic_foil" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "6" + } + "201" + { + "name" "dhw2014_cloud9" + "item_name" "#StickerKit_dhw2014_cloud9" + "description_string" "#StickerKit_desc_dhw2014_cloud9" + "sticker_material" "dhw2014/cloud9" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "33" + } + "202" + { + "name" "dhw2014_cloud9_holo" + "item_name" "#StickerKit_dhw2014_cloud9_holo" + "description_string" "#StickerKit_desc_dhw2014_cloud9_holo" + "sticker_material" "dhw2014/cloud9_holo" + "item_rarity" "mythical" + "tournament_event_id" "5" + "tournament_team_id" "33" + } + "203" + { + "name" "dhw2014_cloud9_foil" + "item_name" "#StickerKit_dhw2014_cloud9_foil" + "description_string" "#StickerKit_desc_dhw2014_cloud9_foil" + "sticker_material" "dhw2014/cloud9_foil" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "33" + } + "207" + { + "name" "dhw2014_virtuspro" + "item_name" "#StickerKit_dhw2014_virtuspro" + "description_string" "#StickerKit_desc_dhw2014_virtuspro" + "sticker_material" "dhw2014/virtuspro" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "31" + } + "208" + { + "name" "dhw2014_virtuspro_holo" + "item_name" "#StickerKit_dhw2014_virtuspro_holo" + "description_string" "#StickerKit_desc_dhw2014_virtuspro_holo" + "sticker_material" "dhw2014/virtuspro_holo" + "item_rarity" "mythical" + "tournament_event_id" "5" + "tournament_team_id" "31" + } + "209" + { + "name" "dhw2014_virtuspro_foil" + "item_name" "#StickerKit_dhw2014_virtuspro_foil" + "description_string" "#StickerKit_desc_dhw2014_virtuspro_foil" + "sticker_material" "dhw2014/virtuspro_foil" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "31" + } + "210" + { + "name" "dhw2014_ninjasinpyjamas" + "item_name" "#StickerKit_dhw2014_ninjasinpyjamas" + "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas" + "sticker_material" "dhw2014/ninjasinpyjamas" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "1" + } + "211" + { + "name" "dhw2014_ninjasinpyjamas_holo" + "item_name" "#StickerKit_dhw2014_ninjasinpyjamas_holo" + "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas_holo" + "sticker_material" "dhw2014/ninjasinpyjamas_holo" + "item_rarity" "mythical" + "tournament_event_id" "5" + "tournament_team_id" "1" + } + "212" + { + "name" "dhw2014_ninjasinpyjamas_foil" + "item_name" "#StickerKit_dhw2014_ninjasinpyjamas_foil" + "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas_foil" + "sticker_material" "dhw2014/ninjasinpyjamas_foil" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "1" + } + "213" + { + "name" "dhw2014_navi" + "item_name" "#StickerKit_dhw2014_navi" + "description_string" "#StickerKit_desc_dhw2014_navi" + "sticker_material" "dhw2014/navi" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "12" + } + "214" + { + "name" "dhw2014_navi_holo" + "item_name" "#StickerKit_dhw2014_navi_holo" + "description_string" "#StickerKit_desc_dhw2014_navi_holo" + "sticker_material" "dhw2014/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "5" + "tournament_team_id" "12" + } + "215" + { + "name" "dhw2014_navi_foil" + "item_name" "#StickerKit_dhw2014_navi_foil" + "description_string" "#StickerKit_desc_dhw2014_navi_foil" + "sticker_material" "dhw2014/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "12" + } + "219" + { + "name" "dhw2014_dignitas" + "item_name" "#StickerKit_dhw2014_teamdignitas" + "description_string" "#StickerKit_desc_dhw2014_teamdignitas" + "sticker_material" "dhw2014/dignitas" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "24" + } + "220" + { + "name" "dhw2014_dignitas_holo" + "item_name" "#StickerKit_dhw2014_teamdignitas_holo" + "description_string" "#StickerKit_desc_dhw2014_teamdignitas_holo" + "sticker_material" "dhw2014/dignitas_holo" + "item_rarity" "mythical" + "tournament_event_id" "5" + "tournament_team_id" "24" + } + "221" + { + "name" "dhw2014_dignitas_foil" + "item_name" "#StickerKit_dhw2014_teamdignitas_foil" + "description_string" "#StickerKit_desc_dhw2014_teamdignitas_foil" + "sticker_material" "dhw2014/dignitas_foil" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "24" + } + "222" + { + "name" "dhw2014_bravadogaming" + "item_name" "#StickerKit_dhw2014_bravadogaming" + "description_string" "#StickerKit_desc_dhw2014_bravadogaming" + "sticker_material" "dhw2014/bravadogaming" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "40" + } + "223" + { + "name" "dhw2014_escgaming" + "item_name" "#StickerKit_dhw2014_escgaming" + "description_string" "#StickerKit_desc_dhw2014_escgaming" + "sticker_material" "dhw2014/escgaming" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "42" + } + "224" + { + "name" "dhw2014_hellraisers" + "item_name" "#StickerKit_dhw2014_hellraisers" + "description_string" "#StickerKit_desc_dhw2014_hellraisers" + "sticker_material" "dhw2014/hellraisers" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "25" + } + "225" + { + "name" "dhw2014_ibuypower" + "item_name" "#StickerKit_dhw2014_ibuypower" + "description_string" "#StickerKit_desc_dhw2014_ibuypower" + "sticker_material" "dhw2014/ibuypower" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "5" + } + "226" + { + "name" "dhw2014_pentasports" + "item_name" "#StickerKit_dhw2014_pentasports" + "description_string" "#StickerKit_desc_dhw2014_pentasports" + "sticker_material" "dhw2014/pentasports" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "39" + } + "227" + { + "name" "dhw2014_planetkeydynamics" + "item_name" "#StickerKit_dhw2014_planetkeydynamics" + "description_string" "#StickerKit_desc_dhw2014_planetkeydynamics" + "sticker_material" "dhw2014/planetkeydynamics" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "41" + } + "228" + { + "name" "dhw2014_teamldlc" + "item_name" "#StickerKit_dhw2014_teamldlc" + "description_string" "#StickerKit_desc_dhw2014_teamldlc" + "sticker_material" "dhw2014/teamldlc" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "26" + } + "229" + { + "name" "dhw2014_myxmg" + "item_name" "#StickerKit_dhw2014_myxmg" + "description_string" "#StickerKit_desc_dhw2014_myxmg" + "sticker_material" "dhw2014/myxmg" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "38" + } + "230" + { + "name" "dhw2014_dhw" + "item_name" "#StickerKit_dhw2014_dhw" + "description_string" "#StickerKit_desc_dhw2014_dhw" + "sticker_material" "dhw2014/dreamhackwinter2014" + "item_rarity" "rare" + "tournament_event_id" "5" + } + "231" + { + "name" "dhw2014_dhw_foil" + "item_name" "#StickerKit_dhw2014_dhw_foil" + "description_string" "#StickerKit_desc_dhw2014_dhw_foil" + "sticker_material" "dhw2014/dreamhackwinter2014_foil" + "item_rarity" "legendary" + "tournament_event_id" "5" + } + "232" + { + "name" "dhw2014_3dmax" + "item_name" "#StickerKit_dhw2014_3dmax" + "description_string" "#StickerKit_desc_dhw2014_3dmax" + "sticker_material" "dhw2014/3dmax" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "28" + } + "233" + { + "name" "dhw2014_copenhagenwolves" + "item_name" "#StickerKit_dhw2014_copenhagenwolves" + "description_string" "#StickerKit_desc_dhw2014_copenhagenwolves" + "sticker_material" "dhw2014/copenhagenwolves" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "10" + } + "234" + { + "name" "dhw2014_datteam" + "item_name" "#StickerKit_dhw2014_datteam" + "description_string" "#StickerKit_desc_dhw2014_datteam" + "sticker_material" "dhw2014/datteam" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "34" + } + "235" + { + "name" "dhw2014_londonconspiracy" + "item_name" "#StickerKit_dhw2014_londonconspiracy" + "description_string" "#StickerKit_desc_dhw2014_londonconspiracy" + "sticker_material" "dhw2014/londonconspiracy" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "36" + } + "236" + { + "name" "dhw2014_mousesports" + "item_name" "#StickerKit_dhw2014_mousesports" + "description_string" "#StickerKit_desc_dhw2014_mousesports" + "sticker_material" "dhw2014/mousesports" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "29" + } + "237" + { + "name" "dhw2014_3dmax_gold" + "item_name" "#StickerKit_dhw2014_3dmax_gold" + "description_string" "#StickerKit_desc_dhw2014_3dmax_gold" + "sticker_material" "dhw2014/3dmax_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "28" + } + "238" + { + "name" "dhw2014_bravadogaming_gold" + "item_name" "#StickerKit_dhw2014_bravadogaming_gold" + "description_string" "#StickerKit_desc_dhw2014_bravadogaming_gold" + "sticker_material" "dhw2014/bravadogaming_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "40" + } + "239" + { + "name" "dhw2014_cloud9_gold" + "item_name" "#StickerKit_dhw2014_cloud9_gold" + "description_string" "#StickerKit_desc_dhw2014_cloud9_gold" + "sticker_material" "dhw2014/cloud9_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "33" + } + "240" + { + "name" "dhw2014_copenhagenwolves_gold" + "item_name" "#StickerKit_dhw2014_copenhagenwolves_gold" + "description_string" "#StickerKit_desc_dhw2014_copenhagenwolves_gold" + "sticker_material" "dhw2014/copenhagenwolves_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "10" + } + "241" + { + "name" "dhw2014_datteam_gold" + "item_name" "#StickerKit_dhw2014_datteam_gold" + "description_string" "#StickerKit_desc_dhw2014_datteam_gold" + "sticker_material" "dhw2014/datteam_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "34" + } + "242" + { + "name" "dhw2014_dignitas_gold" + "item_name" "#StickerKit_dhw2014_dignitas_gold" + "description_string" "#StickerKit_desc_dhw2014_dignitas_gold" + "sticker_material" "dhw2014/dignitas_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "24" + } + "243" + { + "name" "dhw2014_escgaming_gold" + "item_name" "#StickerKit_dhw2014_escgaming_gold" + "description_string" "#StickerKit_desc_dhw2014_escgaming_gold" + "sticker_material" "dhw2014/escgaming_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "42" + } + "244" + { + "name" "dhw2014_fnatic_gold" + "item_name" "#StickerKit_dhw2014_fnatic_gold" + "description_string" "#StickerKit_desc_dhw2014_fnatic_gold" + "sticker_material" "dhw2014/fnatic_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "6" + } + "245" + { + "name" "dhw2014_hellraisers_gold" + "item_name" "#StickerKit_dhw2014_hellraisers_gold" + "description_string" "#StickerKit_desc_dhw2014_hellraisers_gold" + "sticker_material" "dhw2014/hellraisers_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "25" + } + "246" + { + "name" "dhw2014_ibuypower_gold" + "item_name" "#StickerKit_dhw2014_ibuypower_gold" + "description_string" "#StickerKit_desc_dhw2014_ibuypower_gold" + "sticker_material" "dhw2014/ibuypower_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "5" + } + "247" + { + "name" "dhw2014_londonconspiracy_gold" + "item_name" "#StickerKit_dhw2014_londonconspiracy_gold" + "description_string" "#StickerKit_desc_dhw2014_londonconspiracy_gold" + "sticker_material" "dhw2014/londonconspiracy_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "36" + } + "248" + { + "name" "dhw2014_mousesports_gold" + "item_name" "#StickerKit_dhw2014_mousesports_gold" + "description_string" "#StickerKit_desc_dhw2014_mousesports_gold" + "sticker_material" "dhw2014/mousesports_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "29" + } + "249" + { + "name" "dhw2014_myxmg_gold" + "item_name" "#StickerKit_dhw2014_myxmg_gold" + "description_string" "#StickerKit_desc_dhw2014_myxmg_gold" + "sticker_material" "dhw2014/myxmg_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "38" + } + "250" + { + "name" "dhw2014_navi_gold" + "item_name" "#StickerKit_dhw2014_navi_gold" + "description_string" "#StickerKit_desc_dhw2014_navi_gold" + "sticker_material" "dhw2014/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "12" + } + "251" + { + "name" "dhw2014_ninjasinpyjamas_gold" + "item_name" "#StickerKit_dhw2014_ninjasinpyjamas_gold" + "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas_gold" + "sticker_material" "dhw2014/ninjasinpyjamas_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "1" + } + "252" + { + "name" "dhw2014_pentasports_gold" + "item_name" "#StickerKit_dhw2014_pentasports_gold" + "description_string" "#StickerKit_desc_dhw2014_pentasports_gold" + "sticker_material" "dhw2014/pentasports_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "39" + } + "253" + { + "name" "dhw2014_planetkeydynamics_gold" + "item_name" "#StickerKit_dhw2014_planetkeydynamics_gold" + "description_string" "#StickerKit_desc_dhw2014_planetkeydynamics_gold" + "sticker_material" "dhw2014/planetkeydynamics_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "41" + } + "254" + { + "name" "dhw2014_teamldlc_gold" + "item_name" "#StickerKit_dhw2014_teamldlc_gold" + "description_string" "#StickerKit_desc_dhw2014_teamldlc_gold" + "sticker_material" "dhw2014/teamldlc_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "26" + } + "255" + { + "name" "dhw2014_virtuspro_gold" + "item_name" "#StickerKit_dhw2014_virtuspro_gold" + "description_string" "#StickerKit_desc_dhw2014_virtuspro_gold" + "sticker_material" "dhw2014/virtuspro_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "31" + } + "256" + { + "name" "dhw2014_flipsid3" + "item_name" "#StickerKit_dhw2014_flipsid3" + "description_string" "#StickerKit_desc_dhw2014_flipsid3" + "sticker_material" "dhw2014/flipsid3" + "item_rarity" "rare" + "tournament_event_id" "5" + "tournament_team_id" "43" + } + "257" + { + "name" "dhw2014_flipsid3_gold" + "item_name" "#StickerKit_dhw2014_flipsid3_gold" + "description_string" "#StickerKit_desc_dhw2014_flipsid3_gold" + "sticker_material" "dhw2014/flipsid3_gold" + "item_rarity" "legendary" + "tournament_event_id" "5" + "tournament_team_id" "43" + } + "258" + { + "name" "blood_broiler" + "item_name" "#StickerKit_comm02_blood_broiler" + "description_string" "#StickerKit_desc_comm02_blood_broiler" + "sticker_material" "community02/blood_broiler" + "item_rarity" "rare" + } + "259" + { + "name" "dinked" + "item_name" "#StickerKit_comm02_dinked" + "description_string" "#StickerKit_desc_comm02_dinked" + "sticker_material" "community02/dinked" + "item_rarity" "rare" + } + "260" + { + "name" "drugwarveteran" + "item_name" "#StickerKit_comm02_drugwarveteran" + "description_string" "#StickerKit_desc_comm02_drugwarveteran" + "sticker_material" "community02/drugwarveteran" + "item_rarity" "rare" + } + "261" + { + "name" "hohoho" + "item_name" "#StickerKit_comm02_hohoho" + "description_string" "#StickerKit_desc_comm02_hohoho" + "sticker_material" "community02/hohoho" + "item_rarity" "rare" + } + "262" + { + "name" "massivepear" + "item_name" "#StickerKit_comm02_massivepear" + "description_string" "#StickerKit_desc_comm02_massivepear" + "sticker_material" "community02/massivepear" + "item_rarity" "rare" + } + "263" + { + "name" "mylittlefriend" + "item_name" "#StickerKit_comm02_mylittlefriend" + "description_string" "#StickerKit_desc_comm02_mylittlefriend" + "sticker_material" "community02/mylittlefriend" + "item_rarity" "rare" + } + "264" + { + "name" "pandamonium" + "item_name" "#StickerKit_comm02_pandamonium" + "description_string" "#StickerKit_desc_comm02_pandamonium" + "sticker_material" "community02/pandamonium" + "item_rarity" "rare" + } + "265" + { + "name" "pieceofcake" + "item_name" "#StickerKit_comm02_pieceofcake" + "description_string" "#StickerKit_desc_comm02_pieceofcake" + "sticker_material" "community02/pieceofcake" + "item_rarity" "rare" + } + "266" + { + "name" "saschicken" + "item_name" "#StickerKit_comm02_saschicken" + "description_string" "#StickerKit_desc_comm02_saschicken" + "sticker_material" "community02/saschicken" + "item_rarity" "rare" + } + "267" + { + "name" "thuglife" + "item_name" "#StickerKit_comm02_thuglife" + "description_string" "#StickerKit_desc_comm02_thuglife" + "sticker_material" "community02/thuglife" + "item_rarity" "rare" + } + "268" + { + "name" "trekt" + "item_name" "#StickerKit_comm02_trekt" + "description_string" "#StickerKit_desc_comm02_trekt" + "sticker_material" "community02/trekt" + "item_rarity" "rare" + } + "269" + { + "name" "warowl" + "item_name" "#StickerKit_comm02_warowl" + "description_string" "#StickerKit_desc_comm02_warowl" + "sticker_material" "community02/warowl" + "item_rarity" "rare" + } + "270" + { + "name" "workforfood" + "item_name" "#StickerKit_comm02_workforfood" + "description_string" "#StickerKit_desc_comm02_workforfood" + "sticker_material" "community02/workforfood" + "item_rarity" "rare" + } + "271" + { + "name" "phoenix_foil" + "item_name" "#StickerKit_comm02_phoenix_foil" + "description_string" "#StickerKit_desc_comm02_phoenix_foil" + "sticker_material" "community02/phoenix_foil" + "item_rarity" "rare" + } + "272" + { + "name" "bombsquad_foil" + "item_name" "#StickerKit_comm02_bombsquad_foil" + "description_string" "#StickerKit_desc_comm02_bombsquad_foil" + "sticker_material" "community02/bombsquad_foil" + "item_rarity" "rare" + } + "273" + { + "name" "flickshot" + "item_name" "#StickerKit_comm02_flickshot" + "description_string" "#StickerKit_desc_comm02_flickshot" + "sticker_material" "community02/flickshot" + "item_rarity" "rare" + } + "274" + { + "name" "headshot_guarantee" + "item_name" "#StickerKit_comm02_headshot_guarantee" + "description_string" "#StickerKit_desc_comm02_headshot_guarantee" + "sticker_material" "community02/headshot_guarantee" + "item_rarity" "rare" + } + "275" + { + "name" "eco_rush" + "item_name" "#StickerKit_comm02_eco_rush" + "description_string" "#StickerKit_desc_comm02_eco_rush" + "sticker_material" "community02/eco_rush" + "item_rarity" "rare" + } + "276" + { + "name" "just_trolling" + "item_name" "#StickerKit_comm02_just_trolling" + "description_string" "#StickerKit_desc_comm02_just_trolling" + "sticker_material" "community02/just_trolling" + "item_rarity" "rare" + } + "278" + { + "name" "firestarter_holo" + "item_name" "#StickerKit_comm02_firestarter_holo" + "description_string" "#StickerKit_desc_comm02_firestarter_holo" + "sticker_material" "community02/firestarter_holo" + "item_rarity" "rare" + } + "279" + { + "name" "lucky_cat_foil" + "item_name" "#StickerKit_comm02_lucky_cat_foil" + "description_string" "#StickerKit_desc_comm02_lucky_cat_foil" + "sticker_material" "community02/lucky_cat_foil" + "item_rarity" "rare" + } + "280" + { + "name" "robot_head" + "item_name" "#StickerKit_comm02_robot_head" + "description_string" "#StickerKit_desc_comm02_robot_head" + "sticker_material" "community02/robot_head" + "item_rarity" "rare" + } + "281" + { + "name" "witchcraft" + "item_name" "#StickerKit_comm02_witchcraft" + "description_string" "#StickerKit_desc_comm02_witchcraft" + "sticker_material" "community02/witchcraft" + "item_rarity" "rare" + } + "282" + { + "name" "wanna_fight" + "item_name" "#StickerKit_comm02_wanna_fight" + "description_string" "#StickerKit_desc_comm02_wanna_fight" + "sticker_material" "community02/wanna_fight" + "item_rarity" "rare" + } + "283" + { + "name" "hostage_rescue" + "item_name" "#StickerKit_comm02_hostage_rescue" + "description_string" "#StickerKit_desc_comm02_hostage_rescue" + "sticker_material" "community02/hostage_rescue" + "item_rarity" "rare" + } + "284" + { + "name" "hamster_hawk" + "item_name" "#StickerKit_comm02_hamster_hawk" + "description_string" "#StickerKit_desc_comm02_hamster_hawk" + "sticker_material" "community02/hamster_hawk" + "item_rarity" "rare" + } + "285" + { + "name" "headless_chicken" + "item_name" "#StickerKit_comm02_headless_chicken" + "description_string" "#StickerKit_desc_comm02_headless_chicken" + "sticker_material" "community02/headless_chicken" + "item_rarity" "rare" + } + "286" + { + "name" "eslkatowice2015_3dmax" + "item_name" "#StickerKit_eslkatowice2015_3dmax" + "description_string" "#StickerKit_desc_eslkatowice2015_3dmax" + "sticker_material" "eslkatowice2015/3dmax" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "28" + } + "287" + { + "name" "eslkatowice2015_3dmax_holo" + "item_name" "#StickerKit_eslkatowice2015_3dmax_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_3dmax_holo" + "sticker_material" "eslkatowice2015/3dmax_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "28" + } + "288" + { + "name" "eslkatowice2015_3dmax_foil" + "item_name" "#StickerKit_eslkatowice2015_3dmax_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_3dmax_foil" + "sticker_material" "eslkatowice2015/3dmax_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "28" + } + "289" + { + "name" "eslkatowice2015_3dmax_gold" + "item_name" "#StickerKit_eslkatowice2015_3dmax_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_3dmax_gold" + "sticker_material" "eslkatowice2015/3dmax_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "28" + } + "290" + { + "name" "eslkatowice2015_cloud9" + "item_name" "#StickerKit_eslkatowice2015_cloud9" + "description_string" "#StickerKit_desc_eslkatowice2015_cloud9" + "sticker_material" "eslkatowice2015/cloud9" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "52" + } + "291" + { + "name" "eslkatowice2015_cloud9_holo" + "item_name" "#StickerKit_eslkatowice2015_cloud9_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_cloud9_holo" + "sticker_material" "eslkatowice2015/cloud9_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "52" + } + "292" + { + "name" "eslkatowice2015_cloud9_foil" + "item_name" "#StickerKit_eslkatowice2015_cloud9_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_cloud9_foil" + "sticker_material" "eslkatowice2015/cloud9_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "52" + } + "293" + { + "name" "eslkatowice2015_cloud9_gold" + "item_name" "#StickerKit_eslkatowice2015_cloud9_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_cloud9_gold" + "sticker_material" "eslkatowice2015/cloud9_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "52" + } + "294" + { + "name" "eslkatowice2015_counterlogic" + "item_name" "#StickerKit_eslkatowice2015_counterlogic" + "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic" + "sticker_material" "eslkatowice2015/counterlogic" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "49" + } + "295" + { + "name" "eslkatowice2015_counterlogic_holo" + "item_name" "#StickerKit_eslkatowice2015_counterlogic_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic_holo" + "sticker_material" "eslkatowice2015/counterlogic_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "49" + } + "296" + { + "name" "eslkatowice2015_counterlogic_foil" + "item_name" "#StickerKit_eslkatowice2015_counterlogic_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic_foil" + "sticker_material" "eslkatowice2015/counterlogic_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "49" + } + "297" + { + "name" "eslkatowice2015_counterlogic_gold" + "item_name" "#StickerKit_eslkatowice2015_counterlogic_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic_gold" + "sticker_material" "eslkatowice2015/counterlogic_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "49" + } + "300" + { + "name" "eslkatowice2015_esl_a_foil" + "item_name" "#StickerKit_eslkatowice2015_esl_a_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_esl_a_foil" + "sticker_material" "eslkatowice2015/esl_a_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + } + "301" + { + "name" "eslkatowice2015_esl_a_gold" + "item_name" "#StickerKit_eslkatowice2015_esl_a_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_esl_a_gold" + "sticker_material" "eslkatowice2015/esl_a_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + } + "302" + { + "name" "eslkatowice2015_flipsid3" + "item_name" "#StickerKit_eslkatowice2015_flipsid3" + "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3" + "sticker_material" "eslkatowice2015/flipsid3" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "43" + } + "303" + { + "name" "eslkatowice2015_flipsid3_holo" + "item_name" "#StickerKit_eslkatowice2015_flipsid3_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3_holo" + "sticker_material" "eslkatowice2015/flipsid3_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "43" + } + "304" + { + "name" "eslkatowice2015_flipsid3_foil" + "item_name" "#StickerKit_eslkatowice2015_flipsid3_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3_foil" + "sticker_material" "eslkatowice2015/flipsid3_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "43" + } + "305" + { + "name" "eslkatowice2015_flipsid3_gold" + "item_name" "#StickerKit_eslkatowice2015_flipsid3_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3_gold" + "sticker_material" "eslkatowice2015/flipsid3_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "43" + } + "306" + { + "name" "eslkatowice2015_fnatic" + "item_name" "#StickerKit_eslkatowice2015_fnatic" + "description_string" "#StickerKit_desc_eslkatowice2015_fnatic" + "sticker_material" "eslkatowice2015/fnatic" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "6" + } + "307" + { + "name" "eslkatowice2015_fnatic_holo" + "item_name" "#StickerKit_eslkatowice2015_fnatic_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_fnatic_holo" + "sticker_material" "eslkatowice2015/fnatic_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "6" + } + "308" + { + "name" "eslkatowice2015_fnatic_foil" + "item_name" "#StickerKit_eslkatowice2015_fnatic_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_fnatic_foil" + "sticker_material" "eslkatowice2015/fnatic_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "6" + } + "309" + { + "name" "eslkatowice2015_fnatic_gold" + "item_name" "#StickerKit_eslkatowice2015_fnatic_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_fnatic_gold" + "sticker_material" "eslkatowice2015/fnatic_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "6" + } + "310" + { + "name" "eslkatowice2015_hellraisers" + "item_name" "#StickerKit_eslkatowice2015_hellraisers" + "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers" + "sticker_material" "eslkatowice2015/hellraisers" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "25" + } + "311" + { + "name" "eslkatowice2015_hellraisers_holo" + "item_name" "#StickerKit_eslkatowice2015_hellraisers_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers_holo" + "sticker_material" "eslkatowice2015/hellraisers_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "25" + } + "312" + { + "name" "eslkatowice2015_hellraisers_foil" + "item_name" "#StickerKit_eslkatowice2015_hellraisers_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers_foil" + "sticker_material" "eslkatowice2015/hellraisers_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "25" + } + "313" + { + "name" "eslkatowice2015_hellraisers_gold" + "item_name" "#StickerKit_eslkatowice2015_hellraisers_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers_gold" + "sticker_material" "eslkatowice2015/hellraisers_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "25" + } + "314" + { + "name" "eslkatowice2015_keyd" + "item_name" "#StickerKit_eslkatowice2015_keyd" + "description_string" "#StickerKit_desc_eslkatowice2015_keyd" + "sticker_material" "eslkatowice2015/keyd" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "50" + } + "315" + { + "name" "eslkatowice2015_keyd_holo" + "item_name" "#StickerKit_eslkatowice2015_keyd_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_keyd_holo" + "sticker_material" "eslkatowice2015/keyd_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "50" + } + "316" + { + "name" "eslkatowice2015_keyd_foil" + "item_name" "#StickerKit_eslkatowice2015_keyd_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_keyd_foil" + "sticker_material" "eslkatowice2015/keyd_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "50" + } + "317" + { + "name" "eslkatowice2015_keyd_gold" + "item_name" "#StickerKit_eslkatowice2015_keyd_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_keyd_gold" + "sticker_material" "eslkatowice2015/keyd_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "50" + } + "318" + { + "name" "eslkatowice2015_lgb" + "item_name" "#StickerKit_eslkatowice2015_lgb" + "description_string" "#StickerKit_desc_eslkatowice2015_lgb" + "sticker_material" "eslkatowice2015/lgb" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "9" + } + "319" + { + "name" "eslkatowice2015_lgb_holo" + "item_name" "#StickerKit_eslkatowice2015_lgb_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_lgb_holo" + "sticker_material" "eslkatowice2015/lgb_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "9" + } + "320" + { + "name" "eslkatowice2015_lgb_foil" + "item_name" "#StickerKit_eslkatowice2015_lgb_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_lgb_foil" + "sticker_material" "eslkatowice2015/lgb_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "9" + } + "321" + { + "name" "eslkatowice2015_lgb_gold" + "item_name" "#StickerKit_eslkatowice2015_lgb_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_lgb_gold" + "sticker_material" "eslkatowice2015/lgb_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "9" + } + "322" + { + "name" "eslkatowice2015_navi" + "item_name" "#StickerKit_eslkatowice2015_navi" + "description_string" "#StickerKit_desc_eslkatowice2015_navi" + "sticker_material" "eslkatowice2015/navi" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "12" + } + "323" + { + "name" "eslkatowice2015_navi_holo" + "item_name" "#StickerKit_eslkatowice2015_navi_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_navi_holo" + "sticker_material" "eslkatowice2015/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "12" + } + "324" + { + "name" "eslkatowice2015_navi_foil" + "item_name" "#StickerKit_eslkatowice2015_navi_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_navi_foil" + "sticker_material" "eslkatowice2015/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "12" + } + "325" + { + "name" "eslkatowice2015_navi_gold" + "item_name" "#StickerKit_eslkatowice2015_navi_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_navi_gold" + "sticker_material" "eslkatowice2015/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "12" + } + "326" + { + "name" "eslkatowice2015_ninjasinpyjamas" + "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas" + "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas" + "sticker_material" "eslkatowice2015/ninjasinpyjamas" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "1" + } + "327" + { + "name" "eslkatowice2015_ninjasinpyjamas_holo" + "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_holo" + "sticker_material" "eslkatowice2015/ninjasinpyjamas_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "1" + } + "328" + { + "name" "eslkatowice2015_ninjasinpyjamas_foil" + "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_foil" + "sticker_material" "eslkatowice2015/ninjasinpyjamas_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "1" + } + "329" + { + "name" "eslkatowice2015_ninjasinpyjamas_gold" + "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_gold" + "sticker_material" "eslkatowice2015/ninjasinpyjamas_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "1" + } + "330" + { + "name" "eslkatowice2015_pentasports" + "item_name" "#StickerKit_eslkatowice2015_pentasports" + "description_string" "#StickerKit_desc_eslkatowice2015_pentasports" + "sticker_material" "eslkatowice2015/pentasports" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "39" + } + "331" + { + "name" "eslkatowice2015_pentasports_holo" + "item_name" "#StickerKit_eslkatowice2015_pentasports_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_pentasports_holo" + "sticker_material" "eslkatowice2015/pentasports_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "39" + } + "332" + { + "name" "eslkatowice2015_pentasports_foil" + "item_name" "#StickerKit_eslkatowice2015_pentasports_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_pentasports_foil" + "sticker_material" "eslkatowice2015/pentasports_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "39" + } + "333" + { + "name" "eslkatowice2015_pentasports_gold" + "item_name" "#StickerKit_eslkatowice2015_pentasports_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_pentasports_gold" + "sticker_material" "eslkatowice2015/pentasports_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "39" + } + "334" + { + "name" "eslkatowice2015_teamenvyus" + "item_name" "#StickerKit_eslkatowice2015_teamenvyus" + "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus" + "sticker_material" "eslkatowice2015/teamenvyus" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "46" + } + "335" + { + "name" "eslkatowice2015_teamenvyus_holo" + "item_name" "#StickerKit_eslkatowice2015_teamenvyus_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus_holo" + "sticker_material" "eslkatowice2015/teamenvyus_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "46" + } + "336" + { + "name" "eslkatowice2015_teamenvyus_foil" + "item_name" "#StickerKit_eslkatowice2015_teamenvyus_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus_foil" + "sticker_material" "eslkatowice2015/teamenvyus_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "46" + } + "337" + { + "name" "eslkatowice2015_teamenvyus_gold" + "item_name" "#StickerKit_eslkatowice2015_teamenvyus_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus_gold" + "sticker_material" "eslkatowice2015/teamenvyus_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "46" + } + "338" + { + "name" "eslkatowice2015_teamsolomid" + "item_name" "#StickerKit_eslkatowice2015_teamsolomid" + "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid" + "sticker_material" "eslkatowice2015/teamsolomid" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "51" + } + "339" + { + "name" "eslkatowice2015_teamsolomid_holo" + "item_name" "#StickerKit_eslkatowice2015_teamsolomid_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid_holo" + "sticker_material" "eslkatowice2015/teamsolomid_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "51" + } + "340" + { + "name" "eslkatowice2015_teamsolomid_foil" + "item_name" "#StickerKit_eslkatowice2015_teamsolomid_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid_foil" + "sticker_material" "eslkatowice2015/teamsolomid_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "51" + } + "341" + { + "name" "eslkatowice2015_teamsolomid_gold" + "item_name" "#StickerKit_eslkatowice2015_teamsolomid_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid_gold" + "sticker_material" "eslkatowice2015/teamsolomid_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "51" + } + "342" + { + "name" "eslkatowice2015_titan" + "item_name" "#StickerKit_eslkatowice2015_titan" + "description_string" "#StickerKit_desc_eslkatowice2015_titan" + "sticker_material" "eslkatowice2015/titan" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "27" + } + "343" + { + "name" "eslkatowice2015_titan_holo" + "item_name" "#StickerKit_eslkatowice2015_titan_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_titan_holo" + "sticker_material" "eslkatowice2015/titan_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "27" + } + "344" + { + "name" "eslkatowice2015_titan_foil" + "item_name" "#StickerKit_eslkatowice2015_titan_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_titan_foil" + "sticker_material" "eslkatowice2015/titan_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "27" + } + "345" + { + "name" "eslkatowice2015_titan_gold" + "item_name" "#StickerKit_eslkatowice2015_titan_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_titan_gold" + "sticker_material" "eslkatowice2015/titan_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "27" + } + "346" + { + "name" "eslkatowice2015_virtuspro" + "item_name" "#StickerKit_eslkatowice2015_virtuspro" + "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro" + "sticker_material" "eslkatowice2015/virtuspro" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "31" + } + "347" + { + "name" "eslkatowice2015_virtuspro_holo" + "item_name" "#StickerKit_eslkatowice2015_virtuspro_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro_holo" + "sticker_material" "eslkatowice2015/virtuspro_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "31" + } + "348" + { + "name" "eslkatowice2015_virtuspro_foil" + "item_name" "#StickerKit_eslkatowice2015_virtuspro_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro_foil" + "sticker_material" "eslkatowice2015/virtuspro_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "31" + } + "349" + { + "name" "eslkatowice2015_virtuspro_gold" + "item_name" "#StickerKit_eslkatowice2015_virtuspro_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro_gold" + "sticker_material" "eslkatowice2015/virtuspro_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "31" + } + "350" + { + "name" "eslkatowice2015_voxeminor" + "item_name" "#StickerKit_eslkatowice2015_voxeminor" + "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor" + "sticker_material" "eslkatowice2015/voxeminor" + "item_rarity" "rare" + "tournament_event_id" "6" + "tournament_team_id" "32" + } + "351" + { + "name" "eslkatowice2015_voxeminor_holo" + "item_name" "#StickerKit_eslkatowice2015_voxeminor_holo" + "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor_holo" + "sticker_material" "eslkatowice2015/voxeminor_holo" + "item_rarity" "mythical" + "tournament_event_id" "6" + "tournament_team_id" "32" + } + "352" + { + "name" "eslkatowice2015_voxeminor_foil" + "item_name" "#StickerKit_eslkatowice2015_voxeminor_foil" + "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor_foil" + "sticker_material" "eslkatowice2015/voxeminor_foil" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "32" + } + "353" + { + "name" "eslkatowice2015_voxeminor_gold" + "item_name" "#StickerKit_eslkatowice2015_voxeminor_gold" + "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor_gold" + "sticker_material" "eslkatowice2015/voxeminor_gold" + "item_rarity" "legendary" + "tournament_event_id" "6" + "tournament_team_id" "32" + } + "354" + { + "name" "eslkatowice2015_esl_a" + "item_name" "#StickerKit_eslkatowice2015_esl_a" + "description_string" "#StickerKit_desc_eslkatowice2015_esl_a" + "sticker_material" "eslkatowice2015/esl_a" + "item_rarity" "rare" + "tournament_event_id" "6" + } + "355" + { + "name" "enfu_chicken" + "item_name" "#StickerKit_enfu_chicken" + "description_string" "#StickerKit_desc_enfu_chicken" + "sticker_material" "enfu_capsule/chicken" + "item_rarity" "rare" + } + "356" + { + "name" "enfu_bombsquad" + "item_name" "#StickerKit_enfu_bombsquad" + "description_string" "#StickerKit_desc_enfu_bombsquad" + "sticker_material" "enfu_capsule/enfu_bombsquad" + "item_rarity" "rare" + } + "357" + { + "name" "enfu_bombsquad_foil" + "item_name" "#StickerKit_enfu_bombsquad_foil" + "description_string" "#StickerKit_desc_enfu_bombsquad_foil" + "sticker_material" "enfu_capsule/enfu_bombsquad_foil" + "item_rarity" "legendary" + } + "358" + { + "name" "enfu_guru" + "item_name" "#StickerKit_enfu_guru" + "description_string" "#StickerKit_desc_enfu_guru" + "sticker_material" "enfu_capsule/guru" + "item_rarity" "rare" + } + "359" + { + "name" "enfu_ninja" + "item_name" "#StickerKit_enfu_ninja" + "description_string" "#StickerKit_desc_enfu_ninja" + "sticker_material" "enfu_capsule/ninja" + "item_rarity" "rare" + } + "360" + { + "name" "enfu_ninja_foil" + "item_name" "#StickerKit_enfu_ninja_foil" + "description_string" "#StickerKit_desc_enfu_ninja_foil" + "sticker_material" "enfu_capsule/ninja_foil" + "item_rarity" "legendary" + } + "361" + { + "name" "enfu_samurai" + "item_name" "#StickerKit_enfu_samurai" + "description_string" "#StickerKit_desc_enfu_samurai" + "sticker_material" "enfu_capsule/samurai" + "item_rarity" "rare" + } + "362" + { + "name" "enfu_skullfulilboney" + "item_name" "#StickerKit_enfu_skullfulilboney" + "description_string" "#StickerKit_desc_enfu_skullfulilboney" + "sticker_material" "enfu_capsule/skullfulilboney" + "item_rarity" "rare" + } + "363" + { + "name" "enfu_skullfuskulltorgeist" + "item_name" "#StickerKit_enfu_skullfuskulltorgeist" + "description_string" "#StickerKit_desc_enfu_skullfuskulltorgeist" + "sticker_material" "enfu_capsule/skullfuskulltorgeist" + "item_rarity" "rare" + } + "364" + { + "name" "enfu_skullfutrooop" + "item_name" "#StickerKit_enfu_skullfutrooop" + "description_string" "#StickerKit_desc_enfu_skullfutrooop" + "sticker_material" "enfu_capsule/skullfutrooop" + "item_rarity" "rare" + } + "365" + { + "name" "enfu_soldier" + "item_name" "#StickerKit_enfu_soldier" + "description_string" "#StickerKit_desc_enfu_soldier" + "sticker_material" "enfu_capsule/soldier" + "item_rarity" "rare" + } + "366" + { + "name" "enfu_spartan" + "item_name" "#StickerKit_enfu_spartan" + "description_string" "#StickerKit_desc_enfu_spartan" + "sticker_material" "enfu_capsule/spartan" + "item_rarity" "rare" + } + "367" + { + "name" "enfu_unicorn" + "item_name" "#StickerKit_enfu_unicorn" + "description_string" "#StickerKit_desc_enfu_unicorn" + "sticker_material" "enfu_capsule/unicorn" + "item_rarity" "rare" + } + "368" + { + "name" "enfu_unicorn_holo" + "item_name" "#StickerKit_enfu_unicorn_holo" + "description_string" "#StickerKit_desc_enfu_unicorn_holo" + "sticker_material" "enfu_capsule/unicorn_holo" + "item_rarity" "mythical" + } + "369" + { + "name" "enfu_zombie" + "item_name" "#StickerKit_enfu_zombie" + "description_string" "#StickerKit_desc_enfu_zombie" + "sticker_material" "enfu_capsule/zombie" + "item_rarity" "rare" + } + "370" + { + "name" "awp_country" + "item_name" "#StickerKit_comm02_awp_country" + "description_string" "#StickerKit_desc_comm02_awp_country" + "sticker_material" "community02/awp_country" + "item_rarity" "rare" + } + "371" + { + "name" "chi_bomb" + "item_name" "#StickerKit_comm02_chi_bomb" + "description_string" "#StickerKit_desc_comm02_chi_bomb" + "sticker_material" "community02/chi_bomb" + "item_rarity" "rare" + } + "372" + { + "name" "fox" + "item_name" "#StickerKit_comm02_fox" + "description_string" "#StickerKit_desc_comm02_fox" + "sticker_material" "community02/fox" + "item_rarity" "rare" + } + "373" + { + "name" "knifeclub" + "item_name" "#StickerKit_comm02_knifeclub" + "description_string" "#StickerKit_desc_comm02_knifeclub" + "sticker_material" "community02/knifeclub" + "item_rarity" "rare" + } + "374" + { + "name" "cs_on_the_mind" + "item_name" "#StickerKit_comm02_cs_on_the_mind" + "description_string" "#StickerKit_desc_comm02_cs_on_the_mind" + "sticker_material" "community02/cs_on_the_mind" + "item_rarity" "rare" + } + "375" + { + "name" "ninja_defuse" + "item_name" "#StickerKit_comm02_ninja_defuse" + "description_string" "#StickerKit_desc_comm02_ninja_defuse" + "sticker_material" "community02/ninja_defuse" + "item_rarity" "rare" + } + "376" + { + "name" "pros_dont_fake" + "item_name" "#StickerKit_comm02_pros_dont_fake" + "description_string" "#StickerKit_desc_comm02_pros_dont_fake" + "sticker_material" "community02/pros_dont_fake" + "item_rarity" "rare" + } + "377" + { + "name" "kawaiikiller_t" + "item_name" "#StickerKit_comm02_kawaiikiller_t" + "description_string" "#StickerKit_desc_comm02_kawaiikiller_t" + "sticker_material" "community02/kawaiikiller_t" + "item_rarity" "rare" + } + "378" + { + "name" "baackstabber" + "item_name" "#StickerKit_comm02_baackstabber" + "description_string" "#StickerKit_desc_comm02_baackstabber" + "sticker_material" "community02/baackstabber" + "item_rarity" "rare" + } + "379" + { + "name" "delicious_tears" + "item_name" "#StickerKit_comm02_delicious_tears" + "description_string" "#StickerKit_desc_comm02_delicious_tears" + "sticker_material" "community02/delicious_tears" + "item_rarity" "rare" + } + "380" + { + "name" "eslcologne2015_signature_pronax" + "item_name" "#StickerKit_eslcologne2015_signature_pronax" + "description_string" "#StickerKit_desc_eslcologne2015_signature_pronax" + "sticker_material" "cologne2015/sig_pronax" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "9419182" + } + "381" + { + "name" "eslcologne2015_signature_pronax_foil" + "item_name" "#StickerKit_eslcologne2015_signature_pronax_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_pronax_foil" + "sticker_material" "cologne2015/sig_pronax_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "9419182" + } + "382" + { + "name" "eslcologne2015_signature_pronax_gold" + "item_name" "#StickerKit_eslcologne2015_signature_pronax_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_pronax_gold" + "sticker_material" "cologne2015/sig_pronax_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "9419182" + } + "383" + { + "name" "eslcologne2015_signature_flusha" + "item_name" "#StickerKit_eslcologne2015_signature_flusha" + "description_string" "#StickerKit_desc_eslcologne2015_signature_flusha" + "sticker_material" "cologne2015/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "384" + { + "name" "eslcologne2015_signature_flusha_foil" + "item_name" "#StickerKit_eslcologne2015_signature_flusha_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_flusha_foil" + "sticker_material" "cologne2015/sig_flusha_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "385" + { + "name" "eslcologne2015_signature_flusha_gold" + "item_name" "#StickerKit_eslcologne2015_signature_flusha_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_flusha_gold" + "sticker_material" "cologne2015/sig_flusha_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "386" + { + "name" "eslcologne2015_signature_jw" + "item_name" "#StickerKit_eslcologne2015_signature_jw" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jw" + "sticker_material" "cologne2015/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "387" + { + "name" "eslcologne2015_signature_jw_foil" + "item_name" "#StickerKit_eslcologne2015_signature_jw_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jw_foil" + "sticker_material" "cologne2015/sig_jw_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "388" + { + "name" "eslcologne2015_signature_jw_gold" + "item_name" "#StickerKit_eslcologne2015_signature_jw_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jw_gold" + "sticker_material" "cologne2015/sig_jw_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "389" + { + "name" "eslcologne2015_signature_krimz" + "item_name" "#StickerKit_eslcologne2015_signature_krimz" + "description_string" "#StickerKit_desc_eslcologne2015_signature_krimz" + "sticker_material" "cologne2015/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "390" + { + "name" "eslcologne2015_signature_krimz_foil" + "item_name" "#StickerKit_eslcologne2015_signature_krimz_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_krimz_foil" + "sticker_material" "cologne2015/sig_krimz_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "391" + { + "name" "eslcologne2015_signature_krimz_gold" + "item_name" "#StickerKit_eslcologne2015_signature_krimz_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_krimz_gold" + "sticker_material" "cologne2015/sig_krimz_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "392" + { + "name" "eslcologne2015_signature_olofmeister" + "item_name" "#StickerKit_eslcologne2015_signature_olofmeister" + "description_string" "#StickerKit_desc_eslcologne2015_signature_olofmeister" + "sticker_material" "cologne2015/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "393" + { + "name" "eslcologne2015_signature_olofmeister_foil" + "item_name" "#StickerKit_eslcologne2015_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_olofmeister_foil" + "sticker_material" "cologne2015/sig_olofmeister_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "394" + { + "name" "eslcologne2015_signature_olofmeister_gold" + "item_name" "#StickerKit_eslcologne2015_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_olofmeister_gold" + "sticker_material" "cologne2015/sig_olofmeister_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "395" + { + "name" "eslcologne2015_signature_fallen" + "item_name" "#StickerKit_eslcologne2015_signature_fallen" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fallen" + "sticker_material" "cologne2015/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "396" + { + "name" "eslcologne2015_signature_fallen_foil" + "item_name" "#StickerKit_eslcologne2015_signature_fallen_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fallen_foil" + "sticker_material" "cologne2015/sig_fallen_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "397" + { + "name" "eslcologne2015_signature_fallen_gold" + "item_name" "#StickerKit_eslcologne2015_signature_fallen_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fallen_gold" + "sticker_material" "cologne2015/sig_fallen_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "398" + { + "name" "eslcologne2015_signature_steel" + "item_name" "#StickerKit_eslcologne2015_signature_steel" + "description_string" "#StickerKit_desc_eslcologne2015_signature_steel" + "sticker_material" "cologne2015/sig_steel" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "54512474" + } + "399" + { + "name" "eslcologne2015_signature_steel_foil" + "item_name" "#StickerKit_eslcologne2015_signature_steel_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_steel_foil" + "sticker_material" "cologne2015/sig_steel_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "54512474" + } + "400" + { + "name" "eslcologne2015_signature_steel_gold" + "item_name" "#StickerKit_eslcologne2015_signature_steel_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_steel_gold" + "sticker_material" "cologne2015/sig_steel_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "54512474" + } + "401" + { + "name" "eslcologne2015_signature_fer" + "item_name" "#StickerKit_eslcologne2015_signature_fer" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fer" + "sticker_material" "cologne2015/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "402" + { + "name" "eslcologne2015_signature_fer_foil" + "item_name" "#StickerKit_eslcologne2015_signature_fer_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fer_foil" + "sticker_material" "cologne2015/sig_fer_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "403" + { + "name" "eslcologne2015_signature_fer_gold" + "item_name" "#StickerKit_eslcologne2015_signature_fer_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fer_gold" + "sticker_material" "cologne2015/sig_fer_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "404" + { + "name" "eslcologne2015_signature_boltz" + "item_name" "#StickerKit_eslcologne2015_signature_boltz" + "description_string" "#StickerKit_desc_eslcologne2015_signature_boltz" + "sticker_material" "cologne2015/sig_boltz" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "58113672" + } + "405" + { + "name" "eslcologne2015_signature_boltz_foil" + "item_name" "#StickerKit_eslcologne2015_signature_boltz_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_boltz_foil" + "sticker_material" "cologne2015/sig_boltz_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "58113672" + } + "406" + { + "name" "eslcologne2015_signature_boltz_gold" + "item_name" "#StickerKit_eslcologne2015_signature_boltz_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_boltz_gold" + "sticker_material" "cologne2015/sig_boltz_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "58113672" + } + "407" + { + "name" "eslcologne2015_signature_coldzera" + "item_name" "#StickerKit_eslcologne2015_signature_coldzera" + "description_string" "#StickerKit_desc_eslcologne2015_signature_coldzera" + "sticker_material" "cologne2015/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "408" + { + "name" "eslcologne2015_signature_coldzera_foil" + "item_name" "#StickerKit_eslcologne2015_signature_coldzera_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_coldzera_foil" + "sticker_material" "cologne2015/sig_coldzera_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "409" + { + "name" "eslcologne2015_signature_coldzera_gold" + "item_name" "#StickerKit_eslcologne2015_signature_coldzera_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_coldzera_gold" + "sticker_material" "cologne2015/sig_coldzera_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "410" + { + "name" "eslcologne2015_signature_guardian" + "item_name" "#StickerKit_eslcologne2015_signature_guardian" + "description_string" "#StickerKit_desc_eslcologne2015_signature_guardian" + "sticker_material" "cologne2015/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "411" + { + "name" "eslcologne2015_signature_guardian_foil" + "item_name" "#StickerKit_eslcologne2015_signature_guardian_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_guardian_foil" + "sticker_material" "cologne2015/sig_guardian_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "412" + { + "name" "eslcologne2015_signature_guardian_gold" + "item_name" "#StickerKit_eslcologne2015_signature_guardian_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_guardian_gold" + "sticker_material" "cologne2015/sig_guardian_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "413" + { + "name" "eslcologne2015_signature_zeus" + "item_name" "#StickerKit_eslcologne2015_signature_zeus" + "description_string" "#StickerKit_desc_eslcologne2015_signature_zeus" + "sticker_material" "cologne2015/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "414" + { + "name" "eslcologne2015_signature_zeus_foil" + "item_name" "#StickerKit_eslcologne2015_signature_zeus_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_zeus_foil" + "sticker_material" "cologne2015/sig_zeus_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "415" + { + "name" "eslcologne2015_signature_zeus_gold" + "item_name" "#StickerKit_eslcologne2015_signature_zeus_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_zeus_gold" + "sticker_material" "cologne2015/sig_zeus_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "416" + { + "name" "eslcologne2015_signature_seized" + "item_name" "#StickerKit_eslcologne2015_signature_seized" + "description_string" "#StickerKit_desc_eslcologne2015_signature_seized" + "sticker_material" "cologne2015/sig_seized" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "417" + { + "name" "eslcologne2015_signature_seized_foil" + "item_name" "#StickerKit_eslcologne2015_signature_seized_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_seized_foil" + "sticker_material" "cologne2015/sig_seized_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "418" + { + "name" "eslcologne2015_signature_seized_gold" + "item_name" "#StickerKit_eslcologne2015_signature_seized_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_seized_gold" + "sticker_material" "cologne2015/sig_seized_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "419" + { + "name" "eslcologne2015_signature_edward" + "item_name" "#StickerKit_eslcologne2015_signature_edward" + "description_string" "#StickerKit_desc_eslcologne2015_signature_edward" + "sticker_material" "cologne2015/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "420" + { + "name" "eslcologne2015_signature_edward_foil" + "item_name" "#StickerKit_eslcologne2015_signature_edward_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_edward_foil" + "sticker_material" "cologne2015/sig_edward_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "421" + { + "name" "eslcologne2015_signature_edward_gold" + "item_name" "#StickerKit_eslcologne2015_signature_edward_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_edward_gold" + "sticker_material" "cologne2015/sig_edward_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "422" + { + "name" "eslcologne2015_signature_flamie" + "item_name" "#StickerKit_eslcologne2015_signature_flamie" + "description_string" "#StickerKit_desc_eslcologne2015_signature_flamie" + "sticker_material" "cologne2015/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "423" + { + "name" "eslcologne2015_signature_flamie_foil" + "item_name" "#StickerKit_eslcologne2015_signature_flamie_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_flamie_foil" + "sticker_material" "cologne2015/sig_flamie_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "424" + { + "name" "eslcologne2015_signature_flamie_gold" + "item_name" "#StickerKit_eslcologne2015_signature_flamie_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_flamie_gold" + "sticker_material" "cologne2015/sig_flamie_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "425" + { + "name" "eslcologne2015_signature_xizt" + "item_name" "#StickerKit_eslcologne2015_signature_xizt" + "description_string" "#StickerKit_desc_eslcologne2015_signature_xizt" + "sticker_material" "cologne2015/sig_xizt" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "426" + { + "name" "eslcologne2015_signature_xizt_foil" + "item_name" "#StickerKit_eslcologne2015_signature_xizt_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_xizt_foil" + "sticker_material" "cologne2015/sig_xizt_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "427" + { + "name" "eslcologne2015_signature_xizt_gold" + "item_name" "#StickerKit_eslcologne2015_signature_xizt_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_xizt_gold" + "sticker_material" "cologne2015/sig_xizt_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "428" + { + "name" "eslcologne2015_signature_forest" + "item_name" "#StickerKit_eslcologne2015_signature_forest" + "description_string" "#StickerKit_desc_eslcologne2015_signature_forest" + "sticker_material" "cologne2015/sig_forest" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "429" + { + "name" "eslcologne2015_signature_forest_foil" + "item_name" "#StickerKit_eslcologne2015_signature_forest_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_forest_foil" + "sticker_material" "cologne2015/sig_forest_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "430" + { + "name" "eslcologne2015_signature_forest_gold" + "item_name" "#StickerKit_eslcologne2015_signature_forest_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_forest_gold" + "sticker_material" "cologne2015/sig_forest_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "431" + { + "name" "eslcologne2015_signature_getright" + "item_name" "#StickerKit_eslcologne2015_signature_getright" + "description_string" "#StickerKit_desc_eslcologne2015_signature_getright" + "sticker_material" "cologne2015/sig_getright" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "432" + { + "name" "eslcologne2015_signature_getright_foil" + "item_name" "#StickerKit_eslcologne2015_signature_getright_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_getright_foil" + "sticker_material" "cologne2015/sig_getright_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "433" + { + "name" "eslcologne2015_signature_getright_gold" + "item_name" "#StickerKit_eslcologne2015_signature_getright_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_getright_gold" + "sticker_material" "cologne2015/sig_getright_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "434" + { + "name" "eslcologne2015_signature_friberg" + "item_name" "#StickerKit_eslcologne2015_signature_friberg" + "description_string" "#StickerKit_desc_eslcologne2015_signature_friberg" + "sticker_material" "cologne2015/sig_friberg" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "435" + { + "name" "eslcologne2015_signature_friberg_foil" + "item_name" "#StickerKit_eslcologne2015_signature_friberg_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_friberg_foil" + "sticker_material" "cologne2015/sig_friberg_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "436" + { + "name" "eslcologne2015_signature_friberg_gold" + "item_name" "#StickerKit_eslcologne2015_signature_friberg_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_friberg_gold" + "sticker_material" "cologne2015/sig_friberg_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "437" + { + "name" "eslcologne2015_signature_allu" + "item_name" "#StickerKit_eslcologne2015_signature_allu" + "description_string" "#StickerKit_desc_eslcologne2015_signature_allu" + "sticker_material" "cologne2015/sig_allu" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "1345246" + } + "438" + { + "name" "eslcologne2015_signature_allu_foil" + "item_name" "#StickerKit_eslcologne2015_signature_allu_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_allu_foil" + "sticker_material" "cologne2015/sig_allu_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "1345246" + } + "439" + { + "name" "eslcologne2015_signature_allu_gold" + "item_name" "#StickerKit_eslcologne2015_signature_allu_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_allu_gold" + "sticker_material" "cologne2015/sig_allu_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + "tournament_player_id" "1345246" + } + "440" + { + "name" "eslcologne2015_signature_kennys" + "item_name" "#StickerKit_eslcologne2015_signature_kennys" + "description_string" "#StickerKit_desc_eslcologne2015_signature_kennys" + "sticker_material" "cologne2015/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "441" + { + "name" "eslcologne2015_signature_kennys_foil" + "item_name" "#StickerKit_eslcologne2015_signature_kennys_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_kennys_foil" + "sticker_material" "cologne2015/sig_kennys_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "442" + { + "name" "eslcologne2015_signature_kennys_gold" + "item_name" "#StickerKit_eslcologne2015_signature_kennys_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_kennys_gold" + "sticker_material" "cologne2015/sig_kennys_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "443" + { + "name" "eslcologne2015_signature_kioshima" + "item_name" "#StickerKit_eslcologne2015_signature_kioshima" + "description_string" "#StickerKit_desc_eslcologne2015_signature_kioshima" + "sticker_material" "cologne2015/sig_kioshima" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "40517167" + } + "444" + { + "name" "eslcologne2015_signature_kioshima_foil" + "item_name" "#StickerKit_eslcologne2015_signature_kioshima_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_kioshima_foil" + "sticker_material" "cologne2015/sig_kioshima_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "40517167" + } + "445" + { + "name" "eslcologne2015_signature_kioshima_gold" + "item_name" "#StickerKit_eslcologne2015_signature_kioshima_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_kioshima_gold" + "sticker_material" "cologne2015/sig_kioshima_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "40517167" + } + "446" + { + "name" "eslcologne2015_signature_happy" + "item_name" "#StickerKit_eslcologne2015_signature_happy" + "description_string" "#StickerKit_desc_eslcologne2015_signature_happy" + "sticker_material" "cologne2015/sig_happy" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "447" + { + "name" "eslcologne2015_signature_happy_foil" + "item_name" "#StickerKit_eslcologne2015_signature_happy_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_happy_foil" + "sticker_material" "cologne2015/sig_happy_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "448" + { + "name" "eslcologne2015_signature_happy_gold" + "item_name" "#StickerKit_eslcologne2015_signature_happy_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_happy_gold" + "sticker_material" "cologne2015/sig_happy_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "449" + { + "name" "eslcologne2015_signature_apex" + "item_name" "#StickerKit_eslcologne2015_signature_apex" + "description_string" "#StickerKit_desc_eslcologne2015_signature_apex" + "sticker_material" "cologne2015/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "450" + { + "name" "eslcologne2015_signature_apex_foil" + "item_name" "#StickerKit_eslcologne2015_signature_apex_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_apex_foil" + "sticker_material" "cologne2015/sig_apex_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "451" + { + "name" "eslcologne2015_signature_apex_gold" + "item_name" "#StickerKit_eslcologne2015_signature_apex_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_apex_gold" + "sticker_material" "cologne2015/sig_apex_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "452" + { + "name" "eslcologne2015_signature_nbk" + "item_name" "#StickerKit_eslcologne2015_signature_nbk" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nbk" + "sticker_material" "cologne2015/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "453" + { + "name" "eslcologne2015_signature_nbk_foil" + "item_name" "#StickerKit_eslcologne2015_signature_nbk_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nbk_foil" + "sticker_material" "cologne2015/sig_nbk_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "454" + { + "name" "eslcologne2015_signature_nbk_gold" + "item_name" "#StickerKit_eslcologne2015_signature_nbk_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nbk_gold" + "sticker_material" "cologne2015/sig_nbk_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "455" + { + "name" "eslcologne2015_signature_karrigan" + "item_name" "#StickerKit_eslcologne2015_signature_karrigan" + "description_string" "#StickerKit_desc_eslcologne2015_signature_karrigan" + "sticker_material" "cologne2015/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "29164525" + } + "456" + { + "name" "eslcologne2015_signature_karrigan_foil" + "item_name" "#StickerKit_eslcologne2015_signature_karrigan_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_karrigan_foil" + "sticker_material" "cologne2015/sig_karrigan_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "29164525" + } + "457" + { + "name" "eslcologne2015_signature_karrigan_gold" + "item_name" "#StickerKit_eslcologne2015_signature_karrigan_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_karrigan_gold" + "sticker_material" "cologne2015/sig_karrigan_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "29164525" + } + "458" + { + "name" "eslcologne2015_signature_device" + "item_name" "#StickerKit_eslcologne2015_signature_device" + "description_string" "#StickerKit_desc_eslcologne2015_signature_device" + "sticker_material" "cologne2015/sig_device" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "27447936" + } + "459" + { + "name" "eslcologne2015_signature_device_foil" + "item_name" "#StickerKit_eslcologne2015_signature_device_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_device_foil" + "sticker_material" "cologne2015/sig_device_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "27447936" + } + "460" + { + "name" "eslcologne2015_signature_device_gold" + "item_name" "#StickerKit_eslcologne2015_signature_device_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_device_gold" + "sticker_material" "cologne2015/sig_device_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "27447936" + } + "461" + { + "name" "eslcologne2015_signature_dupreeh" + "item_name" "#StickerKit_eslcologne2015_signature_dupreeh" + "description_string" "#StickerKit_desc_eslcologne2015_signature_dupreeh" + "sticker_material" "cologne2015/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "44589228" + } + "462" + { + "name" "eslcologne2015_signature_dupreeh_foil" + "item_name" "#StickerKit_eslcologne2015_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_dupreeh_foil" + "sticker_material" "cologne2015/sig_dupreeh_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "44589228" + } + "463" + { + "name" "eslcologne2015_signature_dupreeh_gold" + "item_name" "#StickerKit_eslcologne2015_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_dupreeh_gold" + "sticker_material" "cologne2015/sig_dupreeh_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "44589228" + } + "464" + { + "name" "eslcologne2015_signature_xyp9x" + "item_name" "#StickerKit_eslcologne2015_signature_xyp9x" + "description_string" "#StickerKit_desc_eslcologne2015_signature_xyp9x" + "sticker_material" "cologne2015/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "30416534" + } + "465" + { + "name" "eslcologne2015_signature_xyp9x_foil" + "item_name" "#StickerKit_eslcologne2015_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_xyp9x_foil" + "sticker_material" "cologne2015/sig_xyp9x_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "30416534" + } + "466" + { + "name" "eslcologne2015_signature_xyp9x_gold" + "item_name" "#StickerKit_eslcologne2015_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_xyp9x_gold" + "sticker_material" "cologne2015/sig_xyp9x_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "30416534" + } + "467" + { + "name" "eslcologne2015_signature_cajunb" + "item_name" "#StickerKit_eslcologne2015_signature_cajunb" + "description_string" "#StickerKit_desc_eslcologne2015_signature_cajunb" + "sticker_material" "cologne2015/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "18062315" + } + "468" + { + "name" "eslcologne2015_signature_cajunb_foil" + "item_name" "#StickerKit_eslcologne2015_signature_cajunb_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_cajunb_foil" + "sticker_material" "cologne2015/sig_cajunb_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "18062315" + } + "469" + { + "name" "eslcologne2015_signature_cajunb_gold" + "item_name" "#StickerKit_eslcologne2015_signature_cajunb_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_cajunb_gold" + "sticker_material" "cologne2015/sig_cajunb_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + "tournament_player_id" "18062315" + } + "470" + { + "name" "eslcologne2015_signature_neo" + "item_name" "#StickerKit_eslcologne2015_signature_neo" + "description_string" "#StickerKit_desc_eslcologne2015_signature_neo" + "sticker_material" "cologne2015/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "471" + { + "name" "eslcologne2015_signature_neo_foil" + "item_name" "#StickerKit_eslcologne2015_signature_neo_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_neo_foil" + "sticker_material" "cologne2015/sig_neo_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "472" + { + "name" "eslcologne2015_signature_neo_gold" + "item_name" "#StickerKit_eslcologne2015_signature_neo_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_neo_gold" + "sticker_material" "cologne2015/sig_neo_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "473" + { + "name" "eslcologne2015_signature_pasha" + "item_name" "#StickerKit_eslcologne2015_signature_pasha" + "description_string" "#StickerKit_desc_eslcologne2015_signature_pasha" + "sticker_material" "cologne2015/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "474" + { + "name" "eslcologne2015_signature_pasha_foil" + "item_name" "#StickerKit_eslcologne2015_signature_pasha_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_pasha_foil" + "sticker_material" "cologne2015/sig_pasha_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "475" + { + "name" "eslcologne2015_signature_pasha_gold" + "item_name" "#StickerKit_eslcologne2015_signature_pasha_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_pasha_gold" + "sticker_material" "cologne2015/sig_pasha_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "476" + { + "name" "eslcologne2015_signature_taz" + "item_name" "#StickerKit_eslcologne2015_signature_taz" + "description_string" "#StickerKit_desc_eslcologne2015_signature_taz" + "sticker_material" "cologne2015/sig_taz" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "477" + { + "name" "eslcologne2015_signature_taz_foil" + "item_name" "#StickerKit_eslcologne2015_signature_taz_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_taz_foil" + "sticker_material" "cologne2015/sig_taz_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "478" + { + "name" "eslcologne2015_signature_taz_gold" + "item_name" "#StickerKit_eslcologne2015_signature_taz_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_taz_gold" + "sticker_material" "cologne2015/sig_taz_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "479" + { + "name" "eslcologne2015_signature_snax" + "item_name" "#StickerKit_eslcologne2015_signature_snax" + "description_string" "#StickerKit_desc_eslcologne2015_signature_snax" + "sticker_material" "cologne2015/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "480" + { + "name" "eslcologne2015_signature_snax_foil" + "item_name" "#StickerKit_eslcologne2015_signature_snax_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_snax_foil" + "sticker_material" "cologne2015/sig_snax_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "481" + { + "name" "eslcologne2015_signature_snax_gold" + "item_name" "#StickerKit_eslcologne2015_signature_snax_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_snax_gold" + "sticker_material" "cologne2015/sig_snax_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "482" + { + "name" "eslcologne2015_signature_byali" + "item_name" "#StickerKit_eslcologne2015_signature_byali" + "description_string" "#StickerKit_desc_eslcologne2015_signature_byali" + "sticker_material" "cologne2015/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "483" + { + "name" "eslcologne2015_signature_byali_foil" + "item_name" "#StickerKit_eslcologne2015_signature_byali_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_byali_foil" + "sticker_material" "cologne2015/sig_byali_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "484" + { + "name" "eslcologne2015_signature_byali_gold" + "item_name" "#StickerKit_eslcologne2015_signature_byali_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_byali_gold" + "sticker_material" "cologne2015/sig_byali_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "485" + { + "name" "eslcologne2015_signature_chrisj" + "item_name" "#StickerKit_eslcologne2015_signature_chrisj" + "description_string" "#StickerKit_desc_eslcologne2015_signature_chrisj" + "sticker_material" "cologne2015/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "486" + { + "name" "eslcologne2015_signature_chrisj_foil" + "item_name" "#StickerKit_eslcologne2015_signature_chrisj_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_chrisj_foil" + "sticker_material" "cologne2015/sig_chrisj_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "487" + { + "name" "eslcologne2015_signature_chrisj_gold" + "item_name" "#StickerKit_eslcologne2015_signature_chrisj_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_chrisj_gold" + "sticker_material" "cologne2015/sig_chrisj_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "488" + { + "name" "eslcologne2015_signature_gobb" + "item_name" "#StickerKit_eslcologne2015_signature_gobb" + "description_string" "#StickerKit_desc_eslcologne2015_signature_gobb" + "sticker_material" "cologne2015/sig_gobb" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "1162165" + } + "489" + { + "name" "eslcologne2015_signature_gobb_foil" + "item_name" "#StickerKit_eslcologne2015_signature_gobb_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_gobb_foil" + "sticker_material" "cologne2015/sig_gobb_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "1162165" + } + "490" + { + "name" "eslcologne2015_signature_gobb_gold" + "item_name" "#StickerKit_eslcologne2015_signature_gobb_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_gobb_gold" + "sticker_material" "cologne2015/sig_gobb_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "1162165" + } + "491" + { + "name" "eslcologne2015_signature_denis" + "item_name" "#StickerKit_eslcologne2015_signature_denis" + "description_string" "#StickerKit_desc_eslcologne2015_signature_denis" + "sticker_material" "cologne2015/sig_denis" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "492" + { + "name" "eslcologne2015_signature_denis_foil" + "item_name" "#StickerKit_eslcologne2015_signature_denis_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_denis_foil" + "sticker_material" "cologne2015/sig_denis_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "493" + { + "name" "eslcologne2015_signature_denis_gold" + "item_name" "#StickerKit_eslcologne2015_signature_denis_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_denis_gold" + "sticker_material" "cologne2015/sig_denis_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "494" + { + "name" "eslcologne2015_signature_nex" + "item_name" "#StickerKit_eslcologne2015_signature_nex" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nex" + "sticker_material" "cologne2015/sig_nex" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "495" + { + "name" "eslcologne2015_signature_nex_foil" + "item_name" "#StickerKit_eslcologne2015_signature_nex_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nex_foil" + "sticker_material" "cologne2015/sig_nex_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "496" + { + "name" "eslcologne2015_signature_nex_gold" + "item_name" "#StickerKit_eslcologne2015_signature_nex_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nex_gold" + "sticker_material" "cologne2015/sig_nex_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "497" + { + "name" "eslcologne2015_signature_spiidi" + "item_name" "#StickerKit_eslcologne2015_signature_spiidi" + "description_string" "#StickerKit_desc_eslcologne2015_signature_spiidi" + "sticker_material" "cologne2015/sig_spiidi" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "498" + { + "name" "eslcologne2015_signature_spiidi_foil" + "item_name" "#StickerKit_eslcologne2015_signature_spiidi_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_spiidi_foil" + "sticker_material" "cologne2015/sig_spiidi_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "499" + { + "name" "eslcologne2015_signature_spiidi_gold" + "item_name" "#StickerKit_eslcologne2015_signature_spiidi_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_spiidi_gold" + "sticker_material" "cologne2015/sig_spiidi_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "500" + { + "name" "eslcologne2015_signature_azr" + "item_name" "#StickerKit_eslcologne2015_signature_azr" + "description_string" "#StickerKit_desc_eslcologne2015_signature_azr" + "sticker_material" "cologne2015/sig_azr" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "501" + { + "name" "eslcologne2015_signature_azr_foil" + "item_name" "#StickerKit_eslcologne2015_signature_azr_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_azr_foil" + "sticker_material" "cologne2015/sig_azr_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "502" + { + "name" "eslcologne2015_signature_azr_gold" + "item_name" "#StickerKit_eslcologne2015_signature_azr_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_azr_gold" + "sticker_material" "cologne2015/sig_azr_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "503" + { + "name" "eslcologne2015_signature_havoc" + "item_name" "#StickerKit_eslcologne2015_signature_havoc" + "description_string" "#StickerKit_desc_eslcologne2015_signature_havoc" + "sticker_material" "cologne2015/sig_havoc" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "10025211" + } + "504" + { + "name" "eslcologne2015_signature_havoc_foil" + "item_name" "#StickerKit_eslcologne2015_signature_havoc_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_havoc_foil" + "sticker_material" "cologne2015/sig_havoc_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "10025211" + } + "505" + { + "name" "eslcologne2015_signature_havoc_gold" + "item_name" "#StickerKit_eslcologne2015_signature_havoc_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_havoc_gold" + "sticker_material" "cologne2015/sig_havoc_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "10025211" + } + "506" + { + "name" "eslcologne2015_signature_jks" + "item_name" "#StickerKit_eslcologne2015_signature_jks" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jks" + "sticker_material" "cologne2015/sig_jks" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "507" + { + "name" "eslcologne2015_signature_jks_foil" + "item_name" "#StickerKit_eslcologne2015_signature_jks_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jks_foil" + "sticker_material" "cologne2015/sig_jks_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "508" + { + "name" "eslcologne2015_signature_jks_gold" + "item_name" "#StickerKit_eslcologne2015_signature_jks_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jks_gold" + "sticker_material" "cologne2015/sig_jks_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "509" + { + "name" "eslcologne2015_signature_spunj" + "item_name" "#StickerKit_eslcologne2015_signature_spunj" + "description_string" "#StickerKit_desc_eslcologne2015_signature_spunj" + "sticker_material" "cologne2015/sig_spunj" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "34303888" + } + "510" + { + "name" "eslcologne2015_signature_spunj_foil" + "item_name" "#StickerKit_eslcologne2015_signature_spunj_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_spunj_foil" + "sticker_material" "cologne2015/sig_spunj_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "34303888" + } + "511" + { + "name" "eslcologne2015_signature_spunj_gold" + "item_name" "#StickerKit_eslcologne2015_signature_spunj_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_spunj_gold" + "sticker_material" "cologne2015/sig_spunj_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "34303888" + } + "512" + { + "name" "eslcologne2015_signature_yam" + "item_name" "#StickerKit_eslcologne2015_signature_yam" + "description_string" "#StickerKit_desc_eslcologne2015_signature_yam" + "sticker_material" "cologne2015/sig_yam" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "30659" + } + "513" + { + "name" "eslcologne2015_signature_yam_foil" + "item_name" "#StickerKit_eslcologne2015_signature_yam_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_yam_foil" + "sticker_material" "cologne2015/sig_yam_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "30659" + } + "514" + { + "name" "eslcologne2015_signature_yam_gold" + "item_name" "#StickerKit_eslcologne2015_signature_yam_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_yam_gold" + "sticker_material" "cologne2015/sig_yam_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + "tournament_player_id" "30659" + } + "515" + { + "name" "eslcologne2015_signature_ustilo" + "item_name" "#StickerKit_eslcologne2015_signature_ustilo" + "description_string" "#StickerKit_desc_eslcologne2015_signature_ustilo" + "sticker_material" "cologne2015/sig_ustilo" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "18903255" + } + "516" + { + "name" "eslcologne2015_signature_ustilo_foil" + "item_name" "#StickerKit_eslcologne2015_signature_ustilo_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_ustilo_foil" + "sticker_material" "cologne2015/sig_ustilo_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "18903255" + } + "517" + { + "name" "eslcologne2015_signature_ustilo_gold" + "item_name" "#StickerKit_eslcologne2015_signature_ustilo_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_ustilo_gold" + "sticker_material" "cologne2015/sig_ustilo_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "18903255" + } + "518" + { + "name" "eslcologne2015_signature_rickeh" + "item_name" "#StickerKit_eslcologne2015_signature_rickeh" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rickeh" + "sticker_material" "cologne2015/sig_rickeh" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "3215921" + } + "519" + { + "name" "eslcologne2015_signature_rickeh_foil" + "item_name" "#StickerKit_eslcologne2015_signature_rickeh_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rickeh_foil" + "sticker_material" "cologne2015/sig_rickeh_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "3215921" + } + "520" + { + "name" "eslcologne2015_signature_rickeh_gold" + "item_name" "#StickerKit_eslcologne2015_signature_rickeh_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rickeh_gold" + "sticker_material" "cologne2015/sig_rickeh_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "3215921" + } + "521" + { + "name" "eslcologne2015_signature_emagine" + "item_name" "#StickerKit_eslcologne2015_signature_emagine" + "description_string" "#StickerKit_desc_eslcologne2015_signature_emagine" + "sticker_material" "cologne2015/sig_emagine" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "19633654" + } + "522" + { + "name" "eslcologne2015_signature_emagine_foil" + "item_name" "#StickerKit_eslcologne2015_signature_emagine_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_emagine_foil" + "sticker_material" "cologne2015/sig_emagine_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "19633654" + } + "523" + { + "name" "eslcologne2015_signature_emagine_gold" + "item_name" "#StickerKit_eslcologne2015_signature_emagine_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_emagine_gold" + "sticker_material" "cologne2015/sig_emagine_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "19633654" + } + "524" + { + "name" "eslcologne2015_signature_snyper" + "item_name" "#StickerKit_eslcologne2015_signature_snyper" + "description_string" "#StickerKit_desc_eslcologne2015_signature_snyper" + "sticker_material" "cologne2015/sig_snyper" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "7436549" + } + "525" + { + "name" "eslcologne2015_signature_snyper_foil" + "item_name" "#StickerKit_eslcologne2015_signature_snyper_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_snyper_foil" + "sticker_material" "cologne2015/sig_snyper_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "7436549" + } + "526" + { + "name" "eslcologne2015_signature_snyper_gold" + "item_name" "#StickerKit_eslcologne2015_signature_snyper_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_snyper_gold" + "sticker_material" "cologne2015/sig_snyper_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "7436549" + } + "527" + { + "name" "eslcologne2015_signature_james" + "item_name" "#StickerKit_eslcologne2015_signature_james" + "description_string" "#StickerKit_desc_eslcologne2015_signature_james" + "sticker_material" "cologne2015/sig_james" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "35336006" + } + "528" + { + "name" "eslcologne2015_signature_james_foil" + "item_name" "#StickerKit_eslcologne2015_signature_james_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_james_foil" + "sticker_material" "cologne2015/sig_james_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "35336006" + } + "529" + { + "name" "eslcologne2015_signature_james_gold" + "item_name" "#StickerKit_eslcologne2015_signature_james_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_james_gold" + "sticker_material" "cologne2015/sig_james_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + "tournament_player_id" "35336006" + } + "530" + { + "name" "eslcologne2015_signature_markeloff" + "item_name" "#StickerKit_eslcologne2015_signature_markeloff" + "description_string" "#StickerKit_desc_eslcologne2015_signature_markeloff" + "sticker_material" "cologne2015/sig_markeloff" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "531" + { + "name" "eslcologne2015_signature_markeloff_foil" + "item_name" "#StickerKit_eslcologne2015_signature_markeloff_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_markeloff_foil" + "sticker_material" "cologne2015/sig_markeloff_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "532" + { + "name" "eslcologne2015_signature_markeloff_gold" + "item_name" "#StickerKit_eslcologne2015_signature_markeloff_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_markeloff_gold" + "sticker_material" "cologne2015/sig_markeloff_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "533" + { + "name" "eslcologne2015_signature_b1ad3" + "item_name" "#StickerKit_eslcologne2015_signature_b1ad3" + "description_string" "#StickerKit_desc_eslcologne2015_signature_b1ad3" + "sticker_material" "cologne2015/sig_b1ad3" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "534" + { + "name" "eslcologne2015_signature_b1ad3_foil" + "item_name" "#StickerKit_eslcologne2015_signature_b1ad3_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_b1ad3_foil" + "sticker_material" "cologne2015/sig_b1ad3_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "535" + { + "name" "eslcologne2015_signature_b1ad3_gold" + "item_name" "#StickerKit_eslcologne2015_signature_b1ad3_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_b1ad3_gold" + "sticker_material" "cologne2015/sig_b1ad3_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "536" + { + "name" "eslcologne2015_signature_bondik" + "item_name" "#StickerKit_eslcologne2015_signature_bondik" + "description_string" "#StickerKit_desc_eslcologne2015_signature_bondik" + "sticker_material" "cologne2015/sig_bondik" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "537" + { + "name" "eslcologne2015_signature_bondik_foil" + "item_name" "#StickerKit_eslcologne2015_signature_bondik_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_bondik_foil" + "sticker_material" "cologne2015/sig_bondik_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "538" + { + "name" "eslcologne2015_signature_bondik_gold" + "item_name" "#StickerKit_eslcologne2015_signature_bondik_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_bondik_gold" + "sticker_material" "cologne2015/sig_bondik_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "539" + { + "name" "eslcologne2015_signature_worldedit" + "item_name" "#StickerKit_eslcologne2015_signature_worldedit" + "description_string" "#StickerKit_desc_eslcologne2015_signature_worldedit" + "sticker_material" "cologne2015/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "540" + { + "name" "eslcologne2015_signature_worldedit_foil" + "item_name" "#StickerKit_eslcologne2015_signature_worldedit_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_worldedit_foil" + "sticker_material" "cologne2015/sig_worldedit_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "541" + { + "name" "eslcologne2015_signature_worldedit_gold" + "item_name" "#StickerKit_eslcologne2015_signature_worldedit_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_worldedit_gold" + "sticker_material" "cologne2015/sig_worldedit_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "542" + { + "name" "eslcologne2015_signature_davcost" + "item_name" "#StickerKit_eslcologne2015_signature_davcost" + "description_string" "#StickerKit_desc_eslcologne2015_signature_davcost" + "sticker_material" "cologne2015/sig_davcost" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "20273529" + } + "543" + { + "name" "eslcologne2015_signature_davcost_foil" + "item_name" "#StickerKit_eslcologne2015_signature_davcost_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_davcost_foil" + "sticker_material" "cologne2015/sig_davcost_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "20273529" + } + "544" + { + "name" "eslcologne2015_signature_davcost_gold" + "item_name" "#StickerKit_eslcologne2015_signature_davcost_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_davcost_gold" + "sticker_material" "cologne2015/sig_davcost_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + "tournament_player_id" "20273529" + } + "545" + { + "name" "eslcologne2015_signature_dennis" + "item_name" "#StickerKit_eslcologne2015_signature_dennis" + "description_string" "#StickerKit_desc_eslcologne2015_signature_dennis" + "sticker_material" "cologne2015/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "108076825" + } + "546" + { + "name" "eslcologne2015_signature_dennis_foil" + "item_name" "#StickerKit_eslcologne2015_signature_dennis_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_dennis_foil" + "sticker_material" "cologne2015/sig_dennis_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "108076825" + } + "547" + { + "name" "eslcologne2015_signature_dennis_gold" + "item_name" "#StickerKit_eslcologne2015_signature_dennis_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_dennis_gold" + "sticker_material" "cologne2015/sig_dennis_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "108076825" + } + "548" + { + "name" "eslcologne2015_signature_scream" + "item_name" "#StickerKit_eslcologne2015_signature_scream" + "description_string" "#StickerKit_desc_eslcologne2015_signature_scream" + "sticker_material" "cologne2015/sig_scream" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "28502520" + } + "549" + { + "name" "eslcologne2015_signature_scream_foil" + "item_name" "#StickerKit_eslcologne2015_signature_scream_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_scream_foil" + "sticker_material" "cologne2015/sig_scream_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "28502520" + } + "550" + { + "name" "eslcologne2015_signature_scream_gold" + "item_name" "#StickerKit_eslcologne2015_signature_scream_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_scream_gold" + "sticker_material" "cologne2015/sig_scream_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "28502520" + } + "551" + { + "name" "eslcologne2015_signature_rain" + "item_name" "#StickerKit_eslcologne2015_signature_rain" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rain" + "sticker_material" "cologne2015/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "37085479" + } + "552" + { + "name" "eslcologne2015_signature_rain_foil" + "item_name" "#StickerKit_eslcologne2015_signature_rain_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rain_foil" + "sticker_material" "cologne2015/sig_rain_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "37085479" + } + "553" + { + "name" "eslcologne2015_signature_rain_gold" + "item_name" "#StickerKit_eslcologne2015_signature_rain_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rain_gold" + "sticker_material" "cologne2015/sig_rain_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "37085479" + } + "554" + { + "name" "eslcologne2015_signature_maikelele" + "item_name" "#StickerKit_eslcologne2015_signature_maikelele" + "description_string" "#StickerKit_desc_eslcologne2015_signature_maikelele" + "sticker_material" "cologne2015/sig_maikelele" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "925972" + } + "555" + { + "name" "eslcologne2015_signature_maikelele_foil" + "item_name" "#StickerKit_eslcologne2015_signature_maikelele_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_maikelele_foil" + "sticker_material" "cologne2015/sig_maikelele_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "925972" + } + "556" + { + "name" "eslcologne2015_signature_maikelele_gold" + "item_name" "#StickerKit_eslcologne2015_signature_maikelele_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_maikelele_gold" + "sticker_material" "cologne2015/sig_maikelele_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "925972" + } + "557" + { + "name" "eslcologne2015_signature_fox" + "item_name" "#StickerKit_eslcologne2015_signature_fox" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fox" + "sticker_material" "cologne2015/sig_fox" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "1939536" + } + "558" + { + "name" "eslcologne2015_signature_fox_foil" + "item_name" "#StickerKit_eslcologne2015_signature_fox_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fox_foil" + "sticker_material" "cologne2015/sig_fox_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "1939536" + } + "559" + { + "name" "eslcologne2015_signature_fox_gold" + "item_name" "#StickerKit_eslcologne2015_signature_fox_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fox_gold" + "sticker_material" "cologne2015/sig_fox_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + "tournament_player_id" "1939536" + } + "560" + { + "name" "eslcologne2015_signature_rallen" + "item_name" "#StickerKit_eslcologne2015_signature_rallen" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rallen" + "sticker_material" "cologne2015/sig_rallen" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "31166738" + } + "561" + { + "name" "eslcologne2015_signature_rallen_foil" + "item_name" "#StickerKit_eslcologne2015_signature_rallen_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rallen_foil" + "sticker_material" "cologne2015/sig_rallen_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "31166738" + } + "562" + { + "name" "eslcologne2015_signature_rallen_gold" + "item_name" "#StickerKit_eslcologne2015_signature_rallen_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rallen_gold" + "sticker_material" "cologne2015/sig_rallen_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "31166738" + } + "563" + { + "name" "eslcologne2015_signature_hyper" + "item_name" "#StickerKit_eslcologne2015_signature_hyper" + "description_string" "#StickerKit_desc_eslcologne2015_signature_hyper" + "sticker_material" "cologne2015/sig_hyper" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "10357481" + } + "564" + { + "name" "eslcologne2015_signature_hyper_foil" + "item_name" "#StickerKit_eslcologne2015_signature_hyper_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_hyper_foil" + "sticker_material" "cologne2015/sig_hyper_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "10357481" + } + "565" + { + "name" "eslcologne2015_signature_hyper_gold" + "item_name" "#StickerKit_eslcologne2015_signature_hyper_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_hyper_gold" + "sticker_material" "cologne2015/sig_hyper_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "10357481" + } + "566" + { + "name" "eslcologne2015_signature_peet" + "item_name" "#StickerKit_eslcologne2015_signature_peet" + "description_string" "#StickerKit_desc_eslcologne2015_signature_peet" + "sticker_material" "cologne2015/sig_peet" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "104340617" + } + "567" + { + "name" "eslcologne2015_signature_peet_foil" + "item_name" "#StickerKit_eslcologne2015_signature_peet_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_peet_foil" + "sticker_material" "cologne2015/sig_peet_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "104340617" + } + "568" + { + "name" "eslcologne2015_signature_peet_gold" + "item_name" "#StickerKit_eslcologne2015_signature_peet_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_peet_gold" + "sticker_material" "cologne2015/sig_peet_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "104340617" + } + "569" + { + "name" "eslcologne2015_signature_furlan" + "item_name" "#StickerKit_eslcologne2015_signature_furlan" + "description_string" "#StickerKit_desc_eslcologne2015_signature_furlan" + "sticker_material" "cologne2015/sig_furlan" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "177495873" + } + "570" + { + "name" "eslcologne2015_signature_furlan_foil" + "item_name" "#StickerKit_eslcologne2015_signature_furlan_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_furlan_foil" + "sticker_material" "cologne2015/sig_furlan_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "177495873" + } + "571" + { + "name" "eslcologne2015_signature_furlan_gold" + "item_name" "#StickerKit_eslcologne2015_signature_furlan_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_furlan_gold" + "sticker_material" "cologne2015/sig_furlan_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "177495873" + } + "572" + { + "name" "eslcologne2015_signature_gruby" + "item_name" "#StickerKit_eslcologne2015_signature_gruby" + "description_string" "#StickerKit_desc_eslcologne2015_signature_gruby" + "sticker_material" "cologne2015/sig_gruby" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "44752530" + } + "573" + { + "name" "eslcologne2015_signature_gruby_foil" + "item_name" "#StickerKit_eslcologne2015_signature_gruby_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_gruby_foil" + "sticker_material" "cologne2015/sig_gruby_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "44752530" + } + "574" + { + "name" "eslcologne2015_signature_gruby_gold" + "item_name" "#StickerKit_eslcologne2015_signature_gruby_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_gruby_gold" + "sticker_material" "cologne2015/sig_gruby_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + "tournament_player_id" "44752530" + } + "575" + { + "name" "eslcologne2015_signature_maniac" + "item_name" "#StickerKit_eslcologne2015_signature_maniac" + "description_string" "#StickerKit_desc_eslcologne2015_signature_maniac" + "sticker_material" "cologne2015/sig_maniac" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "35761" + } + "576" + { + "name" "eslcologne2015_signature_maniac_foil" + "item_name" "#StickerKit_eslcologne2015_signature_maniac_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_maniac_foil" + "sticker_material" "cologne2015/sig_maniac_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "35761" + } + "577" + { + "name" "eslcologne2015_signature_maniac_gold" + "item_name" "#StickerKit_eslcologne2015_signature_maniac_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_maniac_gold" + "sticker_material" "cologne2015/sig_maniac_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "35761" + } + "578" + { + "name" "eslcologne2015_signature_ex6tenz" + "item_name" "#StickerKit_eslcologne2015_signature_ex6tenz" + "description_string" "#StickerKit_desc_eslcologne2015_signature_ex6tenz" + "sticker_material" "cologne2015/sig_ex6tenz" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "11737333" + } + "579" + { + "name" "eslcologne2015_signature_ex6tenz_foil" + "item_name" "#StickerKit_eslcologne2015_signature_ex6tenz_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_ex6tenz_foil" + "sticker_material" "cologne2015/sig_ex6tenz_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "11737333" + } + "580" + { + "name" "eslcologne2015_signature_ex6tenz_gold" + "item_name" "#StickerKit_eslcologne2015_signature_ex6tenz_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_ex6tenz_gold" + "sticker_material" "cologne2015/sig_ex6tenz_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "11737333" + } + "581" + { + "name" "eslcologne2015_signature_shox" + "item_name" "#StickerKit_eslcologne2015_signature_shox" + "description_string" "#StickerKit_desc_eslcologne2015_signature_shox" + "sticker_material" "cologne2015/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "46654567" + } + "582" + { + "name" "eslcologne2015_signature_shox_foil" + "item_name" "#StickerKit_eslcologne2015_signature_shox_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_shox_foil" + "sticker_material" "cologne2015/sig_shox_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "46654567" + } + "583" + { + "name" "eslcologne2015_signature_shox_gold" + "item_name" "#StickerKit_eslcologne2015_signature_shox_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_shox_gold" + "sticker_material" "cologne2015/sig_shox_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "46654567" + } + "584" + { + "name" "eslcologne2015_signature_smithzz" + "item_name" "#StickerKit_eslcologne2015_signature_smithzz" + "description_string" "#StickerKit_desc_eslcologne2015_signature_smithzz" + "sticker_material" "cologne2015/sig_smithzz" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "14321919" + } + "585" + { + "name" "eslcologne2015_signature_smithzz_foil" + "item_name" "#StickerKit_eslcologne2015_signature_smithzz_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_smithzz_foil" + "sticker_material" "cologne2015/sig_smithzz_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "14321919" + } + "586" + { + "name" "eslcologne2015_signature_smithzz_gold" + "item_name" "#StickerKit_eslcologne2015_signature_smithzz_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_smithzz_gold" + "sticker_material" "cologne2015/sig_smithzz_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "14321919" + } + "587" + { + "name" "eslcologne2015_signature_rpk" + "item_name" "#StickerKit_eslcologne2015_signature_rpk" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rpk" + "sticker_material" "cologne2015/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "53985773" + } + "588" + { + "name" "eslcologne2015_signature_rpk_foil" + "item_name" "#StickerKit_eslcologne2015_signature_rpk_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rpk_foil" + "sticker_material" "cologne2015/sig_rpk_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "53985773" + } + "589" + { + "name" "eslcologne2015_signature_rpk_gold" + "item_name" "#StickerKit_eslcologne2015_signature_rpk_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_rpk_gold" + "sticker_material" "cologne2015/sig_rpk_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + "tournament_player_id" "53985773" + } + "590" + { + "name" "eslcologne2015_signature_hazed" + "item_name" "#StickerKit_eslcologne2015_signature_hazed" + "description_string" "#StickerKit_desc_eslcologne2015_signature_hazed" + "sticker_material" "cologne2015/sig_hazed" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "591" + { + "name" "eslcologne2015_signature_hazed_foil" + "item_name" "#StickerKit_eslcologne2015_signature_hazed_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_hazed_foil" + "sticker_material" "cologne2015/sig_hazed_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "592" + { + "name" "eslcologne2015_signature_hazed_gold" + "item_name" "#StickerKit_eslcologne2015_signature_hazed_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_hazed_gold" + "sticker_material" "cologne2015/sig_hazed_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "593" + { + "name" "eslcologne2015_signature_fns" + "item_name" "#StickerKit_eslcologne2015_signature_fns" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fns" + "sticker_material" "cologne2015/sig_fns" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "17564706" + } + "594" + { + "name" "eslcologne2015_signature_fns_foil" + "item_name" "#StickerKit_eslcologne2015_signature_fns_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fns_foil" + "sticker_material" "cologne2015/sig_fns_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "17564706" + } + "595" + { + "name" "eslcologne2015_signature_fns_gold" + "item_name" "#StickerKit_eslcologne2015_signature_fns_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_fns_gold" + "sticker_material" "cologne2015/sig_fns_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "17564706" + } + "596" + { + "name" "eslcologne2015_signature_jdm64" + "item_name" "#StickerKit_eslcologne2015_signature_jdm64" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jdm64" + "sticker_material" "cologne2015/sig_jdm64" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "597" + { + "name" "eslcologne2015_signature_jdm64_foil" + "item_name" "#StickerKit_eslcologne2015_signature_jdm64_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jdm64_foil" + "sticker_material" "cologne2015/sig_jdm64_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "598" + { + "name" "eslcologne2015_signature_jdm64_gold" + "item_name" "#StickerKit_eslcologne2015_signature_jdm64_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_jdm64_gold" + "sticker_material" "cologne2015/sig_jdm64_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "599" + { + "name" "eslcologne2015_signature_reltuc" + "item_name" "#StickerKit_eslcologne2015_signature_reltuc" + "description_string" "#StickerKit_desc_eslcologne2015_signature_reltuc" + "sticker_material" "cologne2015/sig_reltuc" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "600" + { + "name" "eslcologne2015_signature_reltuc_foil" + "item_name" "#StickerKit_eslcologne2015_signature_reltuc_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_reltuc_foil" + "sticker_material" "cologne2015/sig_reltuc_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "601" + { + "name" "eslcologne2015_signature_reltuc_gold" + "item_name" "#StickerKit_eslcologne2015_signature_reltuc_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_reltuc_gold" + "sticker_material" "cologne2015/sig_reltuc_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "602" + { + "name" "eslcologne2015_signature_tarik" + "item_name" "#StickerKit_eslcologne2015_signature_tarik" + "description_string" "#StickerKit_desc_eslcologne2015_signature_tarik" + "sticker_material" "cologne2015/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "603" + { + "name" "eslcologne2015_signature_tarik_foil" + "item_name" "#StickerKit_eslcologne2015_signature_tarik_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_tarik_foil" + "sticker_material" "cologne2015/sig_tarik_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "604" + { + "name" "eslcologne2015_signature_tarik_gold" + "item_name" "#StickerKit_eslcologne2015_signature_tarik_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_tarik_gold" + "sticker_material" "cologne2015/sig_tarik_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "605" + { + "name" "eslcologne2015_signature_nothing" + "item_name" "#StickerKit_eslcologne2015_signature_nothing" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nothing" + "sticker_material" "cologne2015/sig_nothing" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "755286" + } + "606" + { + "name" "eslcologne2015_signature_nothing_foil" + "item_name" "#StickerKit_eslcologne2015_signature_nothing_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nothing_foil" + "sticker_material" "cologne2015/sig_nothing_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "755286" + } + "607" + { + "name" "eslcologne2015_signature_nothing_gold" + "item_name" "#StickerKit_eslcologne2015_signature_nothing_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_nothing_gold" + "sticker_material" "cologne2015/sig_nothing_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "755286" + } + "608" + { + "name" "eslcologne2015_signature_sgares" + "item_name" "#StickerKit_eslcologne2015_signature_sgares" + "description_string" "#StickerKit_desc_eslcologne2015_signature_sgares" + "sticker_material" "cologne2015/sig_sgares" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "164004" + } + "609" + { + "name" "eslcologne2015_signature_sgares_foil" + "item_name" "#StickerKit_eslcologne2015_signature_sgares_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_sgares_foil" + "sticker_material" "cologne2015/sig_sgares_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "164004" + } + "610" + { + "name" "eslcologne2015_signature_sgares_gold" + "item_name" "#StickerKit_eslcologne2015_signature_sgares_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_sgares_gold" + "sticker_material" "cologne2015/sig_sgares_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "164004" + } + "611" + { + "name" "eslcologne2015_signature_shroud" + "item_name" "#StickerKit_eslcologne2015_signature_shroud" + "description_string" "#StickerKit_desc_eslcologne2015_signature_shroud" + "sticker_material" "cologne2015/sig_shroud" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "4515926" + } + "612" + { + "name" "eslcologne2015_signature_shroud_foil" + "item_name" "#StickerKit_eslcologne2015_signature_shroud_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_shroud_foil" + "sticker_material" "cologne2015/sig_shroud_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "4515926" + } + "613" + { + "name" "eslcologne2015_signature_shroud_gold" + "item_name" "#StickerKit_eslcologne2015_signature_shroud_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_shroud_gold" + "sticker_material" "cologne2015/sig_shroud_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "4515926" + } + "614" + { + "name" "eslcologne2015_signature_freakazoid" + "item_name" "#StickerKit_eslcologne2015_signature_freakazoid" + "description_string" "#StickerKit_desc_eslcologne2015_signature_freakazoid" + "sticker_material" "cologne2015/sig_freakazoid" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "16883071" + } + "615" + { + "name" "eslcologne2015_signature_freakazoid_foil" + "item_name" "#StickerKit_eslcologne2015_signature_freakazoid_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_freakazoid_foil" + "sticker_material" "cologne2015/sig_freakazoid_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "16883071" + } + "616" + { + "name" "eslcologne2015_signature_freakazoid_gold" + "item_name" "#StickerKit_eslcologne2015_signature_freakazoid_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_freakazoid_gold" + "sticker_material" "cologne2015/sig_freakazoid_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "16883071" + } + "617" + { + "name" "eslcologne2015_signature_skadoodle" + "item_name" "#StickerKit_eslcologne2015_signature_skadoodle" + "description_string" "#StickerKit_desc_eslcologne2015_signature_skadoodle" + "sticker_material" "cologne2015/sig_skadoodle" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "21075725" + } + "618" + { + "name" "eslcologne2015_signature_skadoodle_foil" + "item_name" "#StickerKit_eslcologne2015_signature_skadoodle_foil" + "description_string" "#StickerKit_desc_eslcologne2015_signature_skadoodle_foil" + "sticker_material" "cologne2015/sig_skadoodle_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "21075725" + } + "619" + { + "name" "eslcologne2015_signature_skadoodle_gold" + "item_name" "#StickerKit_eslcologne2015_signature_skadoodle_gold" + "description_string" "#StickerKit_desc_eslcologne2015_signature_skadoodle_gold" + "sticker_material" "cologne2015/sig_skadoodle_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + "tournament_player_id" "21075725" + } + "620" + { + "name" "eslcologne2015_team_fnatic" + "item_name" "#StickerKit_eslcologne2015_team_fnatic" + "description_string" "#StickerKit_desc_eslcologne2015_team_fnatic" + "sticker_material" "cologne2015/fnatic" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "6" + } + "621" + { + "name" "eslcologne2015_team_fnatic_foil" + "item_name" "#StickerKit_eslcologne2015_team_fnatic_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_fnatic_foil" + "sticker_material" "cologne2015/fnatic_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + } + "622" + { + "name" "eslcologne2015_team_fnatic_gold" + "item_name" "#StickerKit_eslcologne2015_team_fnatic_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_fnatic_gold" + "sticker_material" "cologne2015/fnatic_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "6" + } + "623" + { + "name" "eslcologne2015_team_virtuspro" + "item_name" "#StickerKit_eslcologne2015_team_virtuspro" + "description_string" "#StickerKit_desc_eslcologne2015_team_virtuspro" + "sticker_material" "cologne2015/virtuspro" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "31" + } + "624" + { + "name" "eslcologne2015_team_virtuspro_foil" + "item_name" "#StickerKit_eslcologne2015_team_virtuspro_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_virtuspro_foil" + "sticker_material" "cologne2015/virtuspro_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + } + "625" + { + "name" "eslcologne2015_team_virtuspro_gold" + "item_name" "#StickerKit_eslcologne2015_team_virtuspro_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_virtuspro_gold" + "sticker_material" "cologne2015/virtuspro_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "31" + } + "626" + { + "name" "eslcologne2015_team_mousesports" + "item_name" "#StickerKit_eslcologne2015_team_mousesports" + "description_string" "#StickerKit_desc_eslcologne2015_team_mousesports" + "sticker_material" "cologne2015/mousesports" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "29" + } + "627" + { + "name" "eslcologne2015_team_mousesports_foil" + "item_name" "#StickerKit_eslcologne2015_team_mousesports_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_mousesports_foil" + "sticker_material" "cologne2015/mousesports_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + } + "628" + { + "name" "eslcologne2015_team_mousesports_gold" + "item_name" "#StickerKit_eslcologne2015_team_mousesports_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_mousesports_gold" + "sticker_material" "cologne2015/mousesports_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "29" + } + "629" + { + "name" "eslcologne2015_team_navi" + "item_name" "#StickerKit_eslcologne2015_team_navi" + "description_string" "#StickerKit_desc_eslcologne2015_team_navi" + "sticker_material" "cologne2015/navi" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "12" + } + "630" + { + "name" "eslcologne2015_team_navi_foil" + "item_name" "#StickerKit_eslcologne2015_team_navi_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_navi_foil" + "sticker_material" "cologne2015/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + } + "631" + { + "name" "eslcologne2015_team_navi_gold" + "item_name" "#StickerKit_eslcologne2015_team_navi_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_navi_gold" + "sticker_material" "cologne2015/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "12" + } + "632" + { + "name" "eslcologne2015_team_renegades" + "item_name" "#StickerKit_eslcologne2015_team_renegades" + "description_string" "#StickerKit_desc_eslcologne2015_team_renegades" + "sticker_material" "cologne2015/renegades" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "53" + } + "633" + { + "name" "eslcologne2015_team_renegades_foil" + "item_name" "#StickerKit_eslcologne2015_team_renegades_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_renegades_foil" + "sticker_material" "cologne2015/renegades_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + } + "634" + { + "name" "eslcologne2015_team_renegades_gold" + "item_name" "#StickerKit_eslcologne2015_team_renegades_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_renegades_gold" + "sticker_material" "cologne2015/renegades_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "53" + } + "635" + { + "name" "eslcologne2015_team_kinguin" + "item_name" "#StickerKit_eslcologne2015_team_kinguin" + "description_string" "#StickerKit_desc_eslcologne2015_team_kinguin" + "sticker_material" "cologne2015/kinguin" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "55" + } + "636" + { + "name" "eslcologne2015_team_kinguin_foil" + "item_name" "#StickerKit_eslcologne2015_team_kinguin_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_kinguin_foil" + "sticker_material" "cologne2015/kinguin_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + } + "637" + { + "name" "eslcologne2015_team_kinguin_gold" + "item_name" "#StickerKit_eslcologne2015_team_kinguin_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_kinguin_gold" + "sticker_material" "cologne2015/kinguin_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "55" + } + "638" + { + "name" "eslcologne2015_team_ebettle" + "item_name" "#StickerKit_eslcologne2015_team_ebettle" + "description_string" "#StickerKit_desc_eslcologne2015_team_ebettle" + "sticker_material" "cologne2015/ebettle" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "56" + } + "639" + { + "name" "eslcologne2015_team_ebettle_foil" + "item_name" "#StickerKit_eslcologne2015_team_ebettle_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_ebettle_foil" + "sticker_material" "cologne2015/ebettle_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + } + "640" + { + "name" "eslcologne2015_team_ebettle_gold" + "item_name" "#StickerKit_eslcologne2015_team_ebettle_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_ebettle_gold" + "sticker_material" "cologne2015/ebettle_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "56" + } + "641" + { + "name" "eslcologne2015_team_cloud9" + "item_name" "#StickerKit_eslcologne2015_team_cloud9" + "description_string" "#StickerKit_desc_eslcologne2015_team_cloud9" + "sticker_material" "cologne2015/cloud9" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "52" + } + "642" + { + "name" "eslcologne2015_team_cloud9_foil" + "item_name" "#StickerKit_eslcologne2015_team_cloud9_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_cloud9_foil" + "sticker_material" "cologne2015/cloud9_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + } + "643" + { + "name" "eslcologne2015_team_cloud9_gold" + "item_name" "#StickerKit_eslcologne2015_team_cloud9_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_cloud9_gold" + "sticker_material" "cologne2015/cloud9_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "52" + } + "644" + { + "name" "eslcologne2015_team_ninjasinpyjamas" + "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas" + "description_string" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas" + "sticker_material" "cologne2015/ninjasinpyjamas" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "1" + } + "645" + { + "name" "eslcologne2015_team_ninjasinpyjamas_foil" + "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas_foil" + "sticker_material" "cologne2015/ninjasinpyjamas_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + } + "646" + { + "name" "eslcologne2015_team_ninjasinpyjamas_gold" + "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas_gold" + "sticker_material" "cologne2015/ninjasinpyjamas_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "1" + } + "647" + { + "name" "eslcologne2015_team_envyus" + "item_name" "#StickerKit_eslcologne2015_team_envyus" + "description_string" "#StickerKit_desc_eslcologne2015_team_envyus" + "sticker_material" "cologne2015/envyus" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "46" + } + "648" + { + "name" "eslcologne2015_team_envyus_foil" + "item_name" "#StickerKit_eslcologne2015_team_envyus_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_envyus_foil" + "sticker_material" "cologne2015/envyus_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + } + "649" + { + "name" "eslcologne2015_team_envyus_gold" + "item_name" "#StickerKit_eslcologne2015_team_envyus_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_envyus_gold" + "sticker_material" "cologne2015/envyus_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "46" + } + "650" + { + "name" "eslcologne2015_team_luminositygaming" + "item_name" "#StickerKit_eslcologne2015_team_luminositygaming" + "description_string" "#StickerKit_desc_eslcologne2015_team_luminositygaming" + "sticker_material" "cologne2015/luminositygaming" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "57" + } + "651" + { + "name" "eslcologne2015_team_luminositygaming_foil" + "item_name" "#StickerKit_eslcologne2015_team_luminositygaming_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_luminositygaming_foil" + "sticker_material" "cologne2015/luminositygaming_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + } + "652" + { + "name" "eslcologne2015_team_luminositygaming_gold" + "item_name" "#StickerKit_eslcologne2015_team_luminositygaming_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_luminositygaming_gold" + "sticker_material" "cologne2015/luminositygaming_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "57" + } + "653" + { + "name" "eslcologne2015_team_solomid" + "item_name" "#StickerKit_eslcologne2015_team_solomid" + "description_string" "#StickerKit_desc_eslcologne2015_team_solomid" + "sticker_material" "cologne2015/solomid" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "58" + } + "654" + { + "name" "eslcologne2015_team_solomid_foil" + "item_name" "#StickerKit_eslcologne2015_team_solomid_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_solomid_foil" + "sticker_material" "cologne2015/solomid_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + } + "655" + { + "name" "eslcologne2015_team_solomid_gold" + "item_name" "#StickerKit_eslcologne2015_team_solomid_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_solomid_gold" + "sticker_material" "cologne2015/solomid_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "58" + } + "656" + { + "name" "eslcologne2015_team_teamimmunity" + "item_name" "#StickerKit_eslcologne2015_team_teamimmunity" + "description_string" "#StickerKit_desc_eslcologne2015_team_teamimmunity" + "sticker_material" "cologne2015/teamimmunity" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "54" + } + "657" + { + "name" "eslcologne2015_team_teamimmunity_foil" + "item_name" "#StickerKit_eslcologne2015_team_teamimmunity_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_teamimmunity_foil" + "sticker_material" "cologne2015/teamimmunity_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + } + "658" + { + "name" "eslcologne2015_team_teamimmunity_gold" + "item_name" "#StickerKit_eslcologne2015_team_teamimmunity_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_teamimmunity_gold" + "sticker_material" "cologne2015/teamimmunity_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "54" + } + "659" + { + "name" "eslcologne2015_team_flipside" + "item_name" "#StickerKit_eslcologne2015_team_flipside" + "description_string" "#StickerKit_desc_eslcologne2015_team_flipside" + "sticker_material" "cologne2015/flipside" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "43" + } + "660" + { + "name" "eslcologne2015_team_flipside_foil" + "item_name" "#StickerKit_eslcologne2015_team_flipside_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_flipside_foil" + "sticker_material" "cologne2015/flipside_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + } + "661" + { + "name" "eslcologne2015_team_flipside_gold" + "item_name" "#StickerKit_eslcologne2015_team_flipside_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_flipside_gold" + "sticker_material" "cologne2015/flipside_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "43" + } + "662" + { + "name" "eslcologne2015_team_titan" + "item_name" "#StickerKit_eslcologne2015_team_titan" + "description_string" "#StickerKit_desc_eslcologne2015_team_titan" + "sticker_material" "cologne2015/titan" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "27" + } + "663" + { + "name" "eslcologne2015_team_titan_foil" + "item_name" "#StickerKit_eslcologne2015_team_titan_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_titan_foil" + "sticker_material" "cologne2015/titan_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + } + "664" + { + "name" "eslcologne2015_team_titan_gold" + "item_name" "#StickerKit_eslcologne2015_team_titan_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_titan_gold" + "sticker_material" "cologne2015/titan_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "27" + } + "665" + { + "name" "eslcologne2015_team_clg" + "item_name" "#StickerKit_eslcologne2015_team_clg" + "description_string" "#StickerKit_desc_eslcologne2015_team_clg" + "sticker_material" "cologne2015/clg" + "item_rarity" "rare" + "tournament_event_id" "7" + "tournament_team_id" "49" + } + "666" + { + "name" "eslcologne2015_team_clg_foil" + "item_name" "#StickerKit_eslcologne2015_team_clg_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_clg_foil" + "sticker_material" "cologne2015/clg_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + } + "667" + { + "name" "eslcologne2015_team_clg_gold" + "item_name" "#StickerKit_eslcologne2015_team_clg_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_clg_gold" + "sticker_material" "cologne2015/clg_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + "tournament_team_id" "49" + } + "668" + { + "name" "eslcologne2015_team_esl" + "item_name" "#StickerKit_eslcologne2015_team_esl" + "description_string" "#StickerKit_desc_eslcologne2015_team_esl" + "sticker_material" "cologne2015/esl" + "item_rarity" "rare" + "tournament_event_id" "7" + } + "669" + { + "name" "eslcologne2015_team_esl_foil" + "item_name" "#StickerKit_eslcologne2015_team_esl_foil" + "description_string" "#StickerKit_desc_eslcologne2015_team_esl_foil" + "sticker_material" "cologne2015/esl_foil" + "item_rarity" "legendary" + "tournament_event_id" "7" + } + "670" + { + "name" "eslcologne2015_team_esl_gold" + "item_name" "#StickerKit_eslcologne2015_team_esl_gold" + "description_string" "#StickerKit_desc_eslcologne2015_team_esl_gold" + "sticker_material" "cologne2015/esl_gold" + "item_rarity" "legendary" + "tournament_event_id" "7" + } + "671" + { + "name" "cluj2015_signature_reltuc" + "item_name" "#StickerKit_cluj2015_signature_reltuc" + "description_string" "#StickerKit_desc_cluj2015_signature_reltuc" + "sticker_material" "cluj2015/sig_reltuc" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "672" + { + "name" "cluj2015_signature_reltuc_foil" + "item_name" "#StickerKit_cluj2015_signature_reltuc_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_reltuc_foil" + "sticker_material" "cluj2015/sig_reltuc_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "673" + { + "name" "cluj2015_signature_reltuc_gold" + "item_name" "#StickerKit_cluj2015_signature_reltuc_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_reltuc_gold" + "sticker_material" "cluj2015/sig_reltuc_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "674" + { + "name" "cluj2015_signature_fns" + "item_name" "#StickerKit_cluj2015_signature_fns" + "description_string" "#StickerKit_desc_cluj2015_signature_fns" + "sticker_material" "cluj2015/sig_fns" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "17564706" + } + "675" + { + "name" "cluj2015_signature_fns_foil" + "item_name" "#StickerKit_cluj2015_signature_fns_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_fns_foil" + "sticker_material" "cluj2015/sig_fns_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "17564706" + } + "676" + { + "name" "cluj2015_signature_fns_gold" + "item_name" "#StickerKit_cluj2015_signature_fns_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_fns_gold" + "sticker_material" "cluj2015/sig_fns_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "17564706" + } + "677" + { + "name" "cluj2015_signature_hazed" + "item_name" "#StickerKit_cluj2015_signature_hazed" + "description_string" "#StickerKit_desc_cluj2015_signature_hazed" + "sticker_material" "cluj2015/sig_hazed" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "678" + { + "name" "cluj2015_signature_hazed_foil" + "item_name" "#StickerKit_cluj2015_signature_hazed_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_hazed_foil" + "sticker_material" "cluj2015/sig_hazed_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "679" + { + "name" "cluj2015_signature_hazed_gold" + "item_name" "#StickerKit_cluj2015_signature_hazed_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_hazed_gold" + "sticker_material" "cluj2015/sig_hazed_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "680" + { + "name" "cluj2015_signature_jdm64" + "item_name" "#StickerKit_cluj2015_signature_jdm64" + "description_string" "#StickerKit_desc_cluj2015_signature_jdm64" + "sticker_material" "cluj2015/sig_jdm64" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "681" + { + "name" "cluj2015_signature_jdm64_foil" + "item_name" "#StickerKit_cluj2015_signature_jdm64_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_jdm64_foil" + "sticker_material" "cluj2015/sig_jdm64_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "682" + { + "name" "cluj2015_signature_jdm64_gold" + "item_name" "#StickerKit_cluj2015_signature_jdm64_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_jdm64_gold" + "sticker_material" "cluj2015/sig_jdm64_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "683" + { + "name" "cluj2015_signature_tarik" + "item_name" "#StickerKit_cluj2015_signature_tarik" + "description_string" "#StickerKit_desc_cluj2015_signature_tarik" + "sticker_material" "cluj2015/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "684" + { + "name" "cluj2015_signature_tarik_foil" + "item_name" "#StickerKit_cluj2015_signature_tarik_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_tarik_foil" + "sticker_material" "cluj2015/sig_tarik_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "685" + { + "name" "cluj2015_signature_tarik_gold" + "item_name" "#StickerKit_cluj2015_signature_tarik_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_tarik_gold" + "sticker_material" "cluj2015/sig_tarik_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "686" + { + "name" "cluj2015_signature_freakazoid" + "item_name" "#StickerKit_cluj2015_signature_freakazoid" + "description_string" "#StickerKit_desc_cluj2015_signature_freakazoid" + "sticker_material" "cluj2015/sig_freakazoid" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "16883071" + } + "687" + { + "name" "cluj2015_signature_freakazoid_foil" + "item_name" "#StickerKit_cluj2015_signature_freakazoid_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_freakazoid_foil" + "sticker_material" "cluj2015/sig_freakazoid_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "16883071" + } + "688" + { + "name" "cluj2015_signature_freakazoid_gold" + "item_name" "#StickerKit_cluj2015_signature_freakazoid_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_freakazoid_gold" + "sticker_material" "cluj2015/sig_freakazoid_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "16883071" + } + "689" + { + "name" "cluj2015_signature_sgares" + "item_name" "#StickerKit_cluj2015_signature_sgares" + "description_string" "#StickerKit_desc_cluj2015_signature_sgares" + "sticker_material" "cluj2015/sig_sgares" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "164004" + } + "690" + { + "name" "cluj2015_signature_sgares_foil" + "item_name" "#StickerKit_cluj2015_signature_sgares_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_sgares_foil" + "sticker_material" "cluj2015/sig_sgares_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "164004" + } + "691" + { + "name" "cluj2015_signature_sgares_gold" + "item_name" "#StickerKit_cluj2015_signature_sgares_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_sgares_gold" + "sticker_material" "cluj2015/sig_sgares_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "164004" + } + "692" + { + "name" "cluj2015_signature_shroud" + "item_name" "#StickerKit_cluj2015_signature_shroud" + "description_string" "#StickerKit_desc_cluj2015_signature_shroud" + "sticker_material" "cluj2015/sig_shroud" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "693" + { + "name" "cluj2015_signature_shroud_foil" + "item_name" "#StickerKit_cluj2015_signature_shroud_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_shroud_foil" + "sticker_material" "cluj2015/sig_shroud_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "694" + { + "name" "cluj2015_signature_shroud_gold" + "item_name" "#StickerKit_cluj2015_signature_shroud_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_shroud_gold" + "sticker_material" "cluj2015/sig_shroud_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "695" + { + "name" "cluj2015_signature_skadoodle" + "item_name" "#StickerKit_cluj2015_signature_skadoodle" + "description_string" "#StickerKit_desc_cluj2015_signature_skadoodle" + "sticker_material" "cluj2015/sig_skadoodle" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "696" + { + "name" "cluj2015_signature_skadoodle_foil" + "item_name" "#StickerKit_cluj2015_signature_skadoodle_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_skadoodle_foil" + "sticker_material" "cluj2015/sig_skadoodle_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "697" + { + "name" "cluj2015_signature_skadoodle_gold" + "item_name" "#StickerKit_cluj2015_signature_skadoodle_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_skadoodle_gold" + "sticker_material" "cluj2015/sig_skadoodle_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "698" + { + "name" "cluj2015_signature_nothing" + "item_name" "#StickerKit_cluj2015_signature_nothing" + "description_string" "#StickerKit_desc_cluj2015_signature_nothing" + "sticker_material" "cluj2015/sig_nothing" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "699" + { + "name" "cluj2015_signature_nothing_foil" + "item_name" "#StickerKit_cluj2015_signature_nothing_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_nothing_foil" + "sticker_material" "cluj2015/sig_nothing_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "700" + { + "name" "cluj2015_signature_nothing_gold" + "item_name" "#StickerKit_cluj2015_signature_nothing_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_nothing_gold" + "sticker_material" "cluj2015/sig_nothing_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "701" + { + "name" "cluj2015_signature_apex" + "item_name" "#StickerKit_cluj2015_signature_apex" + "description_string" "#StickerKit_desc_cluj2015_signature_apex" + "sticker_material" "cluj2015/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "702" + { + "name" "cluj2015_signature_apex_foil" + "item_name" "#StickerKit_cluj2015_signature_apex_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_apex_foil" + "sticker_material" "cluj2015/sig_apex_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "703" + { + "name" "cluj2015_signature_apex_gold" + "item_name" "#StickerKit_cluj2015_signature_apex_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_apex_gold" + "sticker_material" "cluj2015/sig_apex_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "704" + { + "name" "cluj2015_signature_happy" + "item_name" "#StickerKit_cluj2015_signature_happy" + "description_string" "#StickerKit_desc_cluj2015_signature_happy" + "sticker_material" "cluj2015/sig_happy" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "705" + { + "name" "cluj2015_signature_happy_foil" + "item_name" "#StickerKit_cluj2015_signature_happy_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_happy_foil" + "sticker_material" "cluj2015/sig_happy_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "706" + { + "name" "cluj2015_signature_happy_gold" + "item_name" "#StickerKit_cluj2015_signature_happy_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_happy_gold" + "sticker_material" "cluj2015/sig_happy_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "707" + { + "name" "cluj2015_signature_kioshima" + "item_name" "#StickerKit_cluj2015_signature_kioshima" + "description_string" "#StickerKit_desc_cluj2015_signature_kioshima" + "sticker_material" "cluj2015/sig_kioshima" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "40517167" + } + "708" + { + "name" "cluj2015_signature_kioshima_foil" + "item_name" "#StickerKit_cluj2015_signature_kioshima_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_kioshima_foil" + "sticker_material" "cluj2015/sig_kioshima_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "40517167" + } + "709" + { + "name" "cluj2015_signature_kioshima_gold" + "item_name" "#StickerKit_cluj2015_signature_kioshima_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_kioshima_gold" + "sticker_material" "cluj2015/sig_kioshima_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "40517167" + } + "710" + { + "name" "cluj2015_signature_kennys" + "item_name" "#StickerKit_cluj2015_signature_kennys" + "description_string" "#StickerKit_desc_cluj2015_signature_kennys" + "sticker_material" "cluj2015/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "711" + { + "name" "cluj2015_signature_kennys_foil" + "item_name" "#StickerKit_cluj2015_signature_kennys_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_kennys_foil" + "sticker_material" "cluj2015/sig_kennys_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "712" + { + "name" "cluj2015_signature_kennys_gold" + "item_name" "#StickerKit_cluj2015_signature_kennys_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_kennys_gold" + "sticker_material" "cluj2015/sig_kennys_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "713" + { + "name" "cluj2015_signature_nbk" + "item_name" "#StickerKit_cluj2015_signature_nbk" + "description_string" "#StickerKit_desc_cluj2015_signature_nbk" + "sticker_material" "cluj2015/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "714" + { + "name" "cluj2015_signature_nbk_foil" + "item_name" "#StickerKit_cluj2015_signature_nbk_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_nbk_foil" + "sticker_material" "cluj2015/sig_nbk_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "715" + { + "name" "cluj2015_signature_nbk_gold" + "item_name" "#StickerKit_cluj2015_signature_nbk_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_nbk_gold" + "sticker_material" "cluj2015/sig_nbk_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "716" + { + "name" "cluj2015_signature_b1ad3" + "item_name" "#StickerKit_cluj2015_signature_b1ad3" + "description_string" "#StickerKit_desc_cluj2015_signature_b1ad3" + "sticker_material" "cluj2015/sig_b1ad3" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "717" + { + "name" "cluj2015_signature_b1ad3_foil" + "item_name" "#StickerKit_cluj2015_signature_b1ad3_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_b1ad3_foil" + "sticker_material" "cluj2015/sig_b1ad3_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "718" + { + "name" "cluj2015_signature_b1ad3_gold" + "item_name" "#StickerKit_cluj2015_signature_b1ad3_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_b1ad3_gold" + "sticker_material" "cluj2015/sig_b1ad3_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "719" + { + "name" "cluj2015_signature_bondik" + "item_name" "#StickerKit_cluj2015_signature_bondik" + "description_string" "#StickerKit_desc_cluj2015_signature_bondik" + "sticker_material" "cluj2015/sig_bondik" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "720" + { + "name" "cluj2015_signature_bondik_foil" + "item_name" "#StickerKit_cluj2015_signature_bondik_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_bondik_foil" + "sticker_material" "cluj2015/sig_bondik_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "721" + { + "name" "cluj2015_signature_bondik_gold" + "item_name" "#StickerKit_cluj2015_signature_bondik_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_bondik_gold" + "sticker_material" "cluj2015/sig_bondik_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "722" + { + "name" "cluj2015_signature_davcost" + "item_name" "#StickerKit_cluj2015_signature_davcost" + "description_string" "#StickerKit_desc_cluj2015_signature_davcost" + "sticker_material" "cluj2015/sig_davcost" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "20273529" + } + "723" + { + "name" "cluj2015_signature_davcost_foil" + "item_name" "#StickerKit_cluj2015_signature_davcost_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_davcost_foil" + "sticker_material" "cluj2015/sig_davcost_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "20273529" + } + "724" + { + "name" "cluj2015_signature_davcost_gold" + "item_name" "#StickerKit_cluj2015_signature_davcost_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_davcost_gold" + "sticker_material" "cluj2015/sig_davcost_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "20273529" + } + "725" + { + "name" "cluj2015_signature_markeloff" + "item_name" "#StickerKit_cluj2015_signature_markeloff" + "description_string" "#StickerKit_desc_cluj2015_signature_markeloff" + "sticker_material" "cluj2015/sig_markeloff" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "726" + { + "name" "cluj2015_signature_markeloff_foil" + "item_name" "#StickerKit_cluj2015_signature_markeloff_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_markeloff_foil" + "sticker_material" "cluj2015/sig_markeloff_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "727" + { + "name" "cluj2015_signature_markeloff_gold" + "item_name" "#StickerKit_cluj2015_signature_markeloff_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_markeloff_gold" + "sticker_material" "cluj2015/sig_markeloff_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "728" + { + "name" "cluj2015_signature_worldedit" + "item_name" "#StickerKit_cluj2015_signature_worldedit" + "description_string" "#StickerKit_desc_cluj2015_signature_worldedit" + "sticker_material" "cluj2015/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "729" + { + "name" "cluj2015_signature_worldedit_foil" + "item_name" "#StickerKit_cluj2015_signature_worldedit_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_worldedit_foil" + "sticker_material" "cluj2015/sig_worldedit_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "730" + { + "name" "cluj2015_signature_worldedit_gold" + "item_name" "#StickerKit_cluj2015_signature_worldedit_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_worldedit_gold" + "sticker_material" "cluj2015/sig_worldedit_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "731" + { + "name" "cluj2015_signature_flusha" + "item_name" "#StickerKit_cluj2015_signature_flusha" + "description_string" "#StickerKit_desc_cluj2015_signature_flusha" + "sticker_material" "cluj2015/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "732" + { + "name" "cluj2015_signature_flusha_foil" + "item_name" "#StickerKit_cluj2015_signature_flusha_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_flusha_foil" + "sticker_material" "cluj2015/sig_flusha_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "733" + { + "name" "cluj2015_signature_flusha_gold" + "item_name" "#StickerKit_cluj2015_signature_flusha_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_flusha_gold" + "sticker_material" "cluj2015/sig_flusha_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "734" + { + "name" "cluj2015_signature_jw" + "item_name" "#StickerKit_cluj2015_signature_jw" + "description_string" "#StickerKit_desc_cluj2015_signature_jw" + "sticker_material" "cluj2015/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "735" + { + "name" "cluj2015_signature_jw_foil" + "item_name" "#StickerKit_cluj2015_signature_jw_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_jw_foil" + "sticker_material" "cluj2015/sig_jw_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "736" + { + "name" "cluj2015_signature_jw_gold" + "item_name" "#StickerKit_cluj2015_signature_jw_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_jw_gold" + "sticker_material" "cluj2015/sig_jw_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "737" + { + "name" "cluj2015_signature_krimz" + "item_name" "#StickerKit_cluj2015_signature_krimz" + "description_string" "#StickerKit_desc_cluj2015_signature_krimz" + "sticker_material" "cluj2015/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "738" + { + "name" "cluj2015_signature_krimz_foil" + "item_name" "#StickerKit_cluj2015_signature_krimz_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_krimz_foil" + "sticker_material" "cluj2015/sig_krimz_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "739" + { + "name" "cluj2015_signature_krimz_gold" + "item_name" "#StickerKit_cluj2015_signature_krimz_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_krimz_gold" + "sticker_material" "cluj2015/sig_krimz_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "740" + { + "name" "cluj2015_signature_olofmeister" + "item_name" "#StickerKit_cluj2015_signature_olofmeister" + "description_string" "#StickerKit_desc_cluj2015_signature_olofmeister" + "sticker_material" "cluj2015/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "741" + { + "name" "cluj2015_signature_olofmeister_foil" + "item_name" "#StickerKit_cluj2015_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_olofmeister_foil" + "sticker_material" "cluj2015/sig_olofmeister_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "742" + { + "name" "cluj2015_signature_olofmeister_gold" + "item_name" "#StickerKit_cluj2015_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_olofmeister_gold" + "sticker_material" "cluj2015/sig_olofmeister_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "743" + { + "name" "cluj2015_signature_pronax" + "item_name" "#StickerKit_cluj2015_signature_pronax" + "description_string" "#StickerKit_desc_cluj2015_signature_pronax" + "sticker_material" "cluj2015/sig_pronax" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "9419182" + } + "744" + { + "name" "cluj2015_signature_pronax_foil" + "item_name" "#StickerKit_cluj2015_signature_pronax_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_pronax_foil" + "sticker_material" "cluj2015/sig_pronax_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "9419182" + } + "745" + { + "name" "cluj2015_signature_pronax_gold" + "item_name" "#StickerKit_cluj2015_signature_pronax_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_pronax_gold" + "sticker_material" "cluj2015/sig_pronax_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + "tournament_player_id" "9419182" + } + "746" + { + "name" "cluj2015_signature_dennis" + "item_name" "#StickerKit_cluj2015_signature_dennis" + "description_string" "#StickerKit_desc_cluj2015_signature_dennis" + "sticker_material" "cluj2015/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "108076825" + } + "747" + { + "name" "cluj2015_signature_dennis_foil" + "item_name" "#StickerKit_cluj2015_signature_dennis_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_dennis_foil" + "sticker_material" "cluj2015/sig_dennis_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "108076825" + } + "748" + { + "name" "cluj2015_signature_dennis_gold" + "item_name" "#StickerKit_cluj2015_signature_dennis_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_dennis_gold" + "sticker_material" "cluj2015/sig_dennis_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "108076825" + } + "749" + { + "name" "cluj2015_signature_fox" + "item_name" "#StickerKit_cluj2015_signature_fox" + "description_string" "#StickerKit_desc_cluj2015_signature_fox" + "sticker_material" "cluj2015/sig_fox" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "1939536" + } + "750" + { + "name" "cluj2015_signature_fox_foil" + "item_name" "#StickerKit_cluj2015_signature_fox_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_fox_foil" + "sticker_material" "cluj2015/sig_fox_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "1939536" + } + "751" + { + "name" "cluj2015_signature_fox_gold" + "item_name" "#StickerKit_cluj2015_signature_fox_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_fox_gold" + "sticker_material" "cluj2015/sig_fox_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "1939536" + } + "752" + { + "name" "cluj2015_signature_maikelele" + "item_name" "#StickerKit_cluj2015_signature_maikelele" + "description_string" "#StickerKit_desc_cluj2015_signature_maikelele" + "sticker_material" "cluj2015/sig_maikelele" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "925972" + } + "753" + { + "name" "cluj2015_signature_maikelele_foil" + "item_name" "#StickerKit_cluj2015_signature_maikelele_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_maikelele_foil" + "sticker_material" "cluj2015/sig_maikelele_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "925972" + } + "754" + { + "name" "cluj2015_signature_maikelele_gold" + "item_name" "#StickerKit_cluj2015_signature_maikelele_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_maikelele_gold" + "sticker_material" "cluj2015/sig_maikelele_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "925972" + } + "755" + { + "name" "cluj2015_signature_rain" + "item_name" "#StickerKit_cluj2015_signature_rain" + "description_string" "#StickerKit_desc_cluj2015_signature_rain" + "sticker_material" "cluj2015/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "37085479" + } + "756" + { + "name" "cluj2015_signature_rain_foil" + "item_name" "#StickerKit_cluj2015_signature_rain_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_rain_foil" + "sticker_material" "cluj2015/sig_rain_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "37085479" + } + "757" + { + "name" "cluj2015_signature_rain_gold" + "item_name" "#StickerKit_cluj2015_signature_rain_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_rain_gold" + "sticker_material" "cluj2015/sig_rain_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "37085479" + } + "758" + { + "name" "cluj2015_signature_jkaem" + "item_name" "#StickerKit_cluj2015_signature_jkaem" + "description_string" "#StickerKit_desc_cluj2015_signature_jkaem" + "sticker_material" "cluj2015/sig_jkaem" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "42442914" + } + "759" + { + "name" "cluj2015_signature_jkaem_foil" + "item_name" "#StickerKit_cluj2015_signature_jkaem_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_jkaem_foil" + "sticker_material" "cluj2015/sig_jkaem_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "42442914" + } + "760" + { + "name" "cluj2015_signature_jkaem_gold" + "item_name" "#StickerKit_cluj2015_signature_jkaem_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_jkaem_gold" + "sticker_material" "cluj2015/sig_jkaem_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + "tournament_player_id" "42442914" + } + "761" + { + "name" "cluj2015_signature_boltz" + "item_name" "#StickerKit_cluj2015_signature_boltz" + "description_string" "#StickerKit_desc_cluj2015_signature_boltz" + "sticker_material" "cluj2015/sig_boltz" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "58113672" + } + "762" + { + "name" "cluj2015_signature_boltz_foil" + "item_name" "#StickerKit_cluj2015_signature_boltz_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_boltz_foil" + "sticker_material" "cluj2015/sig_boltz_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "58113672" + } + "763" + { + "name" "cluj2015_signature_boltz_gold" + "item_name" "#StickerKit_cluj2015_signature_boltz_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_boltz_gold" + "sticker_material" "cluj2015/sig_boltz_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "58113672" + } + "764" + { + "name" "cluj2015_signature_coldzera" + "item_name" "#StickerKit_cluj2015_signature_coldzera" + "description_string" "#StickerKit_desc_cluj2015_signature_coldzera" + "sticker_material" "cluj2015/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "765" + { + "name" "cluj2015_signature_coldzera_foil" + "item_name" "#StickerKit_cluj2015_signature_coldzera_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_coldzera_foil" + "sticker_material" "cluj2015/sig_coldzera_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "766" + { + "name" "cluj2015_signature_coldzera_gold" + "item_name" "#StickerKit_cluj2015_signature_coldzera_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_coldzera_gold" + "sticker_material" "cluj2015/sig_coldzera_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "767" + { + "name" "cluj2015_signature_fallen" + "item_name" "#StickerKit_cluj2015_signature_fallen" + "description_string" "#StickerKit_desc_cluj2015_signature_fallen" + "sticker_material" "cluj2015/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "768" + { + "name" "cluj2015_signature_fallen_foil" + "item_name" "#StickerKit_cluj2015_signature_fallen_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_fallen_foil" + "sticker_material" "cluj2015/sig_fallen_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "769" + { + "name" "cluj2015_signature_fallen_gold" + "item_name" "#StickerKit_cluj2015_signature_fallen_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_fallen_gold" + "sticker_material" "cluj2015/sig_fallen_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "770" + { + "name" "cluj2015_signature_fer" + "item_name" "#StickerKit_cluj2015_signature_fer" + "description_string" "#StickerKit_desc_cluj2015_signature_fer" + "sticker_material" "cluj2015/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "771" + { + "name" "cluj2015_signature_fer_foil" + "item_name" "#StickerKit_cluj2015_signature_fer_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_fer_foil" + "sticker_material" "cluj2015/sig_fer_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "772" + { + "name" "cluj2015_signature_fer_gold" + "item_name" "#StickerKit_cluj2015_signature_fer_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_fer_gold" + "sticker_material" "cluj2015/sig_fer_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "773" + { + "name" "cluj2015_signature_steel" + "item_name" "#StickerKit_cluj2015_signature_steel" + "description_string" "#StickerKit_desc_cluj2015_signature_steel" + "sticker_material" "cluj2015/sig_steel" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "54512474" + } + "774" + { + "name" "cluj2015_signature_steel_foil" + "item_name" "#StickerKit_cluj2015_signature_steel_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_steel_foil" + "sticker_material" "cluj2015/sig_steel_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "54512474" + } + "775" + { + "name" "cluj2015_signature_steel_gold" + "item_name" "#StickerKit_cluj2015_signature_steel_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_steel_gold" + "sticker_material" "cluj2015/sig_steel_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + "tournament_player_id" "54512474" + } + "776" + { + "name" "cluj2015_signature_chrisj" + "item_name" "#StickerKit_cluj2015_signature_chrisj" + "description_string" "#StickerKit_desc_cluj2015_signature_chrisj" + "sticker_material" "cluj2015/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "777" + { + "name" "cluj2015_signature_chrisj_foil" + "item_name" "#StickerKit_cluj2015_signature_chrisj_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_chrisj_foil" + "sticker_material" "cluj2015/sig_chrisj_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "778" + { + "name" "cluj2015_signature_chrisj_gold" + "item_name" "#StickerKit_cluj2015_signature_chrisj_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_chrisj_gold" + "sticker_material" "cluj2015/sig_chrisj_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "779" + { + "name" "cluj2015_signature_denis" + "item_name" "#StickerKit_cluj2015_signature_denis" + "description_string" "#StickerKit_desc_cluj2015_signature_denis" + "sticker_material" "cluj2015/sig_denis" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "780" + { + "name" "cluj2015_signature_denis_foil" + "item_name" "#StickerKit_cluj2015_signature_denis_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_denis_foil" + "sticker_material" "cluj2015/sig_denis_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "781" + { + "name" "cluj2015_signature_denis_gold" + "item_name" "#StickerKit_cluj2015_signature_denis_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_denis_gold" + "sticker_material" "cluj2015/sig_denis_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "782" + { + "name" "cluj2015_signature_gobb" + "item_name" "#StickerKit_cluj2015_signature_gobb" + "description_string" "#StickerKit_desc_cluj2015_signature_gobb" + "sticker_material" "cluj2015/sig_gobb" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "1162165" + } + "783" + { + "name" "cluj2015_signature_gobb_foil" + "item_name" "#StickerKit_cluj2015_signature_gobb_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_gobb_foil" + "sticker_material" "cluj2015/sig_gobb_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "1162165" + } + "784" + { + "name" "cluj2015_signature_gobb_gold" + "item_name" "#StickerKit_cluj2015_signature_gobb_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_gobb_gold" + "sticker_material" "cluj2015/sig_gobb_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "1162165" + } + "785" + { + "name" "cluj2015_signature_nex" + "item_name" "#StickerKit_cluj2015_signature_nex" + "description_string" "#StickerKit_desc_cluj2015_signature_nex" + "sticker_material" "cluj2015/sig_nex" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "786" + { + "name" "cluj2015_signature_nex_foil" + "item_name" "#StickerKit_cluj2015_signature_nex_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_nex_foil" + "sticker_material" "cluj2015/sig_nex_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "787" + { + "name" "cluj2015_signature_nex_gold" + "item_name" "#StickerKit_cluj2015_signature_nex_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_nex_gold" + "sticker_material" "cluj2015/sig_nex_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "788" + { + "name" "cluj2015_signature_niko" + "item_name" "#StickerKit_cluj2015_signature_niko" + "description_string" "#StickerKit_desc_cluj2015_signature_niko" + "sticker_material" "cluj2015/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "789" + { + "name" "cluj2015_signature_niko_foil" + "item_name" "#StickerKit_cluj2015_signature_niko_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_niko_foil" + "sticker_material" "cluj2015/sig_niko_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "790" + { + "name" "cluj2015_signature_niko_gold" + "item_name" "#StickerKit_cluj2015_signature_niko_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_niko_gold" + "sticker_material" "cluj2015/sig_niko_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "791" + { + "name" "cluj2015_signature_edward" + "item_name" "#StickerKit_cluj2015_signature_edward" + "description_string" "#StickerKit_desc_cluj2015_signature_edward" + "sticker_material" "cluj2015/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "792" + { + "name" "cluj2015_signature_edward_foil" + "item_name" "#StickerKit_cluj2015_signature_edward_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_edward_foil" + "sticker_material" "cluj2015/sig_edward_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "793" + { + "name" "cluj2015_signature_edward_gold" + "item_name" "#StickerKit_cluj2015_signature_edward_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_edward_gold" + "sticker_material" "cluj2015/sig_edward_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "794" + { + "name" "cluj2015_signature_flamie" + "item_name" "#StickerKit_cluj2015_signature_flamie" + "description_string" "#StickerKit_desc_cluj2015_signature_flamie" + "sticker_material" "cluj2015/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "795" + { + "name" "cluj2015_signature_flamie_foil" + "item_name" "#StickerKit_cluj2015_signature_flamie_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_flamie_foil" + "sticker_material" "cluj2015/sig_flamie_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "796" + { + "name" "cluj2015_signature_flamie_gold" + "item_name" "#StickerKit_cluj2015_signature_flamie_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_flamie_gold" + "sticker_material" "cluj2015/sig_flamie_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "797" + { + "name" "cluj2015_signature_guardian" + "item_name" "#StickerKit_cluj2015_signature_guardian" + "description_string" "#StickerKit_desc_cluj2015_signature_guardian" + "sticker_material" "cluj2015/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "798" + { + "name" "cluj2015_signature_guardian_foil" + "item_name" "#StickerKit_cluj2015_signature_guardian_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_guardian_foil" + "sticker_material" "cluj2015/sig_guardian_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "799" + { + "name" "cluj2015_signature_guardian_gold" + "item_name" "#StickerKit_cluj2015_signature_guardian_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_guardian_gold" + "sticker_material" "cluj2015/sig_guardian_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "800" + { + "name" "cluj2015_signature_seized" + "item_name" "#StickerKit_cluj2015_signature_seized" + "description_string" "#StickerKit_desc_cluj2015_signature_seized" + "sticker_material" "cluj2015/sig_seized" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "801" + { + "name" "cluj2015_signature_seized_foil" + "item_name" "#StickerKit_cluj2015_signature_seized_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_seized_foil" + "sticker_material" "cluj2015/sig_seized_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "802" + { + "name" "cluj2015_signature_seized_gold" + "item_name" "#StickerKit_cluj2015_signature_seized_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_seized_gold" + "sticker_material" "cluj2015/sig_seized_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "803" + { + "name" "cluj2015_signature_zeus" + "item_name" "#StickerKit_cluj2015_signature_zeus" + "description_string" "#StickerKit_desc_cluj2015_signature_zeus" + "sticker_material" "cluj2015/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "804" + { + "name" "cluj2015_signature_zeus_foil" + "item_name" "#StickerKit_cluj2015_signature_zeus_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_zeus_foil" + "sticker_material" "cluj2015/sig_zeus_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "805" + { + "name" "cluj2015_signature_zeus_gold" + "item_name" "#StickerKit_cluj2015_signature_zeus_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_zeus_gold" + "sticker_material" "cluj2015/sig_zeus_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "806" + { + "name" "cluj2015_signature_allu" + "item_name" "#StickerKit_cluj2015_signature_allu" + "description_string" "#StickerKit_desc_cluj2015_signature_allu" + "sticker_material" "cluj2015/sig_allu" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "1345246" + } + "807" + { + "name" "cluj2015_signature_allu_foil" + "item_name" "#StickerKit_cluj2015_signature_allu_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_allu_foil" + "sticker_material" "cluj2015/sig_allu_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "1345246" + } + "808" + { + "name" "cluj2015_signature_allu_gold" + "item_name" "#StickerKit_cluj2015_signature_allu_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_allu_gold" + "sticker_material" "cluj2015/sig_allu_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "1345246" + } + "809" + { + "name" "cluj2015_signature_forest" + "item_name" "#StickerKit_cluj2015_signature_forest" + "description_string" "#StickerKit_desc_cluj2015_signature_forest" + "sticker_material" "cluj2015/sig_forest" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "810" + { + "name" "cluj2015_signature_forest_foil" + "item_name" "#StickerKit_cluj2015_signature_forest_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_forest_foil" + "sticker_material" "cluj2015/sig_forest_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "811" + { + "name" "cluj2015_signature_forest_gold" + "item_name" "#StickerKit_cluj2015_signature_forest_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_forest_gold" + "sticker_material" "cluj2015/sig_forest_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "812" + { + "name" "cluj2015_signature_friberg" + "item_name" "#StickerKit_cluj2015_signature_friberg" + "description_string" "#StickerKit_desc_cluj2015_signature_friberg" + "sticker_material" "cluj2015/sig_friberg" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "813" + { + "name" "cluj2015_signature_friberg_foil" + "item_name" "#StickerKit_cluj2015_signature_friberg_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_friberg_foil" + "sticker_material" "cluj2015/sig_friberg_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "814" + { + "name" "cluj2015_signature_friberg_gold" + "item_name" "#StickerKit_cluj2015_signature_friberg_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_friberg_gold" + "sticker_material" "cluj2015/sig_friberg_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "815" + { + "name" "cluj2015_signature_getright" + "item_name" "#StickerKit_cluj2015_signature_getright" + "description_string" "#StickerKit_desc_cluj2015_signature_getright" + "sticker_material" "cluj2015/sig_getright" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "816" + { + "name" "cluj2015_signature_getright_foil" + "item_name" "#StickerKit_cluj2015_signature_getright_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_getright_foil" + "sticker_material" "cluj2015/sig_getright_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "817" + { + "name" "cluj2015_signature_getright_gold" + "item_name" "#StickerKit_cluj2015_signature_getright_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_getright_gold" + "sticker_material" "cluj2015/sig_getright_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "818" + { + "name" "cluj2015_signature_xizt" + "item_name" "#StickerKit_cluj2015_signature_xizt" + "description_string" "#StickerKit_desc_cluj2015_signature_xizt" + "sticker_material" "cluj2015/sig_xizt" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "819" + { + "name" "cluj2015_signature_xizt_foil" + "item_name" "#StickerKit_cluj2015_signature_xizt_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_xizt_foil" + "sticker_material" "cluj2015/sig_xizt_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "820" + { + "name" "cluj2015_signature_xizt_gold" + "item_name" "#StickerKit_cluj2015_signature_xizt_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_xizt_gold" + "sticker_material" "cluj2015/sig_xizt_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "821" + { + "name" "cluj2015_signature_aizy" + "item_name" "#StickerKit_cluj2015_signature_aizy" + "description_string" "#StickerKit_desc_cluj2015_signature_aizy" + "sticker_material" "cluj2015/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "90685224" + } + "822" + { + "name" "cluj2015_signature_aizy_foil" + "item_name" "#StickerKit_cluj2015_signature_aizy_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_aizy_foil" + "sticker_material" "cluj2015/sig_aizy_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "90685224" + } + "823" + { + "name" "cluj2015_signature_aizy_gold" + "item_name" "#StickerKit_cluj2015_signature_aizy_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_aizy_gold" + "sticker_material" "cluj2015/sig_aizy_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "90685224" + } + "824" + { + "name" "cluj2015_signature_kjaerbye" + "item_name" "#StickerKit_cluj2015_signature_kjaerbye" + "description_string" "#StickerKit_desc_cluj2015_signature_kjaerbye" + "sticker_material" "cluj2015/sig_kjaerbye" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "59614824" + } + "825" + { + "name" "cluj2015_signature_kjaerbye_foil" + "item_name" "#StickerKit_cluj2015_signature_kjaerbye_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_kjaerbye_foil" + "sticker_material" "cluj2015/sig_kjaerbye_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "59614824" + } + "826" + { + "name" "cluj2015_signature_kjaerbye_gold" + "item_name" "#StickerKit_cluj2015_signature_kjaerbye_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_kjaerbye_gold" + "sticker_material" "cluj2015/sig_kjaerbye_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "59614824" + } + "827" + { + "name" "cluj2015_signature_msl" + "item_name" "#StickerKit_cluj2015_signature_msl" + "description_string" "#StickerKit_desc_cluj2015_signature_msl" + "sticker_material" "cluj2015/sig_msl" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "24134891" + } + "828" + { + "name" "cluj2015_signature_msl_foil" + "item_name" "#StickerKit_cluj2015_signature_msl_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_msl_foil" + "sticker_material" "cluj2015/sig_msl_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "24134891" + } + "829" + { + "name" "cluj2015_signature_msl_gold" + "item_name" "#StickerKit_cluj2015_signature_msl_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_msl_gold" + "sticker_material" "cluj2015/sig_msl_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "24134891" + } + "830" + { + "name" "cluj2015_signature_pimp" + "item_name" "#StickerKit_cluj2015_signature_pimp" + "description_string" "#StickerKit_desc_cluj2015_signature_pimp" + "sticker_material" "cluj2015/sig_pimp" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "57742580" + } + "831" + { + "name" "cluj2015_signature_pimp_foil" + "item_name" "#StickerKit_cluj2015_signature_pimp_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_pimp_foil" + "sticker_material" "cluj2015/sig_pimp_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "57742580" + } + "832" + { + "name" "cluj2015_signature_pimp_gold" + "item_name" "#StickerKit_cluj2015_signature_pimp_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_pimp_gold" + "sticker_material" "cluj2015/sig_pimp_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "57742580" + } + "833" + { + "name" "cluj2015_signature_tenzki" + "item_name" "#StickerKit_cluj2015_signature_tenzki" + "description_string" "#StickerKit_desc_cluj2015_signature_tenzki" + "sticker_material" "cluj2015/sig_tenzki" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "37214922" + } + "834" + { + "name" "cluj2015_signature_tenzki_foil" + "item_name" "#StickerKit_cluj2015_signature_tenzki_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_tenzki_foil" + "sticker_material" "cluj2015/sig_tenzki_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "37214922" + } + "835" + { + "name" "cluj2015_signature_tenzki_gold" + "item_name" "#StickerKit_cluj2015_signature_tenzki_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_tenzki_gold" + "sticker_material" "cluj2015/sig_tenzki_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + "tournament_player_id" "37214922" + } + "836" + { + "name" "cluj2015_signature_adren" + "item_name" "#StickerKit_cluj2015_signature_adren" + "description_string" "#StickerKit_desc_cluj2015_signature_adren" + "sticker_material" "cluj2015/sig_adren" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "1366033" + } + "837" + { + "name" "cluj2015_signature_adren_foil" + "item_name" "#StickerKit_cluj2015_signature_adren_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_adren_foil" + "sticker_material" "cluj2015/sig_adren_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "1366033" + } + "838" + { + "name" "cluj2015_signature_adren_gold" + "item_name" "#StickerKit_cluj2015_signature_adren_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_adren_gold" + "sticker_material" "cluj2015/sig_adren_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "1366033" + } + "839" + { + "name" "cluj2015_signature_elige" + "item_name" "#StickerKit_cluj2015_signature_elige" + "description_string" "#StickerKit_desc_cluj2015_signature_elige" + "sticker_material" "cluj2015/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "840" + { + "name" "cluj2015_signature_elige_foil" + "item_name" "#StickerKit_cluj2015_signature_elige_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_elige_foil" + "sticker_material" "cluj2015/sig_elige_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "841" + { + "name" "cluj2015_signature_elige_gold" + "item_name" "#StickerKit_cluj2015_signature_elige_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_elige_gold" + "sticker_material" "cluj2015/sig_elige_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "842" + { + "name" "cluj2015_signature_fugly" + "item_name" "#StickerKit_cluj2015_signature_fugly" + "description_string" "#StickerKit_desc_cluj2015_signature_fugly" + "sticker_material" "cluj2015/sig_fugly" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "108760082" + } + "843" + { + "name" "cluj2015_signature_fugly_foil" + "item_name" "#StickerKit_cluj2015_signature_fugly_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_fugly_foil" + "sticker_material" "cluj2015/sig_fugly_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "108760082" + } + "844" + { + "name" "cluj2015_signature_fugly_gold" + "item_name" "#StickerKit_cluj2015_signature_fugly_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_fugly_gold" + "sticker_material" "cluj2015/sig_fugly_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "108760082" + } + "845" + { + "name" "cluj2015_signature_hiko" + "item_name" "#StickerKit_cluj2015_signature_hiko" + "description_string" "#StickerKit_desc_cluj2015_signature_hiko" + "sticker_material" "cluj2015/sig_hiko" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "846" + { + "name" "cluj2015_signature_hiko_foil" + "item_name" "#StickerKit_cluj2015_signature_hiko_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_hiko_foil" + "sticker_material" "cluj2015/sig_hiko_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "847" + { + "name" "cluj2015_signature_hiko_gold" + "item_name" "#StickerKit_cluj2015_signature_hiko_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_hiko_gold" + "sticker_material" "cluj2015/sig_hiko_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "848" + { + "name" "cluj2015_signature_nitro" + "item_name" "#StickerKit_cluj2015_signature_nitro" + "description_string" "#StickerKit_desc_cluj2015_signature_nitro" + "sticker_material" "cluj2015/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "849" + { + "name" "cluj2015_signature_nitro_foil" + "item_name" "#StickerKit_cluj2015_signature_nitro_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_nitro_foil" + "sticker_material" "cluj2015/sig_nitro_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "850" + { + "name" "cluj2015_signature_nitro_gold" + "item_name" "#StickerKit_cluj2015_signature_nitro_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_nitro_gold" + "sticker_material" "cluj2015/sig_nitro_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "851" + { + "name" "cluj2015_signature_ex6tenz" + "item_name" "#StickerKit_cluj2015_signature_ex6tenz" + "description_string" "#StickerKit_desc_cluj2015_signature_ex6tenz" + "sticker_material" "cluj2015/sig_ex6tenz" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "11737333" + } + "852" + { + "name" "cluj2015_signature_ex6tenz_foil" + "item_name" "#StickerKit_cluj2015_signature_ex6tenz_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_ex6tenz_foil" + "sticker_material" "cluj2015/sig_ex6tenz_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "11737333" + } + "853" + { + "name" "cluj2015_signature_ex6tenz_gold" + "item_name" "#StickerKit_cluj2015_signature_ex6tenz_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_ex6tenz_gold" + "sticker_material" "cluj2015/sig_ex6tenz_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "11737333" + } + "854" + { + "name" "cluj2015_signature_rpk" + "item_name" "#StickerKit_cluj2015_signature_rpk" + "description_string" "#StickerKit_desc_cluj2015_signature_rpk" + "sticker_material" "cluj2015/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "53985773" + } + "855" + { + "name" "cluj2015_signature_rpk_foil" + "item_name" "#StickerKit_cluj2015_signature_rpk_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_rpk_foil" + "sticker_material" "cluj2015/sig_rpk_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "53985773" + } + "856" + { + "name" "cluj2015_signature_rpk_gold" + "item_name" "#StickerKit_cluj2015_signature_rpk_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_rpk_gold" + "sticker_material" "cluj2015/sig_rpk_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "53985773" + } + "857" + { + "name" "cluj2015_signature_scream" + "item_name" "#StickerKit_cluj2015_signature_scream" + "description_string" "#StickerKit_desc_cluj2015_signature_scream" + "sticker_material" "cluj2015/sig_scream" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "28502520" + } + "858" + { + "name" "cluj2015_signature_scream_foil" + "item_name" "#StickerKit_cluj2015_signature_scream_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_scream_foil" + "sticker_material" "cluj2015/sig_scream_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "28502520" + } + "859" + { + "name" "cluj2015_signature_scream_gold" + "item_name" "#StickerKit_cluj2015_signature_scream_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_scream_gold" + "sticker_material" "cluj2015/sig_scream_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "28502520" + } + "860" + { + "name" "cluj2015_signature_shox" + "item_name" "#StickerKit_cluj2015_signature_shox" + "description_string" "#StickerKit_desc_cluj2015_signature_shox" + "sticker_material" "cluj2015/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "46654567" + } + "861" + { + "name" "cluj2015_signature_shox_foil" + "item_name" "#StickerKit_cluj2015_signature_shox_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_shox_foil" + "sticker_material" "cluj2015/sig_shox_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "46654567" + } + "862" + { + "name" "cluj2015_signature_shox_gold" + "item_name" "#StickerKit_cluj2015_signature_shox_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_shox_gold" + "sticker_material" "cluj2015/sig_shox_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "46654567" + } + "863" + { + "name" "cluj2015_signature_smithzz" + "item_name" "#StickerKit_cluj2015_signature_smithzz" + "description_string" "#StickerKit_desc_cluj2015_signature_smithzz" + "sticker_material" "cluj2015/sig_smithzz" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "14321919" + } + "864" + { + "name" "cluj2015_signature_smithzz_foil" + "item_name" "#StickerKit_cluj2015_signature_smithzz_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_smithzz_foil" + "sticker_material" "cluj2015/sig_smithzz_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "14321919" + } + "865" + { + "name" "cluj2015_signature_smithzz_gold" + "item_name" "#StickerKit_cluj2015_signature_smithzz_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_smithzz_gold" + "sticker_material" "cluj2015/sig_smithzz_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + "tournament_player_id" "14321919" + } + "866" + { + "name" "cluj2015_signature_cajunb" + "item_name" "#StickerKit_cluj2015_signature_cajunb" + "description_string" "#StickerKit_desc_cluj2015_signature_cajunb" + "sticker_material" "cluj2015/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "18062315" + } + "867" + { + "name" "cluj2015_signature_cajunb_foil" + "item_name" "#StickerKit_cluj2015_signature_cajunb_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_cajunb_foil" + "sticker_material" "cluj2015/sig_cajunb_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "18062315" + } + "868" + { + "name" "cluj2015_signature_cajunb_gold" + "item_name" "#StickerKit_cluj2015_signature_cajunb_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_cajunb_gold" + "sticker_material" "cluj2015/sig_cajunb_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "18062315" + } + "869" + { + "name" "cluj2015_signature_device" + "item_name" "#StickerKit_cluj2015_signature_device" + "description_string" "#StickerKit_desc_cluj2015_signature_device" + "sticker_material" "cluj2015/sig_device" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "27447936" + } + "870" + { + "name" "cluj2015_signature_device_foil" + "item_name" "#StickerKit_cluj2015_signature_device_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_device_foil" + "sticker_material" "cluj2015/sig_device_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "27447936" + } + "871" + { + "name" "cluj2015_signature_device_gold" + "item_name" "#StickerKit_cluj2015_signature_device_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_device_gold" + "sticker_material" "cluj2015/sig_device_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "27447936" + } + "872" + { + "name" "cluj2015_signature_dupreeh" + "item_name" "#StickerKit_cluj2015_signature_dupreeh" + "description_string" "#StickerKit_desc_cluj2015_signature_dupreeh" + "sticker_material" "cluj2015/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "44589228" + } + "873" + { + "name" "cluj2015_signature_dupreeh_foil" + "item_name" "#StickerKit_cluj2015_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_dupreeh_foil" + "sticker_material" "cluj2015/sig_dupreeh_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "44589228" + } + "874" + { + "name" "cluj2015_signature_dupreeh_gold" + "item_name" "#StickerKit_cluj2015_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_dupreeh_gold" + "sticker_material" "cluj2015/sig_dupreeh_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "44589228" + } + "875" + { + "name" "cluj2015_signature_karrigan" + "item_name" "#StickerKit_cluj2015_signature_karrigan" + "description_string" "#StickerKit_desc_cluj2015_signature_karrigan" + "sticker_material" "cluj2015/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "29164525" + } + "876" + { + "name" "cluj2015_signature_karrigan_foil" + "item_name" "#StickerKit_cluj2015_signature_karrigan_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_karrigan_foil" + "sticker_material" "cluj2015/sig_karrigan_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "29164525" + } + "877" + { + "name" "cluj2015_signature_karrigan_gold" + "item_name" "#StickerKit_cluj2015_signature_karrigan_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_karrigan_gold" + "sticker_material" "cluj2015/sig_karrigan_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "29164525" + } + "878" + { + "name" "cluj2015_signature_xyp9x" + "item_name" "#StickerKit_cluj2015_signature_xyp9x" + "description_string" "#StickerKit_desc_cluj2015_signature_xyp9x" + "sticker_material" "cluj2015/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "30416534" + } + "879" + { + "name" "cluj2015_signature_xyp9x_foil" + "item_name" "#StickerKit_cluj2015_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_xyp9x_foil" + "sticker_material" "cluj2015/sig_xyp9x_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "30416534" + } + "880" + { + "name" "cluj2015_signature_xyp9x_gold" + "item_name" "#StickerKit_cluj2015_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_xyp9x_gold" + "sticker_material" "cluj2015/sig_xyp9x_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + "tournament_player_id" "30416534" + } + "881" + { + "name" "cluj2015_signature_furlan" + "item_name" "#StickerKit_cluj2015_signature_furlan" + "description_string" "#StickerKit_desc_cluj2015_signature_furlan" + "sticker_material" "cluj2015/sig_furlan" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "177495873" + } + "882" + { + "name" "cluj2015_signature_furlan_foil" + "item_name" "#StickerKit_cluj2015_signature_furlan_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_furlan_foil" + "sticker_material" "cluj2015/sig_furlan_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "177495873" + } + "883" + { + "name" "cluj2015_signature_furlan_gold" + "item_name" "#StickerKit_cluj2015_signature_furlan_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_furlan_gold" + "sticker_material" "cluj2015/sig_furlan_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "177495873" + } + "884" + { + "name" "cluj2015_signature_gruby" + "item_name" "#StickerKit_cluj2015_signature_gruby" + "description_string" "#StickerKit_desc_cluj2015_signature_gruby" + "sticker_material" "cluj2015/sig_gruby" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "44752530" + } + "885" + { + "name" "cluj2015_signature_gruby_foil" + "item_name" "#StickerKit_cluj2015_signature_gruby_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_gruby_foil" + "sticker_material" "cluj2015/sig_gruby_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "44752530" + } + "886" + { + "name" "cluj2015_signature_gruby_gold" + "item_name" "#StickerKit_cluj2015_signature_gruby_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_gruby_gold" + "sticker_material" "cluj2015/sig_gruby_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "44752530" + } + "887" + { + "name" "cluj2015_signature_hyper" + "item_name" "#StickerKit_cluj2015_signature_hyper" + "description_string" "#StickerKit_desc_cluj2015_signature_hyper" + "sticker_material" "cluj2015/sig_hyper" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "10357481" + } + "888" + { + "name" "cluj2015_signature_hyper_foil" + "item_name" "#StickerKit_cluj2015_signature_hyper_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_hyper_foil" + "sticker_material" "cluj2015/sig_hyper_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "10357481" + } + "889" + { + "name" "cluj2015_signature_hyper_gold" + "item_name" "#StickerKit_cluj2015_signature_hyper_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_hyper_gold" + "sticker_material" "cluj2015/sig_hyper_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "10357481" + } + "890" + { + "name" "cluj2015_signature_peet" + "item_name" "#StickerKit_cluj2015_signature_peet" + "description_string" "#StickerKit_desc_cluj2015_signature_peet" + "sticker_material" "cluj2015/sig_peet" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "104340617" + } + "891" + { + "name" "cluj2015_signature_peet_foil" + "item_name" "#StickerKit_cluj2015_signature_peet_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_peet_foil" + "sticker_material" "cluj2015/sig_peet_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "104340617" + } + "892" + { + "name" "cluj2015_signature_peet_gold" + "item_name" "#StickerKit_cluj2015_signature_peet_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_peet_gold" + "sticker_material" "cluj2015/sig_peet_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "104340617" + } + "893" + { + "name" "cluj2015_signature_rallen" + "item_name" "#StickerKit_cluj2015_signature_rallen" + "description_string" "#StickerKit_desc_cluj2015_signature_rallen" + "sticker_material" "cluj2015/sig_rallen" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "31166738" + } + "894" + { + "name" "cluj2015_signature_rallen_foil" + "item_name" "#StickerKit_cluj2015_signature_rallen_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_rallen_foil" + "sticker_material" "cluj2015/sig_rallen_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "31166738" + } + "895" + { + "name" "cluj2015_signature_rallen_gold" + "item_name" "#StickerKit_cluj2015_signature_rallen_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_rallen_gold" + "sticker_material" "cluj2015/sig_rallen_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + "tournament_player_id" "31166738" + } + "896" + { + "name" "cluj2015_signature_byali" + "item_name" "#StickerKit_cluj2015_signature_byali" + "description_string" "#StickerKit_desc_cluj2015_signature_byali" + "sticker_material" "cluj2015/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "897" + { + "name" "cluj2015_signature_byali_foil" + "item_name" "#StickerKit_cluj2015_signature_byali_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_byali_foil" + "sticker_material" "cluj2015/sig_byali_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "898" + { + "name" "cluj2015_signature_byali_gold" + "item_name" "#StickerKit_cluj2015_signature_byali_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_byali_gold" + "sticker_material" "cluj2015/sig_byali_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "899" + { + "name" "cluj2015_signature_neo" + "item_name" "#StickerKit_cluj2015_signature_neo" + "description_string" "#StickerKit_desc_cluj2015_signature_neo" + "sticker_material" "cluj2015/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "900" + { + "name" "cluj2015_signature_neo_foil" + "item_name" "#StickerKit_cluj2015_signature_neo_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_neo_foil" + "sticker_material" "cluj2015/sig_neo_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "901" + { + "name" "cluj2015_signature_neo_gold" + "item_name" "#StickerKit_cluj2015_signature_neo_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_neo_gold" + "sticker_material" "cluj2015/sig_neo_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "902" + { + "name" "cluj2015_signature_pasha" + "item_name" "#StickerKit_cluj2015_signature_pasha" + "description_string" "#StickerKit_desc_cluj2015_signature_pasha" + "sticker_material" "cluj2015/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "903" + { + "name" "cluj2015_signature_pasha_foil" + "item_name" "#StickerKit_cluj2015_signature_pasha_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_pasha_foil" + "sticker_material" "cluj2015/sig_pasha_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "904" + { + "name" "cluj2015_signature_pasha_gold" + "item_name" "#StickerKit_cluj2015_signature_pasha_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_pasha_gold" + "sticker_material" "cluj2015/sig_pasha_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "905" + { + "name" "cluj2015_signature_snax" + "item_name" "#StickerKit_cluj2015_signature_snax" + "description_string" "#StickerKit_desc_cluj2015_signature_snax" + "sticker_material" "cluj2015/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "906" + { + "name" "cluj2015_signature_snax_foil" + "item_name" "#StickerKit_cluj2015_signature_snax_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_snax_foil" + "sticker_material" "cluj2015/sig_snax_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "907" + { + "name" "cluj2015_signature_snax_gold" + "item_name" "#StickerKit_cluj2015_signature_snax_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_snax_gold" + "sticker_material" "cluj2015/sig_snax_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "908" + { + "name" "cluj2015_signature_taz" + "item_name" "#StickerKit_cluj2015_signature_taz" + "description_string" "#StickerKit_desc_cluj2015_signature_taz" + "sticker_material" "cluj2015/sig_taz" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "909" + { + "name" "cluj2015_signature_taz_foil" + "item_name" "#StickerKit_cluj2015_signature_taz_foil" + "description_string" "#StickerKit_desc_cluj2015_signature_taz_foil" + "sticker_material" "cluj2015/sig_taz_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "910" + { + "name" "cluj2015_signature_taz_gold" + "item_name" "#StickerKit_cluj2015_signature_taz_gold" + "description_string" "#StickerKit_desc_cluj2015_signature_taz_gold" + "sticker_material" "cluj2015/sig_taz_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "911" + { + "name" "cluj2015_team_nip" + "item_name" "#StickerKit_cluj2015_team_nip" + "description_string" "#StickerKit_desc_cluj2015_team_nip" + "sticker_material" "cluj2015/nip" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "1" + } + "912" + { + "name" "cluj2015_team_nip_foil" + "item_name" "#StickerKit_cluj2015_team_nip_foil" + "description_string" "#StickerKit_desc_cluj2015_team_nip_foil" + "sticker_material" "cluj2015/nip_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + } + "913" + { + "name" "cluj2015_team_nip_gold" + "item_name" "#StickerKit_cluj2015_team_nip_gold" + "description_string" "#StickerKit_desc_cluj2015_team_nip_gold" + "sticker_material" "cluj2015/nip_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "1" + } + "914" + { + "name" "cluj2015_team_dig" + "item_name" "#StickerKit_cluj2015_team_dig" + "description_string" "#StickerKit_desc_cluj2015_team_dig" + "sticker_material" "cluj2015/dig" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "24" + } + "915" + { + "name" "cluj2015_team_dig_foil" + "item_name" "#StickerKit_cluj2015_team_dig_foil" + "description_string" "#StickerKit_desc_cluj2015_team_dig_foil" + "sticker_material" "cluj2015/dig_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + } + "916" + { + "name" "cluj2015_team_dig_gold" + "item_name" "#StickerKit_cluj2015_team_dig_gold" + "description_string" "#StickerKit_desc_cluj2015_team_dig_gold" + "sticker_material" "cluj2015/dig_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "24" + } + "917" + { + "name" "cluj2015_team_clg" + "item_name" "#StickerKit_cluj2015_team_clg" + "description_string" "#StickerKit_desc_cluj2015_team_clg" + "sticker_material" "cluj2015/clg" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "49" + } + "918" + { + "name" "cluj2015_team_clg_foil" + "item_name" "#StickerKit_cluj2015_team_clg_foil" + "description_string" "#StickerKit_desc_cluj2015_team_clg_foil" + "sticker_material" "cluj2015/clg_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + } + "919" + { + "name" "cluj2015_team_clg_gold" + "item_name" "#StickerKit_cluj2015_team_clg_gold" + "description_string" "#StickerKit_desc_cluj2015_team_clg_gold" + "sticker_material" "cluj2015/clg_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "49" + } + "920" + { + "name" "cluj2015_team_vex" + "item_name" "#StickerKit_cluj2015_team_vex" + "description_string" "#StickerKit_desc_cluj2015_team_vex" + "sticker_material" "cluj2015/vex" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "47" + } + "921" + { + "name" "cluj2015_team_vex_foil" + "item_name" "#StickerKit_cluj2015_team_vex_foil" + "description_string" "#StickerKit_desc_cluj2015_team_vex_foil" + "sticker_material" "cluj2015/vex_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + } + "922" + { + "name" "cluj2015_team_vex_gold" + "item_name" "#StickerKit_cluj2015_team_vex_gold" + "description_string" "#StickerKit_desc_cluj2015_team_vex_gold" + "sticker_material" "cluj2015/vex_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "47" + } + "923" + { + "name" "cluj2015_team_flip" + "item_name" "#StickerKit_cluj2015_team_flip" + "description_string" "#StickerKit_desc_cluj2015_team_flip" + "sticker_material" "cluj2015/flip" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "43" + } + "924" + { + "name" "cluj2015_team_flip_foil" + "item_name" "#StickerKit_cluj2015_team_flip_foil" + "description_string" "#StickerKit_desc_cluj2015_team_flip_foil" + "sticker_material" "cluj2015/flip_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + } + "925" + { + "name" "cluj2015_team_flip_gold" + "item_name" "#StickerKit_cluj2015_team_flip_gold" + "description_string" "#StickerKit_desc_cluj2015_team_flip_gold" + "sticker_material" "cluj2015/flip_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "43" + } + "926" + { + "name" "cluj2015_team_liq" + "item_name" "#StickerKit_cluj2015_team_liq" + "description_string" "#StickerKit_desc_cluj2015_team_liq" + "sticker_material" "cluj2015/liq" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "48" + } + "927" + { + "name" "cluj2015_team_liq_foil" + "item_name" "#StickerKit_cluj2015_team_liq_foil" + "description_string" "#StickerKit_desc_cluj2015_team_liq_foil" + "sticker_material" "cluj2015/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + } + "928" + { + "name" "cluj2015_team_liq_gold" + "item_name" "#StickerKit_cluj2015_team_liq_gold" + "description_string" "#StickerKit_desc_cluj2015_team_liq_gold" + "sticker_material" "cluj2015/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "48" + } + "929" + { + "name" "cluj2015_team_mss" + "item_name" "#StickerKit_cluj2015_team_mss" + "description_string" "#StickerKit_desc_cluj2015_team_mss" + "sticker_material" "cluj2015/mss" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "29" + } + "930" + { + "name" "cluj2015_team_mss_foil" + "item_name" "#StickerKit_cluj2015_team_mss_foil" + "description_string" "#StickerKit_desc_cluj2015_team_mss_foil" + "sticker_material" "cluj2015/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + } + "931" + { + "name" "cluj2015_team_mss_gold" + "item_name" "#StickerKit_cluj2015_team_mss_gold" + "description_string" "#StickerKit_desc_cluj2015_team_mss_gold" + "sticker_material" "cluj2015/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "29" + } + "932" + { + "name" "cluj2015_team_navi" + "item_name" "#StickerKit_cluj2015_team_navi" + "description_string" "#StickerKit_desc_cluj2015_team_navi" + "sticker_material" "cluj2015/navi" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "12" + } + "933" + { + "name" "cluj2015_team_navi_foil" + "item_name" "#StickerKit_cluj2015_team_navi_foil" + "description_string" "#StickerKit_desc_cluj2015_team_navi_foil" + "sticker_material" "cluj2015/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + } + "934" + { + "name" "cluj2015_team_navi_gold" + "item_name" "#StickerKit_cluj2015_team_navi_gold" + "description_string" "#StickerKit_desc_cluj2015_team_navi_gold" + "sticker_material" "cluj2015/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "12" + } + "935" + { + "name" "cluj2015_team_vp" + "item_name" "#StickerKit_cluj2015_team_vp" + "description_string" "#StickerKit_desc_cluj2015_team_vp" + "sticker_material" "cluj2015/vp" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "31" + } + "936" + { + "name" "cluj2015_team_vp_foil" + "item_name" "#StickerKit_cluj2015_team_vp_foil" + "description_string" "#StickerKit_desc_cluj2015_team_vp_foil" + "sticker_material" "cluj2015/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + } + "937" + { + "name" "cluj2015_team_vp_gold" + "item_name" "#StickerKit_cluj2015_team_vp_gold" + "description_string" "#StickerKit_desc_cluj2015_team_vp_gold" + "sticker_material" "cluj2015/vp_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "31" + } + "938" + { + "name" "cluj2015_team_c9" + "item_name" "#StickerKit_cluj2015_team_c9" + "description_string" "#StickerKit_desc_cluj2015_team_c9" + "sticker_material" "cluj2015/c9" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "33" + } + "939" + { + "name" "cluj2015_team_c9_foil" + "item_name" "#StickerKit_cluj2015_team_c9_foil" + "description_string" "#StickerKit_desc_cluj2015_team_c9_foil" + "sticker_material" "cluj2015/c9_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + } + "940" + { + "name" "cluj2015_team_c9_gold" + "item_name" "#StickerKit_cluj2015_team_c9_gold" + "description_string" "#StickerKit_desc_cluj2015_team_c9_gold" + "sticker_material" "cluj2015/c9_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "33" + } + "941" + { + "name" "cluj2015_team_g2" + "item_name" "#StickerKit_cluj2015_team_g2" + "description_string" "#StickerKit_desc_cluj2015_team_g2" + "sticker_material" "cluj2015/g2" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "59" + } + "942" + { + "name" "cluj2015_team_g2_foil" + "item_name" "#StickerKit_cluj2015_team_g2_foil" + "description_string" "#StickerKit_desc_cluj2015_team_g2_foil" + "sticker_material" "cluj2015/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + } + "943" + { + "name" "cluj2015_team_g2_gold" + "item_name" "#StickerKit_cluj2015_team_g2_gold" + "description_string" "#StickerKit_desc_cluj2015_team_g2_gold" + "sticker_material" "cluj2015/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "59" + } + "944" + { + "name" "cluj2015_team_tit" + "item_name" "#StickerKit_cluj2015_team_tit" + "description_string" "#StickerKit_desc_cluj2015_team_tit" + "sticker_material" "cluj2015/tit" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "27" + } + "945" + { + "name" "cluj2015_team_tit_foil" + "item_name" "#StickerKit_cluj2015_team_tit_foil" + "description_string" "#StickerKit_desc_cluj2015_team_tit_foil" + "sticker_material" "cluj2015/tit_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + } + "946" + { + "name" "cluj2015_team_tit_gold" + "item_name" "#StickerKit_cluj2015_team_tit_gold" + "description_string" "#StickerKit_desc_cluj2015_team_tit_gold" + "sticker_material" "cluj2015/tit_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "27" + } + "947" + { + "name" "cluj2015_team_tsolo" + "item_name" "#StickerKit_cluj2015_team_tsolo" + "description_string" "#StickerKit_desc_cluj2015_team_tsolo" + "sticker_material" "cluj2015/tsolo" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "58" + } + "948" + { + "name" "cluj2015_team_tsolo_foil" + "item_name" "#StickerKit_cluj2015_team_tsolo_foil" + "description_string" "#StickerKit_desc_cluj2015_team_tsolo_foil" + "sticker_material" "cluj2015/tsolo_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + } + "949" + { + "name" "cluj2015_team_tsolo_gold" + "item_name" "#StickerKit_cluj2015_team_tsolo_gold" + "description_string" "#StickerKit_desc_cluj2015_team_tsolo_gold" + "sticker_material" "cluj2015/tsolo_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "58" + } + "950" + { + "name" "cluj2015_team_nv" + "item_name" "#StickerKit_cluj2015_team_nv" + "description_string" "#StickerKit_desc_cluj2015_team_nv" + "sticker_material" "cluj2015/nv" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "46" + } + "951" + { + "name" "cluj2015_team_nv_foil" + "item_name" "#StickerKit_cluj2015_team_nv_foil" + "description_string" "#StickerKit_desc_cluj2015_team_nv_foil" + "sticker_material" "cluj2015/nv_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + } + "952" + { + "name" "cluj2015_team_nv_gold" + "item_name" "#StickerKit_cluj2015_team_nv_gold" + "description_string" "#StickerKit_desc_cluj2015_team_nv_gold" + "sticker_material" "cluj2015/nv_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "46" + } + "953" + { + "name" "cluj2015_team_fntc" + "item_name" "#StickerKit_cluj2015_team_fntc" + "description_string" "#StickerKit_desc_cluj2015_team_fntc" + "sticker_material" "cluj2015/fntc" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "6" + } + "954" + { + "name" "cluj2015_team_fntc_foil" + "item_name" "#StickerKit_cluj2015_team_fntc_foil" + "description_string" "#StickerKit_desc_cluj2015_team_fntc_foil" + "sticker_material" "cluj2015/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + } + "955" + { + "name" "cluj2015_team_fntc_gold" + "item_name" "#StickerKit_cluj2015_team_fntc_gold" + "description_string" "#StickerKit_desc_cluj2015_team_fntc_gold" + "sticker_material" "cluj2015/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "6" + } + "956" + { + "name" "cluj2015_team_lumi" + "item_name" "#StickerKit_cluj2015_team_lumi" + "description_string" "#StickerKit_desc_cluj2015_team_lumi" + "sticker_material" "cluj2015/lumi" + "item_rarity" "rare" + "tournament_event_id" "8" + "tournament_team_id" "57" + } + "957" + { + "name" "cluj2015_team_lumi_foil" + "item_name" "#StickerKit_cluj2015_team_lumi_foil" + "description_string" "#StickerKit_desc_cluj2015_team_lumi_foil" + "sticker_material" "cluj2015/lumi_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + } + "958" + { + "name" "cluj2015_team_lumi_gold" + "item_name" "#StickerKit_cluj2015_team_lumi_gold" + "description_string" "#StickerKit_desc_cluj2015_team_lumi_gold" + "sticker_material" "cluj2015/lumi_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + "tournament_team_id" "57" + } + "959" + { + "name" "cluj2015_team_dhc" + "item_name" "#StickerKit_cluj2015_team_dhc" + "description_string" "#StickerKit_desc_cluj2015_team_dhc" + "sticker_material" "cluj2015/dhc" + "item_rarity" "rare" + "tournament_event_id" "8" + } + "960" + { + "name" "cluj2015_team_dhc_foil" + "item_name" "#StickerKit_cluj2015_team_dhc_foil" + "description_string" "#StickerKit_desc_cluj2015_team_dhc_foil" + "sticker_material" "cluj2015/dhc_foil" + "item_rarity" "legendary" + "tournament_event_id" "8" + } + "961" + { + "name" "cluj2015_team_dhc_gold" + "item_name" "#StickerKit_cluj2015_team_dhc_gold" + "description_string" "#StickerKit_desc_cluj2015_team_dhc_gold" + "sticker_material" "cluj2015/dhc_gold" + "item_rarity" "legendary" + "tournament_event_id" "8" + } + "962" + { + "name" "pinups_ivette" + "item_name" "#StickerKit_pinups_ivette" + "description_string" "#StickerKit_desc_pinups_ivette" + "sticker_material" "pinups_capsule/ivette" + "item_rarity" "rare" + } + "963" + { + "name" "pinups_kimberly" + "item_name" "#StickerKit_pinups_kimberly" + "description_string" "#StickerKit_desc_pinups_kimberly" + "sticker_material" "pinups_capsule/kimberly" + "item_rarity" "rare" + } + "964" + { + "name" "pinups_martha" + "item_name" "#StickerKit_pinups_martha" + "description_string" "#StickerKit_desc_pinups_martha" + "sticker_material" "pinups_capsule/martha" + "item_rarity" "rare" + } + "965" + { + "name" "pinups_merietta" + "item_name" "#StickerKit_pinups_merietta" + "description_string" "#StickerKit_desc_pinups_merietta" + "sticker_material" "pinups_capsule/merietta" + "item_rarity" "rare" + } + "966" + { + "name" "pinups_scherry" + "item_name" "#StickerKit_pinups_scherry" + "description_string" "#StickerKit_desc_pinups_scherry" + "sticker_material" "pinups_capsule/scherry" + "item_rarity" "rare" + } + "967" + { + "name" "pinups_tamara" + "item_name" "#StickerKit_pinups_tamara" + "description_string" "#StickerKit_desc_pinups_tamara" + "sticker_material" "pinups_capsule/tamara" + "item_rarity" "rare" + } + "968" + { + "name" "pinups_ivette_holo" + "item_name" "#StickerKit_pinups_ivette_holo" + "description_string" "#StickerKit_desc_pinups_ivette_holo" + "sticker_material" "pinups_capsule/ivette_holo" + "item_rarity" "mythical" + } + "969" + { + "name" "pinups_kimberly_holo" + "item_name" "#StickerKit_pinups_kimberly_holo" + "description_string" "#StickerKit_desc_pinups_kimberly_holo" + "sticker_material" "pinups_capsule/kimberly_holo" + "item_rarity" "mythical" + } + "970" + { + "name" "pinups_martha_holo" + "item_name" "#StickerKit_pinups_martha_holo" + "description_string" "#StickerKit_desc_pinups_martha_holo" + "sticker_material" "pinups_capsule/martha_holo" + "item_rarity" "mythical" + } + "971" + { + "name" "pinups_merietta_holo" + "item_name" "#StickerKit_pinups_merietta_holo" + "description_string" "#StickerKit_desc_pinups_merietta_holo" + "sticker_material" "pinups_capsule/merietta_holo" + "item_rarity" "mythical" + } + "972" + { + "name" "pinups_scherry_holo" + "item_name" "#StickerKit_pinups_scherry_holo" + "description_string" "#StickerKit_desc_pinups_scherry_holo" + "sticker_material" "pinups_capsule/scherry_holo" + "item_rarity" "mythical" + } + "973" + { + "name" "pinups_tamara_holo" + "item_name" "#StickerKit_pinups_tamara_holo" + "description_string" "#StickerKit_desc_pinups_tamara_holo" + "sticker_material" "pinups_capsule/tamara_holo" + "item_rarity" "mythical" + } + "974" + { + "name" "slid3_boom" + "item_name" "#StickerKit_slid3_boom" + "description_string" "#StickerKit_desc_slid3_boom" + "sticker_material" "slid3_capsule/boom" + "item_rarity" "rare" + } + "975" + { + "name" "slid3_boom_holo" + "item_name" "#StickerKit_slid3_boom_holo" + "description_string" "#StickerKit_desc_slid3_boom_holo" + "sticker_material" "slid3_capsule/boom_holo" + "item_rarity" "mythical" + } + "976" + { + "name" "slid3_boom_foil" + "item_name" "#StickerKit_slid3_boom_foil" + "description_string" "#StickerKit_desc_slid3_boom_foil" + "sticker_material" "slid3_capsule/boom_foil" + "item_rarity" "legendary" + } + "977" + { + "name" "slid3_countdown" + "item_name" "#StickerKit_slid3_countdown" + "description_string" "#StickerKit_desc_slid3_countdown" + "sticker_material" "slid3_capsule/countdown" + "item_rarity" "rare" + } + "978" + { + "name" "slid3_countdown_holo" + "item_name" "#StickerKit_slid3_countdown_holo" + "description_string" "#StickerKit_desc_slid3_countdown_holo" + "sticker_material" "slid3_capsule/countdown_holo" + "item_rarity" "mythical" + } + "979" + { + "name" "slid3_countdown_foil" + "item_name" "#StickerKit_slid3_countdown_foil" + "description_string" "#StickerKit_desc_slid3_countdown_foil" + "sticker_material" "slid3_capsule/countdown_foil" + "item_rarity" "legendary" + } + "980" + { + "name" "slid3_dontworryigotcha" + "item_name" "#StickerKit_slid3_dontworryigotcha" + "description_string" "#StickerKit_desc_slid3_dontworryigotcha" + "sticker_material" "slid3_capsule/dontworryigotcha" + "item_rarity" "rare" + } + "981" + { + "name" "slid3_dontworryigotcha_holo" + "item_name" "#StickerKit_slid3_dontworryigotcha_holo" + "description_string" "#StickerKit_desc_slid3_dontworryigotcha_holo" + "sticker_material" "slid3_capsule/dontworryigotcha_holo" + "item_rarity" "mythical" + } + "982" + { + "name" "slid3_dontworryigotcha_foil" + "item_name" "#StickerKit_slid3_dontworryigotcha_foil" + "description_string" "#StickerKit_desc_slid3_dontworryigotcha_foil" + "sticker_material" "slid3_capsule/dontworryigotcha_foil" + "item_rarity" "legendary" + } + "983" + { + "name" "slid3_hardclucklife" + "item_name" "#StickerKit_slid3_hardclucklife" + "description_string" "#StickerKit_desc_slid3_hardclucklife" + "sticker_material" "slid3_capsule/hardclucklife" + "item_rarity" "rare" + } + "984" + { + "name" "slid3_hardclucklife_holo" + "item_name" "#StickerKit_slid3_hardclucklife_holo" + "description_string" "#StickerKit_desc_slid3_hardclucklife_holo" + "sticker_material" "slid3_capsule/hardclucklife_holo" + "item_rarity" "mythical" + } + "985" + { + "name" "slid3_hardclucklife_foil" + "item_name" "#StickerKit_slid3_hardclucklife_foil" + "description_string" "#StickerKit_desc_slid3_hardclucklife_foil" + "sticker_material" "slid3_capsule/hardclucklife_foil" + "item_rarity" "legendary" + } + "986" + { + "name" "slid3_moveit" + "item_name" "#StickerKit_slid3_moveit" + "description_string" "#StickerKit_desc_slid3_moveit" + "sticker_material" "slid3_capsule/moveit" + "item_rarity" "rare" + } + "987" + { + "name" "slid3_moveit_holo" + "item_name" "#StickerKit_slid3_moveit_holo" + "description_string" "#StickerKit_desc_slid3_moveit_holo" + "sticker_material" "slid3_capsule/moveit_holo" + "item_rarity" "mythical" + } + "988" + { + "name" "slid3_moveit_foil" + "item_name" "#StickerKit_slid3_moveit_foil" + "description_string" "#StickerKit_desc_slid3_moveit_foil" + "sticker_material" "slid3_capsule/moveit_foil" + "item_rarity" "legendary" + } + "989" + { + "name" "team_roles_awper" + "item_name" "#StickerKit_team_roles_awper" + "description_string" "#StickerKit_desc_team_roles_awper" + "sticker_material" "team_roles_capsule/awper" + "item_rarity" "rare" + } + "990" + { + "name" "team_roles_baiter" + "item_name" "#StickerKit_team_roles_baiter" + "description_string" "#StickerKit_desc_team_roles_baiter" + "sticker_material" "team_roles_capsule/baiter" + "item_rarity" "rare" + } + "991" + { + "name" "team_roles_bomber" + "item_name" "#StickerKit_team_roles_bomber" + "description_string" "#StickerKit_desc_team_roles_bomber" + "sticker_material" "team_roles_capsule/bomber" + "item_rarity" "rare" + } + "992" + { + "name" "team_roles_bot" + "item_name" "#StickerKit_team_roles_bot" + "description_string" "#StickerKit_desc_team_roles_bot" + "sticker_material" "team_roles_capsule/bot" + "item_rarity" "rare" + } + "993" + { + "name" "team_roles_fragger" + "item_name" "#StickerKit_team_roles_fragger" + "description_string" "#StickerKit_desc_team_roles_fragger" + "sticker_material" "team_roles_capsule/fragger" + "item_rarity" "rare" + } + "994" + { + "name" "team_roles_leader" + "item_name" "#StickerKit_team_roles_leader" + "description_string" "#StickerKit_desc_team_roles_leader" + "sticker_material" "team_roles_capsule/leader" + "item_rarity" "rare" + } + "995" + { + "name" "team_roles_lurker" + "item_name" "#StickerKit_team_roles_lurker" + "description_string" "#StickerKit_desc_team_roles_lurker" + "sticker_material" "team_roles_capsule/lurker" + "item_rarity" "rare" + } + "996" + { + "name" "team_roles_nader" + "item_name" "#StickerKit_team_roles_nader" + "description_string" "#StickerKit_desc_team_roles_nader" + "sticker_material" "team_roles_capsule/nader" + "item_rarity" "rare" + } + "997" + { + "name" "team_roles_ninja" + "item_name" "#StickerKit_team_roles_ninja" + "description_string" "#StickerKit_desc_team_roles_ninja" + "sticker_material" "team_roles_capsule/ninja" + "item_rarity" "rare" + } + "998" + { + "name" "team_roles_support" + "item_name" "#StickerKit_team_roles_support" + "description_string" "#StickerKit_desc_team_roles_support" + "sticker_material" "team_roles_capsule/support" + "item_rarity" "rare" + } + "999" + { + "name" "team_roles_awper_foil" + "item_name" "#StickerKit_team_roles_awper_foil" + "description_string" "#StickerKit_desc_team_roles_awper_foil" + "sticker_material" "team_roles_capsule/awper_foil" + "item_rarity" "legendary" + } + "1000" + { + "name" "team_roles_bomber_foil" + "item_name" "#StickerKit_team_roles_bomber_foil" + "description_string" "#StickerKit_desc_team_roles_bomber_foil" + "sticker_material" "team_roles_capsule/bomber_foil" + "item_rarity" "legendary" + } + "1001" + { + "name" "team_roles_fragger_foil" + "item_name" "#StickerKit_team_roles_fragger_foil" + "description_string" "#StickerKit_desc_team_roles_fragger_foil" + "sticker_material" "team_roles_capsule/fragger_foil" + "item_rarity" "legendary" + } + "1002" + { + "name" "team_roles_leader_foil" + "item_name" "#StickerKit_team_roles_leader_foil" + "description_string" "#StickerKit_desc_team_roles_leader_foil" + "sticker_material" "team_roles_capsule/leader_foil" + "item_rarity" "legendary" + } + "1003" + { + "name" "team_roles_nader_foil" + "item_name" "#StickerKit_team_roles_nader_foil" + "description_string" "#StickerKit_desc_team_roles_nader_foil" + "sticker_material" "team_roles_capsule/nader_foil" + "item_rarity" "legendary" + } + "1004" + { + "name" "team_roles_ninja_foil" + "item_name" "#StickerKit_team_roles_ninja_foil" + "description_string" "#StickerKit_desc_team_roles_ninja_foil" + "sticker_material" "team_roles_capsule/ninja_foil" + "item_rarity" "legendary" + } + "1005" + { + "name" "team_roles_pro_foil" + "item_name" "#StickerKit_team_roles_pro_foil" + "description_string" "#StickerKit_desc_team_roles_pro_foil" + "sticker_material" "team_roles_capsule/pro_foil" + "item_rarity" "legendary" + } + "1006" + { + "name" "team_roles_support_foil" + "item_name" "#StickerKit_team_roles_supportfoil" + "description_string" "#StickerKit_desc_team_roles_support_foil" + "sticker_material" "team_roles_capsule/support_foil" + "item_rarity" "legendary" + } + "1315" + { + "name" "allstars_a_holo" + "item_name" "#StickerKit_allstars_a_holo" + "description_string" "#StickerKit_desc_allstars_a_holo" + "sticker_material" "tournament_assets/allstars_a_holo" + "item_rarity" "mythical" + } + "1316" + { + "name" "allstars_b_holo" + "item_name" "#StickerKit_allstars_b_holo" + "description_string" "#StickerKit_desc_allstars_b_holo" + "sticker_material" "tournament_assets/allstars_b_holo" + "item_rarity" "mythical" + } + } + "paint_kits" + { + "0" + { + "name" "default" + "description_string" "#PaintKit_Default" + "description_tag" "#PaintKit_Default_Tag" + "pattern" "none" + "logo_material" "none" + "wear_gradient" "canvas" + "wear_default" "0.100000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + "seed" "0" + "style" "0" + "color0" "128 128 128" + "color1" "128 128 128" + "color2" "128 128 128" + "color3" "128 128 128" + "phongexponent" "16" + "phongintensity" "255" + "phongalbedoboost" "-1" + "pattern_scale" "0.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "logo_scale" "1.000000" + "logo_offset_x" "0.000000" + "logo_offset_y" "0.000000" + "logo_rotation" "0.000000" + "logocolor0" "0 0 0" + "logocolor1" "0 0 0" + "logocolor2" "0 0 0" + "logocolor3" "0 0 0" + "ignore_weapon_size_scale" "0" + "view_model_exponent_override_size" "256" + "only_first_material" "0" + } + "9001" + { + "name" "workshop_default" + "pattern" "black" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "style" "0" + "color0" "128 128 128" + "color1" "150 150 150" + "color2" "96 96 96" + "color3" "108 108 108" + "phongexponent" "32" + "pattern_scale" "1.000000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "2" + { + "name" "so_olive" + "description_string" "#PaintKit_so_olive" + "description_tag" "#PaintKit_so_olive_Tag" + "wear_default" "0.200000" + "style" "1" + "color0" "47 52 37" + "color1" "65 78 61" + "color2" "102 91 66" + "color3" "51 53 26" + "phongintensity" "10" + } + "3" + { + "name" "so_red" + "description_string" "#PaintKit_so_red" + "description_tag" "#PaintKit_so_red_Tag" + "wear_default" "0.120000" + "style" "1" + "color0" "32 32 32" + "color1" "106 11 11" + "color2" "32 32 32" + "color3" "32 32 32" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + "phongexponent" "255" + "phongintensity" "80" + } + "5" + { + "name" "hy_ddpat" + "description_string" "#PaintKit_hy_ddpat" + "description_tag" "#PaintKit_hy_ddpat_Tag" + "pattern" "ddpat" + "style" "2" + "color0" "67 61 47" + "color1" "101 89 77" + "color2" "31 42 27" + "color3" "32 23 16" + "phongintensity" "13" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "6" + { + "name" "hy_arctic" + "description_string" "#PaintKit_hy_arctic" + "description_tag" "#PaintKit_hy_arctic_Tag" + "pattern" "camo_arctic" + "wear_default" "0.200000" + "style" "2" + "color0" "233 239 239" + "color1" "162 190 202" + "color2" "136 136 136" + "color3" "70 68 68" + "phongintensity" "26" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "8" + { + "name" "hy_desert" + "description_string" "#PaintKit_hy_desert" + "description_tag" "#PaintKit_hy_desert_Tag" + "pattern" "desert_spots" + "wear_default" "0.150000" + "style" "2" + "color0" "191 191 191" + "color1" "157 138 119" + "color2" "96 67 51" + "color3" "19 19 19" + "phongintensity" "10" + "pattern_scale" "3" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "ignore_weapon_size_scale" "1" + } + "9" + { + "name" "hy_tiger" + "description_string" "#PaintKit_hy_tiger" + "description_tag" "#PaintKit_hy_tiger_Tag" + "pattern" "tiger" + "wear_default" "0.200000" + "seed" "33" + "style" "2" + "color0" "224 213 206" + "color1" "193 103 37" + "color2" "25 20 17" + "color3" "1 1 1" + "phongintensity" "13" + "pattern_scale" "3" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "3.000000" + "pattern_offset_y_start" "0.200000" + "pattern_offset_y_end" "0.200000" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "ignore_weapon_size_scale" "1" + } + "10" + { + "name" "hy_copperhead" + "description_string" "#PaintKit_hy_copperhead" + "description_tag" "#PaintKit_hy_copperhead_Tag" + "pattern" "copperhead" + "wear_default" "0.200000" + "style" "2" + "color0" "174 174 170" + "color1" "82 64 40" + "color2" "7 1 1" + "color3" "49 21 20" + "phongintensity" "10" + "pattern_scale" "2.900000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0.720000" + "pattern_offset_y_end" "0.720000" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.120000" + "wear_remap_max" "0.380000" + } + "11" + { + "name" "hy_skulls" + "description_string" "#PaintKit_hy_skulls" + "description_tag" "#PaintKit_hy_skulls_Tag" + "pattern" "skulls" + "wear_default" "0.100000" + "style" "2" + "color0" "80 80 80" + "color1" "12 12 12" + "color2" "8 8 8" + "color3" "36 28 57" + "phongintensity" "13" + "pattern_scale" "6" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.260000" + } + "12" + { + "name" "hy_webs" + "description_string" "#PaintKit_hy_webs" + "description_tag" "#PaintKit_hy_webs_Tag" + "pattern" "webs" + "wear_default" "0.100000" + "seed" "1" + "style" "2" + "color0" "94 12 12" + "color1" "16 16 16" + "color2" "16 16 16" + "color3" "16 16 16" + "phongexponent" "127" + "phongintensity" "26" + "pattern_scale" "4.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "13" + { + "name" "hy_splatter" + "description_string" "#PaintKit_hy_splatter" + "description_tag" "#PaintKit_hy_splatter_Tag" + "pattern" "splatter" + "wear_default" "0.140000" + "seed" "7" + "style" "2" + "color0" "32 180 236" + "color1" "16 140 188 " + "color2" "10 89 120" + "color3" "16 16 16" + "phongintensity" "10" + "pattern_scale" "2.500000" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_rotate_start" "-15" + "pattern_rotate_end" "15" + "ignore_weapon_size_scale" "1" + } + "14" + { + "name" "hy_ak47lam" + "description_string" "#PaintKit_hy_ak47lam" + "description_tag" "#PaintKit_hy_ak47lam_Tag" + "pattern" "laminate_ak47" + "wear_default" "0.050000" + "style" "2" + "color0" "17 16 15" + "color1" "150 5 9" + "color2" "119 108 94" + "color3" "233 58 7" + "phongexponent" "60" + "phongintensity" "51" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + } + "15" + { + "name" "hy_gelpen" + "description_string" "#PaintKit_hy_gelpen" + "description_tag" "#PaintKit_hy_gelpen_Tag" + "pattern" "gel_pen" + "wear_default" "0.180000" + "style" "2" + "color0" "182 179 175" + "color1" "151 145 135" + "color2" "32 14 3" + "color3" "48 22 0" + "phongintensity" "10" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "30" + "pattern_rotate_end" "60" + } + "16" + { + "name" "hy_v_tiger" + "description_string" "#PaintKit_hy_v_tiger" + "description_tag" "#PaintKit_hy_v_tiger_Tag" + "pattern" "v_tiger" + "wear_default" "0.500000" + "style" "2" + "color0" "52 64 42" + "color1" "145 147 144" + "color2" "63 51 53" + "color3" "42 40 51" + "phongintensity" "10" + "pattern_scale" "3" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "17" + { + "name" "hy_ddpat_urb" + "description_string" "#PaintKit_hy_ddpat" + "description_tag" "#PaintKit_hy_ddpat_urb_Tag" + "pattern" "ddpat" + "style" "2" + "color0" "40 40 40" + "color1" "80 80 80" + "color2" "140 140 140" + "color3" "180 180 180" + "phongintensity" "10" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "20" + { + "name" "hy_zombie" + "description_string" "#PaintKit_hy_zombie" + "description_tag" "#PaintKit_hy_zombie_Tag" + "pattern" "zombie" + "wear_default" "0.050000" + "seed" "2" + "style" "2" + "color0" "84 130 10" + "color1" "84 130 10" + "color2" "4 4 4" + "color3" "18 34 8" + "phongintensity" "20" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-2" + "pattern_rotate_end" "2" + } + "21" + { + "name" "hy_granite" + "description_string" "#PaintKit_hy_granite" + "description_tag" "#PaintKit_hy_granite_Tag" + "pattern" "marbleized" + "wear_default" "0.150000" + "style" "2" + "color0" "165 163 114" + "color1" "186 187 199" + "color2" "17 11 11" + "color3" "22 29 52" + "phongintensity" "20" + "pattern_scale" "6" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "22" + { + "name" "sp_spray" + "description_string" "#PaintKit_sp_spray" + "description_tag" "#PaintKit_sp_spray_Tag" + "pattern" "camo_daubs" + "wear_default" "0.300000" + "style" "3" + "color0" "128 124 122" + "color1" "80 80 80" + "color2" "15 17 18" + "color3" "219 219 219" + "phongintensity" "10" + "pattern_scale" "1.430000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "25" + { + "name" "sp_leaves" + "description_string" "#PaintKit_sp_leaves" + "description_tag" "#PaintKit_sp_leaves_Tag" + "pattern" "camo_leaves" + "wear_default" "0.200000" + "style" "3" + "color0" "48 41 15" + "color1" "24 22 19" + "color2" "17 32 20" + "color3" "80 70 41" + "phongintensity" "10" + "pattern_scale" "1.680000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "26" + { + "name" "sp_short_tape" + "description_string" "#PaintKit_sp_short_tape" + "description_tag" "#PaintKit_sp_short_tape_Tag" + "pattern" "camo_tape_short" + "wear_default" "0.200000" + "style" "3" + "color0" "48 37 43" + "color1" "156 167 122" + "color2" "82 37 53" + "color3" "48 64 43" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "40" + "pattern_rotate_end" "50" + } + "27" + { + "name" "sp_tape" + "description_string" "#PaintKit_sp_tape" + "description_tag" "#PaintKit_sp_tape_Tag" + "pattern" "camo_tape_strips" + "wear_default" "0.200000" + "style" "3" + "color0" "53 38 16" + "color1" "17 17 17" + "color2" "164 163 152" + "color3" "37 51 13" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "28" + { + "name" "an_navy" + "description_string" "#PaintKit_an_navy" + "description_tag" "#PaintKit_an_navy_Tag" + "wear_default" "0.060000" + "style" "4" + "color0" "23 33 47" + "color1" "23 33 47" + "color2" "1 1 1" + "color3" "1 1 1" + "phongexponent" "32" + "phongalbedoboost" "15" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "30" + { + "name" "sp_snake" + "description_string" "#PaintKit_sp_snake" + "description_tag" "#PaintKit_sp_snake_Tag" + "pattern" "snake" + "wear_default" "0.200000" + "seed" "6" + "style" "3" + "color0" "132 119 96" + "color1" "132 119 96" + "color2" "40 19 1" + "color3" "40 19 1" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-4" + "pattern_rotate_end" "4" + } + "32" + { + "name" "an_silver" + "description_string" "#PaintKit_an_silver" + "description_tag" "#PaintKit_an_silver_Tag" + "wear_default" "0.090000" + "style" "4" + "color0" "53 55 60" + "color1" "53 55 60" + "color2" "1 1 1" + "color3" "1 1 1" + "phongexponent" "32" + "phongalbedoboost" "60" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "33" + { + "name" "an_red" + "description_string" "#PaintKit_an_red" + "description_tag" "#PaintKit_an_red_Tag" + "wear_default" "0.050000" + "style" "4" + "color0" "30 1 1" + "color1" "30 1 1" + "color2" "1 1 1" + "color3" "1 1 1" + "phongexponent" "16" + "phongalbedoboost" "100" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "34" + { + "name" "am_urban" + "description_string" "#PaintKit_am_urban" + "description_tag" "#PaintKit_am_urban_Tag" + "pattern" "ddpat" + "seed" "42" + "wear_default" "0.020000" + "style" "5" + "color0" "25 25 25" + "color1" "40 40 40" + "color2" "17 17 18" + "color3" "15 15 14" + "phongalbedoboost" "120" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "36" + { + "name" "am_ossify" + "description_string" "#PaintKit_am_ossify" + "description_tag" "#PaintKit_am_ossify_Tag" + "pattern" "ossify" + "wear_default" "0.020000" + "style" "5" + "color0" "20 27 2" + "color1" "20 27 2" + "color2" "47 56 1" + "color3" "47 56 1" + "phongalbedoboost" "100" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "37" + { + "name" "aa_flames" + "description_string" "#PaintKit_aa_flames" + "description_tag" "#PaintKit_aa_flames_Tag" + "pattern" "flamegraphic" + "wear_default" "0.200000" + "seed" "1" + "style" "6" + "color0" "80 10 1" + "color1" "34 2 1" + "color2" "16 16 16" + "color3" "90 60 4" + "phongalbedoboost" "30" + "pattern_scale" "1" + "pattern_offset_x_start" "-0.300000" + "pattern_offset_x_end" "-0.300000" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "38" + { + "name" "aa_fade" + "description_string" "#PaintKit_aa_fade" + "description_tag" "#PaintKit_aa_fade_Tag" + "pattern" "fade" + "wear_default" "0.200000" + "style" "6" + "color0" "44 41 39" + "color1" "84 52 14" + "color2" "71 18 28" + "color3" "28 31 57" + "phongalbedoboost" "80" + "phongexponent" "34" + "pattern_scale" "1" + "pattern_offset_x_start" "-0.700000" + "pattern_offset_x_end" "-0.700000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "-55" + "pattern_rotate_end" "-65" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "39" + { + "name" "so_yellow" + "description_string" "#PaintKit_so_yellow" + "description_tag" "#PaintKit_so_yellow_Tag" + "wear_default" "0.180000" + "style" "1" + "color0" "45 45 45" + "color1" "241 191 18" + "color2" "58 58 58" + "color3" "32 32 32" + "phongintensity" "4" + } + "40" + { + "name" "so_night" + "description_string" "#PaintKit_so_night" + "description_tag" "#PaintKit_so_night_Tag" + "wear_default" "0.170000" + "style" "1" + "color0" "48 62 71" + "color1" "26 33 38" + "color2" "43 55 64" + "color3" "36 36 36" + "phongintensity" "4" + } + "41" + { + "name" "aq_copper" + "description_string" "#PaintKit_aq_copper" + "description_tag" "#PaintKit_aq_copper_Tag" + "pattern" "aged" + "wear_default" "0.100000" + "seed" "19" + "style" "8" + "color0" "90 62 50" + "color1" "77 46 40" + "color2" "68 72 70" + "color3" "121 142 135" + "phongintensity" "180" + "phongalbedoboost" "50" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "42" + { + "name" "aq_blued" + "description_string" "#PaintKit_aq_blued" + "description_tag" "#PaintKit_aq_blued_Tag" + "pattern" "watermarked" + "wear_default" "0.350000" + "seed" "11" + "style" "8" + "color0" "103 109 109" + "color1" "36 43 57" + "color2" "47 45 68" + "color3" "33 40 52" + "phongalbedoboost" "30" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "43" + { + "name" "aq_forced" + "description_string" "#PaintKit_aq_forced" + "description_tag" "#PaintKit_aq_forced_Tag" + "pattern" "forced" + "wear_default" "0.100000" + "seed" "10" + "style" "8" + "color0" "115 108 100" + "color1" "115 108 100" + "color2" "115 108 100" + "color3" "61 67 76" + "phongalbedoboost" "50" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "44" + { + "name" "aq_oiled" + "description_string" "#PaintKit_aq_oiled" + "description_tag" "#PaintKit_aq_oiled_Tag" + "pattern" "oiled" + "wear_default" "0.000000" + "seed" "29" + "style" "8" + "color0" "120 111 101" + "color1" "120 111 101" + "color2" "102 96 89" + "color3" "30 34 47" + "phongexponent" "25" + "phongalbedoboost" "80" + "pattern_scale" "1" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "46" + { + "name" "so_pmc" + "description_string" "#PaintKit_so_pmc" + "description_tag" "#PaintKit_so_pmc_Tag" + "wear_default" "0.180000" + "style" "1" + "color0" "48 50 49" + "color1" "39 46 44 " + "color2" "145 125 96" + "color3" "20 20 20" + "phongintensity" "10" + } + "47" + { + "name" "so_space_marine" + "description_string" "#PaintKit_so_space_marine" + "description_tag" "#PaintKit_so_space_marine_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "45 45 45" + "color1" "99 98 69" + "color2" "58 58 58" + "color3" "32 32 32" + "phongintensity" "4" + } + "48" + { + "name" "am_dragon_glock" + "description_string" "#PaintKit_am_dragon_glock" + "description_tag" "#PaintKit_am_dragon_glock_Tag" + "pattern" "dragon_glock" + "wear_default" "0.040000" + "style" "5" + "color0" "58 58 60" + "color1" "60 60 60" + "color2" "7 7 8" + "color3" "60 60 60" + "phongalbedoboost" "30" + "pattern_scale" "3.370000" + "pattern_offset_x_start" "-0.310000" + "pattern_offset_x_end" "-0.310000" + "pattern_offset_y_start" "-1.470000" + "pattern_offset_y_end" "-1.800000" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "51" + { + "name" "am_lightning_awp" + "description_string" "#PaintKit_am_lightning_awp" + "description_tag" "#PaintKit_am_lightning_awp_Tag" + "pattern" "lightning_strike" + "wear_default" "0.000000" + "style" "5" + "color0" "7 5 6" + "color1" "65 7 99" + "color2" "100 36 38" + "color3" "108 108 142" + "phongalbedoboost" "40" + "phongexponent" "8" + "pattern_scale" "1" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "59" + { + "name" "am_zebra" + "description_string" "#PaintKit_am_zebra" + "description_tag" "#PaintKit_am_zebra_Tag" + "pattern" "zebra" + "wear_default" "0.050000" + "style" "5" + "color0" "94 34 35" + "color1" "244 253 253" + "color2" "57 21 22" + "color3" "117 153 174" + "phongalbedoboost" "50" + "phongexponent" "4" + "pattern_scale" "2.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "wear_remap_min" "0.010000" + "wear_remap_max" "0.260000" + "view_model_exponent_override_size" "1024" + } + "60" + { + "name" "am_zebra_dark" + "description_string" "#PaintKit_am_zebra_dark" + "description_tag" "#PaintKit_am_zebra_dark_Tag" + "pattern" "zebra" + "wear_default" "0.180000" + "style" "5" + "color0" "55 55 55" + "color1" "16 86 86" + "color2" "17 17 17" + "color3" "96 96 96" + "phongalbedoboost" "50" + "phongexponent" "4" + "pattern_scale" "3.300000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.260000" + "view_model_exponent_override_size" "1024" + } + "61" + { + "name" "aa_vertigo" + "description_string" "#PaintKit_aa_vertigo" + "description_tag" "#PaintKit_aa_vertigo_Tag" + "pattern" "vertigo" + "wear_default" "0.150000" + "style" "6" + "color0" "102 92 85" + "color1" "16 16 16" + "color2" "16 16 16" + "color3" "16 16 16" + "phongalbedoboost" "80" + "phongexponent" "32" + "pattern_scale" "1.400000" + "pattern_offset_x_start" "0.040000" + "pattern_offset_x_end" "0.140000" + "pattern_offset_y_start" "-0.440000" + "pattern_offset_y_end" "-0.180000" + "pattern_rotate_start" "7" + "pattern_rotate_end" "25" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "62" + { + "name" "cu_spring_nova" + "description_string" "#PaintKit_cu_spring_nova" + "description_tag" "#PaintKit_cu_spring_nova_Tag" + "pattern" "spring_nova" + "wear_default" "0.060000" + "phongexponent" "62" + "style" "7" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + } + "67" + { + "name" "am_slither_p90" + "description_string" "#PaintKit_am_slither_p90" + "description_tag" "#PaintKit_am_slither_p90_Tag" + "style" "5" + "pattern" "p90_slither" + "color0" "70 20 18" + "color1" "8 8 8" + "color2" "8 8 8" + "color3" "70 20 18" + "pattern_scale" "1.400000" + "phongexponent" "0" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "-0.120000" + "pattern_offset_x_end" "-0.040000" + "pattern_offset_y_start" "0.200000" + "pattern_offset_y_end" "0.240000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "70" + { + "name" "am_carbon_fiber" + "description_string" "#PaintKit_am_carbon_fiber" + "description_tag" "#PaintKit_am_carbon_fiber_Tag" + "pattern" "carbon_fiber" + "wear_default" "0.020000" + "style" "5" + "color0" "1 1 1" + "color1" "25 25 25" + "color2" "25 25 25" + "color3" "25 25 25" + "phongalbedoboost" "50" + "phongexponent" "3" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "145" + "pattern_rotate_end" "165" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.120000" + } + "71" + { + "name" "am_scorpion_p2000" + "description_string" "#PaintKit_am_scorpion_p2000" + "description_tag" "#PaintKit_am_scorpion_p2000_Tag" + "pattern" "scorpion_p2000" + "wear_default" "0.000000" + "style" "5" + "color0" "61 58 50" + "color1" "134 118 2" + "color2" "218 95 3" + "color3" "124 47 20" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + "phongalbedoboost" "50" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "72" + { + "name" "sp_mesh_tan" + "description_string" "#PaintKit_sp_mesh" + "description_tag" "#PaintKit_sp_mesh_tan_Tag" + "pattern" "chainlink" + "wear_default" "0.200000" + "style" "3" + "color0" "109 105 84" + "color1" "19 20 21" + "color2" "77 80 67" + "color3" "73 71 56" + "phongintensity" "10" + "pattern_scale" "1.750000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "73" + { + "name" "hy_feathers_aug" + "description_string" "#PaintKit_hy_feathers_aug" + "description_tag" "#PaintKit_hy_feathers_aug_Tag" + "pattern" "feathers_aug" + "wear_default" "0.200000" + "style" "2" + "color0" "17 16 15" + "color1" "17 16 15" + "color2" "191 184 174" + "color3" "17 16 15" + "phongintensity" "51" + "phongexponent" "60" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.140000" + } + "74" + { + "name" "hy_arctic_contrast" + "description_string" "#PaintKit_hy_arctic" + "description_tag" "#Paintkit_hy_arctic_contrast_Tag" + "pattern" "camo_arctic" + "wear_default" "0.200000" + "style" "2" + "color0" "240 240 240" + "color1" "34 34 34" + "color2" "164 164 164" + "color3" "112 112 112" + "phongintensity" "26" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "75" + { + "name" "hy_blizzard" + "description_string" "#PaintKit_hy_granite" + "description_tag" "#PaintKit_hy_blizzard_Tag" + "pattern" "marbleized" + "wear_default" "0.150000" + "style" "2" + "color0" "140 172 189" + "color1" "145 126 115" + "color2" "210 210 210" + "color3" "72 62 60" + "phongintensity" "20" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "76" + { + "name" "hy_forest_winter" + "description_string" "#PaintKit_hy_forest" + "description_tag" "#PaintKit_hy_forest_winter_Tag" + "pattern" "camo_wood" + "wear_default" "0.180000" + "style" "2" + "color0" "176 193 206" + "color1" "223 223 223" + "color2" "106 106 106" + "color3" "139 139 139" + "phongintensity" "10" + "pattern_scale" "3.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "77" + { + "name" "hy_forest_boreal" + "description_string" "#PaintKit_hy_forest" + "description_tag" "#PaintKit_hy_forest_boreal_Tag" + "pattern" "camo_wood" + "wear_default" "0.180000" + "style" "2" + "color0" "101 103 61" + "color1" "39 35 27" + "color2" "71 67 58" + "color3" "51 79 60" + "phongintensity" "10" + "pattern_scale" "3" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "78" + { + "name" "hy_forest_night" + "description_string" "#PaintKit_hy_forest" + "description_tag" "#PaintKit_hy_forest_night_Tag" + "pattern" "camo_wood" + "wear_default" "0.180000" + "style" "2" + "color0" "48 62 71" + "color1" "26 33 38" + "color2" "43 55 64" + "color3" "36 36 36" + "phongintensity" "10" + "pattern_scale" "3.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "83" + { + "name" "hy_ddpat_orange" + "description_string" "#PaintKit_hy_ddpat" + "description_tag" "#PaintKit_hy_ddpat_orange_Tag" + "pattern" "ddpat" + "seed" "42" + "wear_default" "0.020000" + "style" "2" + "color0" "49 46 43" + "color1" "177 92 16" + "color2" "29 27 24" + "color3" "69 64 56" + "phongintensity" "10" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "84" + { + "name" "hy_ddpat_pink" + "description_string" "#PaintKit_hy_ddpat" + "description_tag" "#PaintKit_hy_ddpat_pink_Tag" + "pattern" "ddpat" + "seed" "42" + "wear_default" "0.020000" + "style" "2" + "color0" "41 43 50" + "color1" "106 104 111" + "color2" "145 49 118" + "color3" "66 67 72" + "phongintensity" "10" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "90" + { + "name" "hy_mottled_sand" + "description_string" "#PaintKit_hy_granite" + "description_tag" "#PaintKit_hy_sediment_Tag" + "pattern" "marbleized" + "wear_default" "0.150000" + "style" "2" + "color0" "100 89 66" + "color1" "139 124 92" + "color2" "75 67 50" + "color3" "75 65 54" + "phongintensity" "20" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "92" + { + "name" "hy_reef" + "description_string" "#PaintKit_hy_granite" + "description_tag" "#PaintKit_hy_reef_rock_Tag" + "pattern" "marbleized" + "wear_default" "0.150000" + "style" "2" + "color0" "34 40 38" + "color1" "45 120 176" + "color2" "131 149 150" + "color3" "68 75 65" + "phongintensity" "20" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "93" + { + "name" "so_caramel" + "description_string" "#PaintKit_so_caramel" + "description_tag" "#PaintKit_so_caramel_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "34 34 34" + "color1" "34 34 34" + "color2" "204 135 32" + "color3" "34 34 34" + "phongintensity" "66" + "phongexponent" "64" + } + "95" + { + "name" "so_grassland" + "description_string" "#PaintKit_so_grassland" + "description_tag" "#PaintKit_so_grassland_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "68 75 65" + "color1" "139 121 95" + "color2" "139 121 95" + "color3" "68 75 65" + "phongintensity" "10" + } + "96" + { + "name" "so_moss" + "description_string" "#PaintKit_so_moss" + "description_tag" "#PaintKit_so_moss_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "87 119 106" + "color1" "53 66 66" + "color2" "87 119 106" + "color3" "2 30 32" + "phongintensity" "10" + } + "98" + { + "name" "so_purple" + "description_string" "#PaintKit_so_purple" + "description_tag" "#PaintKit_so_purple_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "56 15 78" + "color1" "34 34 34" + "color2" "56 15 78" + "color3" "34 34 34" + "phongintensity" "10" + } + "99" + { + "name" "so_sand" + "description_string" "#PaintKit_so_sand" + "description_tag" "#PaintKit_so_sand_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "75 65 54" + "color1" "100 89 66" + "color2" "139 124 92" + "color3" "75 67 50" + "phongintensity" "10" + } + "100" + { + "name" "so_stormfront" + "description_string" "#PaintKit_so_stormfront" + "description_tag" "#PaintKit_so_stormfront_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "63 69 82" + "color1" "109 126 122" + "color2" "63 69 82" + "color3" "68 75 65" + "phongintensity" "10" + } + "101" + { + "name" "so_tornado" + "description_string" "#PaintKit_so_tornado" + "description_tag" "#PaintKit_so_tornado_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "51 61 77" + "color1" "107 97 78" + "color2" "51 61 77" + "color3" "39 46 58" + "phongintensity" "10" + } + "102" + { + "name" "so_whiteout" + "description_string" "#PaintKit_so_whiteout" + "description_tag" "#PaintKit_so_whiteout_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "214 213 207" + "color1" "214 213 207" + "color2" "214 213 207" + "color3" "214 213 207" + "phongintensity" "10" + } + "104" + { + "name" "sp_leaves_grassland" + "description_string" "#PaintKit_sp_leaves" + "description_tag" "#PaintKit_sp_leaves_grassland_Tag" + "pattern" "camo_leaves" + "wear_default" "0.200000" + "style" "3" + "color0" "68 75 65" + "color1" "139 121 95" + "color2" "139 121 95" + "color3" "68 75 65" + "phongintensity" "10" + "pattern_scale" "1.680000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "107" + { + "name" "sp_mesh_arctic_contrast" + "description_string" "#PaintKit_sp_mesh" + "description_tag" "#PaintKit_sp_mesh_arctic_contrast_Tag" + "pattern" "chainlink" + "wear_default" "0.200000" + "style" "3" + "color0" "40 40 40" + "color1" "80 80 80" + "color2" "140 140 140" + "color3" "180 180 180" + "phongintensity" "10" + "pattern_scale" "1.750000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "110" + { + "name" "sp_mesh_forest_fire" + "description_string" "#PaintKit_sp_mesh" + "description_tag" "#PaintKit_sp_mesh_fire_Tag" + "pattern" "chainlink" + "wear_default" "0.200000" + "style" "3" + "color0" "49 46 43" + "color1" "115 106 100" + "color2" "177 92 16" + "color3" "84 78 73" + "phongintensity" "10" + "pattern_scale" "1.750000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "111" + { + "name" "sp_mesh_glacier" + "description_string" "#PaintKit_sp_mesh" + "description_tag" "#PaintKit_sp_mesh_glacier_Tag" + "pattern" "chainlink" + "wear_default" "0.200000" + "style" "3" + "color0" "140 172 189" + "color1" "145 126 115" + "color2" "210 210 210" + "color3" "72 62 60" + "phongintensity" "10" + "pattern_scale" "1.750000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "116" + { + "name" "sp_mesh_sand" + "description_string" "#PaintKit_sp_mesh" + "description_tag" "#PaintKit_sp_mesh_sand_Tag" + "pattern" "chainlink" + "wear_default" "0.200000" + "style" "3" + "color0" "100 89 66" + "color1" "139 124 92" + "color2" "75 67 50" + "color3" "75 65 54" + "phongintensity" "10" + "pattern_scale" "1.750000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "119" + { + "name" "sp_spray_desert_sage" + "description_string" "#PaintKit_sp_spray" + "description_tag" "#PaintKit_sp_spray_sage_Tag" + "pattern" "camo_daubs" + "wear_default" "0.300000" + "style" "3" + "color0" "149 147 128" + "color1" "213 209 202" + "color2" "91 73 55" + "color3" "11 11 11" + "phongintensity" "10" + "pattern_scale" "1.620000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "122" + { + "name" "sp_spray_jungle" + "description_string" "#PaintKit_sp_spray" + "description_tag" "#PaintKit_sp_spray_jungle_Tag" + "pattern" "camo_daubs" + "wear_default" "0.300000" + "style" "3" + "color0" "71 67 58" + "color1" "51 79 60" + "color2" "101 103 61" + "color3" "39 35 27" + "phongintensity" "10" + "pattern_scale" "1.650000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "124" + { + "name" "sp_spray_sand" + "description_string" "#PaintKit_sp_spray" + "description_tag" "#PaintKit_sp_spray_sand_Tag" + "pattern" "camo_daubs" + "wear_default" "0.300000" + "style" "3" + "color0" "100 89 66" + "color1" "139 124 92" + "color2" "75 67 50" + "color3" "75 65 54" + "phongintensity" "10" + "pattern_scale" "1.700000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "135" + { + "name" "sp_tape_dots_urban" + "description_string" "#PaintKit_sp_tape_dots" + "description_tag" "#PaintKit_sp_tape_dots_urban_Tag" + "pattern" "mesh_and_tape" + "wear_default" "0.380000" + "style" "3" + "color0" "40 40 40" + "color1" "80 80 80" + "color2" "140 140 140" + "color3" "180 180 180" + "phongintensity" "10" + "pattern_scale" "1.400000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "136" + { + "name" "sp_tape_dots_waves" + "description_string" "#PaintKit_sp_tape_dots" + "description_tag" "#PaintKit_sp_tape_dots_waves_Tag" + "pattern" "mesh_and_tape" + "wear_default" "0.380000" + "style" "3" + "color0" "35 45 92" + "color1" "108 124 128" + "color2" "51 75 113" + "color3" "39 46 58" + "phongintensity" "10" + "pattern_scale" "1.400000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "141" + { + "name" "sp_tape_orange" + "description_string" "#PaintKit_sp_tape" + "description_tag" "#PaintKit_sp_tape_orange_Tag" + "pattern" "camo_tape_strips" + "wear_default" "0.200000" + "style" "3" + "color0" "49 46 43" + "color1" "115 106 100" + "color2" "177 92 16" + "color3" "84 78 73" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "143" + { + "name" "sp_tape_urban" + "description_string" "#PaintKit_sp_tape" + "description_tag" "#PaintKit_sp_tape_urban_Tag" + "pattern" "camo_tape_strips" + "wear_default" "0.200000" + "style" "3" + "color0" "40 40 40" + "color1" "80 80 80" + "color2" "140 140 140" + "color3" "180 180 180" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "147" + { + "name" "sp_tape_short_jungle" + "description_string" "#PaintKit_sp_short_tape" + "description_tag" "#PaintKit_sp_short_tape_jungle_Tag" + "pattern" "camo_tape_short" + "wear_default" "0.200000" + "style" "3" + "color0" "35 37 50" + "color1" "51 79 60" + "color2" "101 103 61" + "color3" "39 35 27" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "40" + "pattern_rotate_end" "50" + } + "148" + { + "name" "sp_tape_short_sand" + "description_string" "#PaintKit_sp_short_tape" + "description_tag" "#PaintKit_sp_short_tape_sand_Tag" + "pattern" "camo_tape_short" + "wear_default" "0.200000" + "style" "3" + "color0" "100 89 66" + "color1" "139 124 92" + "color2" "75 67 50" + "color3" "75 65 54" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "40" + "pattern_rotate_end" "50" + } + "149" + { + "name" "sp_tape_short_urban" + "description_string" "#PaintKit_sp_short_tape" + "description_tag" "#PaintKit_sp_short_tape_urban_Tag" + "pattern" "camo_tape_short" + "wear_default" "0.200000" + "style" "3" + "color0" "40 40 40" + "color1" "140 140 140" + "color2" "180 180 180" + "color3" "80 80 80" + "phongintensity" "10" + "pattern_scale" "1.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "40" + "pattern_rotate_end" "50" + } + "151" + { + "name" "so_jungle" + "description_string" "#PaintKit_so_jungle" + "description_tag" "#PaintKit_so_jungle_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "71 67 58" + "color1" "51 79 60" + "color2" "101 103 61" + "color3" "39 35 27" + "phongintensity" "10" + } + "153" + { + "name" "so_tangerine" + "description_string" "#PaintKit_so_tangerine" + "description_tag" "#PaintKit_so_tangerine_Tag" + "wear_default" "0.260000" + "style" "1" + "color0" "64 64 64" + "color1" "236 84 19" + "color2" "21 21 21" + "color3" "39 35 27" + "phongintensity" "10" + "wear_remap_min" "0.260000" + "wear_remap_max" "0.600000" + } + "154" + { + "name" "cu_broken_path_famas" + "description_string" "#PaintKit_cu_broken_path_famas" + "description_tag" "#PaintKit_cu_broken_path_famas_Tag" + "pattern" "broken_path_famas" + "wear_default" "0.080000" + "style" "7" + "pattern_scale" "1" + "phongintensity" "153" + "phongexponent" "128" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.400000" + } + "155" + { + "name" "cu_bullet_rain_m4a1" + "description_string" "#PaintKit_cu_bullet_rain_m4a1" + "description_tag" "#PaintKit_cu_bullet_rain_m4a1_Tag" + "pattern" "bullet_rain_m4" + "wear_default" "0.080000" + "style" "7" + "pattern_scale" "1" + "phongintensity" "153" + "phongexponent" "128" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.460000" + } + "156" + { + "name" "cu_catskulls_p90" + "description_string" "#PaintKit_cu_catskulls_p90" + "description_tag" "#PaintKit_cu_catskulls_p90_Tag" + "pattern" "catskulls" + "wear_default" "0.080000" + "style" "7" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "phongintensity" "153" + "phongexponent" "128" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.080000" + "wear_remap_max" "0.320000" + } + "157" + { + "name" "sp_palm" + "description_string" "#PaintKit_sp_palm" + "description_tag" "#PaintKit_sp_palm_Tag" + "pattern" "palm" + "wear_default" "0.350000" + "style" "3" + "color0" "189 179 155" + "color1" "67 74 28" + "color2" "87 67 49" + "color3" "60 48 38" + "phongintensity" "10" + "pattern_scale" "1" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "158" + { + "name" "cu_walnut_nova" + "description_string" "#PaintKit_cu_walnut_nova" + "description_tag" "#PaintKit_cu_walnut_nova_Tag" + "pattern" "walnut_nova" + "wear_default" "0.000000" + "phongintensity" "26" + "phongexponent" "36" + "style" "7" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + } + "159" + { + "name" "aq_brass" + "description_string" "#PaintKit_aq_brass" + "description_tag" "#PaintKit_aq_brass_Tag" + "pattern" "aged" + "wear_default" "0.100000" + "seed" "19" + "style" "8" + "color0" "92 78 48" + "color1" "58 50 31" + "color2" "55 50 43" + "color3" "86 73 58" + "phongintensity" "180" + "phongalbedoboost" "50" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "162" + { + "name" "sp_splash_p250" + "description_string" "#PaintKit_sp_splash_p250" + "description_tag" "#PaintKit_sp_splash_p250_Tag" + "pattern" "splash" + "wear_default" "0.080000" + "style" "3" + "color0" "55 54 51" + "color1" "55 54 51" + "color2" "177 92 16" + "color3" "177 92 16" + "phongintensity" "13" + "pattern_scale" "0.300000" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "0.500000" + "pattern_offset_y_start" "0.055000" + "pattern_offset_y_end" "0.055000" + "pattern_rotate_start" "-7.200000" + "pattern_rotate_end" "-7.200000" + "ignore_weapon_size_scale" "1" + "wear_remap_max" "0.180000" + } + "164" + { + "name" "hy_hunter_modern" + "description_string" "#PaintKit_hy_hunter_modern" + "description_tag" "#PaintKit_hy_hunter_modern_Tag" + "pattern" "hunter_modern" + "style" "2" + "color0" "140 140 124" + "color1" "230 180 96" + "color2" "100 100 100" + "color3" "5 5 5" + "phongintensity" "13" + "pattern_scale" "3" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "-0.120000" + "pattern_offset_y_end" "0.140000" + "pattern_rotate_start" "-3.600000" + "pattern_rotate_end" "0" + } + "165" + { + "name" "hy_hunter_blaze_pink" + "description_string" "#PaintKit_hy_hunter_modern" + "description_tag" "#PaintKit_hy_hunter_blaze_pink_Tag" + "pattern" "hunter_blaze_pink" + "style" "2" + "color0" "167 12 136" + "color1" "180 78 158" + "color2" "31 31 31" + "color3" "152 132 115" + "phongintensity" "13" + "pattern_scale" "3" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "166" + { + "name" "hy_hunter_blaze_orange" + "description_string" "#PaintKit_hy_hunter_modern" + "description_tag" "#PaintKit_hy_hunter_blaze_orange_Tag" + "pattern" "hunter_modern" + "style" "2" + "color0" "150 68 30" + "color1" "60 60 60" + "color2" "75 60 40" + "color3" "5 5 5" + "phongintensity" "13" + "pattern_scale" "2.500000" + "pattern_offset_x_start" "0.060000" + "pattern_offset_x_end" "0.340000" + "pattern_offset_y_start" "-0.160000" + "pattern_offset_y_end" "0.080000" + "pattern_rotate_start" "0" + "pattern_rotate_end" "3.600000" + } + "167" + { + "name" "sp_nukestripe_orange" + "description_string" "#PaintKit_sp_nukestripe" + "description_tag" "#PaintKit_sp_nukestripe_orange_Tag" + "pattern" "nukestripe" + "style" "3" + "color0" "37 41 41" + "color1" "41 52 65" + "color2" "244 80 32" + "color3" "183 58 28" + "phongintensity" "13" + "pattern_scale" "1.200000" + "pattern_offset_x_start" "0.380000" + "pattern_offset_x_end" "0.460000" + "pattern_offset_y_start" "-0.760000" + "pattern_offset_y_end" "-0.760000" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + } + "168" + { + "name" "sp_nukestripe_green" + "description_string" "#PaintKit_sp_nukestripe" + "description_tag" "#PaintKit_sp_nukestripe_green_Tag" + "pattern" "nukestripe" + "style" "3" + "color0" "71 104 55" + "color1" "36 47 38" + "color2" "51 210 23" + "color3" "22 22 22" + "phongintensity" "13" + "pattern_scale" "1.600000" + "pattern_offset_x_start" "0.120000" + "pattern_offset_x_end" "0.120000" + "pattern_offset_y_start" "-0.060000" + "pattern_offset_y_end" "-0.060000" + "pattern_rotate_start" "3.500000" + "pattern_rotate_end" "3.700000" + } + "169" + { + "name" "sp_nukestripe_maroon" + "description_string" "#PaintKit_sp_nukestripe" + "description_tag" "#PaintKit_sp_nukestripe_maroon_Tag" + "pattern" "nukestripe" + "style" "3" + "color0" "98 40 40 " + "color1" "65 70 80 " + "color2" "177 52 52" + "color3" "44 46 48 " + "phongintensity" "13" + "pattern_scale" "1.600000" + "pattern_offset_x_start" "0.120000" + "pattern_offset_x_end" "0.120000" + "pattern_offset_y_start" "0.300000" + "pattern_offset_y_end" "0.300000" + "pattern_rotate_start" "-21.600000" + "pattern_rotate_end" "-21.600000" + } + "170" + { + "name" "sp_zebracam" + "description_string" "#PaintKit_sp_zebracam" + "description_tag" "#PaintKit_sp_zebracam_Tag" + "pattern" "tiger" + "style" "3" + "color0" "56 71 54" + "color1" "158 149 114" + "color2" "79 41 32" + "color3" "45 46 33" + "phongintensity" "5" + "phongexponent" "32" + "pattern_scale" "0.900000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-10" + "pattern_rotate_end" "7" + } + "171" + { + "name" "sp_nukestripe_brown" + "description_string" "#PaintKit_sp_nukestripe" + "description_tag" "#PaintKit_sp_nukestripe_brown_Tag" + "pattern" "nukestripe" + "style" "3" + "color0" "63 78 86" + "color1" "57 51 45" + "color2" "147 102 40" + "color3" "81 49 28" + "phongintensity" "13" + "pattern_scale" "1" + "pattern_offset_x_start" "-0.440000" + "pattern_offset_x_end" "-0.440000" + "pattern_offset_y_start" "0.620000" + "pattern_offset_y_end" "0.620000" + "pattern_rotate_start" "-43.000000" + "pattern_rotate_end" "-43.400002" + } + "172" + { + "name" "hy_ak47lam_bw" + "description_string" "#PaintKit_hy_ak47lam" + "description_tag" "#PaintKit_hy_ak47lam_bw_Tag" + "pattern" "laminate_ak47" + "wear_default" "0.050000" + "style" "2" + "color0" "17 16 15" + "color1" "43 40 45" + "color2" "191 184 174" + "color3" "1 1 1" + "phongexponent" "60" + "phongintensity" "51" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + } + "174" + { + "name" "hy_blam_simple" + "description_string" "#PaintKit_hy_blam" + "description_tag" "#PaintKit_hy_blam_simple_Tag" + "pattern" "blam" + "wear_default" "0.080000" + "style" "2" + "color0" "171 64 33" + "color1" "236 84 19" + "color2" "28 26 23" + "color3" "54 54 54" + "phongintensity" "13" + "pattern_scale" "2.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-30" + "pattern_rotate_end" "30" + "wear_remap_max" "0.280000" + } + "175" + { + "name" "sp_dapple" + "description_string" "#PaintKit_sp_dapple" + "description_tag" "#PaintKit_sp_dapple_Tag" + "pattern" "dapple" + "wear_default" "0.200000" + "style" "3" + "color0" "104 98 87" + "color1" "104 98 87" + "color2" "17 15 19" + "color3" "17 15 19" + "phongintensity" "23" + "phongexponent" "32" + "pattern_scale" "0.900000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "176" + { + "name" "sp_zebracam_bw" + "description_string" "#PaintKit_sp_zebracam" + "description_tag" "#PaintKit_sp_zebracam_bw_Tag" + "pattern" "tiger" + "style" "3" + "color0" "68 65 57" + "color1" "142 142 130" + "color2" "60 61 66" + "color3" "18 18 18" + "phongintensity" "5" + "phongexponent" "32" + "pattern_scale" "0.900000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-10" + "pattern_rotate_end" "7" + } + "177" + { + "name" "hy_icosahedron" + "description_string" "#PaintKit_CSGO_Icosahedron" + "description_tag" "#PaintKit_CSGO_Icosahedron_Tag" + "pattern" "icosahedron" + "pattern_scale" "4" + "wear_default" "0.040000" + "style" "2" + "color0" "69 64 56" + "color1" "177 92 16" + "color2" "29 27 24" + "color3" "75 72 69" + "phongintensity" "26" + "phongexponent" "127" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.180000" + } + "178" + { + "name" "hy_doomkitty" + "description_string" "#PaintKit_cu_catskulls_p90" + "description_tag" "#PaintKit_CSGO_Doomkitty_Tag" + "pattern" "catskulls_bw" + "pattern_scale" "4" + "wear_default" "0.040000" + "style" "2" + "color0" "55 54 51" + "color1" "16 16 16" + "color2" "16 16 16" + "color3" "16 16 16" + "phongintensity" "26" + "phongexponent" "127" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.080000" + "wear_remap_max" "0.220000" + } + "179" + { + "name" "sp_nukestripe_green_tec9" + "description_string" "#PaintKit_sp_nukestripe" + "description_tag" "#PaintKit_sp_nukestripe_green_Tag" + "pattern" "nukestripe" + "style" "3" + "color0" "71 104 55" + "color1" "36 47 38" + "color2" "51 210 23" + "color3" "22 22 22" + "phongintensity" "13" + "pattern_scale" "1.600000" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "-0.300000" + "pattern_offset_y_end" "-0.300000" + "pattern_rotate_start" "3.500000" + "pattern_rotate_end" "3.700000" + } + "180" + { + "name" "cu_fireserpent_ak47_bravo" + "description_string" "#PaintKit_cu_fireserpent_ak47_bravo" + "description_tag" "#PaintKit_cu_fireserpent_ak47_bravo_Tag" + "style" "7" + "pattern" "fireserpent_ak47" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + "phongintensity" "25" + "phongexponent" "128" + "wear_remap_max" "0.760000" + } + "181" + { + "name" "cu_favela_awp" + "description_string" "#PaintKit_cu_favela" + "description_tag" "#PaintKit_cu_favela_Tag" + "style" "7" + "pattern" "favela_awp" + "pattern_scale" "1.297000" + "ignore_weapon_size_scale" "1" + "phongintensity" "153" + "phongexponent" "128" + "pattern_offset_x_start" "-0.220000" + "pattern_offset_x_end" "-0.220000" + "pattern_offset_y_start" "-0.298000" + "pattern_offset_y_end" "-0.298000" + "wear_remap_max" "0.300000" + } + "182" + { + "name" "cu_dragon_p90_bravo" + "description_string" "#PaintKit_cu_dragon_p90_bravo" + "description_tag" "#PaintKit_cu_dragon_p90_bravo_Tag" + "style" "7" + "pattern" "dragon_p90" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + "phongintensity" "25" + "phongexponent" "128" + "wear_remap_max" "0.520000" + } + "183" + { + "name" "hy_siege_bravo" + "description_string" "#PaintKit_hy_siege_bravo" + "description_tag" "#PaintKit_hy_siege_bravo_Tag" + "pattern" "camo_arctic" + "wear_default" "0.200000" + "style" "2" + "color0" "69 116 85" + "color1" "201 173 72" + "color2" "44 46 37" + "color3" "16 16 16" + "phongintensity" "26" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "184" + { + "name" "cu_favela_p2000" + "description_string" "#PaintKit_cu_favela" + "description_tag" "#PaintKit_cu_favela_Tag" + "style" "7" + "pattern" "favela_p2000" + "pattern_scale" "1.400000" + "ignore_weapon_size_scale" "1" + "phongintensity" "153" + "phongexponent" "128" + "pattern_offset_x_start" "-0.080000" + "pattern_offset_x_end" "-0.080000" + "pattern_offset_y_start" "-0.200000" + "pattern_offset_y_end" "-0.200000" + "wear_remap_max" "0.300000" + } + "185" + { + "name" "am_scales_bravo" + "description_string" "#PaintKit_am_scales_bravo" + "description_tag" "#PaintKit_am_scales_bravo_Tag" + "pattern" "scales" + "wear_default" "0.030000" + "style" "5" + "color0" "50 49 39" + "color1" "58 55 31" + "color2" "72 69 49" + "color3" "79 74 43" + "phongalbedoboost" "30" + "pattern_scale" "20" + "pattern_offset_x_start" "0.250000" + "pattern_offset_x_end" "0.250000" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.120000" + "view_model_exponent_override_size" "512" + } + "186" + { + "name" "sp_spray_waves_bravo" + "description_string" "#PaintKit_sp_spray_waves_bravo" + "description_tag" "#PaintKit_sp_spray_waves_Tag" + "pattern" "camo_daubs" + "wear_default" "0.300000" + "style" "3" + "color0" "108 124 128" + "color1" "51 75 113" + "color2" "35 45 92" + "color3" "108 124 128" + "phongintensity" "10" + "pattern_scale" "1.700000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "187" + { + "name" "sp_star_bravo" + "description_string" "#PaintKit_sp_star_bravo" + "description_tag" "#PaintKit_sp_star_bravo_Tag" + "pattern" "star" + "wear_default" "0.200000" + "style" "3" + "color0" "32 32 32" + "color1" "55 70 62" + "color2" "172 158 57" + "color3" "84 84 84" + "phongintensity" "10" + "pattern_scale" "2" + "pattern_offset_x_start" "-0.100000" + "pattern_offset_x_end" "-0.480000" + "pattern_offset_y_start" "-2.550000" + "pattern_offset_y_end" "-2.750000" + "pattern_rotate_start" "30" + "pattern_rotate_end" "30" + "wear_remap_max" "0.420000" + } + "188" + { + "name" "aq_etched_mac10_bravo" + "description_string" "#PaintKit_aq_etched_mac10_bravo" + "description_tag" "#PaintKit_aq_etched_mac10_bravo_Tag" + "pattern" "etched_mac10" + "style" "8" + "color0" "92 78 48" + "color1" "58 58 31" + "color2" "54 44 33" + "color3" "65 49 46" + "phongalbedoboost" "50" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + } + "189" + { + "name" "hy_ocean_bravo" + "description_string" "#PaintKit_hy_ocean_bravo" + "description_tag" "#PaintKit_hy_ocean_Tag" + "pattern" "camo_wood" + "wear_default" "0.180000" + "style" "2" + "color0" "35 45 92" + "color1" "108 124 128" + "color2" "51 75 113" + "color3" "39 46 58" + "phongintensity" "10" + "pattern_scale" "2.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.220000" + } + "190" + { + "name" "cu_season_elites_bravo" + "description_string" "#PaintKit_cu_season_elites_bravo" + "description_tag" "#PaintKit_cu_season_elites_bravo_Tag" + "pattern" "season_elites" + "wear_default" "0.000000" + "phongintensity" "153" + "phongexponent" "128" + "style" "7" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + } + "191" + { + "name" "hy_seaside_bravo" + "description_string" "#PaintKit_hy_seaside_bravo" + "description_tag" "#PaintKit_hy_seaside_bravo_Tag" + "pattern" "seaside" + "wear_default" "0.180000" + "style" "2" + "color0" "35 45 92" + "color1" "108 124 128" + "color2" "51 75 113" + "color3" "39 46 58" + "phongintensity" "13" + "pattern_scale" "2" + "pattern_offset_x_start" "-0.240000" + "pattern_offset_x_end" "0.240000" + "pattern_offset_y_start" "0.030000" + "pattern_offset_y_end" "0.070000" + "wear_remap_max" "0.220000" + } + "192" + { + "name" "hy_crumple_bravo" + "description_string" "#PaintKit_hy_crumple_bravo" + "description_tag" "#PaintKit_hy_crumple_bravo_Tag" + "pattern" "crumple" + "wear_default" "0.180000" + "style" "2" + "color0" "4 4 4" + "color1" "220 220 220" + "color2" "40 40 40" + "color3" "40 40 40" + "phongintensity" "13" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "193" + { + "name" "sp_skull_diagram_bravo" + "description_string" "#PaintKit_sp_skull_diagram_bravo" + "description_tag" "#PaintKit_sp_skull_diagram_bravo_Tag" + "pattern" "skull_diagram" + "wear_default" "0.200000" + "style" "3" + "color0" "94 113 94" + "color1" "61 65 46" + "color2" "23 19 17" + "color3" "219 204 174" + "phongintensity" "10" + "pattern_scale" "1" + "pattern_offset_x_start" "-0.480000" + "pattern_offset_x_end" "-0.200000" + "pattern_offset_y_start" "-0.750000" + "pattern_offset_y_end" "-0.790000" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "wear_remap_max" "0.340000" + "ignore_weapon_size_scale" "1" + } + "194" + { + "name" "sp_spitfire_famas_bravo" + "description_string" "#PaintKit_sp_spitfire_famas_bravo" + "description_tag" "#PaintKit_sp_spitfire_famas_Tag" + "pattern" "spitfire" + "wear_default" "0.080000" + "style" "3" + "color0" "15 15 15" + "color1" "104 30 28" + "color2" "50 50 35" + "color3" "159 159 159" + "phongintensity" "10" + "phongexponent" "6" + "pattern_scale" "0.700000" + "pattern_offset_x_start" "-0.080000" + "pattern_offset_x_end" "-0.080000" + "pattern_offset_y_start" "0.500000" + "pattern_offset_y_end" "0.500000" + "ignore_weapon_size_scale" "1" + } + "195" + { + "name" "hy_bluepolygon_bravo" + "description_string" "#PaintKit_hy_tile_bravo" + "description_tag" "#PaintKit_hy_bluepolygon_bravo_Tag" + "pattern" "ali_tile" + "wear_default" "0.180000" + "style" "2" + "color0" "142 92 36" + "color1" "80 111 133" + "color2" "60 64 68" + "color3" "32 44 51" + "phongintensity" "10" + "pattern_scale" "2" + "pattern_offset_x_start" "0.190000" + "pattern_offset_x_end" "0.230000" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "ignore_weapon_size_scale" "1" + } + "196" + { + "name" "an_emerald_bravo" + "description_string" "#PaintKit_an_emerald_bravo" + "description_tag" "#PaintKit_an_emerald_bravo_Tag" + "wear_default" "0.060000" + "style" "4" + "color0" "5 61 34" + "color1" "5 61 34" + "color2" "1 1 1" + "color3" "1 1 1" + "phongexponent" "32" + "phongalbedoboost" "30" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "197" + { + "name" "an_navy_bravo" + "description_string" "#PaintKit_an_navy_bravo" + "description_tag" "#PaintKit_an_navy_Tag" + "wear_default" "0.060000" + "style" "4" + "color0" "23 33 47" + "color1" "23 33 47" + "color2" "1 1 1" + "color3" "1 1 1" + "phongexponent" "32" + "phongalbedoboost" "15" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "198" + { + "name" "sp_hazard_bravo" + "description_string" "#PaintKit_sp_hazard_bravo" + "description_tag" "#PaintKit_sp_hazard_Tag" + "pattern" "stripe3" + "wear_default" "0.560000" + "style" "3" + "color0" "45 45 45" + "color1" "45 45 45" + "color2" "186 157 38" + "color3" "45 45 45" + "phongintensity" "13" + "pattern_scale" "4.800000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-40" + "pattern_rotate_end" "-50" + } + "199" + { + "name" "sp_tape_dots_bravo" + "description_string" "#PaintKit_sp_tape_dots_bravo" + "description_tag" "#PaintKit_sp_tape_dots_Tag" + "pattern" "mesh_and_tape" + "wear_default" "0.380000" + "style" "3" + "color0" "66 52 43" + "color1" "118 109 92" + "color2" "60 69 37" + "color3" "176 156 94" + "phongintensity" "10" + "pattern_scale" "1.400000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "200" + { + "name" "hy_mayan_dreams_bravo" + "description_string" "#PaintKit_hy_mayan_dreams_bravo" + "description_tag" "#PaintKit_hy_mayan_dreams_bravo_Tag" + "pattern" "mayan_clouds" + "wear_default" "0.180000" + "style" "2" + "color0" "4 4 4" + "color1" "123 106 87" + "color2" "81 73 66" + "color3" "98 80 60" + "phongintensity" "13" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "201" + { + "name" "sp_palm_bravo" + "description_string" "#PaintKit_sp_palm_bravo" + "description_tag" "#PaintKit_sp_palm_Tag" + "pattern" "palm" + "wear_default" "0.350000" + "style" "3" + "color0" "189 179 155" + "color1" "67 74 28" + "color2" "87 67 49" + "color3" "60 48 38" + "phongintensity" "10" + "pattern_scale" "1" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "202" + { + "name" "hy_ddpat_jungle_bravo" + "description_string" "#PaintKit_hy_ddpat_bravo" + "description_tag" "#PaintKit_hy_ddpat_jungle_Tag" + "pattern" "ddpat" + "seed" "42" + "wear_default" "0.020000" + "style" "2" + "color0" "71 67 58" + "color1" "51 79 60" + "color2" "101 103 61" + "color3" "39 35 27" + "phongintensity" "10" + "pattern_scale" "2" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + } + "203" + { + "name" "aq_steel_bravo" + "description_string" "#PaintKit_aq_steel_bravo" + "description_tag" "#PaintKit_aq_steel_bravo_Tag" + "pattern" "steel" + "wear_default" "0.400000" + "seed" "21" + "style" "8" + "color0" "164 109 67" + "color1" "129 134 143" + "color2" "148 115 84" + "color3" "215 120 26" + "phongalbedoboost" "1" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-4" + "pattern_rotate_end" "4" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "204" + { + "name" "hy_ali_tile_bravo" + "description_string" "#PaintKit_hy_tile_bravo" + "description_tag" "#PaintKit_hy_ali_tile_bravo_Tag" + "pattern" "ali_tile" + "wear_default" "0.180000" + "style" "2" + "color0" "199 191 173" + "color1" "41 46 50" + "color2" "73 57 29" + "color3" "156 145 118" + "phongintensity" "10" + "pattern_scale" "1.700000" + "pattern_offset_x_start" "-0.680000" + "pattern_offset_x_end" "-0.600000" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "ignore_weapon_size_scale" "1" + } + "205" + { + "name" "so_jungle_bravo" + "description_string" "#PaintKit_so_jungle_bravo" + "description_tag" "#PaintKit_so_jungle_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "71 67 58" + "color1" "51 79 60" + "color2" "101 103 61" + "color3" "39 35 27" + "phongintensity" "10" + } + "206" + { + "name" "so_tornado_bravo" + "description_string" "#PaintKit_so_tornado_bravo" + "description_tag" "#PaintKit_so_tornado_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "51 61 77" + "color1" "107 97 78" + "color2" "51 61 77" + "color3" "39 46 58" + "phongintensity" "10" + } + "207" + { + "name" "hy_crumple_dark_bravo" + "description_string" "#PaintKit_hy_crumple_bravo" + "description_tag" "#PaintKit_hy_crumple_dark_bravo_Tag" + "pattern" "crumple" + "wear_default" "0.180000" + "style" "2" + "color0" "42 42 42" + "color1" "107 107 107" + "color2" "40 40 40" + "color3" "40 40 40" + "phongintensity" "13" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "208" + { + "name" "so_sand_bravo" + "description_string" "#PaintKit_so_sand_bravo" + "description_tag" "#PaintKit_so_sand_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "75 65 54" + "color1" "100 89 66" + "color2" "139 124 92" + "color3" "75 67 50" + "phongintensity" "10" + } + "209" + { + "name" "so_olive_bravo" + "description_string" "#PaintKit_so_olive_bravo" + "description_tag" "#PaintKit_so_olive_Tag" + "wear_default" "0.200000" + "style" "1" + "color0" "47 52 37" + "color1" "65 78 61" + "color2" "102 91 66" + "color3" "51 53 26" + "phongintensity" "10" + } + "210" + { + "name" "an_gunmetal_bravo" + "description_string" "#PaintKit_an_gunmetal_bravo" + "description_tag" "#PaintKit_an_gunmetal_Tag" + "wear_default" "0.050000" + "style" "4" + "color0" "40 40 40" + "color1" "40 40 40" + "color2" "40 40 40" + "color3" "40 40 40" + "phongexponent" "32" + "phongalbedoboost" "50" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "211" + { + "name" "am_ossify_blue_p2000_bravo" + "description_string" "#PaintKit_am_ossify_blue_p2000_bravo" + "description_tag" "#PaintKit_am_ossify_blue_Tag" + "pattern" "seaside_p2000" + "wear_default" "0.020000" + "style" "5" + "color0" "37 52 90" + "color1" "68 92 157" + "color2" "88 96 114" + "color3" "73 74 78" + "phongalbedoboost" "100" + "pattern_scale" "1.315270" + "pattern_offset_x_start" "-0.042000" + "pattern_offset_x_end" "-0.042000" + "pattern_offset_y_start" "-0.137000" + "pattern_offset_y_end" "-0.137000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.120000" + "ignore_weapon_size_scale" "1" + } + "212" + { + "name" "am_crumple_bravo" + "description_string" "#PaintKit_am_crumple_bravo" + "description_tag" "#PaintKit_am_crumple_Tag" + "pattern" "crumple" + "wear_default" "0.020000" + "style" "5" + "color0" "42 42 42" + "color1" "8 8 8" + "color2" "4 4 4" + "color3" "4 4 4" + "phongalbedoboost" "50" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.120000" + "view_model_exponent_override_size" "1024" + } + "213" + { + "name" "am_ossify_blue" + "description_string" "#PaintKit_am_ossify_blue" + "description_tag" "#PaintKit_am_ossify_blue_Tag" + "pattern" "ossify" + "wear_default" "0.020000" + "style" "5" + "color0" "37 52 90" + "color1" "68 92 157" + "color2" "88 96 114" + "color3" "73 74 78" + "phongalbedoboost" "100" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "214" + { + "name" "am_crumple" + "description_string" "#PaintKit_am_crumple" + "description_tag" "#PaintKit_am_crumple_Tag" + "pattern" "crumple" + "wear_default" "0.020000" + "style" "5" + "color0" "41 41 41" + "color1" "8 8 8" + "color2" "4 4 4" + "color3" "4 4 4" + "phongalbedoboost" "30" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.120000" + } + "215" + { + "name" "cu_xray_m4" + "description_string" "#PaintKit_cu_xray_m4" + "description_tag" "#PaintKit_cu_xray_m4_Tag" + "style" "7" + "pattern" "xray_m4" + "pattern_scale" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + "phongexponent" "100" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + } + "216" + { + "name" "an_titanium30v" + "description_string" "#PaintKit_an_titanium30v" + "description_tag" "#PaintKit_an_titanium30v_Tag" + "style" "4" + "color0" "25 35 44" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.040000" + "phongexponent" "255" + "phongalbedoboost" "100" + } + "217" + { + "name" "hy_redtiger" + "description_string" "#PaintKit_hy_v_tiger" + "description_tag" "#PaintKit_hy_redtiger_Tag" + "style" "2" + "pattern" "v_tiger" + "color0" "18 17 17" + "color1" "25 28 19" + "color2" "38 38 38" + "color3" "55 12 7" + "pattern_scale" "3.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + "phongexponent" "4" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + } + "218" + { + "name" "hy_bluehex" + "description_string" "#PaintKit_hy_hex" + "description_tag" "#PaintKit_hy_bluehex_Tag" + "style" "2" + "pattern" "hive" + "color0" "26 1 13" + "color1" "82 26 1" + "color2" "31 43 53" + "color3" "8 16 23" + "pattern_scale" "1.500000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + "phongexponent" "255" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + } + "219" + { + "name" "hy_redhex" + "description_string" "#PaintKit_hy_hex" + "description_tag" "#PaintKit_hy_redhex_Tag" + "style" "2" + "pattern" "hive" + "color0" "26 1 13" + "color1" "92 91 70" + "color2" "55 23 3" + "color3" "43 4 4" + "pattern_scale" "1.500000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + "phongexponent" "255" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + } + "220" + { + "name" "am_ossify_red" + "description_string" "#PaintKit_am_ossify_red" + "description_tag" "#PaintKit_am_ossify_red_Tag" + "style" "5" + "pattern" "ossify" + "color0" "69 4 4" + "color1" "74 5 5" + "color2" "51 0 0" + "color3" "54 54 54" + "pattern_scale" "4.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + "phongexponent" "16" + "phongalbedoboost" "60" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + } + "221" + { + "name" "am_electric_red" + "description_string" "#PaintKit_am_electric_red" + "description_tag" "#PaintKit_am_electric_red_Tag" + "style" "5" + "pattern" "electric" + "color0" "18 17 17" + "color1" "25 28 19" + "color2" "38 38 38" + "color3" "55 12 7" + "pattern_scale" "3.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.250000" + "phongexponent" "32" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "view_model_exponent_override_size" "1024" + } + "222" + { + "name" "cu_shark" + "description_string" "#PaintKit_cu_shark" + "description_tag" "#PaintKit_cu_shark_Tag" + "style" "7" + "pattern" "bloodInTheWater_ssg08" + "pattern_scale" "1" + "ignore_weapon_size_scale" "1" + "phongintensity" "25" + "phongexponent" "128" + "wear_remap_max" "0.200000" + "only_first_material" "1" + } + "223" + { + "name" "hy_flowers" + "description_string" "#PaintKit_hy_flowers" + "description_tag" "#PaintKit_hy_flowers_Tag" + "style" "2" + "pattern" "flowers" + "color0" "56 61 69" + "color1" "152 162 165" + "color2" "60 77 90" + "color3" "110 44 44" + "pattern_scale" "4.000000" + "phongexponent" "100" + "phongintensity" "80" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "224" + { + "name" "hy_water_crest" + "description_string" "#PaintKit_hy_water_crest" + "description_tag" "#PaintKit_hy_water_crest_Tag" + "style" "2" + "pattern" "crest_water" + "color0" "38 52 66" + "color1" "83 84 94" + "color2" "30 33 65" + "color3" "9 9 9" + "pattern_scale" "6.000000" + "phongexponent" "100" + "phongintensity" "80" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "225" + { + "name" "sp_camo_wood_blue" + "description_string" "#PaintKit_hy_camo_large" + "description_tag" "#PaintKit_sp_camo_wood_blue_Tag" + "style" "3" + "pattern" "camo_wood" + "color0" "51 14 14" + "color1" "71 73 74" + "color2" "15 18 28" + "color3" "8 8 8" + "pattern_scale" "0.600000" + "phongexponent" "64" + "phongintensity" "40" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "226" + { + "name" "hy_ak47lam_blue" + "description_string" "#PaintKit_hy_ak47lam" + "description_tag" "#PaintKit_hy_ak47lam_blue_Tag" + "style" "2" + "pattern" "laminate_ak47" + "color0" "18 10 2" + "color1" "36 56 117" + "color2" "119 103 86" + "color3" "64 139 164" + "pattern_scale" "1.000000" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.400000" + "phongexponent" "128" + "phongintensity" "153" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + } + "227" + { + "name" "hy_hive" + "description_string" "#PaintKit_hy_hex" + "description_tag" "#PaintKit_hy_hive_Tag" + "style" "2" + "pattern" "hive" + "color0" "9 50 119" + "color1" "156 57 15" + "color2" "46 46 46" + "color3" "57 39 71" + "pattern_scale" "2" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + "phongexponent" "255" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + } + "228" + { + "name" "hy_modspots" + "description_string" "#PaintKit_hy_camo_large" + "description_tag" "#PaintKit_hy_modspots_Tag" + "style" "2" + "pattern" "desert_spots" + "color0" "12 12 12" + "color1" "29 37 48" + "color2" "8 74 99" + "color3" "107 32 7" + "pattern_scale" "3.000000" + "phongexponent" "128" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-180.000000" + "pattern_rotate_end" "55.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "229" + { + "name" "sp_zebracam_blue" + "description_string" "#PaintKit_sp_zebracam" + "description_tag" "#PaintKit_sp_zebracam_blue_Tag" + "style" "3" + "pattern" "tiger" + "color0" "0 29 33" + "color1" "4 42 54" + "color2" "1 8 18" + "color3" "34 48 93" + "pattern_scale" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.280000" + "phongexponent" "16" + "phongintensity" "13" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-30.000000" + "pattern_rotate_end" "30.000000" + } + "230" + { + "name" "am_ddpatdense_silver" + "description_string" "#PaintKit_am_ddpatdense" + "description_tag" "#PaintKit_am_ddpatdense_silver_Tag" + "style" "5" + "pattern" "ddpat_dense" + "color0" "30 33 35" + "color1" "36 39 41" + "color2" "43 46 48" + "color3" "43 46 49" + "pattern_scale" "2.500000" + "phongexponent" "128" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "231" + { + "name" "am_ddpatdense_peacock" + "description_string" "#PaintKit_am_ddpatdense" + "description_tag" "#PaintKit_am_ddpatdense_peacock_Tag" + "style" "5" + "pattern" "ddpat_dense" + "color0" "11 28 46" + "color1" "9 26 41" + "color2" "14 38 61" + "color3" "11 30 49" + "pattern_scale" "2.500000" + "phongexponent" "128" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + "dialog_config" "17,0,0,0" + } + "232" + { + "name" "hy_webs_darker" + "description_string" "#PaintKit_hy_webs" + "description_tag" "#PaintKit_hy_webs_Tag" + "pattern" "webs" + "wear_default" "0.100000" + "seed" "1" + "style" "2" + "color0" "64 12 12" + "color1" "16 16 16" + "color2" "16 16 16" + "color3" "16 16 16" + "phongexponent" "127" + "phongintensity" "26" + "pattern_scale" "4.500000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "233" + { + "name" "sp_palm_shadow" + "description_string" "#PaintKit_sp_palm" + "description_tag" "#PaintKit_sp_palm_shadow_Tag" + "pattern" "palm" + "wear_default" "0.350000" + "style" "3" + "color0" "43 58 77" + "color1" "111 120 123" + "color2" "100 111 134" + "color3" "64 87 79" + "phongintensity" "10" + "pattern_scale" "1" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "234" + { + "name" "sp_twigs" + "description_string" "#PaintKit_twigs" + "description_tag" "#PaintKit_sp_twigs_Tag" + "style" "3" + "pattern" "twigs" + "color0" "14 14 14" + "color1" "83 56 39" + "color2" "169 169 163" + "color3" "108 108 108" + "pattern_scale" "1.200000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "30.000000" + "pattern_rotate_end" "60.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "235" + { + "name" "hy_varicamo" + "description_string" "#PaintKit_varicamo" + "description_tag" "#PaintKit_hy_varicamo_Tag" + "style" "2" + "pattern" "varicamo" + "color0" "214 204 179" + "color1" "93 118 82" + "color2" "84 64 55" + "color3" "52 44 36" + "pattern_scale" "2.500000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-15.000000" + "pattern_rotate_end" "15.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "236" + { + "name" "hy_varicamo_night" + "description_string" "#PaintKit_varicamo" + "description_tag" "#PaintKit_hy_varicamo_night_Tag" + "style" "2" + "pattern" "varicamo" + "color0" "120 125 115" + "color1" "0 0 0" + "color2" "55 66 84" + "color3" "36 36 52" + "pattern_scale" "2.500000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-15.000000" + "pattern_rotate_end" "15.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "237" + { + "name" "hy_varicamo_urban" + "description_string" "#PaintKit_varicamo" + "description_tag" "#PaintKit_hy_varicamo_urban_Tag" + "style" "2" + "pattern" "varicamo" + "color0" "10 10 10" + "color1" "133 127 127" + "color2" "82 82 89" + "color3" "20 22 21" + "pattern_scale" "2.500000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-15.000000" + "pattern_rotate_end" "15.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "238" + { + "name" "hy_varicamo_blue" + "description_string" "#PaintKit_varicamo" + "description_tag" "#PaintKit_hy_varicamo_blue_Tag" + "style" "2" + "pattern" "varicamo" + "color0" "0 98 130" + "color1" "0 55 58" + "color2" "82 82 89" + "color3" "20 21 22" + "pattern_scale" "2.500000" + "phongexponent" "100" + "phongintensity" "60" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-15.000000" + "pattern_rotate_end" "15.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "240" + { + "name" "hy_varicamo_desert" + "description_string" "#PaintKit_varicamo" + "description_tag" "#PaintKit_hy_varicamo_desert_Tag" + "style" "2" + "pattern" "varicamo" + "color0" "175 163 133" + "color1" "129 65 40" + "color2" "117 84 72" + "color3" "23 20 16" + "pattern_scale" "2.500000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-15.000000" + "pattern_rotate_end" "15.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "241" + { + "name" "sp_mesh_slashes" + "description_string" "#PaintKit_sp_mesh_slashes" + "description_tag" "#PaintKit_sp_mesh_slashes_Tag" + "style" "3" + "pattern" "mesh_fabric" + "color0" "32 26 19" + "color1" "43 34 16" + "color2" "116 100 65" + "color3" "17 8 0" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "242" + { + "name" "sp_mesh_army" + "description_string" "#PaintKit_sp_mesh_slashes" + "description_tag" "#PaintKit_sp_mesh_army_Tag" + "style" "3" + "pattern" "mesh_fabric" + "color0" "11 11 11" + "color1" "36 42 29" + "color2" "67 33 15" + "color3" "113 94 56" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "243" + { + "name" "sp_mesh_python" + "description_string" "#PaintKit_sp_mesh_slashes" + "description_tag" "#PaintKit_sp_mesh_python_Tag" + "style" "3" + "pattern" "mesh_fabric" + "color0" "11 11 11" + "color1" "58 62 19" + "color2" "15 30 15" + "color3" "99 99 37" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "244" + { + "name" "sp_mesh_hot_and_cold" + "description_string" "#PaintKit_sp_mesh_slashes" + "description_tag" "#PaintKit_sp_mesh_hot_and_cold_Tag" + "style" "3" + "pattern" "mesh_fabric" + "color0" "6 11 37" + "color1" "9 10 10" + "color2" "36 45 90" + "color3" "86 21 36" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "245" + { + "name" "sp_spray_army" + "description_string" "#PaintKit_sp_spray" + "description_tag" "#PaintKit_sp_spray_army_Tag" + "pattern" "camo_daubs" + "style" "3" + "color0" "19 19 19" + "color1" "36 42 29" + "color2" "67 33 15" + "color3" "113 94 56" + "phongintensity" "10" + "pattern_scale" "1.550000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + "246" + { + "name" "aa_fade_metallic" + "description_string" "#PaintKit_aa_fade" + "description_tag" "#PaintKit_aa_fade_metallic_Tag" + "style" "6" + "pattern" "fade" + "color0" "19 19 19" + "color1" "36 42 29" + "color2" "67 33 15" + "color3" "113 94 56" + "phongalbedoboost" "80" + "phongexponent" "34" + "pattern_scale" "1" + "pattern_offset_x_start" "-0.700000" + "pattern_offset_x_end" "-0.700000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "-55" + "pattern_rotate_end" "-65" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "247" + { + "name" "aq_damascus_sg553" + "description_string" "#PaintKit_aq_damascus" + "description_tag" "#PaintKit_aq_damascus_Tag" + "style" "8" + "pattern" "damascus_sg553" + "color0" "60 63 66" + "color1" "58 60 64" + "color2" "44 45 46" + "color3" "52 40 32" + "pattern_scale" "1.000000" + "phongexponent" "8" + "phongalbedoboost" "60" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "248" + { + "name" "am_crystallized" + "description_string" "#PaintKit_am_crystallized" + "description_tag" "#PaintKit_am_crystallized_red_Tag" + "style" "5" + "pattern" "crystallized" + "color0" "7 0 0" + "color1" "82 35 7" + "color2" "19 4 0" + "color3" "19 4 0" + "pattern_scale" "5.000000" + "phongexponent" "4" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "249" + { + "name" "am_crystallized_blue" + "description_string" "#PaintKit_am_crystallized" + "description_tag" "#PaintKit_am_crystallized_blue_Tag" + "style" "5" + "pattern" "crystallized" + "color0" "1 2 17" + "color1" "3 72 107" + "color2" "0 2 19" + "color3" "0 5 19" + "pattern_scale" "5.000000" + "phongexponent" "4" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + "dialog_config" "7,0,0,1" + } + "250" + { + "name" "hy_varicamo_red" + "description_string" "#PaintKit_varicamo" + "description_tag" "#PaintKit_hy_varicamo_red_Tag" + "style" "2" + "pattern" "varicamo" + "color0" "106 36 14" + "color1" "47 15 12" + "color2" "15 5 0" + "color3" "10 0 1" + "pattern_scale" "2.500000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "75.000000" + "pattern_rotate_end" "105.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "251" + { + "name" "hy_snakeskin" + "description_string" "#PaintKit_snakeskin" + "description_tag" "#PaintKit_hy_snakeskin_Tag" + "style" "2" + "pattern" "snakeskin" + "color0" "65 73 56" + "color1" "14 51 2" + "color2" "5 11 0" + "color3" "64 83 28" + "pattern_scale" "3.500000" + "phongexponent" "255" + "phongintensity" "64" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.080000" + "wear_remap_max" "0.500000" + } + "252" + { + "name" "am_crystallized_silver" + "description_string" "#PaintKit_am_crystallized" + "description_tag" "#PaintKit_am_crystallized_silver_Tag" + "style" "5" + "pattern" "crystallized" + "color0" "17 17 17" + "color1" "70 70 70" + "color2" "20 20 20" + "color3" "22 22 22" + "pattern_scale" "5.000000" + "phongexponent" "4" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "253" + { + "name" "aa_fade_grassland" + "description_string" "#PaintKit_aa_fade" + "description_tag" "#PaintKit_aa_fade_grassland_Tag" + "style" "6" + "pattern" "fade" + "color0" "19 19 19" + "color1" "36 42 29" + "color2" "52 67 15" + "color3" "113 94 56" + "pattern_scale" "2.000000" + "phongexponent" "34" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "-2.400000" + "pattern_offset_x_end" "-2.100000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "-55.000000" + "pattern_rotate_end" "-65.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.030000" + } + "254" + { + "name" "so_orange_accents" + "description_string" "#PaintKit_so_tangerine" + "description_tag" "#PaintKit_so_orange_accents_Tag" + "style" "1" + "color0" "17 17 17" + "color1" "35 35 35" + "color2" "153 64 33" + "color3" "153 64 33" + "phongexponent" "192" + "phongintensity" "60" + "only_first_material" "0" + } + "255" + { + "name" "cu_m4_asimov" + "description_string" "#PaintKit_cu_m4_asimov" + "description_tag" "#PaintKit_cu_m4_asimov_tag" + "style" "7" + "pattern" "workshop/zone9_m4" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.180000" + "wear_remap_max" "1.000000" + } + "256" + { + "name" "cu_sawedoff_octopump" + "description_string" "#PaintKit_cu_sawedoff_octopump" + "description_tag" "#PaintKit_cu_sawedoff_octopump_tag" + "style" "7" + "pattern" "workshop/octopump" + "pattern_scale" "1.000000" + "phongexponent" "70" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "257" + { + "name" "cu_m4a1-s_elegant" + "description_string" "#PaintKit_cu_m4a1-s_elegant" + "description_tag" "#PaintKit_cu_m4a1-s_elegant_Tag" + "style" "7" + "pattern" "workshop/m4a1-s_ct_elegant_update" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "258" + { + "name" "cu_p250_refined" + "description_string" "#PaintKit_cu_p250_refined" + "description_tag" "#PaintKit_cu_p250_refined_Tag" + "style" "7" + "pattern" "workshop/p250_orange_gun_refined" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "259" + { + "name" "cu_awp_cobra" + "description_string" "#PaintKit_cu_awp_cobra" + "description_tag" "#PaintKit_cu_awp_cobra_tag" + "style" "7" + "pattern" "workshop/elegantredawpend" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.400000" + } + "260" + { + "name" "cu_famas_pulse" + "description_string" "#PaintKit_cu_famas_pulse" + "description_tag" "#PaintKit_cu_famas_pulse_tag" + "style" "7" + "pattern" "workshop/triangles" + "pattern_scale" "2.000000" + "phongexponent" "32" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.050000" + "pattern_offset_y_end" "0.050000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "261" + { + "name" "hy_marina_sunrise" + "description_string" "#PaintKit_hy_marina_sunrise" + "description_tag" "#PaintKit_hy_marina_sunrise_tag" + "style" "2" + "pattern" "workshop/peacepolar" + "color0" "16 32 67" + "color1" "178 146 15" + "color2" "25 44 78" + "color3" "207 141 26" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.500000" + } + "262" + { + "name" "am_thorny_rose_mp9" + "description_string" "#PaintKit_am_thorny_rose_mp9" + "description_tag" "#PaintKit_am_thorny_rose_mp9_tag" + "style" "5" + "pattern" "workshop/thorns_and_roses_sketch9b" + "color0" "0 0 0" + "color1" "25 25 25" + "color2" "214 125 0" + "color3" "169 46 63" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.750000" + "pattern_offset_x_end" "0.900000" + "pattern_offset_y_start" "0.180000" + "pattern_offset_y_end" "0.220000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + } + "263" + { + "name" "cu_skull_nova" + "description_string" "#PaintKit_cu_skull_nova" + "description_tag" "#PaintKit_cu_skull_nova_tag" + "style" "7" + "pattern" "workshop/nova_skull_16" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "55" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "264" + { + "name" "cu_sandstorm" + "description_string" "#PaintKit_cu_sandstorm" + "description_tag" "#PaintKit_cu_sandstorm_tag" + "style" "7" + "pattern" "workshop/underwater" + "pattern_scale" "0.500000" + "phongexponent" "150" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.500000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.500000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.600000" + } + "265" + { + "name" "hy_kami" + "description_string" "#PaintKit_hy_kami" + "description_tag" "#PaintKit_hy_kami_tag" + "style" "2" + "pattern" "workshop/kami" + "color0" "218 208 183" + "color1" "31 33 28" + "color2" "34 38 37" + "color3" "37 38 42" + "pattern_scale" "1.000000" + "phongexponent" "165" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "10.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + "dialog_config" "6,0,0,1" + } + "266" + { + "name" "aq_obsidian" + "description_string" "#PaintKit_aq_obsidian" + "description_tag" "#PaintKit_aq_obsidian_tag" + "style" "8" + "pattern" "workshop/01-tex2b" + "color0" "90 62 50" + "color1" "77 46 40" + "color2" "68 72 70" + "color3" "121 142 135" + "pattern_scale" "4.000000" + "phongexponent" "10" + "phongalbedoboost" "60" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "267" + { + "name" "am_turqoise_halftone" + "description_string" "#PaintKit_am_turqoise_halftone" + "description_tag" "#PaintKit_am_turqoise_halftone_tag" + "style" "5" + "pattern" "workshop/patterns" + "color0" "78 139 144" + "color1" "55 58 62" + "color2" "47 51 61" + "color3" "54 58 64" + "pattern_scale" "4.000000" + "phongexponent" "64" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.450000" + } + "268" + { + "name" "am_diamond_plate" + "description_string" "#PaintKit_am_diamond_plate" + "description_tag" "#PaintKit_am_diamond_plate_Tag" + "style" "5" + "pattern" "diamond_plate" + "color0" "25 25 25" + "color1" "28 28 28" + "color2" "65 65 65" + "color3" "46 46 46" + "pattern_scale" "64.000000" + "phongexponent" "160" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "269" + { + "name" "am_fuschia" + "description_string" "#PaintKit_am_fuschia" + "description_tag" "#PaintKit_am_fuschia_Tag" + "style" "5" + "pattern" "solid" + "color0" "74 9 47" + "color1" "39 39 39" + "color2" "32 32 32" + "color3" "55 55 55" + "pattern_scale" "0.000000" + "phongexponent" "160" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "256" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "270" + { + "name" "aq_etched_cz75" + "description_string" "#PaintKit_aq_etched_cz75" + "description_tag" "#PaintKit_aq_etched_cz75_Tag" + "style" "8" + "pattern" "etched_cz75" + "normal" "etched_cz75_normal" + "use_normal" "1" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "184 188 192" + "color3" "58 58 71" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongalbedoboost" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "271" + { + "name" "am_p250_beaded_paint" + "description_string" "#PaintKit_am_p250_beaded_paint" + "description_tag" "#PaintKit_am_p250_beaded_paint_Tag" + "style" "5" + "pattern" "p250_beaded_paint" + "color0" "4 4 4" + "color1" "4 54 74" + "color2" "10 10 10" + "color3" "25 25 25" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "272" + { + "name" "am_fluted_tec9" + "description_string" "#PaintKit_am_fluted_tec9" + "description_tag" "#PaintKit_am_fluted_tec9_Tag" + "style" "5" + "pattern" "fluted_tec9" + "color0" "2 19 36" + "color1" "29 29 29" + "color2" "19 19 19" + "color3" "57 57 57" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "273" + { + "name" "aq_engraved_deagle" + "description_string" "#PaintKit_aq_engraved_deagle" + "description_tag" "#PaintKit_aq_engraved_deagle_Tag" + "style" "8" + "pattern" "etched_deagle" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "185 190 197" + "color3" "125 120 120" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongalbedoboost" "8" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "274" + { + "name" "am_copper_flecks" + "description_string" "#PaintKit_am_copper_flecks" + "description_tag" "#PaintKit_am_copper_flecks_Tag" + "style" "5" + "pattern" "noise" + "color0" "16 7 2" + "color1" "25 2 2" + "color2" "49 30 9" + "color3" "32 25 7" + "pattern_scale" "8.000000" + "phongexponent" "32" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "275" + { + "name" "hy_poly_camo" + "description_string" "#PaintKit_hy_poly_camo" + "description_tag" "#PaintKit_hy_poly_camo_Tag" + "style" "2" + "pattern" "poly_camo" + "color0" "83 58 58" + "color1" "35 26 33" + "color2" "67 0 0" + "color3" "52 0 0" + "pattern_scale" "2.000000" + "phongexponent" "32" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "276" + { + "name" "so_panther" + "description_string" "#PaintKit_so_panther" + "description_tag" "#PaintKit_so_panther_Tag" + "style" "1" + "color0" "64 12 12 255" + "color1" "16 16 16 255" + "color2" "53 53 53" + "color3" "16 16 16" + "phongexponent" "127" + "phongintensity" "10" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.580000" + } + "277" + { + "name" "aq_usp_stainless" + "description_string" "#PaintKit_aq_usp_stainless" + "description_tag" "#PaintKit_aq_usp_stainless_Tag" + "style" "8" + "pattern" "silver_usp" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "219 219 219" + "color3" "75 72 68" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongalbedoboost" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "278" + { + "name" "hy_craquelure" + "description_string" "#PaintKit_hy_craquelure" + "description_tag" "#PaintKit_hy_craquelure_Tag" + "style" "2" + "pattern" "craquelure" + "color0" "17 32 81" + "color1" "16 16 16 255" + "color2" "62 57 67" + "color3" "16 16 16" + "pattern_scale" "1.000000" + "phongexponent" "127" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.580000" + } + "279" + { + "name" "cu_awp_asimov" + "description_string" "#PaintKit_cu_m4_asimov" + "description_tag" "#PaintKit_cu_m4_asimov_tag" + "style" "7" + "pattern" "workshop/zone9_awp" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.180000" + "wear_remap_max" "1.000000" + } + "280" + { + "name" "cu_aug_chameleonaire" + "description_string" "#PaintKit_cu_aug_chameleonaire" + "description_tag" "#PaintKit_cu_aug_chameleonaire_tag" + "style" "7" + "pattern" "workshop/chameleonaire" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "33" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "281" + { + "name" "cu_ump_corporal" + "description_string" "#PaintKit_cu_ump_corporal" + "description_tag" "#PaintKit_cu_ump_corporal_tag" + "style" "7" + "pattern" "workshop/corporal_ump-45" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.750000" + } + "282" + { + "name" "cu_ak47_cobra" + "description_string" "#PaintKit_cu_awp_cobra" + "description_tag" "#PaintKit_cu_awp_cobra_tag" + "style" "7" + "pattern" "workshop/elegantredv1.1" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.700000" + } + "283" + { + "name" "cu_p90_trigon" + "description_string" "#PaintKit_cu_p90_trigon" + "description_tag" "#PaintKit_cu_p90_trigon_tag" + "style" "7" + "pattern" "workshop/faceit_p90" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "200" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.080000" + "wear_remap_max" "0.750000" + } + "284" + { + "name" "cu_mac10_redhot" + "description_string" "#PaintKit_cu_mac10_redhot" + "description_tag" "#PaintKit_cu_mac10_redhot_tag" + "style" "7" + "pattern" "workshop/mac-10_redhot" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "285" + { + "name" "sp_negev_turq_terrain" + "description_string" "#PaintKit_sp_negev_turq_terrain" + "description_tag" "#PaintKit_sp_negev_turq_terrain_tag" + "style" "3" + "pattern" "workshop/terrain_pattern" + "color0" "41 41 41" + "color1" "25 25 25" + "color2" "15 96 90" + "color3" "19 19 19" + "pattern_scale" "1.500000" + "phongexponent" "100" + "phongintensity" "50" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "286" + { + "name" "cu_nova_antique" + "description_string" "#PaintKit_cu_nova_antique" + "description_tag" "#PaintKit_cu_nova_antique_tag" + "style" "7" + "pattern" "workshop/nova_antique" + "pattern_scale" "1.000000" + "phongexponent" "192" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + } + "287" + { + "name" "cu_sg553_pulse" + "description_string" "#PaintKit_cu_famas_pulse" + "description_tag" "#PaintKit_cu_famas_pulse_tag" + "style" "7" + "pattern" "workshop/triangles" + "pattern_scale" "2.000000" + "phongexponent" "32" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.200000" + "pattern_offset_x_end" "0.300000" + "pattern_offset_y_start" "0.300000" + "pattern_offset_y_end" "0.400000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.600000" + } + "288" + { + "name" "an_famas_sgt" + "description_string" "#PaintKit_an_famas_sgt" + "description_tag" "#PaintKit_an_famas_sgt_tag" + "style" "8" + "pattern" "workshop/staffsgt_famas" + "color0" "138 124 120" + "color1" "120 120 120" + "color2" "255 255 255" + "color3" "119 104 104" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongalbedoboost" "45" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "1.000000" + } + "289" + { + "name" "cu_tec9_sandstorm" + "description_string" "#PaintKit_cu_sandstorm" + "description_tag" "#PaintKit_cu_sandstorm_tag" + "style" "7" + "pattern" "workshop/underwater" + "pattern_scale" "0.500000" + "phongexponent" "150" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.500000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.500000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.700000" + } + "290" + { + "name" "cu_usp_elegant" + "description_string" "#PaintKit_cu_usp-s_elegant" + "description_tag" "#PaintKit_cu_m4a1-s_elegant_Tag" + "style" "7" + "pattern" "workshop/usp-s_ct_elegant_update" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.380000" + } + "291" + { + "name" "cu_mag7_heaven" + "description_string" "#PaintKit_cu_mag7_heaven" + "description_tag" "#PaintKit_cu_mag7_heaven_tag" + "style" "7" + "pattern" "workshop/m2" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "75" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "293" + { + "name" "hy_nerodia" + "description_string" "#PaintKit_snakeskin" + "description_tag" "#PaintKit_hy_nerodia_Tag" + "style" "2" + "pattern" "snakeskin" + "color0" "118 115 111" + "color1" "86 78 68" + "color2" "25 22 21" + "color3" "158 141 111" + "pattern_scale" "7.000000" + "phongexponent" "255" + "phongintensity" "32" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.080000" + "wear_remap_max" "0.500000" + } + "294" + { + "name" "so_green" + "description_string" "#PaintKit_so_green" + "description_tag" "#PaintKit_so_green_Tag" + "style" "1" + "color0" "32 32 32" + "color1" "31 62 19" + "color2" "32 32 32" + "color3" "32 32 32 255" + "phongexponent" "255" + "phongintensity" "80" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + "dialog_config" "7,0,0,1" + } + "295" + { + "name" "cu_money" + "description_string" "#PaintKit_cu_money" + "description_tag" "#PaintKit_cu_money_Tag" + "style" "7" + "pattern" "money" + "pattern_scale" "3.000000" + "phongexponent" "255" + "phongintensity" "255" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "296" + { + "name" "am_crystallized_dark" + "description_string" "#PaintKit_am_crystallized" + "description_tag" "#PaintKit_am_crystallized_dark_Tag" + "style" "5" + "pattern" "crystallized" + "color0" "20 20 20" + "color1" "48 44 33" + "color2" "61 57 36" + "color3" "38 44 38" + "pattern_scale" "6.000000" + "phongexponent" "32" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.180000" + } + "297" + { + "name" "so_orca" + "description_string" "#PaintKit_so_orca" + "description_tag" "#PaintKit_so_orca_Tag" + "style" "1" + "color0" "20 20 19" + "color1" "203 202 195" + "color2" "20 20 19" + "color3" "20 20 19" + "phongexponent" "16" + "phongintensity" "10" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "298" + { + "name" "am_army_shine" + "description_string" "#PaintKit_am_army_shine" + "description_tag" "#PaintKit_am_army_shine_Tag" + "style" "5" + "pattern" "caustics" + "color0" "14 14 14" + "color1" "40 39 32" + "color2" "46 44 34" + "color3" "38 44 38" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + } + "299" + { + "name" "am_oval_hex" + "description_string" "#PaintKit_am_oval_hex" + "description_tag" "#PaintKit_am_oval_hex_Tag" + "style" "5" + "pattern" "sparkle_oval" + "color0" "14 14 14" + "color1" "95 95 95" + "color2" "21 21 21" + "color3" "0 0 0" + "pattern_scale" "10.000000" + "phongexponent" "0" + "phongalbedoboost" "50" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.280000" + "pattern_offset_y_end" "0.280000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "300" + { + "name" "cu_pinstripe_ak47" + "description_string" "#PaintKit_cu_pinstripe_ak47" + "description_tag" "#PaintKit_cu_pinstripe_ak47_Tag" + "style" "7" + "pattern" "pinstripe_ak47" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "301" + { + "name" "am_m4a1-s_alloy_orange" + "description_string" "#PaintKit_am_alloy_orange" + "description_tag" "#PaintKit_am_alloy_orange_Tag" + "style" "5" + "pattern" "workshop/face_it_m4a1s" + "color0" "25 25 25" + "color1" "255 125 0" + "color2" "174 66 0" + "color3" "94 32 0" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongalbedoboost" "100" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "360.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + } + "302" + { + "name" "cu_ak47_rubber" + "description_string" "#PaintKit_cu_rubber_ak47" + "description_tag" "#PaintKit_cu_rubber_ak47_Tag" + "style" "7" + "pattern" "workshop/rubber_ak47" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + } + "303" + { + "name" "cu_tec9_asiimov" + "description_string" "#PaintKit_cu_tec_isaac" + "description_tag" "#PaintKit_cu_tec_isaac_tag" + "style" "7" + "pattern" "workshop/asiimov_tec09" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "304" + { + "name" "cu_ssg08_immortal" + "description_string" "#PaintKit_cu_immortal_ssg08" + "description_tag" "#PaintKit_cu_immortal_ssg08_Tag" + "style" "7" + "pattern" "workshop/immortal_ssg08" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.170000" + "pattern_offset_x_end" "0.170000" + "pattern_offset_y_start" "1.120000" + "pattern_offset_y_end" "1.120000" + "pattern_rotate_start" "321.000000" + "pattern_rotate_end" "321.000000" + "wear_remap_min" "0.150000" + "wear_remap_max" "0.800000" + } + "305" + { + "name" "cu_aug_progressiv" + "description_string" "#PaintKit_cu_progressiv_aug" + "description_tag" "#PaintKit_cu_progressiv_aug_Tag" + "style" "7" + "pattern" "workshop/progressiv_aug" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "45" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "306" + { + "name" "cu_bizon_antique" + "description_string" "#PaintKit_cu_nova_antique" + "description_tag" "#PaintKit_cu_nova_antique_tag" + "style" "7" + "pattern" "workshop/antique_bizon" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "307" + { + "name" "cu_retribution" + "description_string" "#PaintKit_cu_retribution_beretta" + "description_tag" "#PaintKit_cu_retribution_beretta_Tag" + "style" "7" + "pattern" "workshop/retribution_beretta" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "308" + { + "name" "hy_galil_kami" + "description_string" "#PaintKit_hy_kami" + "description_tag" "#PaintKit_hy_kami_tag" + "style" "2" + "pattern" "workshop/kami_galil" + "color0" "218 208 183" + "color1" "31 33 28" + "color2" "34 38 37" + "color3" "37 38 42" + "pattern_scale" "2.300000" + "phongexponent" "165" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "10.000000" + "pattern_rotate_end" "45" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "309" + { + "name" "cu_m4a1_howling" + "description_string" "#PaintKit_cu_howling" + "description_tag" "#PaintKit_cu_howling_tag" + "style" "7" + "pattern" "workshop/howling_m4a1" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "310" + { + "name" "cu_mac10_decay" + "description_string" "#PaintKit_cu_decay_mac10" + "description_tag" "#PaintKit_cu_decay_mac10_tag" + "style" "7" + "pattern" "workshop/decay_mac10" + "pattern_scale" "1.000000" + "phongexponent" "60" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "311" + { + "name" "cu_p90_scorpius" + "description_string" "#PaintKit_cu_scorpius_p90" + "description_tag" "#PaintKit_cu_scorpius_p90_tag" + "style" "7" + "pattern" "workshop/scorpius_reborn_p90" + "pattern_scale" "1.000000" + "phongexponent" "40" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "312" + { + "name" "cu_scar_cyrex" + "description_string" "#PaintKit_cu_cyrex" + "description_tag" "#PaintKit_cu_cyrex_tag" + "style" "7" + "pattern" "workshop/cyrex_scar" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "313" + { + "name" "cu_usp_spitfire" + "description_string" "#PaintKit_cu_spitfire" + "description_tag" "#PaintKit_cu_spitfire_tag" + "style" "7" + "pattern" "workshop/spitfire_usp" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "90" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "314" + { + "name" "cu_xm1014_heaven_guard" + "description_string" "#PaintKit_cu_mag7_heaven" + "description_tag" "#PaintKit_cu_mag7_heaven_tag" + "style" "7" + "pattern" "workshop/heaven_guard_xm1014" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "22" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.030000" + "wear_remap_max" "0.500000" + } + "315" + { + "name" "am_nitrogen" + "description_string" "#PaintKit_am_nitrogen" + "description_tag" "#PaintKit_am_nitrogen_tag" + "style" "5" + "pattern" "workshop/nitrogen_cz75" + "color0" "0 0 0" + "color1" "0 149 254" + "color2" "26 26 27" + "color3" "29 29 29" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "316" + { + "name" "cu_panther_ak47" + "description_string" "#PaintKit_cu_panther_ak47" + "description_tag" "#PaintKit_cu_panther_ak47_Tag" + "style" "7" + "pattern" "panther_ak47" + "pattern_scale" "1.000000" + "phongexponent" "64" + "phongintensity" "32" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "317" + { + "name" "cu_bratatat_negev" + "description_string" "#PaintKit_cu_bratatat_negev" + "description_tag" "#PaintKit_cu_bratatat_negev_Tag" + "style" "7" + "pattern" "bratatat_negev" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "318" + { + "name" "cu_usp_sandpapered" + "description_string" "#PaintKit_cu_usp_sandpapered" + "description_tag" "#PaintKit_cu_usp_sandpapered_Tag" + "style" "7" + "pattern" "usp-s_sandpapered" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "32" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "319" + { + "name" "hy_ssg08_marker" + "description_string" "#PaintKit_hy_ssg08_marker" + "description_tag" "#PaintKit_hy_ssg08_marker_Tag" + "style" "2" + "pattern" "ssg08_marker" + "color0" "215 215 207" + "color1" "0 0 0" + "color2" "0 0 0" + "color3" "19 18 18" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.430000" + } + "320" + { + "name" "hy_snakeskin_red" + "description_string" "#PaintKit_snakeskin" + "description_tag" "#PaintKit_hy_snakeskin_red_Tag" + "style" "2" + "pattern" "snakeskin" + "color0" "47 34 2" + "color1" "63 15 3" + "color2" "13 10 10" + "color3" "67 65 59" + "pattern_scale" "5.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.080000" + "wear_remap_max" "0.500000" + } + "321" + { + "name" "cu_m4a1-s_silence" + "description_string" "#PaintKit_cu_m4a1-s_silence" + "description_tag" "#PaintKit_cu_m4a1-s_silence_Tag" + "style" "7" + "pattern" "m4a1-s_silence" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "322" + { + "name" "so_orange_accents2" + "description_string" "#PaintKit_so_tangerine" + "description_tag" "#PaintKit_so_orange_accents_Tag" + "style" "1" + "color0" "17 17 17" + "color1" "35 35 35" + "color2" "35 35 35" + "color3" "153 64 33" + "phongexponent" "192" + "phongintensity" "60" + "only_first_material" "0" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + } + "323" + { + "name" "aq_steel" + "description_string" "#PaintKit_aq_steel" + "description_tag" "#PaintKit_aq_steel_bravo_Tag" + "pattern" "steel" + "wear_default" "0.400000" + "seed" "21" + "style" "8" + "color0" "164 109 67" + "color1" "129 134 143" + "color2" "148 115 84" + "color3" "215 120 26" + "phongalbedoboost" "1" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-4" + "pattern_rotate_end" "4" + "wear_remap_min" "0.000000" + } + "325" + { + "name" "am_royal" + "description_string" "#PaintKit_am_royal" + "description_tag" "#PaintKit_am_royal_Tag" + "style" "5" + "pattern" "solid" + "color0" "13 7 69" + "color1" "4 22 57" + "color2" "28 19 1" + "color3" "28 19 1" + "pattern_scale" "32.000000" + "phongexponent" "1" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "10.000000" + "pattern_rotate_start" "42.000000" + "pattern_rotate_end" "40.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.100000" + } + "326" + { + "name" "am_metals" + "description_string" "#PaintKit_am_metals" + "description_tag" "#PaintKit_am_metals_Tag" + "style" "5" + "pattern" "armor_m4a1_s" + "color0" "35 35 38" + "color1" "4 22 57" + "color2" "71 54 7" + "color3" "22 22 23" + "pattern_scale" "1.000000" + "phongexponent" "1" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.100000" + } + "327" + { + "name" "am_chainmail" + "description_string" "#PaintKit_am_chainmail" + "description_tag" "#PaintKit_am_chainmail_Tag" + "style" "5" + "pattern" "chainmail" + "color0" "10 10 10" + "color1" "80 78 74" + "color2" "33 27 12" + "color3" "33 27 12" + "pattern_scale" "12.000000" + "phongexponent" "1" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "10.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.220000" + } + "328" + { + "name" "aq_handcannon" + "description_string" "#PaintKit_aq_handcannon" + "description_tag" "#PaintKit_aq_handcannon_Tag" + "style" "8" + "pattern" "handcannon" + "color0" "191 191 191" + "color1" "118 118 118" + "color2" "218 214 233" + "color3" "25 31 50" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongalbedoboost" "8" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.010000" + "wear_remap_max" "0.700000" + } + "329" + { + "name" "am_metal_inlay" + "description_string" "#PaintKit_am_metal_inlay" + "description_tag" "#PaintKit_am_metal_inlay_Tag" + "style" "5" + "pattern" "medieval_motif_b" + "color0" "77 77 75" + "color1" "27 27 27" + "color2" "13 13 12" + "color3" "6 6 6" + "pattern_scale" "12.000000" + "phongexponent" "1" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.220000" + } + "330" + { + "name" "hy_vines" + "description_string" "#PaintKit_hy_vines" + "description_tag" "#PaintKit_hy_vines_Tag" + "style" "2" + "pattern" "vines" + "color0" "10 10 10" + "color1" "24 43 79" + "color2" "50 62 39" + "color3" "64 23 27" + "pattern_scale" "8.000000" + "phongexponent" "1" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.020000" + "pattern_offset_x_end" "0.020000" + "pattern_offset_y_start" "4.150000" + "pattern_offset_y_end" "4.150000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.220000" + } + "332" + { + "name" "hy_indigo_usp" + "description_string" "#PaintKit_so_indigo" + "description_tag" "#PaintKit_so_indigo_Tag" + "style" "2" + "pattern" "usp_solid_colors" + "color0" "13 7 69" + "color1" "24 43 79" + "color2" "64 23 27" + "color3" "64 64 64" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + } + "333" + { + "name" "so_indigo_and_grey" + "description_string" "#PaintKit_so_indigo_and_grey" + "description_tag" "#PaintKit_so_indigo_and_grey_Tag" + "style" "1" + "color0" "13 7 69" + "color1" "36 50 77" + "color2" "34 34 34" + "color3" "31 38 38" + "phongexponent" "16" + "phongintensity" "10" + "only_first_material" "0" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + } + "334" + { + "name" "am_gyrate" + "description_string" "#PaintKit_am_gyrate" + "description_tag" "#PaintKit_am_gyrate_tag" + "style" "5" + "pattern" "workshop/gyrate_cz75" + "color0" "1 7 16" + "color1" "23 47 77" + "color2" "93 101 107" + "color3" "160 160 160" + "pattern_scale" "1.400000" + "phongexponent" "32" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "27.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "69.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "44.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "335" + { + "name" "an_royalbleed" + "description_string" "#PaintKit_an_royalbleed" + "description_tag" "#PaintKit_an_royalbleed_tag" + "style" "8" + "pattern" "workshop/p90_royalbleed" + "pattern_scale" "2.000000" + "phongexponent" "40" + "phongalbedoboost" "20" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.350000" + } + "336" + { + "name" "cu_titanstorm" + "description_string" "#PaintKit_cu_titanstorm" + "description_tag" "#PaintKit_cu_titanstorm_tag" + "style" "7" + "pattern" "workshop/m4a4_titanstorm" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "337" + { + "name" "cu_korupt" + "description_string" "#PaintKit_cu_korupt" + "description_tag" "#PaintKit_cu_korupt_tag" + "style" "7" + "pattern" "workshop/mac10_korupt" + "pattern_scale" "1.000000" + "phongexponent" "60" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "338" + { + "name" "cu_p2000_pulse" + "description_string" "#PaintKit_cu_famas_pulse" + "description_tag" "#PaintKit_cu_famas_pulse_tag" + "style" "7" + "pattern" "workshop/p2000_pulse" + "pattern_scale" "1.000000" + "phongexponent" "60" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.100000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.100000" + "pattern_rotate_start" "0.500000" + "pattern_rotate_end" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "339" + { + "name" "cu_kaiman" + "description_string" "#PaintKit_cu_kaiman" + "description_tag" "#PaintKit_cu_kaiman_tag" + "style" "7" + "pattern" "workshop/usp_kaiman" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "90" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "340" + { + "name" "cu_well_traveled_ak47" + "description_string" "#PaintKit_cu_well_traveled_ak47" + "description_tag" "#PaintKit_cu_well_traveled_ak47_Tag" + "style" "7" + "pattern" "well_traveled" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "8" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "341" + { + "name" "cu_green_leather_ak47" + "description_string" "#PaintKit_cu_green_leather" + "description_tag" "#PaintKit_cu_green_leather_Tag" + "style" "7" + "pattern" "green_leather" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "6" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "342" + { + "name" "cu_brown_leather_p90" + "description_string" "#PaintKit_cu_brown_leather_p90" + "description_tag" "#PaintKit_cu_brown_leather_p90_Tag" + "style" "7" + "pattern" "brown_leather_p90" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "343" + { + "name" "cu_luggage_mac10" + "description_string" "#PaintKit_cu_luggage_mac10" + "description_tag" "#PaintKit_cu_luggage_mac10_Tag" + "style" "7" + "pattern" "luggage_mac10" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "344" + { + "name" "cu_medieval_dragon_awp" + "description_string" "#PaintKit_cu_medieval_dragon_awp" + "description_tag" "#PaintKit_cu_medieval_dragon_awp_Tag" + "style" "7" + "pattern" "dragon_awp" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "140" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "345" + { + "name" "cu_green_leather_sawedoff" + "description_string" "#PaintKit_cu_green_leather" + "description_tag" "#PaintKit_cu_green_leather_Tag" + "style" "7" + "pattern" "green_leather_sawedoff" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "6" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "346" + { + "name" "cu_luggage_p2000" + "description_string" "#PaintKit_cu_luggage_p2000" + "description_tag" "#PaintKit_cu_luggage_p2000_Tag" + "style" "7" + "pattern" "leather_p2000" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "view_model_exponent_override_size" "512" + } + "347" + { + "name" "aq_pilot_deagle" + "description_string" "#PaintKit_aq_pilot_deagle" + "description_tag" "#PaintKit_aq_pilot_deagle_Tag" + "style" "8" + "pattern" "pilot_deagle" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "203 209 221" + "color3" "225 221 207" + "pattern_scale" "1.000000" + "phongexponent" "60" + "phongalbedoboost" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "348" + { + "name" "cu_leather_xm1014" + "description_string" "#PaintKit_cu_leather_xm1014" + "description_tag" "#PaintKit_cu_leather_xm1014_Tag" + "style" "7" + "pattern" "leather_xm1014" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.560000" + } + "349" + { + "name" "cu_bizon-osiris" + "description_string" "#PaintKit_cu_bizon-osiris" + "description_tag" "#PaintKit_cu_bizon-osiris_tag" + "style" "7" + "pattern" "workshop/osiris" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "55" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "350" + { + "name" "cu_c75a-tiger" + "description_string" "#PaintKit_cu_c75a-tiger" + "description_tag" "#PaintKit_cu_c75a-tiger_tag" + "style" "7" + "pattern" "workshop/cz-75-tiger" + "pattern_scale" "1.000000" + "phongexponent" "132" + "phongintensity" "42" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "351" + { + "name" "cu_deagle_aureus" + "description_string" "#PaintKit_cu_deagle_aureus" + "description_tag" "#PaintKit_cu_deagle_aureus_tag" + "style" "7" + "pattern" "workshop/deagle_aureus" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + } + "352" + { + "name" "aq_57_feathers" + "description_string" "#PaintKit_aq_57_feathers" + "description_tag" "#PaintKit_aq_57_feathers_tag" + "style" "8" + "pattern" "workshop/57_feathers" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongalbedoboost" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "353" + { + "name" "cu_glock-liquescent" + "description_string" "#PaintKit_cu_glock-liquescent" + "description_tag" "#PaintKit_cu_glock-liquescent_tag" + "style" "7" + "pattern" "workshop/liquescent" + "pattern_scale" "1.000000" + "phongexponent" "185" + "phongintensity" "58" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "354" + { + "name" "cu_mp7-commander" + "description_string" "#PaintKit_cu_mp7-commander" + "description_tag" "#PaintKit_cu_mp7-commander_tag" + "style" "7" + "pattern" "workshop/mp7-commander" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "355" + { + "name" "cu_negev_titanstorm" + "description_string" "#PaintKit_cu_titanstorm" + "description_tag" "#PaintKit_cu_titanstorm_tag" + "style" "7" + "pattern" "workshop/mach_negev_titanstorm" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "356" + { + "name" "cu_nova_koi" + "description_string" "#PaintKit_cu_nova_koi" + "description_tag" "#PaintKit_cu_nova_koi_tag" + "style" "7" + "pattern" "workshop/nova_koi" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "64" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + } + "357" + { + "name" "cu_p2000_ivory" + "description_string" "#PaintKit_cu_p2000_ivory" + "description_tag" "#PaintKit_cu_p2000_ivory_tag" + "style" "7" + "pattern" "workshop/p2000_ivory" + "pattern_scale" "1.000000" + "phongexponent" "30" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "358" + { + "name" "cu_bittersweet" + "description_string" "#PaintKit_cu_bittersweet" + "description_tag" "#PaintKit_cu_bittersweet_tag" + "style" "7" + "pattern" "workshop/bittersweet" + "pattern_scale" "2.000000" + "phongexponent" "75" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "359" + { + "name" "cu_p90-asiimov" + "description_string" "#PaintKit_cu_m4_asimov" + "description_tag" "#PaintKit_cu_m4_asimov_tag" + "style" "7" + "pattern" "workshop/zone9_p90" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.920000" + } + "360" + { + "name" "cu_m4a1s_cyrex" + "description_string" "#PaintKit_cu_cyrex" + "description_tag" "#PaintKit_cu_cyrex_tag" + "style" "7" + "pattern" "workshop/m4a1_cyrex" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "361" + { + "name" "aq_leviathan" + "description_string" "#PaintKit_aq_leviathan" + "description_tag" "#PaintKit_aq_leviathan_tag" + "style" "8" + "pattern" "workshop/leviathan" + "color0" "255 255 255" + "color1" "50 171 255" + "color2" "255 255 255" + "color3" "255 255 255" + "pattern_scale" "2.500000" + "phongexponent" "32" + "phongalbedoboost" "1" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "dialog_config" "25,0,0,1" + } + "362" + { + "name" "hy_lines_orange" + "description_string" "#PaintKit_hy_lines_orange" + "description_tag" "#PaintKit_hy_lines_orange_tag" + "style" "2" + "pattern" "workshop/liner" + "color0" "191 207 209" + "color1" "0 0 0" + "color2" "68 82 87" + "color3" "207 140 57" + "pattern_scale" "2.000000" + "phongexponent" "60" + "phongintensity" "100" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "363" + { + "name" "cu_luggage_sg553" + "description_string" "#PaintKit_cu_luggage_sg553" + "description_tag" "#PaintKit_cu_luggage_sg553_Tag" + "style" "7" + "pattern" "luggage_sg553" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "364" + { + "name" "cu_luggage_usp-s" + "description_string" "#PaintKit_cu_luggage_usp-s" + "description_tag" "#PaintKit_cu_luggage_usp-s_Tag" + "style" "7" + "pattern" "luggage_usp-s" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "365" + { + "name" "hy_plaid1" + "description_string" "#PaintKit_hy_plaid1" + "description_tag" "#PaintKit_hy_plaid1_Tag" + "style" "2" + "pattern" "tartan1" + "color0" "14 14 14" + "color1" "150 139 123" + "color2" "121 121 97" + "color3" "63 64 48" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "25.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.580000" + } + "366" + { + "name" "hy_plaid2" + "description_string" "#PaintKit_hy_plaid2" + "description_tag" "#PaintKit_chy_plaid2_Tag" + "style" "2" + "pattern" "tartan1" + "color0" "14 14 14" + "color1" "90 82 69" + "color2" "121 116 97" + "color3" "48 64 58" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "25.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.580000" + } + "367" + { + "name" "am_nuclear_pattern1_glock" + "description_string" "#PaintKit_am_nuclear_pattern1_glock" + "description_tag" "#PaintKit_am_nuclear_pattern1_glock_Tag" + "style" "5" + "pattern" "nuclear_pattern" + "color0" "34 31 29" + "color1" "77 51 13" + "color2" "40 37 33" + "color3" "236 138 22" + "pattern_scale" "2.200000" + "phongexponent" "1" + "phongalbedoboost" "66" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "1.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "dialog_config" "9,0,0,1" + } + "368" + { + "name" "hy_nuclear_pattern2_mp9" + "description_string" "#PaintKit_hy_nuclear_pattern2_mp9" + "description_tag" "#PaintKit_hy_nuclear_pattern2_mp9_Tag" + "style" "2" + "pattern" "nuclear_pattern" + "color0" "22 21 20" + "color1" "95 19 1" + "color2" "35 33 31" + "color3" "238 67 7" + "pattern_scale" "2.200000" + "phongexponent" "0" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "1.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "dialog_config" "16,0,0,2" + } + "369" + { + "name" "sp_nuclear_pattern3_negev" + "description_string" "#PaintKit_sp_nuclear_pattern3_negev" + "description_tag" "#PaintKit_sp_nuclear_pattern3_negev_Tag" + "style" "3" + "pattern" "nuclear_pattern" + "color0" "31 16 3" + "color1" "28 27 25" + "color2" "18 17 17" + "color3" "240 155 20" + "pattern_scale" "2.200000" + "phongexponent" "0" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "1.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + "dialog_config" "17,0,0,1" + } + "370" + { + "name" "am_nuclear_skulls1_xm1014" + "description_string" "#PaintKit_am_nuclear_skulls1_xm1014" + "description_tag" "#PaintKit_am_nuclear_skulls1_xm1014_Tag" + "style" "5" + "pattern" "nuclear_skulls_02" + "color0" "60 26 4" + "color1" "25 189 134" + "color2" "229 97 8" + "color3" "14 27 4" + "pattern_scale" "2.700000" + "phongexponent" "2" + "phongalbedoboost" "33" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "dialog_config" "30,0,0,1" + } + "371" + { + "name" "am_nuclear_skulls2_famas" + "description_string" "#PaintKit_am_nuclear_skulls2_famas" + "description_tag" "#PaintKit_am_nuclear_skulls2_famas_Tag" + "style" "5" + "pattern" "nuclear_skulls_02" + "color0" "28 5 3" + "color1" "180 155 126" + "color2" "81 2 7" + "color3" "13 11 10" + "pattern_scale" "3.000000" + "phongexponent" "12" + "phongalbedoboost" "44" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "dialog_config" "5,0,0,1" + } + "372" + { + "name" "am_nuclear_skulls3_mac10" + "description_string" "#PaintKit_am_nuclear_skulls3_mac10" + "description_tag" "#PaintKit_am_nuclear_skulls3_mac10_Tag" + "style" "5" + "pattern" "nuclear_skulls_02" + "color0" "86 140 38" + "color1" "205 226 64" + "color2" "45 60 43" + "color3" "13 11 10" + "pattern_scale" "3.000000" + "phongexponent" "12" + "phongalbedoboost" "44" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + "dialog_config" "13,0,0,0" + } + "373" + { + "name" "hy_nuclear_skulls4_p250" + "description_string" "#PaintKit_hy_nuclear_skulls4_p250" + "description_tag" "#PaintKit_hy_nuclear_skulls4_p250_Tag" + "style" "2" + "pattern" "nuclear_skulls_02" + "color0" "55 60 71" + "color1" "201 192 148" + "color2" "136 111 71" + "color3" "20 23 35" + "pattern_scale" "2.300000" + "phongexponent" "55" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.830000" + "dialog_config" "20,0,0,1" + } + "374" + { + "name" "hy_nuclear_skulls5_tec9" + "description_string" "#PaintKit_hy_nuclear_skulls5_tec9" + "description_tag" "#PaintKit_hy_nuclear_skulls5_tec9_Tag" + "style" "2" + "pattern" "nuclear_skulls_02" + "color0" "46 26 14" + "color1" "65 170 135" + "color2" "215 102 27" + "color3" "14 27 4" + "pattern_scale" "2.200000" + "phongexponent" "55" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + "dialog_config" "27,0,0,0" + } + "375" + { + "name" "sp_nukestripe_orange_aug" + "description_string" "#PaintKit_sp_nukestripe" + "description_tag" "#PaintKit_sp_nukestripe_orange_Tag" + "style" "3" + "pattern" "nukestripe" + "color0" "37 41 41" + "color1" "41 52 65" + "color2" "244 80 32" + "color3" "183 58 28" + "pattern_scale" "1.000000" + "phongexponent" "12" + "phongintensity" "12" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.810000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.250000" + "pattern_offset_y_end" "0.330000" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + "dialog_config" "1,0,0,1" + } + "376" + { + "name" "so_grey_nuclear_green_bizon" + "description_string" "#PaintKit_so_grey_nuclear_green_bizon" + "description_tag" "#PaintKit_so_grey_nuclear_green_bizon_Tag" + "style" "1" + "color0" "163 200 34" + "color1" "33 35 27" + "color2" "23 26 19" + "color3" "24 24 17" + "phongexponent" "30" + "phongintensity" "44" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + "dialog_config" "22,0,0,0" + } + "377" + { + "name" "so_grey_nuclear_orange_five_seven" + "description_string" "#PaintKit_so_grey_nuclear_orange_five_seven" + "description_tag" "#PaintKit_so_grey_nuclear_orange_five_seven_Tag" + "style" "1" + "color0" "142 197 46" + "color1" "57 57 53" + "color2" "156 158 135" + "color3" "25 25 23" + "phongexponent" "30" + "phongintensity" "44" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "dialog_config" "6,0,0,1" + } + "378" + { + "name" "sp_nukestripe_maroon_sg553" + "description_string" "#PaintKit_sp_nukestripe" + "description_tag" "#PaintKit_sp_nukestripe_maroon_Tag" + "style" "3" + "pattern" "nukestripe" + "color0" "98 40 40" + "color1" "41 65 70" + "color2" "177 52 52" + "color3" "44 46 28" + "pattern_scale" "1.200000" + "phongexponent" "12" + "phongintensity" "12" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.790000" + "pattern_offset_x_end" "0.790000" + "pattern_offset_y_start" "0.570000" + "pattern_offset_y_end" "0.670000" + "pattern_rotate_start" "350.000000" + "pattern_rotate_end" "351.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + "dialog_config" "24,0,0,1" + } + "379" + { + "name" "cu_cerbrus_galil" + "description_string" "#PaintKit_cu_cerbrus_galil" + "description_tag" "#PaintKit_cu_cerbrus_galil_Tag" + "style" "7" + "pattern" "cerbrus_galil" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + "dialog_config" "8,0,0,0" + } + "380" + { + "name" "cu_tribute_ak47" + "description_string" "#PaintKit_cu_tribute_ak47" + "description_tag" "#PaintKit_cu_tribute_ak47_Tag" + "style" "7" + "pattern" "workshop/tribute_ak47" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.700000" + } + "381" + { + "name" "aq_glock_coiled" + "description_string" "#PaintKit_aq_glock_coiled" + "description_tag" "#PaintKit_aq_glock_coiled_Tag" + "style" "8" + "pattern" "workshop/167-miracle" + "pattern_scale" "2.000000" + "phongexponent" "50" + "phongalbedoboost" "50" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.250000" + } + "382" + { + "name" "am_g3sg1_murky" + "description_string" "#PaintKit_am_g3sg1_murky" + "description_tag" "#PaintKit_am_g3sg1_murky_Tag" + "style" "5" + "pattern" "workshop/lepo" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "15 15 15" + "color3" "24 27 28" + "pattern_scale" "6.000000" + "phongexponent" "100" + "phongalbedoboost" "19" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.250000" + } + "383" + { + "name" "aq_m4a1s_basilisk" + "description_string" "#PaintKit_aq_m4a1s_basilisk" + "description_tag" "#PaintKit_aq_m4a1s_basilisk_Tag" + "style" "8" + "pattern" "workshop/basilisk" + "use_normal" "1" + "normal" "workshop/basilisk_normal" + "color0" "174 174 174" + "color1" "219 219 219" + "color2" "160 160 145" + "color3" "89 82 72" + "pattern_scale" "1.000000" + "phongexponent" "64" + "phongalbedoboost" "18" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.680000" + } + "384" + { + "name" "cu_m4a4_griffin" + "description_string" "#PaintKit_cu_m4a4_griffin" + "description_tag" "#PaintKit_cu_m4a4_griffin_Tag" + "style" "7" + "pattern" "workshop/M4A4_Griffin" + "pattern_scale" "1.000000" + "phongexponent" "182" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "385" + { + "name" "sp_mag7_firebitten" + "description_string" "#PaintKit_sp_mag7_firebitten" + "description_tag" "#PaintKit_sp_mag7_firebitten_Tag" + "style" "3" + "pattern" "workshop/firebitten" + "color0" "152 45 45" + "color1" "48 134 34" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "0.300000" + "phongexponent" "32" + "phongintensity" "255" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.490000" + } + "386" + { + "name" "cu_mp9_chevron" + "description_string" "#PaintKit_cu_mp9_chevron" + "description_tag" "#PaintKit_cu_mp9_chevron_Tag" + "style" "7" + "pattern" "workshop/mp9_chevron" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.460000" + } + "387" + { + "name" "cu_fiveseven_urban_hazard" + "description_string" "#PaintKit_cu_fiveseven_urban_hazard" + "description_tag" "#PaintKit_cu_mp7-commander_tag" + "style" "7" + "pattern" "workshop/fiveseven_urban_hazard" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "180" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.250000" + } + "388" + { + "name" "aq_p250_cartel" + "description_string" "#PaintKit_aq_p250_cartel" + "description_tag" "#PaintKit_aq_p250_cartel_Tag" + "style" "8" + "pattern" "workshop/P250_CARTEL" + "normal" "workshop/p250_cartel_normal" + "use_normal" "1" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongalbedoboost" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "389" + { + "name" "cu_p2000_fire_elemental" + "description_string" "#PaintKit_cu_p2000_fire_elemental" + "description_tag" "#PaintKit_cu_p2000_fire_elemental_Tag" + "style" "7" + "pattern" "workshop/P2000_Fire" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "390" + { + "name" "aq_sawedoff_blackgold" + "description_string" "#PaintKit_aq_sawedoff_blackgold" + "description_tag" "#PaintKit_aq_sawedoff_blackgold_Tag" + "style" "8" + "pattern" "workshop/sawedoff_blackgold" + "color0" "88 79 72" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "211 49 44" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongalbedoboost" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "391" + { + "name" "cu_scar20_intervention" + "description_string" "#PaintKit_cu_scar20_intervention" + "description_tag" "#PaintKit_cu_scar20_intervention_Tag" + "style" "7" + "pattern" "workshop/scar20_intervention" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "392" + { + "name" "sp_ump45_d-visions" + "description_string" "#PaintKit_sp_ump45_d-visions" + "description_tag" "#PaintKit_sp_ump45_d-visions_Tag" + "style" "3" + "pattern" "workshop/ump45_dvisions" + "color0" "80 0 115" + "color1" "0 0 0" + "color2" "0 0 0" + "color3" "209 240 0" + "pattern_scale" "1.250000" + "phongexponent" "10" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.350000" + } + "393" + { + "name" "cu_xm1014_caritas" + "description_string" "#PaintKit_cu_xm1014_caritas" + "description_tag" "#PaintKit_cu_xm1014_caritas_Tag" + "style" "7" + "pattern" "workshop/xm1014_caritas" + "pattern_scale" "1.000000" + "phongexponent" "110" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "394" + { + "name" "aq_ak47_cartel" + "description_string" "#PaintKit_aq_p250_cartel" + "description_tag" "#PaintKit_aq_p250_cartel_Tag" + "style" "8" + "pattern" "workshop/AK47_CARTEL" + "normal" "workshop/AK47_CARTEL_normal" + "use_normal" "1" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongalbedoboost" "65" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "395" + { + "name" "am_awp_glory" + "description_string" "#PaintKit_am_awp_glory" + "description_tag" "#PaintKit_am_awp_glory_Tag" + "style" "5" + "pattern" "workshop/glory_awp" + "color0" "162 131 43" + "color1" "157 126 71" + "color2" "24 32 54 255" + "color3" "4 7 26" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.200000" + } + "396" + { + "name" "cu_elites_urbanstorm" + "description_string" "#PaintKit_cu_elites_urbanstorm" + "description_tag" "#PaintKit_cu_elites_urbanstorm_Tag" + "style" "7" + "pattern" "workshop/EliteUrbanStorm" + "pattern_scale" "1.000000" + "phongexponent" "225" + "phongintensity" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.470000" + } + "397" + { + "name" "aq_deagle_naga" + "description_string" "#PaintKit_aq_deagle_naga" + "description_tag" "#PaintKit_aq_deagle_naga_Tag" + "style" "8" + "pattern" "workshop/deagle_naga" + "use_normal" "1" + "normal" "workshop/deagle_naga_normal" + "color0" "174 174 174" + "color1" "213 213 213" + "color2" "176 172 166" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongalbedoboost" "16" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "398" + { + "name" "cu_galil_abrasion" + "description_string" "#PaintKit_cu_galil_abrasion" + "description_tag" "#PaintKit_cu_galil_abrasion_Tag" + "style" "7" + "pattern" "workshop/galil_abrasion" + "pattern_scale" "1.000000" + "phongexponent" "64" + "phongintensity" "64" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.350000" + "wear_remap_max" "0.850000" + } + "399" + { + "name" "cu_glock_deathtoll" + "description_string" "#PaintKit_cu_glock_deathtoll" + "description_tag" "#PaintKit_cu_glock_deathtoll_Tag" + "style" "5" + "pattern" "workshop/skull" + "color0" "16 16 16" + "color1" "4 4 4" + "color2" "125 125 125" + "color3" "4 4 4" + "pattern_scale" "4.000000" + "phongexponent" "4" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "-1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "-1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "400" + { + "name" "cu_m4a4_ancestral" + "description_string" "#PaintKit_cu_m4a4_ancestral" + "description_tag" "#PaintKit_cu_m4a4_ancestral_Tag" + "style" "7" + "pattern" "workshop/m4a4_ancestral" + "pattern_scale" "1.000000" + "phongexponent" "72" + "phongintensity" "42" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "401" + { + "name" "cu_m249_sektor" + "description_string" "#PaintKit_cu_m249_sektor" + "description_tag" "#PaintKit_cu_m249_sektor_Tag" + "style" "7" + "pattern" "workshop/M249_Sektor" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "3" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "402" + { + "name" "am_mac10_malachite" + "description_string" "#PaintKit_am_mac10_malachite" + "description_tag" "#PaintKit_am_mac10_malachite_Tag" + "style" "5" + "pattern" "workshop/malachite" + "color0" "6 85 128" + "color1" "0 25 16" + "color2" "30 161 119" + "color3" "0 0 0" + "pattern_scale" "2.000000" + "phongexponent" "4" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.300000" + "pattern_offset_x_end" "0.750000" + "pattern_offset_y_start" "0.810000" + "pattern_offset_y_end" "0.900000" + "pattern_rotate_start" "15.000000" + "pattern_rotate_end" "35.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "403" + { + "name" "cu_mp9_deadly_poison" + "description_string" "#PaintKit_cu_mp9_deadly_poison" + "description_tag" "#PaintKit_cu_mp9_deadly_poison_Tag" + "style" "7" + "pattern" "workshop/mp9_deadly_poison" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "404" + { + "name" "cu_p250_mandala" + "description_string" "#PaintKit_cu_p250_mandala" + "description_tag" "#PaintKit_cu_p250_mandala_Tag" + "style" "7" + "pattern" "workshop/p250_mandala" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "405" + { + "name" "cu_sawedoff_deva" + "description_string" "#PaintKit_cu_sawedoff_deva" + "description_tag" "#PaintKit_cu_sawedoff_deva_Tag" + "style" "7" + "pattern" "workshop/sawedoff_deva" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "406" + { + "name" "aq_scar20_leak" + "description_string" "#PaintKit_aq_scar20_leak" + "description_tag" "#PaintKit_aq_scar20_leak_Tag" + "style" "8" + "pattern" "workshop/scar20_leak" + "pattern_scale" "3.000000" + "phongexponent" "64" + "phongalbedoboost" "75" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "407" + { + "name" "aq_xm1014_sigla" + "description_string" "#PaintKit_aq_xm1014_sigla" + "description_tag" "#PaintKit_aq_xm1014_sigla_Tag" + "style" "8" + "pattern" "workshop/xm1014_sigla" + "pattern_scale" "2.000000" + "phongexponent" "40" + "phongalbedoboost" "30" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.080000" + "pattern_offset_x_end" "0.350000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "38.000000" + "pattern_rotate_end" "98.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "409" + { + "name" "an_tiger_orange" + "description_string" "#PaintKit_an_tiger_orange" + "description_tag" "#PaintKit_an_tiger_orange_Tag" + "style" "5" + "pattern" "tiger" + "color0" "66 40 5" + "color1" "67 41 5" + "color2" "87 52 4" + "color3" "87 52 4" + "pattern_scale" "4.000000" + "phongexponent" "16" + "phongalbedoboost" "50" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "410" + { + "name" "aq_damascus" + "description_string" "#PaintKit_aq_damascus_knife" + "description_tag" "#PaintKit_aq_damascus_Tag" + "style" "8" + "pattern" "damascus" + "color0" "59 64 68" + "color1" "91 95 100" + "color2" "30 31 31" + "color3" "8 5 1" + "pattern_scale" "3.000000" + "phongexponent" "8" + "phongalbedoboost" "60" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "411" + { + "name" "aq_damascus_90" + "description_string" "#PaintKit_aq_damascus_knife" + "description_tag" "#PaintKit_aq_damascus_Tag" + "style" "8" + "pattern" "damascus" + "color0" "59 64 68" + "color1" "91 95 100" + "color2" "30 31 31" + "color3" "8 5 1" + "pattern_scale" "3.000000" + "phongexponent" "8" + "phongalbedoboost" "60" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "413" + { + "name" "am_marble_fade" + "description_string" "#PaintKit_am_marble_fade" + "description_tag" "#PaintKit_am_marble_fade_Tag" + "style" "5" + "pattern" "smoke2" + "color0" "9 8 8" + "color1" "156 123 10" + "color2" "143 43 30" + "color3" "30 61 131" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "414" + { + "name" "aq_steel_knife" + "description_string" "#PaintKit_aq_steel" + "description_tag" "#PaintKit_aq_steel_bravo_Tag" + "pattern" "steel" + "wear_default" "0.400000" + "seed" "21" + "style" "8" + "color0" "164 109 67" + "color1" "129 134 143" + "color2" "148 115 84" + "color3" "215 120 26" + "phongalbedoboost" "1" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-4" + "pattern_rotate_end" "4" + "wear_remap_min" "0.400000" + "wear_remap_max" "1.000000" + } + "415" + { + "name" "am_ruby_marbleized" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "59 5 14" + "color1" "15 6 1" + "color2" "17 6 1" + "color3" "22 2 6" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "416" + { + "name" "am_sapphire_marbleized" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "34 23 117" + "color1" "10 1 15" + "color2" "1 13 17" + "color3" "8 2 22" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "417" + { + "name" "am_blackpearl_marbleized" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke" + "color0" "16 67 131" + "color1" "42 57 8" + "color2" "40 10 24" + "color3" "11 14 27" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "418" + { + "name" "am_doppler_phase1" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "11 14 27" + "color1" "30 22 12" + "color2" "98 13 28" + "color3" "11 14 27" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "419" + { + "name" "am_doppler_phase2" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "11 14 27" + "color1" "99 9 36" + "color2" "30 22 12" + "color3" "99 9 36" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "420" + { + "name" "am_doppler_phase3" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "6 8 15" + "color1" "34 23 117" + "color2" "7 24 15" + "color3" "28 20 9" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "421" + { + "name" "am_doppler_phase4" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "7 9 18" + "color1" "34 23 117" + "color2" "12 31 174" + "color3" "28 20 9" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "422" + { + "name" "cu_ak47_mastery" + "description_string" "#PaintKit_cu_ak47_mastery" + "description_tag" "#PaintKit_cu_ak47_mastery_Tag" + "style" "7" + "pattern" "workshop/ak47_mastery" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "423" + { + "name" "aq_mp7_ultramodern" + "description_string" "#PaintKit_aq_mp7_ultramodern" + "description_tag" "#PaintKit_aq_mp7_ultramodern_Tag" + "style" "8" + "pattern" "workshop/mp7um06" + "color0" "155 155 155" + "color1" "171 171 171" + "color2" "101 101 101" + "color3" "29 29 29" + "pattern_scale" "1.000000" + "phongexponent" "20" + "phongalbedoboost" "18" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "424" + { + "name" "aq_awp_twine" + "description_string" "#PaintKit_aq_awp_twine" + "description_tag" "#PaintKit_aq_awp_twine_Tag" + "style" "8" + "pattern" "workshop/AWP_twine" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "0" + "phongalbedoboost" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "425" + { + "name" "am_bronze_sparkle" + "description_string" "#PaintKit_am_bronze_sparkle" + "description_tag" "#PaintKit_am_bronze_sparkle_Tag" + "style" "5" + "pattern" "workshop/bronze_flakes" + "color0" "45 45 45" + "color1" "48 39 24" + "color2" "70 56 35" + "color3" "151 121 76" + "pattern_scale" "1.500000" + "phongexponent" "4" + "phongalbedoboost" "70" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-20.000000" + "pattern_rotate_end" "20.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.460000" + } + "426" + { + "name" "aq_p250_contour" + "description_string" "#PaintKit_aq_p250_contour" + "description_tag" "#PaintKit_aq_p250_contour_Tag" + "style" "8" + "pattern" "workshop/coridium_p250_contour_blue" + "color0" "171 156 141" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "139 119 98" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongalbedoboost" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "427" + { + "name" "cu_fiveseven_banana" + "description_string" "#PaintKit_cu_fiveseven_banana" + "description_tag" "#PaintKit_cu_fiveseven_banana_Tag" + "style" "7" + "pattern" "workshop/FiveSeven_Banana" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.900000" + } + "428" + { + "name" "cu_galil_eco" + "description_string" "#PaintKit_cu_galil_eco" + "description_tag" "#PaintKit_cu_galil_eco_Tag" + "style" "7" + "pattern" "workshop/Galil_Eco" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.850000" + } + "429" + { + "name" "aq_famas_jinn" + "description_string" "#PaintKit_aq_famas_jinn" + "description_tag" "#PaintKit_aq_famas_jinn_Tag" + "style" "8" + "pattern" "workshop/jinn" + "use_normal" "1" + "normal" "workshop/jinn_normal" + "color0" "86 84 82" + "color1" "208 208 208" + "color2" "153 141 134" + "color3" "87 69 57" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongalbedoboost" "24" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "430" + { + "name" "cu_m4a1_hyper_beast" + "description_string" "#PaintKit_cu_m4a1_hyper_beast" + "description_tag" "#PaintKit_cu_m4a1_hyper_beast_Tag" + "style" "7" + "pattern" "workshop/M4_Hyper_beast" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "45" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "431" + { + "name" "cu_mag7_redhot" + "description_string" "#PaintKit_cu_mac10_redhot" + "description_tag" "#PaintKit_cu_mac10_redhot_tag" + "style" "7" + "pattern" "workshop/mag7_redhot_v2" + "pattern_scale" "1.000000" + "phongexponent" "21" + "phongintensity" "21" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "432" + { + "name" "am_negev_glory" + "description_string" "#PaintKit_am_awp_glory" + "description_tag" "#PaintKit_am_awp_glory_Tag" + "style" "5" + "pattern" "workshop/Wind_Alternate3" + "color0" "162 131 43" + "color1" "157 126 71" + "color2" "24 32 54 255" + "color3" "4 7 26" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.200000" + } + "433" + { + "name" "cu_mac10_neonrider" + "description_string" "#PaintKit_cu_mac10_neonrider" + "description_tag" "#PaintKit_cu_mac10_neonrider_Tag" + "style" "7" + "pattern" "workshop/mac10_neonrider" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "434" + { + "name" "cu_sawedoff_origami" + "description_string" "#PaintKit_cu_sawedoff_origami" + "description_tag" "#PaintKit_cu_sawedoff_origami_Tag" + "style" "7" + "pattern" "workshop/ori_sawed" + "pattern_scale" "1.000000" + "phongexponent" "250" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "435" + { + "name" "cu_cz75_precision" + "description_string" "#PaintKit_cu_cz75_precision" + "description_tag" "#PaintKit_cu_cz75_precision_Tag" + "style" "7" + "pattern" "workshop/Precision_cz75" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "436" + { + "name" "am_ump_racer" + "description_string" "#PaintKit_am_ump_racer" + "description_tag" "#PaintKit_am_ump_racer_Tag" + "style" "5" + "pattern" "workshop/ump_racer_rbg" + "color0" "198 176 137" + "color1" "203 203 203" + "color2" "44 44 44" + "color3" "171 59 57" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongalbedoboost" "1" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.250000" + "wear_remap_max" "0.350000" + } + "437" + { + "name" "am_aqua_flecks" + "description_string" "#PaintKit_am_copper_flecks" + "description_tag" "#PaintKit_am_aqua_flecks_Tag" + "style" "5" + "pattern" "noise" + "color0" "2 16 12" + "color1" "2 25 25" + "color2" "9 46 49" + "color3" "8 7 32" + "pattern_scale" "8.000000" + "phongexponent" "32" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "438" + { + "name" "cu_chronos_g3sg1" + "description_string" "#PaintKit_cu_chronos_g3sg1" + "description_tag" "#PaintKit_cu_chronos_g3sg1_Tag" + "style" "7" + "pattern" "chronos_g3sg1" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "439" + { + "name" "hy_hades" + "description_string" "#PaintKit_hy_hades" + "description_tag" "#PaintKit_hy_hades_Tag" + "style" "2" + "pattern" "hades" + "color0" "177 178 163" + "color1" "31 31 31" + "color2" "123 123 123" + "color3" "77 77 77" + "pattern_scale" "12.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "440" + { + "name" "hy_icarus" + "description_string" "#PaintKit_hy_icarus" + "description_tag" "#PaintKit_hy_icarus_Tag" + "style" "2" + "pattern" "icarus" + "color0" "4 9 31" + "color1" "0 0 8" + "color2" "0 63 89" + "color3" "14 195 198" + "pattern_scale" "1.400000" + "phongexponent" "255" + "phongintensity" "32" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "-0.500000" + "pattern_offset_y_end" "-0.500000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.100000" + } + "441" + { + "name" "cu_labyrinth" + "description_string" "#PaintKit_cu_labyrinth" + "description_tag" "#PaintKit_cu_labyrinth_Tag" + "style" "7" + "pattern" "labyrinth" + "pattern_scale" "1.210000" + "phongexponent" "80" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.490000" + "pattern_offset_y_end" "0.490000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.390000" + } + "442" + { + "name" "sp_labyrinth" + "description_string" "#PaintKit_sp_labyrinth1" + "description_tag" "#PaintKit_sp_labyrinth1_Tag" + "style" "3" + "pattern" "labyrinth_basic" + "color0" "8 7 60" + "color1" "18 100 83" + "color2" "12 78 133" + "color3" "24 13 114" + "pattern_scale" "0.770000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "443" + { + "name" "sp_labyrinth2" + "description_string" "#PaintKit_sp_labyrinth2" + "description_tag" "#PaintKit_sp_labyrinth2_Tag" + "style" "3" + "pattern" "labyrinth_basic" + "color0" "24 24 24" + "color1" "121 121 121" + "color2" "45 45 45" + "color3" "40 40 40" + "pattern_scale" "3.000000" + "phongexponent" "255" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.350000" + } + "444" + { + "name" "sp_labyrinth3" + "description_string" "#PaintKit_sp_labyrinth3" + "description_tag" "#PaintKit_sp_labyrinth3_Tag" + "style" "3" + "pattern" "labyrinth_basic" + "color0" "1 10 16" + "color1" "42 44 45" + "color2" "66 21 7" + "color3" "65 66 67" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "445" + { + "name" "an_red_m4a1s" + "description_string" "#PaintKit_an_red" + "description_tag" "#PaintKit_an_red_Tag" + "style" "5" + "pattern" "m4a1s_hotrod" + "color0" "48 2 2" + "color1" "60 3 3" + "color2" "17 17 17" + "color3" "59 59 59" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongalbedoboost" "100" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "446" + { + "name" "cu_medusa_awp" + "description_string" "#PaintKit_cu_medusa_awp" + "description_tag" "#PaintKit_cu_medusa_awp_Tag" + "style" "8" + "pattern" "medusa_awp" + "color0" "78 249 255" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "74 178 127" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongalbedoboost" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "447" + { + "name" "gs_mother_of_pearl_elite" + "description_string" "#PaintKit_gs_mother_of_pearl_elite" + "description_tag" "#PaintKit_gs_mother_of_pearl_elite_Tag" + "style" "9" + "pattern" "mother_of_pearl_elite" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "196 196 196" + "color3" "228 228 228" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "448" + { + "name" "aa_pandora" + "description_string" "#PaintKit_aa_pandora" + "description_tag" "#PaintKit_aa_pandora_Tag" + "style" "6" + "pattern" "pandora" + "color0" "4 4 22" + "color1" "11 66 119" + "color2" "49 21 72" + "color3" "170 170 170" + "pattern_scale" "2.500000" + "phongexponent" "255" + "phongalbedoboost" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + } + "449" + { + "name" "cu_poseidon" + "description_string" "#PaintKit_cu_poseidon" + "description_tag" "#PaintKit_cu_poseidon_Tag" + "style" "7" + "pattern" "poseidon_m4" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.330000" + } + "450" + { + "name" "hy_zodiac1" + "description_string" "#PaintKit_hy_zodiac1" + "description_tag" "#PaintKit_hy_zodiac1_Tag" + "style" "2" + "pattern" "zodiac" + "color0" "11 19 55" + "color1" "37 37 57" + "color2" "1 3 13" + "color3" "13 17 35" + "pattern_scale" "3.000000" + "phongexponent" "20" + "phongintensity" "4" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "451" + { + "name" "hy_zodiac2" + "description_string" "#PaintKit_hy_zodiac2" + "description_tag" "#PaintKit_hy_zodiac2_Tag" + "style" "2" + "pattern" "zodiac" + "color0" "11 19 55" + "color1" "0 9 10" + "color2" "43 29 108" + "color3" "13 17 35" + "pattern_scale" "2.000000" + "phongexponent" "64" + "phongintensity" "20" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "452" + { + "name" "hy_zodiac3" + "description_string" "#PaintKit_hy_zodiac3" + "description_tag" "#PaintKit_hy_zodiac3_Tag" + "style" "2" + "pattern" "zodiac" + "color0" "21 68 66" + "color1" "37 37 57" + "color2" "1 3 13" + "color3" "13 17 35" + "pattern_scale" "1.400000" + "phongexponent" "20" + "phongintensity" "4" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "453" + { + "name" "an_emerald" + "description_string" "#PaintKit_an_emerald" + "description_tag" "#PaintKit_an_emerald_bravo_Tag" + "wear_default" "0.060000" + "style" "4" + "color0" "5 61 34" + "color1" "5 61 34" + "color2" "1 1 1" + "color3" "1 1 1" + "phongexponent" "32" + "phongalbedoboost" "30" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "454" + { + "name" "so_khaki_green" + "description_string" "#PaintKit_so_khaki_green" + "description_tag" "#PaintKit_so_khaki_green_Tag" + "style" "2" + "pattern" "usp_solid" + "color0" "18 18 18" + "color1" "88 107 76" + "color2" "18 18 18" + "color3" "18 18 18" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "200" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "455" + { + "name" "cu_anime_aug" + "description_string" "#PaintKit_cu_anime_aug" + "description_tag" "#PaintKit_cu_anime_aug_Tag" + "style" "7" + "pattern" "anime_aug" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "180" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "456" + { + "name" "am_bamboo_jungle" + "description_string" "#PaintKit_am_bamboo_jungle" + "description_tag" "#PaintKit_am_bamboo_jungle_Tag" + "style" "5" + "pattern" "bamboo_jungle" + "color0" "223 227 213" + "color1" "143 19 19" + "color2" "32 31 28" + "color3" "86 107 34" + "pattern_scale" "1.400000" + "phongexponent" "40" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.730000" + "pattern_offset_x_end" "0.820000" + "pattern_offset_y_start" "0.340000" + "pattern_offset_y_end" "0.340000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "457" + { + "name" "hy_bamboo_jungle_ink" + "description_string" "#PaintKit_hy_bamboo_jungle_ink" + "description_tag" "#PaintKit_hy_bamboo_jungle_ink_Tag" + "style" "2" + "pattern" "bamboo_jungle" + "color0" "221 218 196" + "color1" "143 19 19" + "color2" "50 46 39" + "color3" "116 114 111" + "pattern_scale" "3.000000" + "phongexponent" "120" + "phongintensity" "160" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.550000" + "pattern_offset_x_end" "0.590000" + "pattern_offset_y_start" "0.180000" + "pattern_offset_y_end" "0.220000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "2.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "458" + { + "name" "hy_bamboo_jungle_black" + "description_string" "#PaintKit_hy_bamboo_jungle_black" + "description_tag" "#PaintKit_hy_bamboo_jungle_black_Tag" + "style" "2" + "pattern" "bamboo_jungle" + "color0" "21 22 25" + "color1" "143 19 19" + "color2" "33 30 26" + "color3" "55 54 51" + "pattern_scale" "2.000000" + "phongexponent" "40" + "phongintensity" "12" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.070000" + "pattern_offset_x_end" "0.200000" + "pattern_offset_y_start" "0.270000" + "pattern_offset_y_end" "0.360000" + "pattern_rotate_start" "270.000000" + "pattern_rotate_end" "270.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "459" + { + "name" "hy_bamboo_jungle" + "description_string" "#PaintKit_hy_bamboo_jungle" + "description_tag" "#PaintKit_hy_bamboo_jungle_Tag" + "style" "2" + "pattern" "bamboo_jungle" + "color0" "206 207 193" + "color1" "88 3 3" + "color2" "26 21 17" + "color3" "114 138 29" + "pattern_scale" "1.400000" + "phongexponent" "140" + "phongintensity" "140" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.550000" + "pattern_offset_x_end" "0.590000" + "pattern_offset_y_start" "0.400000" + "pattern_offset_y_end" "0.420000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "460" + { + "name" "am_geometric_steps" + "description_string" "#PaintKit_am_geometric_steps" + "description_tag" "#PaintKit_am_geometric_steps_Tag" + "style" "5" + "pattern" "geometric_steps" + "color0" "94 146 141" + "color1" "61 138 120" + "color2" "187 187 187" + "color3" "33 154 217" + "pattern_scale" "4.550000" + "phongexponent" "80" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "462" + { + "name" "hy_geometric_steps_green" + "description_string" "#PaintKit_hy_geometric_steps_green" + "description_tag" "#PaintKit_hy_geometric_steps_green_Tag" + "style" "2" + "pattern" "geometric_steps" + "color0" "221 203 203" + "color1" "255 85 81" + "color2" "49 49 49" + "color3" "99 181 51" + "pattern_scale" "3.500000" + "phongexponent" "100" + "phongintensity" "180" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + "dialog_config" "14,0,0,0" + } + "463" + { + "name" "hy_geometric_steps_yellow" + "description_string" "#PaintKit_hy_geometric_steps_yellow" + "description_tag" "#PaintKit_hy_geometric_steps_yellow_Tag" + "style" "2" + "pattern" "geometric_steps" + "color0" "60 65 65" + "color1" "244 129 118" + "color2" "241 188 26" + "color3" "207 203 175" + "pattern_scale" "5.000000" + "phongexponent" "200" + "phongintensity" "100" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "464" + { + "name" "hy_kimono_diamonds" + "description_string" "#PaintKit_hy_kimono_diamonds" + "description_tag" "#PaintKit_hy_kimono_diamonds_Tag" + "style" "2" + "pattern" "kimono_diamonds" + "color0" "182 230 28" + "color1" "184 181 157" + "color2" "120 116 99" + "color3" "201 211 167" + "pattern_scale" "4.500000" + "phongexponent" "120" + "phongintensity" "120" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "465" + { + "name" "hy_kimono_diamonds_orange" + "description_string" "#PaintKit_hy_kimono_diamonds_orange" + "description_tag" "#PaintKit_hy_kimono_diamonds_orange_Tag" + "style" "2" + "pattern" "kimono_diamonds" + "color0" "66 65 63" + "color1" "39 39 39" + "color2" "242 152 35" + "color3" "76 74 71" + "pattern_scale" "2.000000" + "phongexponent" "160" + "phongintensity" "80" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "466" + { + "name" "hy_kimono_diamonds_red" + "description_string" "#PaintKit_hy_kimono_diamonds_red" + "description_tag" "#PaintKit_hy_kimono_diamonds_red_Tag" + "style" "2" + "pattern" "kimono_diamonds" + "color0" "14 13 13" + "color1" "28 32 34" + "color2" "144 17 17" + "color3" "54 31 31" + "pattern_scale" "4.500000" + "phongexponent" "140" + "phongintensity" "100" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "467" + { + "name" "sp_kimono_diamonds" + "description_string" "#PaintKit_sp_kimono_diamonds" + "description_tag" "#PaintKit_sp_kimono_diamonds_Tag" + "style" "3" + "pattern" "kimono_diamonds" + "color0" "27 27 27" + "color1" "146 164 173" + "color2" "161 215 15" + "color3" "105 116 96" + "pattern_scale" "1.700000" + "phongexponent" "180" + "phongintensity" "80" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "468" + { + "name" "am_seastorm" + "description_string" "#PaintKit_am_seastorm" + "description_tag" "#PaintKit_am_seastorm_Tag" + "style" "5" + "pattern" "sea_storm" + "color0" "22 39 35" + "color1" "105 154 173" + "color2" "74 162 172" + "color3" "10 2 25" + "pattern_scale" "1.400000" + "phongexponent" "140" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "469" + { + "name" "am_seastorm_blood" + "description_string" "#PaintKit_am_seastorm_blood" + "description_tag" "#PaintKit_am_seastorm_blood_Tag" + "style" "5" + "pattern" "sea_storm_blood" + "color0" "56 6 6" + "color1" "143 43 8" + "color2" "188 97 65" + "color3" "7 0 0" + "pattern_scale" "1.600000" + "phongexponent" "160" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.450000" + "pattern_offset_x_end" "0.550000" + "pattern_offset_y_start" "0.500000" + "pattern_offset_y_end" "0.600000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "470" + { + "name" "am_seastorm_shojo" + "description_string" "#PaintKit_am_seastorm_blood" + "description_tag" "#PaintKit_am_seastorm_shojo_Tag" + "style" "5" + "pattern" "sea_storm_shojo" + "color0" "56 6 6" + "color1" "143 43 8" + "color2" "188 97 65" + "color3" "7 0 0" + "pattern_scale" "1.600000" + "phongexponent" "160" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.450000" + "pattern_offset_x_end" "0.550000" + "pattern_offset_y_start" "0.500000" + "pattern_offset_y_end" "0.600000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "471" + { + "name" "am_kimono_sunrise" + "description_string" "#PaintKit_am_kimono_sunrise" + "description_tag" "#PaintKit_am_kimono_sunrise_Tag" + "style" "5" + "pattern" "kimono_sunrise" + "color0" "254 236 116" + "color1" "163 119 55" + "color2" "134 146 148" + "color3" "64 42 17" + "pattern_scale" "1.500000" + "phongexponent" "220" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.140000" + "pattern_offset_x_end" "0.900000" + "pattern_offset_y_start" "0.230000" + "pattern_offset_y_end" "0.230000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "472" + { + "name" "so_keycolors" + "description_string" "#PaintKit_so_keycolors" + "description_tag" "#PaintKit_am_so_keycolors_Tag" + "style" "1" + "color0" "235 154 26" + "color1" "58 68 77" + "color2" "95 255 8" + "color3" "77 71 69" + "phongexponent" "64" + "phongintensity" "44" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "473" + { + "name" "so_aqua" + "description_string" "#PaintKit_so_aqua" + "description_tag" "#PaintKit_so_aqua_Tag" + "style" "1" + "color0" "128 64 64" + "color1" "20 30 34" + "color2" "92 146 145" + "color3" "161 158 129" + "phongexponent" "80" + "phongintensity" "200" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "474" + { + "name" "cu_ak47_courage_alt" + "description_string" "#PaintKit_cu_ak47_courage_alt" + "description_tag" "#PaintKit_cu_ak47_courage_alt_Tag" + "style" "7" + "pattern" "workshop/ak47_courage" + "pattern_scale" "1.000000" + "phongexponent" "88" + "phongintensity" "18" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "475" + { + "name" "cu_awp_hyper_beast" + "description_string" "#PaintKit_cu_m4a1_hyper_beast" + "description_tag" "#PaintKit_cu_m4a1_hyper_beast_Tag" + "style" "7" + "pattern" "workshop/awp_hyper_beast" + "pattern_scale" "1.000000" + "phongexponent" "190" + "phongintensity" "78" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "476" + { + "name" "cu_cz75a_chastizer" + "description_string" "#PaintKit_cu_cz75a_chastizer" + "description_tag" "#PaintKit_cu_cz75a_chastizer_Tag" + "style" "7" + "pattern" "workshop/cz75a_chastizer" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "477" + { + "name" "am_famas_dots" + "description_string" "#PaintKit_am_famas_dots" + "description_tag" "#PaintKit_am_famas_dots_Tag" + "style" "5" + "pattern" "workshop/dots" + "color0" "205 167 15" + "color1" "140 136 96" + "color2" "58 59 53" + "color3" "1 2 2" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "478" + { + "name" "cu_galilar_particles" + "description_string" "#PaintKit_cu_galilar_particles" + "description_tag" "#PaintKit_cu_galilar_particles_Tag" + "style" "7" + "pattern" "workshop/particles" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "479" + { + "name" "aq_glock18_flames_blue" + "description_string" "#PaintKit_aq_glock18_flames_blue" + "description_tag" "#PaintKit_aq_glock18_flames_blue_Tag" + "style" "8" + "pattern" "workshop/glock_flames_blue_green" + "color0" "127 156 106" + "color1" "112 129 179" + "color2" "137 146 90" + "color3" "119 132 219" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongalbedoboost" "75" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "480" + { + "name" "cu_m4a4_evil_daimyo" + "description_string" "#PaintKit_cu_m4a4_evil_daimyo" + "description_tag" "#PaintKit_cu_m4a4_evil_daimyo_Tag" + "style" "7" + "pattern" "workshop/daimyo_evil_greyred" + "pattern_scale" "1.000000" + "phongexponent" "230" + "phongintensity" "18" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.520000" + } + "481" + { + "name" "cu_mp7_nemsis" + "description_string" "#PaintKit_cu_mp7_nemsis" + "description_tag" "#PaintKit_cu_mp7_nemsis_Tag" + "style" "7" + "pattern" "workshop/nemesis_mp7" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.320000" + } + "482" + { + "name" "am_mp9_nitrogen" + "description_string" "#PaintKit_am_mp9_nitrogen" + "description_tag" "#PaintKit_am_mp9_nitrogen_Tag" + "style" "5" + "pattern" "workshop/nitrogen_pattern" + "color0" "0 0 0" + "color1" "215 64 4" + "color2" "23 15 18" + "color3" "53 15 46" + "pattern_scale" "2.500000" + "phongexponent" "25" + "phongalbedoboost" "33" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "483" + { + "name" "cu_negev_annihilator" + "description_string" "#PaintKit_cu_negev_annihilator" + "description_tag" "#PaintKit_cu_negev_annihilator_Tag" + "style" "7" + "pattern" "workshop/negev_annihilator" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "48" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.140000" + "wear_remap_max" "0.650000" + } + "484" + { + "name" "cu_nova_ranger" + "description_string" "#PaintKit_cu_nova_ranger" + "description_tag" "#PaintKit_cu_nova_ranger_Tag" + "style" "7" + "pattern" "workshop/nova_ranger" + "pattern_scale" "1.000000" + "phongexponent" "20" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "485" + { + "name" "aq_p2000_boom" + "description_string" "#PaintKit_aq_p2000_boom" + "description_tag" "#PaintKit_aq_p2000_boom_Tag" + "style" "8" + "pattern" "workshop/p2000_boom" + "color0" "50 50 50" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "76 76 76" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongalbedoboost" "150" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "486" + { + "name" "cu_p90_mastery" + "description_string" "#PaintKit_cu_ak47_mastery" + "description_tag" "#PaintKit_cu_ak47_mastery_Tag" + "style" "7" + "pattern" "workshop/P90_mastery" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "487" + { + "name" "cu_sg553_cyrex" + "description_string" "#PaintKit_cu_cyrex" + "description_tag" "#PaintKit_cu_cyrex_tag" + "style" "7" + "pattern" "workshop/ssg_cyrex" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "3" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "488" + { + "name" "cu_ump45_uproar" + "description_string" "#PaintKit_cu_ump45_uproar" + "description_tag" "#PaintKit_cu_ump45_uproar_Tag" + "style" "7" + "pattern" "workshop/ump45_uproar" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "489" + { + "name" "cu_usp_progressiv" + "description_string" "#PaintKit_cu_usp_progressiv" + "description_tag" "#PaintKit_cu_usp_progressiv_Tag" + "style" "7" + "pattern" "workshop/usps_progressiv" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.460000" + } + "490" + { + "name" "cu_ak47_winter_sport" + "description_string" "#PaintKit_cu_ak47_winter_sport" + "description_tag" "#PaintKit_cu_ak47_winter_sport_Tag" + "style" "7" + "pattern" "workshop/ak47_winter_sport" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.870000" + } + "491" + { + "name" "cu_dualberretta_dragons" + "description_string" "#PaintKit_cu_dualberretta_dragons" + "description_tag" "#PaintKit_cu_dualberretta_dragons_Tag" + "style" "7" + "pattern" "workshop/dualberretta_dragons" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "492" + { + "name" "cu_famas_lenta" + "description_string" "#PaintKit_cu_famas_lenta" + "description_tag" "#PaintKit_cu_famas_lenta_Tag" + "style" "7" + "pattern" "workshop/famas_lenta" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "493" + { + "name" "gs_g3sg1_flux_purple" + "description_string" "#PaintKit_gs_g3sg1_flux_purple" + "description_tag" "#PaintKit_gs_g3sg1_flux_purple_Tag" + "style" "9" + "pattern" "workshop/g3sg1_flux_purple" + "color0" "255 255 255" + "color1" "97 97 120" + "color2" "255 255 255" + "color3" "56 28 8" + "pattern_scale" "1.000000" + "phongexponent" "10" + "phongintensity" "0" + "phongalbedoboost" "25" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + } + "494" + { + "name" "gs_galil_nightwing" + "description_string" "#PaintKit_gs_galil_nightwing" + "description_tag" "#PaintKit_gs_galil_nightwing_Tag" + "style" "9" + "pattern" "workshop/galil_nightwing" + "color0" "64 64 64" + "color1" "211 211 211" + "color2" "119 154 181" + "color3" "162 224 247" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "255" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + } + "495" + { + "name" "gs_glock18_wrathys" + "description_string" "#PaintKit_gs_glock18_wrathys" + "description_tag" "#PaintKit_gs_glock18_wrathys_Tag" + "style" "9" + "pattern" "workshop/glock18_wrathys" + "use_normal" "1" + "normal" "workshop/glock18_wrathys_normal" + "color0" "91 91 91" + "color1" "166 166 166" + "color2" "102 76 56" + "color3" "99 93 89" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "5" + "phongalbedoboost" "18" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "496" + { + "name" "gs_m249_nebula_crusader" + "description_string" "#PaintKit_gs_m249_nebula_crusader" + "description_tag" "#PaintKit_gs_m249_nebula_crusader_Tag" + "style" "9" + "pattern" "workshop/m249_nebula_crusader" + "color0" "0 255 174" + "color1" "217 210 199" + "color2" "255 189 111" + "color3" "102 255 221" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "12" + "phongalbedoboost" "32" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "497" + { + "name" "gs_m4a1s_snakebite_gold" + "description_string" "#PaintKit_gs_m4a1s_snakebite_gold" + "description_tag" "#PaintKit_gs_m4a1s_snakebite_gold_Tag" + "style" "9" + "pattern" "workshop/m4a1s_snakebite_gold" + "color0" "218 200 113" + "color1" "194 188 164" + "color2" "109 106 89" + "color3" "175 198 196" + "pattern_scale" "1.000000" + "phongexponent" "5" + "phongintensity" "0" + "phongalbedoboost" "2" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "498" + { + "name" "cu_mac10_alekhya_duo" + "description_string" "#PaintKit_cu_mac10_alekhya_duo" + "description_tag" "#PaintKit_cu_mac10_alekhya_duo_Tag" + "style" "7" + "pattern" "workshop/mac10_alekhya_duo" + "pattern_scale" "1.000000" + "phongexponent" "125" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "499" + { + "name" "cu_mag7_myrcene" + "description_string" "#PaintKit_cu_mag7_myrcene" + "description_tag" "#PaintKit_cu_mag7_myrcene_Tag" + "style" "7" + "pattern" "workshop/mag7_myrcene" + "pattern_scale" "1.000000" + "phongexponent" "10" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "500" + { + "name" "cu_mp7_classified" + "description_string" "#PaintKit_cu_mp7_classified" + "description_tag" "#PaintKit_cu_mp7_classified_Tag" + "style" "7" + "pattern" "workshop/mp7_classified" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.620000" + } + "501" + { + "name" "hy_p250_crackshot" + "description_string" "#PaintKit_hy_p250_crackshot" + "description_tag" "#PaintKit_hy_p250_crackshot_Tag" + "style" "2" + "pattern" "workshop/p250_crackshot" + "color0" "209 188 12" + "color1" "206 206 206" + "color2" "51 68 73" + "color3" "0 0 0" + "pattern_scale" "1.000000" + "phongexponent" "225" + "phongintensity" "110" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + } + "502" + { + "name" "gs_scar20_peacemaker03" + "description_string" "#PaintKit_gs_scar20_peacemaker03" + "description_tag" "#PaintKit_gs_scar20_peacemaker03_Tag" + "style" "9" + "pattern" "workshop/scar20_peacemaker03" + "color0" "200 198 180" + "color1" "170 170 170" + "color2" "75 60 33" + "color3" "169 169 169" + "pattern_scale" "1.000000" + "phongexponent" "20" + "phongintensity" "5" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "503" + { + "name" "cu_ssg08_technicality" + "description_string" "#PaintKit_cu_ssg08_technicality" + "description_tag" "#PaintKit_cu_ssg08_technicality_Tag" + "style" "7" + "pattern" "workshop/ssg08_technicality" + "use_normal" "1" + "normal" "workshop/ssg08_technicality_n" + "pattern_scale" "1.000000" + "phongexponent" "66" + "phongintensity" "96" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.640000" + } + "504" + { + "name" "cu_usp_kill_confirmed" + "description_string" "#PaintKit_cu_usp_kill_confirmed" + "description_tag" "#PaintKit_cu_usp_kill_confirmed_Tag" + "style" "7" + "pattern" "workshop/usp_kill_confirmed" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "505" + { + "name" "aq_xm1014_scumbria" + "description_string" "#PaintKit_aq_xm1014_scumbria" + "description_tag" "#PaintKit_aq_xm1014_scumbria_Tag" + "style" "8" + "pattern" "workshop/xm1014_scumbria" + "color0" "193 208 214" + "color1" "163 163 163" + "color2" "168 189 189" + "color3" "151 161 157" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongalbedoboost" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "506" + { + "name" "cu_ak47_point_disarray" + "description_string" "#PaintKit_cu_ak47_point_disarray" + "description_tag" "#PaintKit_cu_ak47_point_disarray_Tag" + "style" "7" + "pattern" "workshop/ak47_point_disarray" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.670000" + } + "507" + { + "name" "am_aug_jumble" + "description_string" "#PaintKit_am_aug_jumble" + "description_tag" "#PaintKit_am_aug_jumble_Tag" + "style" "5" + "pattern" "workshop/jumble" + "color0" "17 17 17" + "color1" "60 60 60" + "color2" "33 33 33" + "color3" "0 138 133" + "pattern_scale" "5.000000" + "phongexponent" "255" + "phongalbedoboost" "100" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "508" + { + "name" "cu_bizon_noxious" + "description_string" "#PaintKit_cu_bizon_noxious" + "description_tag" "#PaintKit_cu_bizon_noxious_Tag" + "style" "7" + "pattern" "workshop/bizon_noxious" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "509" + { + "name" "aq_deagle_corinthian" + "description_string" "#PaintKit_aq_deagle_corinthian" + "description_tag" "#PaintKit_aq_deagle_corinthian_Tag" + "style" "8" + "pattern" "workshop/deagle_corinthian" + "color0" "128 128 128" + "color1" "150 150 150" + "color2" "64 40 40" + "color3" "108 108 108" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongalbedoboost" "150" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.440000" + } + "510" + { + "name" "cu_fiveseven_retrobution" + "description_string" "#PaintKit_cu_fiveseven_retrobution" + "description_tag" "#PaintKit_cu_fiveseven_retrobution_Tag" + "style" "7" + "pattern" "workshop/fiveseven_retrobution" + "pattern_scale" "1.000000" + "phongexponent" "140" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "511" + { + "name" "cu_g3sg1_executioner" + "description_string" "#PaintKit_cu_g3sg1_executioner" + "description_tag" "#PaintKit_cu_g3sg1_executioner_Tag" + "style" "7" + "pattern" "workshop/g3sg1_executioner" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "16" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.140000" + "wear_remap_max" "0.850000" + } + "512" + { + "name" "gs_m4a4_royal_squire" + "description_string" "#PaintKit_gs_m4a4_royal_squire" + "description_tag" "#PaintKit_gs_m4a4_royal_squire_Tag" + "style" "9" + "pattern" "workshop/m4a4_royal_squire" + "use_normal" "1" + "normal" "workshop/m4a4_royal_squire_normal" + "color0" "136 118 81" + "color1" "221 178 128" + "color2" "111 102 87" + "color3" "125 112 89" + "pattern_scale" "1.000000" + "phongexponent" "250" + "phongintensity" "30" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "514" + { + "name" "cu_negev_impact" + "description_string" "#PaintKit_cu_negev_impact" + "description_tag" "#PaintKit_cu_negev_impact_Tag" + "style" "7" + "pattern" "workshop/negev_impact" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "515" + { + "name" "am_p2000_imperial_red" + "description_string" "#PaintKit_am_p2000_imperial_red" + "description_tag" "#PaintKit_am_p2000_imperial_red_Tag" + "style" "5" + "pattern" "workshop/p2000_imperial_red" + "color0" "29 29 29" + "color1" "185 142 40" + "color2" "39 3 6" + "color3" "146 107 25" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" + } + "516" + { + "name" "cu_p90_shapewood" + "description_string" "#PaintKit_cu_p90_shapewood" + "description_tag" "#PaintKit_cu_p90_shapewood_Tag" + "style" "7" + "pattern" "workshop/p90_shapewood" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "517" + { + "name" "gs_sawedoff_necromancer" + "description_string" "#PaintKit_gs_sawedoff_necromancer" + "description_tag" "#PaintKit_gs_sawedoff_necromancer_Tag" + "style" "9" + "pattern" "workshop/sawedoff_necromancer" + "color0" "84 127 123" + "color1" "232 231 231" + "color2" "144 189 178" + "color3" "146 214 215" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "25" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "518" + { + "name" "hy_scar20_jungler" + "description_string" "#PaintKit_hy_scar20_jungler" + "description_tag" "#PaintKit_hy_scar20_jungler_Tag" + "style" "2" + "pattern" "workshop/jungler" + "color0" "173 197 141" + "color1" "253 255 54" + "color2" "28 32 25" + "color3" "50 64 46" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "120" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "519" + { + "name" "gs_sg553_tiger_moth" + "description_string" "#PaintKit_gs_sg553_tiger_moth" + "description_tag" "#PaintKit_gs_sg553_tiger_moth_Tag" + "style" "9" + "pattern" "workshop/sg553_tigermoth" + "color0" "84 85 89" + "color1" "208 206 206" + "color2" "102 102 102" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "230" + "phongintensity" "45" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "520" + { + "name" "cu_tec9_avalanche" + "description_string" "#PaintKit_cu_tec9_avalanche" + "description_tag" "#PaintKit_cu_tec9_avalanche_Tag" + "style" "7" + "pattern" "workshop/tec9_avalanche" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "521" + { + "name" "aq_xm1014_hot_rod" + "description_string" "#PaintKit_aq_xm1014_hot_rod" + "description_tag" "#PaintKit_aq_xm1014_hot_rod_Tag" + "style" "8" + "pattern" "workshop/xm1014_flames_yellow" + "color0" "202 202 202" + "color1" "166 166 166" + "color2" "120 19 19" + "color3" "0 50 237" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongalbedoboost" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "522" + { + "name" "aa_fade_revolver" + "description_string" "#PaintKit_aa_fade" + "description_tag" "#PaintKit_aa_fade_Tag" + "pattern" "fade" + "wear_default" "0.200000" + "style" "6" + "color0" "44 41 39" + "color1" "84 52 14" + "color2" "71 18 28" + "color3" "28 31 57" + "phongalbedoboost" "80" + "phongexponent" "34" + "pattern_scale" "1" + "pattern_offset_x_start" "-0.700000" + "pattern_offset_x_end" "-0.700000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "-55" + "pattern_rotate_end" "-65" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "523" + { + "name" "aa_fade_metallic_revolver" + "description_string" "#PaintKit_aa_fade" + "description_tag" "#PaintKit_aa_fade_metallic_Tag" + "style" "6" + "pattern" "fade" + "color0" "19 19 19" + "color1" "36 42 29" + "color2" "67 33 15" + "color3" "113 94 56" + "phongalbedoboost" "80" + "phongexponent" "34" + "pattern_scale" "1" + "pattern_offset_x_start" "-0.700000" + "pattern_offset_x_end" "-0.700000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "-55" + "pattern_rotate_end" "-65" + "ignore_weapon_size_scale" "1" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "524" + { + "name" "gs_ak47_supercharged" + "description_string" "#PaintKit_gs_ak47_supercharged" + "description_tag" "#PaintKit_gs_ak47_supercharged_Tag" + "style" "9" + "pattern" "workshop/ak47_supercharged" + "use_normal" "1" + "normal" "workshop/ak47_supercharged_normal" + "color0" "93 73 57" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "79 79 79" + "pattern_scale" "1.000000" + "phongexponent" "125" + "phongintensity" "125" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "525" + { + "name" "cu_awp_mastery" + "description_string" "#PaintKit_cu_awp_mastery" + "description_tag" "#PaintKit_cu_ak47_mastery_Tag" + "style" "7" + "pattern" "workshop/awp_mastery" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "view_model_exponent_override_size" "1024" + } + "526" + { + "name" "cu_bizon_citizen" + "description_string" "#PaintKit_cu_bizon_citizen" + "description_tag" "#PaintKit_cu_bizon_citizen_Tag" + "style" "7" + "pattern" "workshop/bizon_citizen" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "527" + { + "name" "aq_deserteagle_kumichodragon" + "description_string" "#PaintKit_aq_deserteagle_kumichodragon" + "description_tag" "#PaintKit_aq_deserteagle_kumichodragon_Tag" + "style" "8" + "pattern" "workshop/deserteagle_kumichodragon" + "color0" "60 54 44" + "color1" "184 204 205" + "color2" "96 85 56" + "color3" "35 25 12" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongalbedoboost" "95" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.760000" + } + "528" + { + "name" "aq_dualberettas_cartel" + "description_string" "#PaintKit_aq_dualberettas_cartel" + "description_tag" "#PaintKit_aq_p250_cartel_Tag" + "style" "8" + "pattern" "workshop/dualberettas_cartel" + "normal" "workshop/dual_berettas_cartel_normal" + "use_normal" "1" + "color0" "135 135 135" + "color1" "121 121 121" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongalbedoboost" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "529" + { + "name" "aq_famas_contour" + "description_string" "#PaintKit_aq_famas_contour" + "description_tag" "#PaintKit_aq_p250_contour_Tag" + "style" "8" + "pattern" "workshop/famas_contour" + "color0" "138 124 120" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "119 104 104" + "pattern_scale" "1.000000" + "phongexponent" "135" + "phongalbedoboost" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "530" + { + "name" "cu_fiveseven_augmented" + "description_string" "#PaintKit_cu_fiveseven_augmented" + "description_tag" "#PaintKit_cu_fiveseven_augmented_Tag" + "style" "7" + "pattern" "workshop/fiveseven_augmented" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.610000" + } + "532" + { + "name" "gs_glock18_award" + "description_string" "#PaintKit_gs_glock18_award" + "description_tag" "#PaintKit_gs_glock18_award_Tag" + "style" "9" + "pattern" "workshop/glock18_award" + "use_normal" "1" + "normal" "workshop/glock18_award_normal" + "color0" "128 128 128 255" + "color1" "202 202 202" + "color2" "117 117 117" + "color3" "131 131 131" + "pattern_scale" "1.000000" + "phongexponent" "250" + "phongintensity" "20" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "533" + { + "name" "gs_m4a4_pioneer" + "description_string" "#PaintKit_gs_m4a4_pioneer" + "description_tag" "#PaintKit_gs_m4a4_pioneer_Tag" + "style" "9" + "pattern" "workshop/m4a4_pioneer" + "use_normal" "1" + "normal" "workshop/m4a4_pioneer_n" + "color0" "171 171 171" + "color1" "159 159 159" + "color2" "81 70 53" + "color3" "78 39 26" + "pattern_scale" "1.000000" + "phongexponent" "64" + "phongintensity" "96" + "phongalbedoboost" "66" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.640000" + } + "534" + { + "name" "am_mac10_electricity" + "description_string" "#PaintKit_am_mac10_electricity" + "description_tag" "#PaintKit_am_mac10_electricity_Tag" + "style" "5" + "pattern" "workshop/mac10_electricity" + "color0" "27 81 236" + "color1" "66 122 201" + "color2" "0 0 0" + "color3" "0 0 0" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "535" + { + "name" "gs_mag7_praetorian" + "description_string" "#PaintKit_gs_mag7_praetorian" + "description_tag" "#PaintKit_gs_mag7_praetorian_Tag" + "style" "9" + "pattern" "workshop/mag7_praetorian" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "190" + "phongintensity" "180" + "phongalbedoboost" "90" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "536" + { + "name" "sp_mp7_impire" + "description_string" "#PaintKit_sp_mp7_impire" + "description_tag" "#PaintKit_sp_mp7_impire_Tag" + "style" "3" + "pattern" "workshop/mp9_impire" + "color0" "35 13 13" + "color1" "182 170 170" + "color2" "242 255 30" + "color3" "183 255 153" + "pattern_scale" "2.500000" + "phongexponent" "30" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "157.000000" + "pattern_rotate_end" "157.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "537" + { + "name" "cu_nova_hyperbeast" + "description_string" "#PaintKit_cu_nova_hyperbeast" + "description_tag" "#PaintKit_cu_m4a1_hyper_beast_Tag" + "style" "7" + "pattern" "workshop/nova_hyperbeast" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "55" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "538" + { + "name" "cu_ssg08_necropos" + "description_string" "#PaintKit_cu_ssg08_necropos" + "description_tag" "#PaintKit_cu_ssg08_necropos_Tag" + "style" "7" + "pattern" "workshop/ssg08_necropos" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "539" + { + "name" "gs_tec9_jambiya" + "description_string" "#PaintKit_gs_tec9_jambiya" + "description_tag" "#PaintKit_gs_tec9_jambiya_Tag" + "style" "9" + "pattern" "workshop/tec9_jambiya" + "color0" "99 96 92" + "color1" "140 135 130" + "color2" "92 92 92" + "color3" "167 150 138" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "10" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "540" + { + "name" "gs_usp_voltage" + "description_string" "#PaintKit_gs_usp_voltage" + "description_tag" "#PaintKit_gs_usp_voltage_Tag" + "style" "9" + "pattern" "workshop/usp_voltage" + "use_normal" "1" + "normal" "workshop/usp_voltage_normal" + "color0" "151 159 163" + "color1" "189 189 189" + "color2" "152 159 163" + "color3" "153 174 174" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "255" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "617" + { + "name" "am_blackpearl_marbleized_b" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke" + "color0" "16 67 131 255" + "color1" "42 57 8 255" + "color2" "11 14 27" + "color3" "19 5 11" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "618" + { + "name" "am_doppler_phase2_b" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "11 14 27 255" + "color1" "99 9 36 255" + "color2" "30 12 17" + "color3" "99 9 36 255" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "619" + { + "name" "am_sapphire_marbleized_b" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "34 23 117 255" + "color1" "10 1 15 255" + "color2" "1 8 17" + "color3" "8 2 22 255" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "620" + { + "name" "cu_purple_huntsman" + "description_string" "#PaintKit_so_purple" + "description_tag" "#PaintKit_so_purple_Tag" + "style" "7" + "pattern" "knife_tactical_purple" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + } + "621" + { + "name" "so_purple_falchion" + "description_string" "#PaintKit_so_purple" + "description_tag" "#PaintKit_so_purple_Tag" + "style" "1" + "color0" "56 15 78 255" + "color1" "34 34 34 255" + "color2" "56 15 78 255" + "color3" "56 15 78" + "phongexponent" "16" + "phongintensity" "10" + "only_first_material" "0" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + } + "10006" + { + "name" "bloodhound_black_silver" + "description_string" "#PaintKit_bloodhound_black_silver" + "description_tag" "#PaintKit_bloodhound_black_silver_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_black_silver.vmt" + } + "10007" + { + "name" "bloodhound_snakeskin_brass" + "description_string" "#PaintKit_bloodhound_snakeskin_brass" + "description_tag" "#PaintKit_bloodhound_snakeskin_brass_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_snakeskin_brass.vmt" + } + "10008" + { + "name" "bloodhound_metallic" + "description_string" "#PaintKit_bloodhound_metallic" + "description_tag" "#PaintKit_bloodhound_metallic_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_metallic.vmt" + } + "10009" + { + "name" "handwrap_leathery" + "description_string" "#PaintKit_handwrap_leathery" + "description_tag" "#PaintKit_handwrap_leathery_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_brown_beige.vmt" + } + "10010" + { + "name" "handwrap_camo_grey" + "description_string" "#PaintKit_handwrap_camo_grey" + "description_tag" "#PaintKit_handwrap_camo_grey_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_fabric_grey_camo_blob.vmt" + } + "10013" + { + "name" "slick_black" + "description_string" "#PaintKit_slick_black" + "description_tag" "#PaintKit_slick_black_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_black.vmt" + } + "10015" + { + "name" "slick_military" + "description_string" "#PaintKit_slick_military" + "description_tag" "#PaintKit_slick_military_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_military.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_no_cross" + } + } + "10016" + { + "name" "slick_red" + "description_string" "#PaintKit_slick_red" + "description_tag" "#PaintKit_slick_red_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_red.vmt" + } + "10018" + { + "name" "sporty_light_blue" + "description_string" "#PaintKit_sporty_light_blue" + "description_tag" "#PaintKit_sporty_light_blue_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_lightblue.vmt" + } + "10019" + { + "name" "sporty_military" + "description_string" "#PaintKit_sporty_military" + "description_tag" "#PaintKit_sporty_military_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_military.vmt" + } + "10021" + { + "name" "handwrap_red_slaughter" + "description_string" "#PaintKit_handwrap_red_slaughter" + "description_tag" "#PaintKit_handwrap_red_slaughter_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_fabric_red_slaughter.vmt" + } + "10024" + { + "name" "motorcycle_basic_black" + "description_string" "#PaintKit_motorcycle_basic_black" + "description_tag" "#PaintKit_motorcycle_basic_black_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_basic_black.vmt" + } + "10026" + { + "name" "motorcycle_mint_triangle" + "description_string" "#PaintKit_motorcycle_mint_triangle" + "description_tag" "#PaintKit_motorcycle_mint_triangle_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_mint_triangle.vmt" + } + "10027" + { + "name" "motorcycle_mono_boom" + "description_string" "#PaintKit_motorcycle_mono_boom" + "description_tag" "#PaintKit_motorcycle_mono_boom_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_mono_boom.vmt" + } + "10028" + { + "name" "motorcycle_triangle_blue" + "description_string" "#PaintKit_motorcycle_triangle_blue" + "description_tag" "#PaintKit_motorcycle_triangle_blue_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_triangle_blue.vmt" + } + "10030" + { + "name" "specialist_ddpat_green_camo" + "description_string" "#PaintKit_specialist_ddpat_green_camo" + "description_tag" "#PaintKit_specialist_ddpat_green_camo_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_ddpat_dense_green_brown.vmt" + } + "10033" + { + "name" "specialist_kimono_diamonds_red" + "description_string" "#PaintKit_specialist_kimono_diamonds_red" + "description_tag" "#PaintKit_specialist_kimono_diamonds_red_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_kimono_diamonds_black_red.vmt" + } + "10034" + { + "name" "specialist_emerald_web" + "description_string" "#PaintKit_specialist_emerald_web" + "description_tag" "#PaintKit_specialist_emerald_web_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_webs_green.vmt" + } + "10035" + { + "name" "specialist_orange_white" + "description_string" "#PaintKit_specialist_white_orange_grey" + "description_tag" "#PaintKit_specialist_white_orange_grey_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_white_orange_grey.vmt" + } + "10036" + { + "name" "handwrap_fabric_orange_camo" + "description_string" "#PaintKit_handwrap_fabric_orange_camo" + "description_tag" "#PaintKit_handwrap_fabric_orange_camo_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_fabric_orange_camo.vmt" + } + "10037" + { + "name" "sporty_purple" + "description_string" "#PaintKit_sporty_purple" + "description_tag" "#PaintKit_sporty_purple_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_purple.vmt" + } + "10038" + { + "name" "sporty_green" + "description_string" "#PaintKit_sporty_green" + "description_tag" "#PaintKit_sporty_green_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_green.vmt" + } + "10039" + { + "name" "bloodhound_guerrilla" + "description_string" "#PaintKit_bloodhound_guerrilla" + "description_tag" "#PaintKit_bloodhound_guerrilla_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_guerrilla.vmt" + } + "10040" + { + "name" "slick_snakeskin_yellow" + "description_string" "#PaintKit_slick_snakeskin_yellow" + "description_tag" "#PaintKit_slick_snakeskin_yellow_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_snakeskin_yellow.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_no_cross" + } + } + "10041" + { + "name" "slick_snakeskin_white" + "description_string" "#PaintKit_slick_snakeskin_white" + "description_tag" "#PaintKit_slick_snakeskin_white_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_snakeskin_white.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_no_cross" + } + } + "10042" + { + "name" "slick_plaid_purple" + "description_string" "#PaintKit_slick_plaid_purple" + "description_tag" "#PaintKit_slick_plaid_purple_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_plaid_purple.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_no_cross" + } + } + "10043" + { + "name" "slick_stitched_black_orange" + "description_string" "#PaintKit_slick_stitched_black_orange" + "description_tag" "#PaintKit_slick_stitched_black_orange_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_stitched_black_orange.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_stitches" + } + } + "10044" + { + "name" "slick_stitched_green_grey" + "description_string" "#PaintKit_slick_slick_stitched_green_grey" + "description_tag" "#PaintKit_slick_slick_stitched_green_grey_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_stitched_green_grey.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_stitches" + } + } + "10045" + { + "name" "sporty_poison_frog_blue_white" + "description_string" "#PaintKit_sporty_poison_frog_blue_white" + "description_tag" "#PaintKit_sporty_poison_frog_blue_white_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_poison_frog_blue_white.vmt" + } + "10046" + { + "name" "sporty_poison_frog_red_green" + "description_string" "#PaintKit_sporty_poison_frog_red_green" + "description_tag" "#PaintKit_sporty_poison_frog_red_green_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_poison_frog_red_green.vmt" + } + "10047" + { + "name" "sporty_black_webbing_yellow" + "description_string" "#PaintKit_sporty_black_webbing_yellow" + "description_tag" "#PaintKit_sporty_black_webbing_yellow_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_black_webbing_yellow.vmt" + } + "10048" + { + "name" "sporty_blue_pink" + "description_string" "#PaintKit_sporty_blue_pink" + "description_tag" "#PaintKit_sporty_blue_pink_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_blue_pink.vmt" + } + "10049" + { + "name" "motorcycle_choco_boom" + "description_string" "#PaintKit_motorcycle_choco_boom" + "description_tag" "#PaintKit_motorcycle_choco_boom_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_choco_boom.vmt" + } + "10050" + { + "name" "motorcycle_basic_green_orange" + "description_string" "#PaintKit_motorcycle_basic_green_orange" + "description_tag" "#PaintKit_motorcycle_basic_green_orange_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_basic_green_orange.vmt" + } + "10051" + { + "name" "motorcycle_yellow_camo" + "description_string" "#PaintKit_motorcycle_yellow_camo" + "description_tag" "#PaintKit_motorcycle_yellow_camo_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_yellow_camo.vmt" + } + "10052" + { + "name" "motorcycle_trigrid_blue" + "description_string" "#PaintKit_motorcycle_trigrid_blue" + "description_tag" "#PaintKit_motorcycle_trigrid_blue_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_trigrid_blue.vmt" + } + "10053" + { + "name" "handwrap_leathery_fabric_blue_skulls" + "description_string" "#PaintKit_handwrap_leathery_fabric_blue_skulls" + "description_tag" "#PaintKit_handwrap_leathery_fabric_blue_skulls_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_fabric_blue_skulls.vmt" + } + "10054" + { + "name" "handwrap_leathery_fabric_geometric_blue" + "description_string" "#PaintKit_handwrap_leathery_fabric_geometric_blue" + "description_tag" "#PaintKit_handwrap_leathery_fabric_geometric_blue_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_fabric_geometric_blue.vmt" + } + "10055" + { + "name" "handwrap_leathery_ducttape" + "description_string" "#PaintKit_handwrap_leathery_ducttape" + "description_tag" "#PaintKit_handwrap_leathery_ducttape_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_ducttape.vmt" + "vmt_overrides" + { + "$envmap" "env_cubemap" + "$envmaplightscale" "0.500000" + "$basealphaenvmask" "1" + "$fresnelrangestexture" "models/weapons/customization/materials/material_fresnel" + "$phongalbedoboost" "7" + "$envmaplightscaleminmax" "[-0.05 1.0]" + } + } + "10056" + { + "name" "handwrap_leathery_fabric_green_camo" + "description_string" "#PaintKit_handwrap_leathery_fabric_green_camo" + "description_tag" "#PaintKit_handwrap_leathery_fabric_green_camo_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_fabric_green_camo.vmt" + } + "10057" + { + "name" "bloodhound_hydra_black_green" + "description_string" "#PaintKit_bloodhound_hydra_black_green" + "description_tag" "#PaintKit_bloodhound_hydra_black_green_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_hydra_black_green.vmt" + } + "10058" + { + "name" "bloodhound_hydra_green_leather_mesh_brass" + "description_string" "#PaintKit_bloodhound_hydra_green_leather_mesh_brass" + "description_tag" "#PaintKit_bloodhound_hydra_green_leather_mesh_brass_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_hydra_green_leather_mesh_brass.vmt" + } + "10059" + { + "name" "bloodhound_hydra_snakeskin_brass" + "description_string" "#PaintKit_bloodhound_hydra_snakeskin_brass" + "description_tag" "#PaintKit_bloodhound_hydra_snakeskin_brass_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_hydra_snakeskin_brass.vmt" + } + "10060" + { + "name" "bloodhound_hydra_case_hardened" + "description_string" "#PaintKit_bloodhound_hydra_case_hardened" + "description_tag" "#PaintKit_bloodhound_hydra_case_hardened_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/bloodhound_hydra_case_hardened.vmt" + } + "10061" + { + "name" "specialist_webs_red" + "description_string" "#PaintKit_specialist_webs_red" + "description_tag" "#PaintKit_specialist_webs_red_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_webs_red.vmt" + } + "10062" + { + "name" "specialist_forest_brown" + "description_string" "#PaintKit_specialist_forest_brown" + "description_tag" "#PaintKit_specialist_forest_brown_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_forest_brown.vmt" + } + "10063" + { + "name" "specialist_fade" + "description_string" "#PaintKit_specialist_fade" + "description_tag" "#PaintKit_specialist_fade_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_fade.vmt" + "vmt_overrides" + { + "$phongalbedoboost" "10" + } + } + "10064" + { + "name" "specialist_winterhex" + "description_string" "#PaintKit_specialist_winterhex" + "description_tag" "#PaintKit_specialist_winterhex_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_winterhex.vmt" + } + "10065" + { + "name" "specialist_marble_fade" + "description_string" "#PaintKit_specialist_marble_fade" + "description_tag" "#PaintKit_specialist_marble_fade_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_marble_fade.vmt" + "vmt_overrides" + { + "$phongalbedoboost" "10" + } + } + "10066" + { + "name" "specialist_ricksaw_camo" + "description_string" "#PaintKit_specialist_ricksaw_camo" + "description_tag" "#PaintKit_specialist_ricksaw_camo_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_ricksaw_camo.vmt" + } + "10067" + { + "name" "specialist_tiger_orange" + "description_string" "#PaintKit_specialist_tiger_orange" + "description_tag" "#PaintKit_specialist_tiger_orange_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_tiger_orange.vmt" + } + "10068" + { + "name" "specialist_fbi" + "description_string" "#PaintKit_specialist_fbi" + "description_tag" "#PaintKit_specialist_fbi_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/specialist_fbi.vmt" + } + "10069" + { + "name" "slick_rezan" + "description_string" "#PaintKit_slick_rezan" + "description_tag" "#PaintKit_slick_rezan_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_rezan.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_stitches" + } + } + "10070" + { + "name" "slick_jaguar_white" + "description_string" "#PaintKit_slick_jaguar_white" + "description_tag" "#PaintKit_slick_jaguar_white_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_jaguar_white.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_no_cross" + "$masks2" "models/weapons/customization/glove_slick/fur_aniso_masks2" + "$anisotropyamount" "0.800000" + "$phongwarptexture" "models/weapons/customization/materials/material_specwarp" + "$fresnelrangestexture" "models/weapons/customization/materials/material_fresnel" + } + } + "10071" + { + "name" "slick_jaguar_yellow" + "description_string" "#PaintKit_slick_jaguar_yellow" + "description_tag" "#PaintKit_slick_jaguar_yellow_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_jaguar_yellow.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_no_cross" + "$masks2" "models/weapons/customization/glove_slick/fur_aniso_masks2" + "$anisotropyamount" "0.800000" + "$phongwarptexture" "models/weapons/customization/materials/material_specwarp" + "$fresnelrangestexture" "models/weapons/customization/materials/material_fresnel" + } + } + "10072" + { + "name" "slick_stitched_black_white" + "description_string" "#PaintKit_slick_stitched_black_white" + "description_tag" "#PaintKit_slick_stitched_black_white_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/slick_stitched_black_white.vmt" + "vmt_overrides" + { + "$bumpmap" "models/weapons/customization/glove_slick/normal_stitches" + } + } + "10073" + { + "name" "sporty_slingshot" + "description_string" "#PaintKit_sporty_slingshot" + "description_tag" "#PaintKit_sporty_slingshot_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_slingshot.vmt" + } + "10074" + { + "name" "sporty_hunter" + "description_string" "#PaintKit_sporty_hunter" + "description_tag" "#PaintKit_sporty_hunter_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_hunter.vmt" + } + "10075" + { + "name" "sporty_houndstooth_red" + "description_string" "#PaintKit_sporty_houndstooth_red" + "description_tag" "#PaintKit_sporty_houndstooth_red_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_houndstooth_red.vmt" + } + "10076" + { + "name" "sporty_jaguar" + "description_string" "#PaintKit_sporty_jaguar" + "description_tag" "#PaintKit_sporty_jaguar_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/sporty_jaguar.vmt" + "vmt_overrides" + { + "$masks2" "models/weapons/customization/glove_sporty/fur_aniso_masks2" + "$masks1" "models/weapons/customization/glove_sporty/glove_sporty_fur_masks1" + "$anisotropyamount" "0.800000" + "$phongwarptexture" "models/weapons/customization/materials/material_specwarp" + "$fresnelrangestexture" "models/weapons/customization/materials/material_fresnel" + "$rimlightexponent" "5" + } + } + "10077" + { + "name" "motorcycle_checker_flag_blue_green" + "description_string" "#PaintKit_motorcycle_checker_flag_blue_green" + "description_tag" "#PaintKit_motorcycle_checker_flag_blue_green_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_checker_flag_blue_green.vmt" + } + "10078" + { + "name" "motorcycle_smoke" + "description_string" "#PaintKit_motorcycle_smoke" + "description_tag" "#PaintKit_motorcycle_smoke_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_smoke.vmt" + } + "10079" + { + "name" "motorcycle_carbonfiber_red" + "description_string" "#PaintKit_motorcycle_carbonfiber_red" + "description_tag" "#PaintKit_motorcycle_carbonfiber_red_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_carbonfiber_red.vmt" + "vmt_overrides" + { + "$phongalbedoboost" "10" + } + } + "10080" + { + "name" "motorcycle_commando_ksk" + "description_string" "#PaintKit_motorcycle_commando_ksk" + "description_tag" "#PaintKit_motorcycle_commando_ksk_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/motorcycle_commando_ksk.vmt" + } + "10081" + { + "name" "handwrap_fabric_houndstooth_orange" + "description_string" "#PaintKit_handwrap_fabric_houndstooth_orange" + "description_tag" "#PaintKit_handwrap_fabric_houndstooth_orange_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_fabric_houndstooth_orange.vmt" + } + "10082" + { + "name" "handwrap_leathery_fabric_giraffe" + "description_string" "#PaintKit_handwrap_leathery_fabric_giraffe" + "description_tag" "#PaintKit_handwrap_leathery_fabric_giraffe_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_fabric_giraffe.vmt" + } + "10083" + { + "name" "handwrap_leathery_snakeskin_orange" + "description_string" "#PaintKit_handwrap_leathery_snakeskin_orange" + "description_tag" "#PaintKit_handwrap_leathery_snakeskin_orange_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_snakeskin_orange.vmt" + } + "10084" + { + "name" "handwrap_leathery_caution" + "description_string" "#PaintKit_handwrap_leathery_caution" + "description_tag" "#PaintKit_handwrap_leathery_caution_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/handwrap_leathery_caution.vmt" + "vmt_overrides" + { + "$envmap" "env_cubemap" + "$envmaplightscale" "0.500000" + "$basealphaenvmask" "1" + "$fresnelrangestexture" "models/weapons/customization/materials/material_fresnel" + "$phongalbedoboost" "7" + "$envmaplightscaleminmax" "[-0.05 1.0]" + } + } + "10085" + { + "name" "operation10_metalic_green" + "description_string" "#PaintKit_operation10_metalic_green" + "description_tag" "#PaintKit_operation10_metalic_green_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/operation10_metalic_green.vmt" + } + "10086" + { + "name" "operation10_poison_frog_black_yellow" + "description_string" "#PaintKit_operation10_poison_frog_black_yellow" + "description_tag" "#PaintKit_operation10_poison_frog_black_yellow_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/operation10_poison_frog_black_yellow.vmt" + } + "10087" + { + "name" "operation10_floral" + "description_string" "#PaintKit_operation10_floral" + "description_tag" "#PaintKit_operation10_floral_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/operation10_floral.vmt" + } + "10088" + { + "name" "operation10_snakeskin_black" + "description_string" "#PaintKit_operation10_snakeskin_black" + "description_tag" "#PaintKit_operation10_snakeskin_black_tag" + "vmt_path" "materials/models/weapons/customization/paints_gloves/operation10_snakeskin_black.vmt" + } + } + "paint_kits_rarity" + { + "so_olive" "common" + "so_red" "uncommon" + "hy_ddpat" "common" + "hy_arctic" "uncommon" + "hy_desert" "common" + "hy_tiger" "legendary" + "hy_copperhead" "rare" + "hy_skulls" "rare" + "hy_webs" "rare" + "hy_splatter" "mythical" + "hy_ak47lam" "mythical" + "hy_gelpen" "uncommon" + "hy_v_tiger" "common" + "hy_ddpat_urb" "common" + "hy_zombie" "mythical" + "hy_granite" "common" + "sp_spray" "common" + "sp_leaves" "common" + "sp_short_tape" "common" + "sp_tape" "common" + "an_navy" "rare" + "sp_snake" "uncommon" + "an_silver" "uncommon" + "an_red" "rare" + "am_urban" "uncommon" + "am_ossify" "rare" + "aa_flames" "rare" + "aa_fade" "rare" + "so_yellow" "mythical" + "so_night" "common" + "aq_copper" "rare" + "aq_blued" "uncommon" + "aq_forced" "uncommon" + "aq_oiled" "mythical" + "so_pmc" "common" + "so_space_marine" "common" + "am_dragon_glock" "rare" + "am_lightning_awp" "legendary" + "am_zebra" "rare" + "am_zebra_dark" "rare" + "aa_vertigo" "mythical" + "cu_spring_nova" "legendary" + "am_slither_p90" "legendary" + "am_carbon_fiber" "uncommon" + "am_scorpion_p2000" "rare" + "sp_mesh_tan" "common" + "hy_feathers_aug" "rare" + "hy_arctic_contrast" "common" + "hy_blizzard" "uncommon" + "hy_forest_winter" "uncommon" + "hy_forest_boreal" "common" + "hy_forest_night" "common" + "hy_ddpat_orange" "mythical" + "hy_ddpat_pink" "rare" + "hy_mottled_sand" "common" + "hy_reef" "uncommon" + "so_caramel" "common" + "so_grassland" "common" + "so_moss" "common" + "so_purple" "rare" + "so_sand" "common" + "so_stormfront" "common" + "so_tornado" "common" + "so_whiteout" "rare" + "sp_leaves_grassland" "common" + "sp_mesh_arctic_contrast" "common" + "sp_mesh_forest_fire" "uncommon" + "sp_mesh_glacier" "rare" + "sp_mesh_sand" "common" + "sp_spray_desert_sage" "common" + "sp_spray_jungle" "common" + "sp_spray_sand" "common" + "sp_tape_dots_urban" "common" + "sp_tape_dots_waves" "common" + "sp_tape_orange" "uncommon" + "sp_tape_urban" "common" + "sp_tape_short_jungle" "common" + "sp_tape_short_sand" "common" + "sp_tape_short_urban" "common" + "so_jungle" "common" + "so_tangerine" "mythical" + "cu_broken_path_famas" "legendary" + "cu_bullet_rain_m4a1" "ancient" + "cu_catskulls_p90" "ancient" + "sp_palm" "uncommon" + "cu_walnut_nova" "common" + "aq_brass" "rare" + "sp_splash_p250" "mythical" + "hy_hunter_modern" "rare" + "hy_hunter_blaze_pink" "legendary" + "hy_hunter_blaze_orange" "rare" + "sp_nukestripe_orange" "uncommon" + "sp_nukestripe_green" "mythical" + "sp_nukestripe_maroon" "uncommon" + "sp_zebracam" "common" + "sp_nukestripe_brown" "common" + "hy_ak47lam_bw" "uncommon" + "hy_blam_simple" "mythical" + "sp_dapple" "common" + "sp_zebracam_bw" "uncommon" + "hy_icosahedron" "rare" + "hy_doomkitty" "rare" + "sp_nukestripe_green_tec9" "mythical" + "cu_fireserpent_ak47_bravo" "legendary" + "cu_favela_awp" "mythical" + "cu_dragon_p90_bravo" "legendary" + "hy_siege_bravo" "rare" + "cu_favela_p2000" "mythical" + "am_scales_bravo" "legendary" + "sp_spray_waves_bravo" "rare" + "sp_star_bravo" "rare" + "aq_etched_mac10_bravo" "mythical" + "hy_ocean_bravo" "rare" + "cu_season_elites_bravo" "rare" + "hy_seaside_bravo" "rare" + "hy_crumple_bravo" "rare" + "sp_skull_diagram_bravo" "rare" + "sp_spitfire_famas_bravo" "mythical" + "hy_bluepolygon_bravo" "rare" + "an_emerald_bravo" "mythical" + "an_navy_bravo" "rare" + "sp_hazard_bravo" "rare" + "sp_tape_dots_bravo" "common" + "hy_mayan_dreams_bravo" "uncommon" + "sp_palm_bravo" "uncommon" + "hy_ddpat_jungle_bravo" "common" + "aq_steel_bravo" "rare" + "hy_ali_tile_bravo" "uncommon" + "so_jungle_bravo" "common" + "so_tornado_bravo" "common" + "hy_crumple_dark_bravo" "uncommon" + "so_sand_bravo" "common" + "so_olive_bravo" "common" + "an_gunmetal_bravo" "common" + "am_ossify_blue_p2000_bravo" "mythical" + "am_crumple_bravo" "mythical" + "am_ossify_blue" "mythical" + "am_crumple" "mythical" + "cu_xray_m4" "ancient" + "an_titanium30v" "rare" + "hy_redtiger" "uncommon" + "hy_bluehex" "rare" + "hy_redhex" "rare" + "am_ossify_red" "mythical" + "am_electric_red" "mythical" + "cu_shark" "ancient" + "hy_flowers" "rare" + "hy_water_crest" "rare" + "sp_camo_wood_blue" "rare" + "hy_ak47lam_blue" "rare" + "hy_hive" "mythical" + "hy_modspots" "mythical" + "sp_zebracam_blue" "rare" + "am_ddpatdense_silver" "rare" + "am_ddpatdense_peacock" "mythical" + "hy_webs_darker" "rare" + "sp_palm_shadow" "uncommon" + "sp_twigs" "uncommon" + "hy_varicamo" "uncommon" + "hy_varicamo_night" "uncommon" + "hy_varicamo_urban" "uncommon" + "hy_varicamo_blue" "rare" + "hy_varicamo_desert" "uncommon" + "sp_mesh_slashes" "common" + "sp_mesh_army" "common" + "sp_mesh_python" "uncommon" + "sp_mesh_hot_and_cold" "rare" + "sp_spray_army" "common" + "aa_fade_metallic" "rare" + "aq_damascus_sg553" "rare" + "am_crystallized" "mythical" + "am_crystallized_blue" "mythical" + "hy_varicamo_red" "rare" + "hy_snakeskin" "rare" + "am_crystallized_silver" "rare" + "aa_fade_grassland" "rare" + "so_orange_accents" "rare" + "cu_m4_asimov" "legendary" + "cu_sawedoff_octopump" "ancient" + "cu_m4a1-s_elegant" "mythical" + "cu_p250_refined" "legendary" + "cu_awp_cobra" "mythical" + "cu_famas_pulse" "mythical" + "hy_marina_sunrise" "mythical" + "am_thorny_rose_mp9" "mythical" + "cu_skull_nova" "mythical" + "cu_sandstorm" "rare" + "hy_kami" "rare" + "aq_obsidian" "rare" + "am_turqoise_halftone" "rare" + "am_diamond_plate" "mythical" + "am_fuschia" "legendary" + "aq_etched_cz75" "ancient" + "am_p250_beaded_paint" "legendary" + "am_fluted_tec9" "mythical" + "aq_engraved_deagle" "rare" + "am_copper_flecks" "mythical" + "hy_poly_camo" "uncommon" + "so_panther" "rare" + "aq_usp_stainless" "uncommon" + "hy_craquelure" "uncommon" + "cu_awp_asimov" "legendary" + "cu_aug_chameleonaire" "ancient" + "cu_ump_corporal" "rare" + "cu_ak47_cobra" "mythical" + "cu_p90_trigon" "legendary" + "cu_mac10_redhot" "mythical" + "sp_negev_turq_terrain" "rare" + "cu_nova_antique" "legendary" + "cu_sg553_pulse" "mythical" + "an_famas_sgt" "mythical" + "cu_tec9_sandstorm" "rare" + "cu_usp_elegant" "rare" + "cu_mag7_heaven" "rare" + "hy_nerodia" "common" + "so_green" "uncommon" + "cu_money" "legendary" + "am_crystallized_dark" "uncommon" + "so_orca" "rare" + "am_army_shine" "common" + "am_oval_hex" "uncommon" + "cu_pinstripe_ak47" "rare" + "am_m4a1-s_alloy_orange" "mythical" + "cu_ak47_rubber" "legendary" + "cu_tec9_asiimov" "rare" + "cu_ssg08_immortal" "rare" + "cu_aug_progressiv" "mythical" + "cu_bizon_antique" "mythical" + "cu_retribution" "rare" + "hy_galil_kami" "rare" + "cu_m4a1_howling" "immortal" + "cu_mac10_decay" "mythical" + "cu_p90_scorpius" "rare" + "cu_scar_cyrex" "legendary" + "cu_usp_spitfire" "mythical" + "cu_xm1014_heaven_guard" "mythical" + "am_nitrogen" "rare" + "cu_panther_ak47" "legendary" + "cu_bratatat_negev" "rare" + "cu_usp_sandpapered" "rare" + "hy_ssg08_marker" "rare" + "hy_snakeskin_red" "rare" + "cu_m4a1-s_silence" "mythical" + "so_orange_accents2" "rare" + "aq_steel" "uncommon" + "am_royal" "mythical" + "am_metals" "mythical" + "am_chainmail" "uncommon" + "aq_handcannon" "rare" + "am_metal_inlay" "rare" + "hy_vines" "common" + "hy_indigo_usp" "common" + "so_indigo_and_grey" "common" + "am_gyrate" "rare" + "an_royalbleed" "rare" + "cu_titanstorm" "legendary" + "cu_korupt" "mythical" + "cu_p2000_pulse" "uncommon" + "cu_kaiman" "mythical" + "cu_well_traveled_ak47" "mythical" + "cu_green_leather_ak47" "rare" + "cu_brown_leather_p90" "uncommon" + "cu_luggage_mac10" "uncommon" + "cu_medieval_dragon_awp" "legendary" + "cu_green_leather_sawedoff" "rare" + "cu_luggage_p2000" "common" + "aq_pilot_deagle" "rare" + "cu_leather_xm1014" "rare" + "cu_bizon-osiris" "mythical" + "cu_c75a-tiger" "mythical" + "cu_deagle_aureus" "mythical" + "aq_57_feathers" "legendary" + "cu_glock-liquescent" "mythical" + "cu_mp7-commander" "rare" + "cu_negev_titanstorm" "rare" + "cu_nova_koi" "mythical" + "cu_p2000_ivory" "uncommon" + "cu_bittersweet" "mythical" + "cu_p90-asiimov" "ancient" + "cu_m4a1s_cyrex" "legendary" + "aq_leviathan" "rare" + "hy_lines_orange" "rare" + "cu_luggage_sg553" "uncommon" + "cu_luggage_usp-s" "uncommon" + "hy_plaid1" "common" + "hy_plaid2" "common" + "am_nuclear_pattern1_glock" "uncommon" + "hy_nuclear_pattern2_mp9" "rare" + "sp_nuclear_pattern3_negev" "uncommon" + "am_nuclear_skulls1_xm1014" "rare" + "am_nuclear_skulls2_famas" "mythical" + "am_nuclear_skulls3_mac10" "rare" + "hy_nuclear_skulls4_p250" "uncommon" + "hy_nuclear_skulls5_tec9" "rare" + "sp_nukestripe_orange_aug" "uncommon" + "so_grey_nuclear_green_bizon" "uncommon" + "so_grey_nuclear_orange_five_seven" "uncommon" + "sp_nukestripe_maroon_sg553" "uncommon" + "cu_cerbrus_galil" "mythical" + "cu_tribute_ak47" "legendary" + "aq_glock_coiled" "rare" + "am_g3sg1_murky" "rare" + "aq_m4a1s_basilisk" "rare" + "cu_m4a4_griffin" "rare" + "sp_mag7_firebitten" "rare" + "cu_mp9_chevron" "rare" + "cu_fiveseven_urban_hazard" "rare" + "aq_p250_cartel" "legendary" + "cu_p2000_fire_elemental" "legendary" + "aq_sawedoff_blackgold" "mythical" + "cu_scar20_intervention" "legendary" + "sp_ump45_d-visions" "rare" + "cu_xm1014_caritas" "legendary" + "aq_ak47_cartel" "mythical" + "am_awp_glory" "legendary" + "cu_elites_urbanstorm" "mythical" + "aq_deagle_naga" "rare" + "cu_galil_abrasion" "ancient" + "cu_glock_deathtoll" "uncommon" + "cu_m4a4_ancestral" "mythical" + "cu_m249_sektor" "rare" + "am_mac10_malachite" "mythical" + "cu_mp9_deadly_poison" "rare" + "cu_p250_mandala" "legendary" + "cu_sawedoff_deva" "mythical" + "aq_scar20_leak" "rare" + "aq_xm1014_sigla" "rare" + "an_tiger_orange" "legendary" + "aq_damascus" "mythical" + "aq_damascus_90" "mythical" + "am_marble_fade" "legendary" + "aq_steel_knife" "rare" + "am_ruby_marbleized" "legendary" + "am_sapphire_marbleized" "legendary" + "am_blackpearl_marbleized" "ancient" + "am_doppler_phase1" "mythical" + "am_doppler_phase2" "mythical" + "am_doppler_phase3" "mythical" + "am_doppler_phase4" "mythical" + "cu_ak47_mastery" "uncommon" + "aq_mp7_ultramodern" "rare" + "aq_awp_twine" "rare" + "am_bronze_sparkle" "uncommon" + "aq_p250_contour" "rare" + "cu_fiveseven_banana" "legendary" + "cu_galil_eco" "legendary" + "aq_famas_jinn" "legendary" + "cu_m4a1_hyper_beast" "legendary" + "cu_mag7_redhot" "mythical" + "am_negev_glory" "rare" + "cu_mac10_neonrider" "ancient" + "cu_sawedoff_origami" "rare" + "cu_cz75_precision" "mythical" + "am_ump_racer" "mythical" + "am_aqua_flecks" "mythical" + "cu_chronos_g3sg1" "mythical" + "hy_hades" "uncommon" + "hy_icarus" "rare" + "cu_labyrinth" "rare" + "sp_labyrinth" "common" + "sp_labyrinth2" "common" + "sp_labyrinth3" "common" + "an_red_m4a1s" "mythical" + "cu_medusa_awp" "legendary" + "gs_mother_of_pearl_elite" "mythical" + "aa_pandora" "rare" + "cu_poseidon" "mythical" + "hy_zodiac1" "common" + "hy_zodiac2" "common" + "hy_zodiac3" "uncommon" + "an_emerald" "rare" + "so_khaki_green" "common" + "cu_anime_aug" "ancient" + "am_bamboo_jungle" "mythical" + "hy_bamboo_jungle_ink" "common" + "hy_bamboo_jungle_black" "common" + "hy_bamboo_jungle" "common" + "am_geometric_steps" "rare" + "hy_geometric_steps_green" "rare" + "hy_geometric_steps_yellow" "rare" + "hy_kimono_diamonds" "mythical" + "hy_kimono_diamonds_orange" "common" + "hy_kimono_diamonds_red" "uncommon" + "sp_kimono_diamonds" "common" + "am_seastorm" "common" + "am_seastorm_blood" "rare" + "am_seastorm_shojo" "rare" + "am_kimono_sunrise" "rare" + "so_keycolors" "common" + "so_aqua" "common" + "cu_ak47_courage_alt" "legendary" + "cu_awp_hyper_beast" "legendary" + "cu_cz75a_chastizer" "legendary" + "am_famas_dots" "mythical" + "cu_galilar_particles" "rare" + "aq_glock18_flames_blue" "uncommon" + "cu_m4a4_evil_daimyo" "rare" + "cu_mp7_nemsis" "legendary" + "am_mp9_nitrogen" "mythical" + "cu_negev_annihilator" "mythical" + "cu_nova_ranger" "rare" + "aq_p2000_boom" "rare" + "cu_p90_mastery" "rare" + "cu_sg553_cyrex" "legendary" + "cu_ump45_uproar" "rare" + "cu_usp_progressiv" "uncommon" + "cu_ak47_winter_sport" "mythical" + "cu_dualberretta_dragons" "rare" + "cu_famas_lenta" "rare" + "gs_g3sg1_flux_purple" "legendary" + "gs_galil_nightwing" "mythical" + "gs_glock18_wrathys" "uncommon" + "gs_m249_nebula_crusader" "mythical" + "gs_m4a1s_snakebite_gold" "legendary" + "cu_mac10_alekhya_duo" "rare" + "cu_mag7_myrcene" "rare" + "cu_mp7_classified" "mythical" + "hy_p250_crackshot" "mythical" + "gs_scar20_peacemaker03" "rare" + "cu_ssg08_technicality" "legendary" + "cu_usp_kill_confirmed" "legendary" + "aq_xm1014_scumbria" "rare" + "cu_ak47_point_disarray" "mythical" + "am_aug_jumble" "rare" + "cu_bizon_noxious" "mythical" + "aq_deagle_corinthian" "uncommon" + "cu_fiveseven_retrobution" "mythical" + "cu_g3sg1_executioner" "legendary" + "gs_m4a4_royal_squire" "legendary" + "cu_negev_impact" "mythical" + "am_p2000_imperial_red" "uncommon" + "cu_p90_shapewood" "legendary" + "gs_sawedoff_necromancer" "rare" + "hy_scar20_jungler" "rare" + "gs_sg553_tiger_moth" "mythical" + "cu_tec9_avalanche" "mythical" + "aq_xm1014_hot_rod" "mythical" + "aa_fade_revolver" "ancient" + "aa_fade_metallic_revolver" "legendary" + "gs_ak47_supercharged" "legendary" + "cu_awp_mastery" "mythical" + "cu_bizon_citizen" "rare" + "aq_deserteagle_kumichodragon" "mythical" + "aq_dualberettas_cartel" "rare" + "aq_famas_contour" "mythical" + "cu_fiveseven_augmented" "mythical" + "gs_glock18_award" "rare" + "gs_m4a4_pioneer" "legendary" + "am_mac10_electricity" "rare" + "gs_mag7_praetorian" "mythical" + "sp_mp7_impire" "mythical" + "cu_nova_hyperbeast" "legendary" + "cu_ssg08_necropos" "rare" + "gs_tec9_jambiya" "rare" + "gs_usp_voltage" "uncommon" + } + "item_sets" + { + "set_community_3" + { + "name" "#CSGO_set_community_3" + "set_description" "#CSGO_set_community_3_desc" + "is_collection" "1" + "items" + { + "[cu_tec9_asiimov]weapon_tec9" "1" + "[cu_ssg08_immortal]weapon_ssg08" "1" + "[cu_retribution]weapon_elite" "1" + "[hy_galil_kami]weapon_galilar" "1" + "[cu_p90_scorpius]weapon_p90" "1" + "[am_nitrogen]weapon_cz75a" "1" + "[am_gyrate]weapon_cz75a" "1" + "[an_royalbleed]weapon_p90" "1" + "[cu_p2000_pulse]weapon_hkp2000" "1" + "[cu_aug_progressiv]weapon_aug" "1" + "[cu_bizon_antique]weapon_bizon" "1" + "[cu_mac10_decay]weapon_mac10" "1" + "[cu_xm1014_heaven_guard]weapon_xm1014" "1" + "[cu_korupt]weapon_mac10" "1" + "[am_m4a1-s_alloy_orange]weapon_m4a1_silencer" "1" + "[cu_scar_cyrex]weapon_scar20" "1" + "[cu_usp_spitfire]weapon_usp_silencer" "1" + "[cu_kaiman]weapon_usp_silencer" "1" + "[cu_ak47_rubber]weapon_ak47" "1" + "[cu_titanstorm]weapon_m4a1" "1" + } + } + "set_weapons_i" + { + "name" "#CSGO_set_weapons_i" + "set_description" "#CSGO_set_weapons_i_desc" + "is_collection" "1" + "items" + { + "[hy_skulls]weapon_mp7" "1" + "[hy_feathers_aug]weapon_aug" "1" + "[so_purple]weapon_sg556" "1" + "[am_dragon_glock]weapon_glock" "1" + "[am_zebra_dark]weapon_usp_silencer" "1" + "[am_zebra_dark]weapon_m4a1_silencer" "1" + "[aq_oiled]weapon_ak47" "1" + "[aa_vertigo]weapon_deagle" "1" + "[am_lightning_awp]weapon_awp" "1" + } + } + "set_esports" + { + "name" "#CSGO_set_esports" + "set_description" "#CSGO_set_esports_desc" + "is_collection" "1" + "items" + { + "[sp_zebracam_bw]weapon_m4a1" "1" + "[hy_icosahedron]weapon_mag7" "1" + "[hy_doomkitty]weapon_famas" "1" + "[hy_ddpat_orange]weapon_galilar" "1" + "[hy_ddpat_orange]weapon_sawedoff" "1" + "[sp_splash_p250]weapon_p250" "1" + "[hy_ak47lam]weapon_ak47" "1" + "[hy_blam_simple]weapon_awp" "1" + "[cu_catskulls_p90]weapon_p90" "1" + } + } + "set_bravo_i" + { + "name" "#CSGO_set_bravo_i" + "set_description" "#CSGO_set_bravo_i_desc" + "is_collection" "1" + "items" + { + "[sp_spray_waves_bravo]weapon_sg556" "1" + "[cu_season_elites_bravo]weapon_elite" "1" + "[hy_seaside_bravo]weapon_nova" "1" + "[hy_crumple_bravo]weapon_galilar" "1" + "[sp_skull_diagram_bravo]weapon_ump45" "1" + "[hy_bluepolygon_bravo]weapon_g3sg1" "1" + "[hy_siege_bravo]weapon_usp_silencer" "1" + "[sp_star_bravo]weapon_m4a1" "1" + "[aq_etched_mac10_bravo]weapon_mac10" "1" + "[hy_ocean_bravo]weapon_m4a1_silencer" "1" + "[cu_dragon_p90_bravo]weapon_p90" "1" + "[am_ossify_blue_p2000_bravo]weapon_hkp2000" "1" + "[am_crumple_bravo]weapon_awp" "1" + "[cu_fireserpent_ak47_bravo]weapon_ak47" "1" + "[am_scales_bravo]weapon_deagle" "1" + } + } + "set_weapons_ii" + { + "name" "#CSGO_set_weapons_ii" + "set_description" "#CSGO_set_weapons_ii_desc" + "is_collection" "1" + "items" + { + "[an_titanium30v]weapon_tec9" "1" + "[hy_redtiger]weapon_m4a1_silencer" "1" + "[hy_bluehex]weapon_famas" "1" + "[hy_redhex]weapon_p250" "1" + "[hy_webs_darker]weapon_scar20" "1" + "[aq_oiled]weapon_fiveseven" "1" + "[aa_vertigo]weapon_mp9" "1" + "[am_crumple]weapon_nova" "1" + "[am_ossify_red]weapon_elite" "1" + "[am_slither_p90]weapon_p90" "1" + "[am_electric_red]weapon_usp_silencer" "1" + "[cu_shark]weapon_ssg08" "1" + } + } + "set_esports_ii" + { + "name" "#CSGO_set_esports_ii" + "set_description" "#CSGO_set_esports_ii_desc" + "is_collection" "1" + "items" + { + "[an_titanium30v]weapon_galilar" "1" + "[hy_flowers]weapon_fiveseven" "1" + "[hy_water_crest]weapon_bizon" "1" + "[sp_camo_wood_blue]weapon_nova" "1" + "[sp_zebracam_blue]weapon_g3sg1" "1" + "[am_ddpatdense_silver]weapon_p250" "1" + "[hy_ak47lam_blue]weapon_ak47" "1" + "[hy_modspots]weapon_p90" "1" + "[cu_broken_path_famas]weapon_famas" "1" + "[hy_hive]weapon_awp" "1" + "[am_ddpatdense_peacock]weapon_deagle" "1" + "[cu_xray_m4]weapon_m4a1" "1" + } + } + "set_community_1" + { + "name" "#CSGO_set_community_1" + "set_description" "#CSGO_set_community_1_desc" + "is_collection" "1" + "items" + { + "[cu_sandstorm]weapon_galilar" "1" + "[hy_kami]weapon_fiveseven" "1" + "[aq_obsidian]weapon_m249" "1" + "[am_turqoise_halftone]weapon_bizon" "1" + "[cu_famas_pulse]weapon_famas" "1" + "[hy_marina_sunrise]weapon_elite" "1" + "[am_thorny_rose_mp9]weapon_mp9" "1" + "[cu_skull_nova]weapon_nova" "1" + "[cu_m4a1-s_elegant]weapon_m4a1_silencer" "1" + "[cu_p250_refined]weapon_p250" "1" + "[cu_awp_cobra]weapon_awp" "1" + "[cu_m4_asimov]weapon_m4a1" "1" + "[cu_sawedoff_octopump]weapon_sawedoff" "1" + } + } + "set_weapons_iii" + { + "name" "#CSGO_set_weapons_iii" + "set_description" "#CSGO_set_weapons_iii_desc" + "is_collection" "1" + "items" + { + "[hy_webs]weapon_cz75a" "1" + "[hy_poly_camo]weapon_hkp2000" "1" + "[so_panther]weapon_elite" "1" + "[aq_usp_stainless]weapon_usp_silencer" "1" + "[hy_craquelure]weapon_glock" "1" + "[am_diamond_plate]weapon_cz75a" "1" + "[am_fluted_tec9]weapon_tec9" "1" + "[aq_engraved_deagle]weapon_deagle" "1" + "[am_copper_flecks]weapon_fiveseven" "1" + "[am_fuschia]weapon_cz75a" "1" + "[am_p250_beaded_paint]weapon_p250" "1" + "[aq_etched_cz75]weapon_cz75a" "1" + } + } + "set_community_2" + { + "name" "#CSGO_set_community_2" + "set_description" "#CSGO_set_community_2_desc" + "is_collection" "1" + "items" + { + "[cu_ump_corporal]weapon_ump45" "1" + "[sp_negev_turq_terrain]weapon_negev" "1" + "[cu_tec9_sandstorm]weapon_tec9" "1" + "[cu_mag7_heaven]weapon_mag7" "1" + "[cu_mac10_redhot]weapon_mac10" "1" + "[cu_sg553_pulse]weapon_sg556" "1" + "[an_famas_sgt]weapon_famas" "1" + "[cu_usp_elegant]weapon_usp_silencer" "1" + "[cu_ak47_cobra]weapon_ak47" "1" + "[cu_p90_trigon]weapon_p90" "1" + "[cu_nova_antique]weapon_nova" "1" + "[cu_awp_asimov]weapon_awp" "1" + "[cu_aug_chameleonaire]weapon_aug" "1" + } + } + "set_community_4" + { + "name" "#CSGO_set_community_4" + "set_description" "#CSGO_set_community_4_desc" + "is_collection" "1" + "items" + { + "[cu_mp7-commander]weapon_mp7" "1" + "[cu_negev_titanstorm]weapon_negev" "1" + "[cu_p2000_ivory]weapon_hkp2000" "1" + "[aq_leviathan]weapon_ssg08" "1" + "[hy_lines_orange]weapon_ump45" "1" + "[cu_bizon-osiris]weapon_bizon" "1" + "[cu_c75a-tiger]weapon_cz75a" "1" + "[cu_nova_koi]weapon_nova" "1" + "[cu_bittersweet]weapon_p250" "1" + "[cu_deagle_aureus]weapon_deagle" "1" + "[aq_57_feathers]weapon_fiveseven" "1" + "[cu_glock-liquescent]weapon_glock" "1" + "[cu_p90-asiimov]weapon_p90" "1" + "[cu_m4a1s_cyrex]weapon_m4a1_silencer" "1" + } + } + "set_esports_iii" + { + "name" "#CSGO_set_esports_iii" + "set_description" "#CSGO_set_esports_iii_desc" + "is_collection" "1" + "items" + { + "[am_zebra_dark]weapon_ssg08" "1" + "[so_purple]weapon_mac10" "1" + "[hy_redtiger]weapon_usp_silencer" "1" + "[hy_bluehex]weapon_cz75a" "1" + "[cu_bratatat_negev]weapon_negev" "1" + "[hy_snakeskin_red]weapon_xm1014" "1" + "[hy_splatter]weapon_bizon" "1" + "[hy_zombie]weapon_p90" "1" + "[am_ossify_blue]weapon_mp7" "1" + "[am_ddpatdense_silver]weapon_glock" "1" + "[hy_webs_darker]weapon_deagle" "1" + "[hy_tiger]weapon_aug" "1" + "[cu_spring_nova]weapon_nova" "1" + "[cu_favela_awp]weapon_awp" "1" + "[cu_favela_p2000]weapon_hkp2000" "1" + "[cu_bullet_rain_m4a1]weapon_m4a1" "1" + "[cu_panther_ak47]weapon_ak47" "1" + } + } + "set_community_5" + { + "name" "#CSGO_set_community_5" + "set_description" "#CSGO_set_community_5_desc" + "is_collection" "1" + "items" + { + "[am_g3sg1_murky]weapon_g3sg1" "1" + "[sp_mag7_firebitten]weapon_mag7" "1" + "[cu_mp9_chevron]weapon_mp9" "1" + "[cu_fiveseven_urban_hazard]weapon_fiveseven" "1" + "[sp_ump45_d-visions]weapon_ump45" "1" + "[aq_glock_coiled]weapon_glock" "1" + "[aq_m4a1s_basilisk]weapon_m4a1_silencer" "1" + "[cu_m4a4_griffin]weapon_m4a1" "1" + "[aq_sawedoff_blackgold]weapon_sawedoff" "1" + "[aq_p250_cartel]weapon_p250" "1" + "[cu_scar20_intervention]weapon_scar20" "1" + "[cu_xm1014_caritas]weapon_xm1014" "1" + "[cu_tribute_ak47]weapon_ak47" "1" + "[cu_p2000_fire_elemental]weapon_hkp2000" "1" + } + } + "set_community_6" + { + "name" "#CSGO_set_community_6" + "set_description" "#CSGO_set_community_6_desc" + "is_collection" "1" + "items" + { + "[cu_glock_deathtoll]weapon_glock" "1" + "[cu_m249_sektor]weapon_m249" "1" + "[cu_mp9_deadly_poison]weapon_mp9" "1" + "[aq_scar20_leak]weapon_scar20" "1" + "[aq_xm1014_sigla]weapon_xm1014" "1" + "[cu_elites_urbanstorm]weapon_elite" "1" + "[aq_deagle_naga]weapon_deagle" "1" + "[am_mac10_malachite]weapon_mac10" "1" + "[cu_sawedoff_deva]weapon_sawedoff" "1" + "[aq_ak47_cartel]weapon_ak47" "1" + "[cu_m4a4_ancestral]weapon_m4a1" "1" + "[cu_p250_mandala]weapon_p250" "1" + "[am_awp_glory]weapon_awp" "1" + "[cu_galil_abrasion]weapon_galilar" "1" + } + } + "set_community_7" + { + "name" "#CSGO_set_community_7" + "set_description" "#CSGO_set_community_7_desc" + "is_collection" "1" + "items" + { + "[cu_ak47_mastery]weapon_ak47" "1" + "[aq_mp7_ultramodern]weapon_mp7" "1" + "[am_bronze_sparkle]weapon_deagle" "1" + "[aq_p250_contour]weapon_p250" "1" + "[am_negev_glory]weapon_negev" "1" + "[cu_sawedoff_origami]weapon_sawedoff" "1" + "[aq_awp_twine]weapon_awp" "1" + "[cu_mag7_redhot]weapon_mag7" "1" + "[cu_cz75_precision]weapon_cz75a" "1" + "[am_ump_racer]weapon_ump45" "1" + "[cu_fiveseven_banana]weapon_fiveseven" "1" + "[cu_galil_eco]weapon_galilar" "1" + "[aq_famas_jinn]weapon_famas" "1" + "[cu_m4a1_hyper_beast]weapon_m4a1_silencer" "1" + "[cu_mac10_neonrider]weapon_mac10" "1" + } + } + "set_dust" + { + "name" "#CSGO_set_dust" + "set_description" "#CSGO_set_dust_desc" + "is_collection" "1" + "items" + { + "[hy_desert]weapon_m4a1" "1" + "[sp_palm]weapon_scar20" "1" + "[sp_zebracam]weapon_ak47" "1" + "[hy_copperhead]weapon_aug" "1" + "[sp_snake]weapon_awp" "1" + "[aq_copper]weapon_sawedoff" "1" + "[aa_flames]weapon_deagle" "1" + "[am_scorpion_p2000]weapon_hkp2000" "1" + "[aq_brass]weapon_glock" "1" + } + } + "set_aztec" + { + "name" "#CSGO_set_aztec" + "set_description" "#CSGO_set_aztec_desc" + "is_collection" "1" + "items" + { + "[sp_leaves]weapon_nova" "1" + "[sp_short_tape]weapon_ssg08" "1" + "[so_jungle]weapon_fiveseven" "1" + "[hy_v_tiger]weapon_m4a1" "1" + "[sp_spray_jungle]weapon_ak47" "1" + "[am_ossify]weapon_tec9" "1" + } + } + "set_vertigo" + { + "name" "#CSGO_set_vertigo" + "set_description" "#CSGO_set_vertigo_desc" + "is_collection" "1" + "items" + { + "[hy_ddpat_urb]weapon_mac10" "1" + "[sp_tape_dots_urban]weapon_xm1014" "1" + "[am_carbon_fiber]weapon_bizon" "1" + "[sp_mesh_glacier]weapon_p90" "1" + "[hy_ak47lam_bw]weapon_ak47" "1" + "[so_tangerine]weapon_elite" "1" + } + } + "set_inferno" + { + "name" "#CSGO_set_inferno" + "set_description" "#CSGO_set_inferno_desc" + "is_collection" "1" + "items" + { + "[so_sand]weapon_mag7" "1" + "[cu_walnut_nova]weapon_nova" "1" + "[hy_gelpen]weapon_p250" "1" + "[so_tornado]weapon_m4a1" "1" + "[an_navy]weapon_elite" "1" + "[aq_brass]weapon_tec9" "1" + } + } + "set_militia" + { + "name" "#CSGO_set_militia" + "set_description" "#CSGO_set_militia_desc" + "is_collection" "1" + "items" + { + "[sp_leaves]weapon_bizon" "1" + "[so_grassland]weapon_xm1014" "1" + "[so_tornado]weapon_mac10" "1" + "[sp_leaves_grassland]weapon_hkp2000" "1" + "[hy_hunter_modern]weapon_bizon" "1" + "[hy_hunter_modern]weapon_nova" "1" + "[hy_hunter_modern]weapon_p250" "1" + "[hy_hunter_blaze_orange]weapon_nova" "1" + "[hy_hunter_blaze_orange]weapon_xm1014" "1" + "[hy_hunter_modern]weapon_m4a1" "1" + "[hy_hunter_blaze_pink]weapon_scar20" "1" + } + } + "set_nuke" + { + "name" "#CSGO_set_nuke" + "set_description" "#CSGO_set_nuke_desc" + "is_collection" "1" + "items" + { + "[sp_nukestripe_brown]weapon_bizon" "1" + "[sp_nukestripe_brown]weapon_mag7" "1" + "[sp_nukestripe_brown]weapon_sawedoff" "1" + "[sp_nukestripe_maroon]weapon_p90" "1" + "[sp_nukestripe_maroon]weapon_ump45" "1" + "[sp_nukestripe_maroon]weapon_xm1014" "1" + "[sp_nukestripe_orange]weapon_m4a1" "1" + "[sp_nukestripe_green]weapon_p250" "1" + "[sp_nukestripe_green_tec9]weapon_tec9" "1" + } + } + "set_office" + { + "name" "#CSGO_set_office" + "set_description" "#CSGO_set_office_desc" + "is_collection" "1" + "items" + { + "[sp_spray]weapon_famas" "1" + "[hy_arctic]weapon_g3sg1" "1" + "[hy_blizzard]weapon_m249" "1" + "[hy_forest_winter]weapon_galilar" "1" + "[an_silver]weapon_hkp2000" "1" + "[so_whiteout]weapon_mp7" "1" + } + } + "set_assault" + { + "name" "#CSGO_set_assault" + "set_description" "#CSGO_set_assault_desc" + "is_collection" "1" + "items" + { + "[so_caramel]weapon_ump45" "1" + "[so_tornado]weapon_sg556" "1" + "[so_red]weapon_fiveseven" "1" + "[an_navy]weapon_negev" "1" + "[an_red]weapon_aug" "1" + "[aa_fade]weapon_glock" "1" + "[so_yellow]weapon_mp9" "1" + } + } + "set_bravo_ii" + { + "name" "#CSGO_set_bravo_ii" + "set_description" "#CSGO_set_bravo_ii_desc" + "is_collection" "1" + "items" + { + "[sp_tape_dots_bravo]weapon_mp9" "1" + "[hy_ddpat_jungle_bravo]weapon_m249" "1" + "[so_jungle_bravo]weapon_xm1014" "1" + "[so_tornado_bravo]weapon_tec9" "1" + "[so_olive_bravo]weapon_mp7" "1" + "[an_gunmetal_bravo]weapon_fiveseven" "1" + "[hy_mayan_dreams_bravo]weapon_ssg08" "1" + "[sp_palm_bravo]weapon_negev" "1" + "[hy_ali_tile_bravo]weapon_sawedoff" "1" + "[hy_crumple_dark_bravo]weapon_p250" "1" + "[so_sand_bravo]weapon_glock" "1" + "[an_navy_bravo]weapon_aug" "1" + "[sp_hazard_bravo]weapon_mag7" "1" + "[aq_steel_bravo]weapon_bizon" "1" + "[sp_spitfire_famas_bravo]weapon_famas" "1" + "[an_emerald_bravo]weapon_scar20" "1" + } + } + "set_dust_2" + { + "name" "#CSGO_set_dust_2" + "set_description" "#CSGO_set_dust_2_desc" + "is_collection" "1" + "items" + { + "[hy_desert]weapon_g3sg1" "1" + "[so_sand]weapon_p250" "1" + "[sp_mesh_sand]weapon_scar20" "1" + "[sp_spray_sand]weapon_p90" "1" + "[sp_tape_short_sand]weapon_mp9" "1" + "[sp_zebracam]weapon_nova" "1" + "[sp_snake]weapon_sawedoff" "1" + "[sp_mesh_tan]weapon_ak47" "1" + "[sp_tape_orange]weapon_fiveseven" "1" + "[sp_palm]weapon_mac10" "1" + "[hy_varicamo]weapon_tec9" "1" + "[aq_brass]weapon_bizon" "1" + "[hy_varicamo]weapon_m4a1_silencer" "1" + "[aq_damascus_sg553]weapon_sg556" "1" + "[aa_fade_metallic]weapon_hkp2000" "1" + "[aa_fade_metallic_revolver]weapon_revolver" "1" + } + } + "set_train" + { + "name" "#CSGO_set_train" + "set_description" "#CSGO_set_train_desc" + "is_collection" "1" + "items" + { + "[hy_ddpat_urb]weapon_ump45" "1" + "[so_space_marine]weapon_elite" "1" + "[hy_arctic_contrast]weapon_g3sg1" "1" + "[hy_forest_night]weapon_fiveseven" "1" + "[sp_mesh_arctic_contrast]weapon_nova" "1" + "[sp_tape_short_urban]weapon_bizon" "1" + "[so_red]weapon_mac10" "1" + "[hy_ddpat_urb]weapon_m4a1" "1" + "[am_urban]weapon_mag7" "1" + "[am_urban]weapon_p250" "1" + "[am_carbon_fiber]weapon_scar20" "1" + "[sp_twigs]weapon_p90" "1" + "[hy_varicamo_urban]weapon_deagle" "1" + "[aa_fade_metallic]weapon_sawedoff" "1" + "[am_crystallized]weapon_tec9" "1" + } + } + "set_mirage" + { + "name" "#CSGO_set_mirage" + "set_description" "#CSGO_set_mirage_desc" + "is_collection" "1" + "items" + { + "[sp_tape]weapon_p250" "1" + "[so_pmc]weapon_fiveseven" "1" + "[so_space_marine]weapon_aug" "1" + "[sp_mesh_tan]weapon_g3sg1" "1" + "[sp_dapple]weapon_p90" "1" + "[sp_mesh_slashes]weapon_galilar" "1" + "[so_olive]weapon_glock" "1" + "[sp_tape_orange]weapon_mp7" "1" + "[sp_palm_shadow]weapon_ssg08" "1" + "[hy_varicamo_desert]weapon_negev" "1" + "[sp_mesh_python]weapon_sg556" "1" + "[an_red]weapon_mp9" "1" + "[aa_flames]weapon_ump45" "1" + "[aa_fade_metallic]weapon_mac10" "1" + "[so_yellow]weapon_mag7" "1" + } + } + "set_italy" + { + "name" "#CSGO_set_italy" + "set_description" "#CSGO_set_italy_desc" + "is_collection" "1" + "items" + { + "[so_olive]weapon_tec9" "1" + "[so_pmc]weapon_aug" "1" + "[so_space_marine]weapon_famas" "1" + "[so_sand]weapon_nova" "1" + "[sp_tape_short_sand]weapon_bizon" "1" + "[so_red]weapon_nova" "1" + "[hy_gelpen]weapon_ump45" "1" + "[hy_granite]weapon_hkp2000" "1" + "[aq_forced]weapon_elite" "1" + "[hy_forest_boreal]weapon_m4a1_silencer" "1" + "[hy_varicamo_desert]weapon_xm1014" "1" + "[so_red]weapon_glock" "1" + "[an_navy]weapon_mp7" "1" + "[hy_varicamo_red]weapon_sawedoff" "1" + "[hy_snakeskin]weapon_awp" "1" + } + } + "set_lake" + { + "name" "#CSGO_set_lake" + "set_description" "#CSGO_set_lake_desc" + "is_collection" "1" + "items" + { + "[hy_forest_boreal]weapon_p250" "1" + "[so_moss]weapon_xm1014" "1" + "[so_stormfront]weapon_aug" "1" + "[sp_spray_desert_sage]weapon_galilar" "1" + "[sp_tape_dots_waves]weapon_sg556" "1" + "[sp_tape_short_jungle]weapon_g3sg1" "1" + "[aq_blued]weapon_xm1014" "1" + "[sp_mesh_tan]weapon_awp" "1" + "[hy_mottled_sand]weapon_deagle" "1" + "[hy_reef]weapon_famas" "1" + "[hy_varicamo_night]weapon_bizon" "1" + "[an_navy]weapon_sg556" "1" + "[hy_varicamo_night]weapon_usp_silencer" "1" + "[sp_mesh_hot_and_cold]weapon_p90" "1" + "[am_crystallized_blue]weapon_elite" "1" + } + } + "set_safehouse" + { + "name" "#CSGO_set_safehouse" + "set_description" "#CSGO_set_safehouse_desc" + "is_collection" "1" + "items" + { + "[so_pmc]weapon_elite" "1" + "[so_pmc]weapon_scar20" "1" + "[so_moss]weapon_ssg08" "1" + "[sp_mesh_army]weapon_tec9" "1" + "[sp_spray_army]weapon_mp7" "1" + "[sp_leaves]weapon_usp_silencer" "1" + "[sp_mesh_forest_fire]weapon_aug" "1" + "[sp_tape_orange]weapon_mp9" "1" + "[hy_varicamo]weapon_g3sg1" "1" + "[hy_varicamo]weapon_galilar" "1" + "[sp_mesh_python]weapon_m249" "1" + "[sp_mesh_hot_and_cold]weapon_famas" "1" + "[am_crystallized_silver]weapon_fiveseven" "1" + "[aa_fade_grassland]weapon_ssg08" "1" + "[so_orange_accents]weapon_m4a1_silencer" "1" + } + } + "set_bank" + { + "name" "#CSGO_set_bank" + "set_description" "#CSGO_set_bank_desc" + "is_collection" "1" + "items" + { + "[hy_ddpat]weapon_mp7" "1" + "[hy_ddpat]weapon_sawedoff" "1" + "[hy_ddpat_urb]weapon_tec9" "1" + "[sp_tape]weapon_revolver" "1" + "[am_army_shine]weapon_negev" "1" + "[am_army_shine]weapon_sg556" "1" + "[an_silver]weapon_mac10" "1" + "[am_carbon_fiber]weapon_ump45" "1" + "[hy_nerodia]weapon_glock" "1" + "[so_green]weapon_g3sg1" "1" + "[am_oval_hex]weapon_nova" "1" + "[am_crystallized_dark]weapon_deagle" "1" + "[so_orca]weapon_galilar" "1" + "[so_orca]weapon_cz75a" "1" + "[cu_pinstripe_ak47]weapon_ak47" "1" + "[cu_money]weapon_p250" "1" + } + } + "set_overpass" + { + "name" "#CSGO_set_overpass" + "set_description" "#CSGO_set_overpass_desc" + "is_collection" "1" + "items" + { + "[sp_spray]weapon_m249" "1" + "[so_stormfront]weapon_mag7" "1" + "[so_stormfront]weapon_mp9" "1" + "[sp_spray_desert_sage]weapon_sawedoff" "1" + "[sp_dapple]weapon_ump45" "1" + "[hy_gelpen]weapon_mp7" "1" + "[hy_ddpat_urb]weapon_deagle" "1" + "[so_night]weapon_glock" "1" + "[so_grassland]weapon_hkp2000" "1" + "[hy_varicamo_blue]weapon_xm1014" "1" + "[hy_ssg08_marker]weapon_ssg08" "1" + "[so_orange_accents2]weapon_cz75a" "1" + "[hy_ddpat_pink]weapon_awp" "1" + "[cu_usp_sandpapered]weapon_usp_silencer" "1" + "[cu_m4a1-s_silence]weapon_m4a1_silencer" "1" + } + } + "set_cobblestone" + { + "name" "#CSGO_set_cobblestone" + "set_description" "#CSGO_set_cobblestone_desc" + "is_collection" "1" + "items" + { + "[so_stormfront]weapon_p90" "1" + "[so_stormfront]weapon_scar20" "1" + "[hy_vines]weapon_elite" "1" + "[so_indigo_and_grey]weapon_mac10" "1" + "[so_indigo_and_grey]weapon_ump45" "1" + "[an_silver]weapon_mag7" "1" + "[so_green]weapon_nova" "1" + "[aq_steel]weapon_sawedoff" "1" + "[hy_indigo_usp]weapon_usp_silencer" "1" + "[am_chainmail]weapon_hkp2000" "1" + "[am_metal_inlay]weapon_mp9" "1" + "[am_royal]weapon_cz75a" "1" + "[aq_handcannon]weapon_deagle" "1" + "[am_metals]weapon_m4a1_silencer" "1" + "[cu_medieval_dragon_awp]weapon_awp" "1" + } + } + "set_baggage" + { + "name" "#CSGO_set_baggage" + "set_description" "#CSGO_set_baggage_desc" + "is_collection" "1" + "items" + { + "[so_pmc]weapon_g3sg1" "1" + "[so_sand]weapon_ssg08" "1" + "[hy_plaid1]weapon_mp7" "1" + "[hy_plaid2]weapon_mp9" "1" + "[hy_plaid2]weapon_cz75a" "1" + "[cu_brown_leather_p90]weapon_p90" "1" + "[cu_luggage_mac10]weapon_mac10" "1" + "[cu_luggage_p2000]weapon_hkp2000" "1" + "[cu_luggage_sg553]weapon_sg556" "1" + "[cu_green_leather_sawedoff]weapon_sawedoff" "1" + "[cu_leather_xm1014]weapon_xm1014" "1" + "[cu_luggage_usp-s]weapon_usp_silencer" "1" + "[cu_green_leather_ak47]weapon_ak47" "1" + "[aq_pilot_deagle]weapon_deagle" "1" + "[cu_well_traveled_ak47]weapon_ak47" "1" + } + } + "set_cache" + { + "name" "#CSGO_set_cache" + "set_description" "#CSGO_set_cache_desc" + "is_collection" "1" + "items" + { + "[sp_nuclear_pattern3_negev]weapon_negev" "1" + "[hy_nuclear_skulls4_p250]weapon_p250" "1" + "[sp_nukestripe_orange_aug]weapon_aug" "1" + "[so_grey_nuclear_green_bizon]weapon_bizon" "1" + "[so_grey_nuclear_orange_five_seven]weapon_fiveseven" "1" + "[sp_nukestripe_maroon_sg553]weapon_sg556" "1" + "[am_nuclear_pattern1_glock]weapon_glock" "1" + "[hy_nuclear_pattern2_mp9]weapon_mp9" "1" + "[am_nuclear_skulls1_xm1014]weapon_xm1014" "1" + "[am_nuclear_skulls3_mac10]weapon_mac10" "1" + "[hy_nuclear_skulls5_tec9]weapon_tec9" "1" + "[am_nuclear_skulls2_famas]weapon_famas" "1" + "[cu_cerbrus_galil]weapon_galilar" "1" + } + } + "set_gods_and_monsters" + { + "name" "#CSGO_set_gods_and_monsters" + "set_description" "#CSGO_set_gods_and_monsters_desc" + "is_collection" "1" + "items" + { + "[sp_labyrinth]weapon_mp7" "1" + "[sp_labyrinth3]weapon_aug" "1" + "[hy_zodiac1]weapon_elite" "1" + "[hy_zodiac1]weapon_nova" "1" + "[hy_hades]weapon_tec9" "1" + "[sp_labyrinth2]weapon_hkp2000" "1" + "[hy_zodiac2]weapon_awp" "1" + "[hy_zodiac3]weapon_m249" "1" + "[cu_labyrinth]weapon_ump45" "1" + "[aa_pandora]weapon_mp9" "1" + "[cu_chronos_g3sg1]weapon_g3sg1" "1" + "[hy_icarus]weapon_m4a1_silencer" "1" + "[cu_poseidon]weapon_m4a1" "1" + "[cu_medusa_awp]weapon_awp" "1" + } + } + "set_chopshop" + { + "name" "#CSGO_set_chopshop" + "set_description" "#CSGO_set_chopshop_desc" + "is_collection" "1" + "items" + { + "[am_army_shine]weapon_scar20" "1" + "[am_army_shine]weapon_cz75a" "1" + "[so_keycolors]weapon_m249" "1" + "[so_aqua]weapon_mag7" "1" + "[so_night]weapon_deagle" "1" + "[hy_varicamo_urban]weapon_galilar" "1" + "[so_khaki_green]weapon_usp_silencer" "1" + "[aa_fade]weapon_mac10" "1" + "[so_whiteout]weapon_p250" "1" + "[hy_varicamo_red]weapon_mp7" "1" + "[so_orange_accents]weapon_fiveseven" "1" + "[an_emerald]weapon_cz75a" "1" + "[so_yellow]weapon_sg556" "1" + "[gs_mother_of_pearl_elite]weapon_elite" "1" + "[am_aqua_flecks]weapon_glock" "1" + "[an_red_m4a1s]weapon_m4a1_silencer" "1" + } + } + "set_kimono" + { + "name" "#CSGO_set_kimono" + "set_description" "#CSGO_set_kimono_desc" + "is_collection" "1" + "items" + { + "[hy_bamboo_jungle_ink]weapon_bizon" "1" + "[hy_bamboo_jungle_black]weapon_sawedoff" "1" + "[hy_bamboo_jungle]weapon_tec9" "1" + "[hy_kimono_diamonds_orange]weapon_g3sg1" "1" + "[sp_kimono_diamonds]weapon_p250" "1" + "[hy_kimono_diamonds_red]weapon_p250" "1" + "[am_seastorm]weapon_deagle" "1" + "[am_geometric_steps]weapon_galilar" "1" + "[hy_geometric_steps_green]weapon_mag7" "1" + "[hy_geometric_steps_yellow]weapon_tec9" "1" + "[hy_kimono_diamonds]weapon_fiveseven" "1" + "[am_seastorm_blood]weapon_deagle" "1" + "[am_seastorm_shojo]weapon_deagle" "1" + "[am_kimono_sunrise]weapon_m4a1" "1" + "[am_bamboo_jungle]weapon_ak47" "1" + "[cu_anime_aug]weapon_aug" "1" + } + } + "set_community_8" + { + "name" "#CSGO_set_community_8" + "set_description" "#CSGO_set_community_8_desc" + "is_collection" "1" + "items" + { + "[cu_galilar_particles]weapon_galilar" "1" + "[aq_glock18_flames_blue]weapon_glock" "1" + "[cu_nova_ranger]weapon_nova" "1" + "[cu_p90_mastery]weapon_p90" "1" + "[cu_ump45_uproar]weapon_ump45" "1" + "[cu_usp_progressiv]weapon_usp_silencer" "1" + "[am_famas_dots]weapon_famas" "1" + "[cu_m4a4_evil_daimyo]weapon_m4a1" "1" + "[am_mp9_nitrogen]weapon_mp9" "1" + "[cu_negev_annihilator]weapon_negev" "1" + "[aq_p2000_boom]weapon_hkp2000" "1" + "[cu_cz75a_chastizer]weapon_cz75a" "1" + "[cu_mp7_nemsis]weapon_mp7" "1" + "[cu_sg553_cyrex]weapon_sg556" "1" + "[cu_ak47_courage_alt]weapon_ak47" "1" + "[cu_awp_hyper_beast]weapon_awp" "1" + } + } + "set_community_9" + { + "name" "#CSGO_set_community_9" + "set_description" "#CSGO_set_community_9_desc" + "is_collection" "1" + "items" + { + "[cu_dualberretta_dragons]weapon_elite" "1" + "[cu_famas_lenta]weapon_famas" "1" + "[gs_glock18_wrathys]weapon_glock" "1" + "[cu_mac10_alekhya_duo]weapon_mac10" "1" + "[cu_mag7_myrcene]weapon_mag7" "1" + "[gs_scar20_peacemaker03]weapon_scar20" "1" + "[aq_xm1014_scumbria]weapon_xm1014" "1" + "[gs_galil_nightwing]weapon_galilar" "1" + "[gs_m249_nebula_crusader]weapon_m249" "1" + "[cu_mp7_classified]weapon_mp7" "1" + "[hy_p250_crackshot]weapon_p250" "1" + "[cu_ak47_winter_sport]weapon_ak47" "1" + "[gs_g3sg1_flux_purple]weapon_g3sg1" "1" + "[cu_ssg08_technicality]weapon_ssg08" "1" + "[gs_m4a1s_snakebite_gold]weapon_m4a1_silencer" "1" + "[cu_usp_kill_confirmed]weapon_usp_silencer" "1" + } + } + "set_community_10" + { + "name" "#CSGO_set_community_10" + "set_description" "#CSGO_set_community_10_desc" + "is_collection" "1" + "items" + { + "[hy_webs]weapon_revolver" "1" + "[am_aug_jumble]weapon_aug" "1" + "[aq_deagle_corinthian]weapon_deagle" "1" + "[am_p2000_imperial_red]weapon_hkp2000" "1" + "[gs_sawedoff_necromancer]weapon_sawedoff" "1" + "[hy_scar20_jungler]weapon_scar20" "1" + "[cu_bizon_noxious]weapon_bizon" "1" + "[cu_fiveseven_retrobution]weapon_fiveseven" "1" + "[cu_negev_impact]weapon_negev" "1" + "[gs_sg553_tiger_moth]weapon_sg556" "1" + "[cu_tec9_avalanche]weapon_tec9" "1" + "[aq_xm1014_hot_rod]weapon_xm1014" "1" + "[cu_ak47_point_disarray]weapon_ak47" "1" + "[cu_g3sg1_executioner]weapon_g3sg1" "1" + "[cu_p90_shapewood]weapon_p90" "1" + "[gs_m4a4_royal_squire]weapon_m4a1" "1" + "[aa_fade_revolver]weapon_revolver" "1" + } + } + "set_community_11" + { + "name" "#CSGO_set_community_11" + "set_description" "#CSGO_set_community_11_desc" + "is_collection" "1" + "items" + { + "[cu_bizon_citizen]weapon_bizon" "1" + "[aq_dualberettas_cartel]weapon_elite" "1" + "[am_mac10_electricity]weapon_mac10" "1" + "[cu_ssg08_necropos]weapon_ssg08" "1" + "[gs_tec9_jambiya]weapon_tec9" "1" + "[gs_usp_voltage]weapon_usp_silencer" "1" + "[aq_famas_contour]weapon_famas" "1" + "[cu_fiveseven_augmented]weapon_fiveseven" "1" + "[gs_glock18_award]weapon_glock" "1" + "[gs_mag7_praetorian]weapon_mag7" "1" + "[sp_mp7_impire]weapon_mp7" "1" + "[cu_awp_mastery]weapon_awp" "1" + "[aq_deserteagle_kumichodragon]weapon_deagle" "1" + "[cu_nova_hyperbeast]weapon_nova" "1" + "[gs_ak47_supercharged]weapon_ak47" "1" + "[gs_m4a4_pioneer]weapon_m4a1" "1" + } + } + } + "paint_kits" + { + "775" + { + "name" "hy_blueprint_white" + "description_string" "#PaintKit_hy_blueprint_white" + "description_tag" "#PaintKit_hy_blueprint_white_Tag" + "style" "2" + "pattern" "blueprint" + "color0" "232 218 202" + "color1" "27 24 23" + "color2" "53 49 47" + "color3" "13 30 42" + "pattern_scale" "2.500000" + "phongexponent" "235" + "phongintensity" "90" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "120.000000" + "pattern_rotate_end" "240.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "776" + { + "name" "hy_blueprint_aqua" + "description_string" "#PaintKit_hy_blueprint_aqua" + "description_tag" "#PaintKit_hy_blueprint_aqua_Tag" + "style" "2" + "pattern" "blueprint" + "color0" "30 31 31 255" + "color1" "165 157 127" + "color2" "96 157 173" + "color3" "18 17 15 255" + "pattern_scale" "2.200000" + "phongexponent" "235" + "phongintensity" "90" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "120.000000" + "pattern_rotate_end" "240.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "777" + { + "name" "hy_blueprint_red" + "description_string" "#PaintKit_hy_blueprint_red" + "description_tag" "#PaintKit_hy_blueprint_red_Tag" + "style" "2" + "pattern" "blueprint" + "color0" "29 29 35" + "color1" "144 137 124" + "color2" "53 49 47" + "color3" "77 21 21" + "pattern_scale" "2.500000" + "phongexponent" "235" + "phongintensity" "90" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "120.000000" + "pattern_rotate_end" "240.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "778" + { + "name" "hy_blueprint_bluered" + "description_string" "#PaintKit_hy_blueprint_bluered" + "description_tag" "#PaintKit_hy_blueprint_bluered_Tag" + "style" "2" + "pattern" "blueprint" + "color0" "18 27 33" + "color1" "96 103 109" + "color2" "43 31 30" + "color3" "27 14 2 255" + "pattern_scale" "2.000000" + "phongexponent" "200" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "120.000000" + "pattern_rotate_end" "240.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "779" + { + "name" "am_circuitboard_orange" + "description_string" "#PaintKit_am_circuitboard_orange" + "description_tag" "#PaintKit_am_circuitboard_orange_Tag" + "style" "5" + "pattern" "circuitboard" + "color0" "22 19 18 255" + "color1" "147 58 34" + "color2" "58 38 34" + "color3" "23 127 136" + "pattern_scale" "4.000000" + "phongexponent" "255" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "780" + { + "name" "am_circuitboard_silver" + "description_string" "#PaintKit_am_circuitboard_silver" + "description_tag" "#PaintKit_am_circuitboard_silver_Tag" + "style" "5" + "pattern" "circuitboard" + "color0" "15 15 15" + "color1" "53 52 48" + "color2" "108 105 96" + "color3" "206 193 153" + "pattern_scale" "4.500000" + "phongexponent" "255" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "781" + { + "name" "am_circuitboard_aqua" + "description_string" "#PaintKit_am_circuitboard_aqua" + "description_tag" "#PaintKit_am_circuitboard_aqua_Tag" + "style" "5" + "pattern" "circuitboard" + "color0" "7 72 109" + "color1" "117 168 194" + "color2" "31 47 69" + "color3" "34 35 41" + "pattern_scale" "4.000000" + "phongexponent" "255" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "782" + { + "name" "am_circuitboard_green" + "description_string" "#PaintKit_am_circuitboard_green" + "description_tag" "#PaintKit_am_circuitboard_green_Tag" + "style" "5" + "pattern" "circuitboard" + "color0" "31 61 22" + "color1" "99 121 97" + "color2" "22 44 16" + "color3" "169 163 139" + "pattern_scale" "4.500000" + "phongexponent" "255" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "783" + { + "name" "hy_ducts_yellow" + "description_string" "#PaintKit_hy_ducts_yellow" + "description_tag" "#PaintKit_hy_ducts_yellow_Tag" + "style" "2" + "pattern" "ducts" + "color0" "34 17 17" + "color1" "208 17 49" + "color2" "230 178 20" + "color3" "234 216 151" + "pattern_scale" "2.000000" + "phongexponent" "245" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "784" + { + "name" "hy_ducts_green" + "description_string" "#PaintKit_hy_ducts_green" + "description_tag" "#PaintKit_hy_ducts_green_Tag" + "style" "2" + "pattern" "ducts" + "color0" "5 29 28" + "color1" "10 11 11" + "color2" "156 157 127" + "color3" "62 150 140" + "pattern_scale" "2.750000" + "phongexponent" "245" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "785" + { + "name" "hy_ducts_grey" + "description_string" "#PaintKit_hy_ducts_grey" + "description_tag" "#PaintKit_hy_ducts_grey_Tag" + "style" "2" + "pattern" "ducts" + "color0" "28 22 17" + "color1" "76 87 100" + "color2" "39 38 36" + "color3" "168 164 154" + "pattern_scale" "3.000000" + "phongexponent" "245" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "786" + { + "name" "hy_ducts_blue" + "description_string" "#PaintKit_hy_ducts_blue" + "description_tag" "#PaintKit_hy_ducts_blue_Tag" + "style" "2" + "pattern" "ducts" + "color0" "19 23 23" + "color1" "98 139 146" + "color2" "15 116 222" + "color3" "186 161 122" + "pattern_scale" "2.000000" + "phongexponent" "245" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "787" + { + "name" "hy_nuclear_hotorange" + "description_string" "#PaintKit_hy_nuclear_hotorange" + "description_tag" "#PaintKit_hy_nuclear_hotorange_Tag" + "style" "2" + "pattern" "nuclear_pattern" + "color0" "22 21 20 255" + "color1" "95 19 1 255" + "color2" "35 33 31 255" + "color3" "162 53 17" + "pattern_scale" "2.200000" + "phongexponent" "0" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "1.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "788" + { + "name" "hy_nuclear_skulls_redblue" + "description_string" "#PaintKit_hy_nuclear_skulls_redblue" + "description_tag" "#PaintKit_hy_nuclear_skulls_redblue_Tag" + "style" "2" + "pattern" "nuclear_skulls_02" + "color0" "5 41 63" + "color1" "177 172 158" + "color2" "113 14 14" + "color3" "20 23 35 255" + "pattern_scale" "4.500000" + "phongexponent" "55" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.830000" + } + "789" + { + "name" "am_nuclear_skulls_green" + "description_string" "#PaintKit_am_nuclear_skulls_green" + "description_tag" "#PaintKit_am_nuclear_skulls_green_Tag" + "style" "5" + "pattern" "nuclear_skulls_02" + "color0" "86 140 38 255" + "color1" "205 226 64 255" + "color2" "45 60 43 255" + "color3" "13 11 10 255" + "pattern_scale" "3.800000" + "phongexponent" "12" + "phongalbedoboost" "44" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "790" + { + "name" "hy_nuclear_skulls_aqua" + "description_string" "#PaintKit_hy_nuclear_skulls_aqua" + "description_tag" "#PaintKit_hy_nuclear_skulls_aqua_Tag" + "style" "2" + "pattern" "nuclear_skulls_02" + "color0" "55 60 71 255" + "color1" "96 139 139" + "color2" "40 39 43" + "color3" "20 23 35 255" + "pattern_scale" "3.600000" + "phongexponent" "55" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.830000" + } + "791" + { + "name" "gs_tec9_envoy" + "description_string" "#PaintKit_gs_tec9_envoy" + "description_tag" "#PaintKit_gs_tec9_envoy_Tag" + "style" "9" + "pattern" "tec9_envoy" + "use_normal" "1" + "normal" "tec9_envoy_normal" + "color0" "255 251 246" + "color1" "168 168 168" + "color2" "110 82 66" + "color3" "215 177 153" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "96" + "phongalbedoboost" "48" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "792" + { + "name" "gs_m4a1s_operator" + "description_string" "#PaintKit_gs_m4a1s_operator" + "description_tag" "#PaintKit_gs_m4a1s_operator_Tag" + "style" "9" + "pattern" "m4a1s_operator" + "use_normal" "1" + "normal" "m4a1s_operator_normal" + "color0" "255 251 246" + "color1" "185 185 185" + "color2" "130 130 130" + "color3" "215 177 153" + "pattern_scale" "1.000000" + "phongexponent" "64" + "phongintensity" "32" + "phongalbedoboost" "64" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + } + "client_loot_lists" + { + "set_nuke_2_common" + { + "[hy_blueprint_white]weapon_bizon" "1" + "[hy_blueprint_red]weapon_p250" "1" + "[hy_blueprint_bluered]weapon_ump45" "1" + "[hy_ducts_green]weapon_fiveseven" "1" + "[hy_ducts_grey]weapon_nova" "1" + } + "set_nuke_2_uncommon" + { + "[am_circuitboard_silver]weapon_m4a1" "1" + "[am_circuitboard_green]weapon_mp7" "1" + "[hy_ducts_yellow]weapon_negev" "1" + "[hy_nuclear_skulls_aqua]weapon_galilar" "1" + } + "set_nuke_2_rare" + { + "[hy_blueprint_aqua]weapon_p90" "1" + "[am_circuitboard_aqua]weapon_mp5sd" "1" + "[hy_ducts_blue]weapon_p250" "1" + "[hy_nuclear_skulls_redblue]weapon_awp" "1" + } + "set_nuke_2_mythical" + { + "[am_circuitboard_orange]weapon_aug" "1" + "[hy_nuclear_hotorange]weapon_mag7" "1" + "[am_nuclear_skulls_green]weapon_glock" "1" + } + "set_nuke_2_legendary" + { + "[gs_tec9_envoy]weapon_tec9" "1" + "[gs_m4a1s_operator]weapon_m4a1_silencer" "1" + } + "set_nuke_2" + { + "set_nuke_2_common" "1" + "set_nuke_2_uncommon" "1" + "set_nuke_2_rare" "1" + "set_nuke_2_mythical" "1" + "set_nuke_2_legendary" "1" + } + } + "item_sets" + { + "set_nuke_2" + { + "name" "#CSGO_set_nuke_2" + "set_description" "#CSGO_set_nuke_2_desc" + "is_collection" "1" + "items" + { + "[hy_blueprint_white]weapon_bizon" "1" + "[hy_blueprint_red]weapon_p250" "1" + "[hy_blueprint_bluered]weapon_ump45" "1" + "[hy_ducts_green]weapon_fiveseven" "1" + "[hy_ducts_grey]weapon_nova" "1" + "[am_circuitboard_silver]weapon_m4a1" "1" + "[am_circuitboard_green]weapon_mp7" "1" + "[hy_ducts_yellow]weapon_negev" "1" + "[hy_nuclear_skulls_aqua]weapon_galilar" "1" + "[hy_blueprint_aqua]weapon_p90" "1" + "[am_circuitboard_aqua]weapon_mp5sd" "1" + "[hy_ducts_blue]weapon_p250" "1" + "[hy_nuclear_skulls_redblue]weapon_awp" "1" + "[am_circuitboard_orange]weapon_aug" "1" + "[hy_nuclear_hotorange]weapon_mag7" "1" + "[am_nuclear_skulls_green]weapon_glock" "1" + "[gs_tec9_envoy]weapon_tec9" "1" + "[gs_m4a1s_operator]weapon_m4a1_silencer" "1" + } + } + } + "paint_kits_rarity" + { + "hy_blueprint_white" "common" + "hy_blueprint_aqua" "rare" + "hy_blueprint_red" "common" + "hy_blueprint_bluered" "common" + "am_circuitboard_orange" "mythical" + "am_circuitboard_silver" "common" + "am_circuitboard_aqua" "rare" + "am_circuitboard_green" "uncommon" + "hy_ducts_yellow" "uncommon" + "hy_ducts_green" "common" + "hy_ducts_grey" "common" + "hy_ducts_blue" "rare" + "hy_nuclear_hotorange" "mythical" + "hy_nuclear_skulls_redblue" "uncommon" + "am_nuclear_skulls_green" "rare" + "hy_nuclear_skulls_aqua" "uncommon" + "gs_tec9_envoy" "legendary" + "gs_m4a1s_operator" "mythical" + } + "paint_kits" + { + "747" + { + "name" "cu_dual_elites_rally" + "description_string" "#PaintKit_cu_dual_elites_rally" + "description_tag" "#PaintKit_cu_dual_elites_rally_Tag" + "style" "7" + "pattern" "dual_elites_rally" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "748" + { + "name" "gs_mac10_checker" + "description_string" "#PaintKit_gs_mac10_checker" + "description_tag" "#PaintKit_gs_mac10_checker_Tag" + "style" "9" + "pattern" "mac10_checker" + "use_normal" "1" + "normal" "mac10_checker_normal" + "color0" "45 34 30" + "color1" "215 215 215" + "color2" "92 81 78" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "21" + "phongintensity" "21" + "phongalbedoboost" "21" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "749" + { + "name" "gs_p250_checker" + "description_string" "#PaintKit_gs_p250_checker" + "description_tag" "#PaintKit_gs_p250_checker_Tag" + "style" "9" + "pattern" "p250_checker" + "use_normal" "1" + "normal" "p250_checker_normal" + "color0" "205 189 183" + "color1" "233 233 233" + "color2" "92 81 78" + "color3" "138 123 115" + "pattern_scale" "1.000000" + "phongexponent" "21" + "phongintensity" "21" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "750" + { + "name" "cu_sg553_rally" + "description_string" "#PaintKit_cu_sg553_rally" + "description_tag" "#PaintKit_cu_sg553_rally_Tag" + "style" "7" + "pattern" "sg553_rally" + "use_normal" "1" + "normal" "sg553_rally_normal" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "45" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "751" + { + "name" "gs_ssg08_checker" + "description_string" "#PaintKit_gs_ssg08_checker" + "description_tag" "#PaintKit_gs_ssg08_checker_Tag" + "style" "9" + "pattern" "ssg08_checker" + "use_normal" "1" + "normal" "ssg08_checker_normal" + "color0" "205 189 183" + "color1" "235 235 235" + "color2" "92 81 78" + "color3" "138 123 115" + "pattern_scale" "1.000000" + "phongexponent" "8" + "phongintensity" "8" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "752" + { + "name" "aa_fade_mp7" + "description_string" "#PaintKit_aa_fade_mp7" + "description_tag" "#PaintKit_aa_fade_mp7_Tag" + "style" "6" + "pattern" "fade" + "color0" "44 41 39 255" + "color1" "84 52 14 255" + "color2" "71 18 28 255" + "color3" "28 31 57 255" + "pattern_scale" "1.000000" + "phongexponent" "34" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "-0.900000" + "pattern_offset_x_end" "-0.300000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.500000" + "pattern_rotate_start" "-55.000000" + "pattern_rotate_end" "-65.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.250000" + } + "753" + { + "name" "sp_tape_short_rally" + "description_string" "#PaintKit_sp_tape_short_rally" + "description_tag" "#PaintKit_sp_tape_short_rally_Tag" + "style" "3" + "pattern" "camo_tape_short" + "color0" "9 9 9" + "color1" "37 39 41" + "color2" "49 34 22" + "color3" "47 46 43" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "40.000000" + "pattern_rotate_end" "50.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + } + "754" + { + "name" "aq_steel_inferno" + "description_string" "#PaintKit_aq_steel" + "description_tag" "#PaintKit_aq_steel_bravo_Tag" + "pattern" "steel" + "wear_default" "0.400000" + "seed" "21" + "style" "8" + "color0" "164 109 67" + "color1" "129 134 143" + "color2" "148 115 84" + "color3" "215 120 26" + "phongalbedoboost" "1" + "pattern_scale" "4" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "-4" + "pattern_rotate_end" "4" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "755" + { + "name" "hy_splatter3" + "description_string" "#PaintKit_hy_splatter3" + "description_tag" "#PaintKit_hy_splatter3_Tag" + "style" "2" + "pattern" "splatter" + "color0" "89 63 54" + "color1" "68 51 18" + "color2" "101 50 16" + "color3" "55 55 55" + "pattern_scale" "2.500000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-15.000000" + "pattern_rotate_end" "15.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" + } + "793" + { + "name" "hy_red_hex" + "description_string" "#PaintKit_hy_red_hex" + "description_tag" "#PaintKit_hy_red_hex_Tag" + "style" "2" + "pattern" "hive" + "color0" "15 17 19" + "color1" "104 98 89" + "color2" "31 32 37" + "color3" "125 17 17" + "pattern_scale" "1.500000" + "phongexponent" "255" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "794" + { + "name" "sp_mesh_safetyblack" + "description_string" "#PaintKit_sp_mesh_safetyblack" + "description_tag" "#PaintKit_sp_mesh_safetyblack_Tag" + "style" "3" + "pattern" "mesh_fabric" + "color0" "20 19 19" + "color1" "59 43 28" + "color2" "110 107 101" + "color3" "126 49 31" + "pattern_scale" "0.500000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "795" + { + "name" "hy_mesh_safetyorange" + "description_string" "#PaintKit_hy_mesh_safetyorange" + "description_tag" "#PaintKit_hy_mesh_safetyorange_Tag" + "style" "2" + "pattern" "mesh_fabric" + "color0" "234 102 5 255" + "color1" "73 70 51 255" + "color2" "16 14 10" + "color3" "164 176 172" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "796" + { + "name" "sp_mesh_safetyred" + "description_string" "#PaintKit_sp_mesh_safetyred" + "description_tag" "#PaintKit_sp_mesh_safetyred_Tag" + "style" "3" + "pattern" "mesh_fabric" + "color0" "19 18 18 255" + "color1" "81 13 6" + "color2" "123 11 11" + "color3" "38 31 18 255" + "pattern_scale" "0.700000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "797" + { + "name" "aa_vertigo_red" + "description_string" "#PaintKit_aa_vertigo_red" + "description_tag" "#PaintKit_aa_vertigo_red_Tag" + "style" "6" + "pattern" "vertigo" + "color0" "30 3 3" + "color1" "117 103 101" + "color2" "71 71 71" + "color3" "47 40 39" + "pattern_scale" "1.400000" + "phongexponent" "32" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.040000" + "pattern_offset_x_end" "0.140000" + "pattern_offset_y_start" "-0.440000" + "pattern_offset_y_end" "-0.180000" + "pattern_rotate_start" "7.000000" + "pattern_rotate_end" "25.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "798" + { + "name" "so_orange_accents3" + "description_string" "#PaintKit_so_tangerine" + "description_tag" "#PaintKit_so_orange_accents_Tag" + "style" "1" + "color0" "17 17 17" + "color1" "35 35 35" + "color2" "153 64 33" + "color3" "153 64 33" + "phongexponent" "192" + "phongintensity" "60" + "only_first_material" "0" + } + "799" + { + "name" "aa_vertigo_blue" + "description_string" "#PaintKit_aa_vertigo_blue" + "description_tag" "#PaintKit_aa_vertigo_blue_Tag" + "style" "6" + "pattern" "vertigo" + "color0" "19 22 34" + "color1" "112 117 101" + "color2" "53 84 95" + "color3" "39 47 47" + "pattern_scale" "1.400000" + "phongexponent" "32" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.040000" + "pattern_offset_x_end" "0.140000" + "pattern_offset_y_start" "-0.440000" + "pattern_offset_y_end" "-0.180000" + "pattern_rotate_start" "7.000000" + "pattern_rotate_end" "25.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + } + "client_loot_lists" + { + "set_inferno_2_common" + { + "[hy_mottled_sand]weapon_ump45" "1" + "[sp_tape_short_rally]weapon_mp5sd" "1" + "[hy_splatter3]weapon_mp9" "1" + "[sp_mesh_safetyblack]weapon_aug" "1" + "[aq_steel_inferno]weapon_mag7" "1" + } + "set_inferno_2_uncommon" + { + "[so_red]weapon_bizon" "1" + "[gs_mac10_checker]weapon_mac10" "1" + "[so_orange_accents3]weapon_revolver" "1" + "[aa_vertigo_blue]weapon_glock" "1" + } + "set_inferno_2_rare" + { + "[gs_ssg08_checker]weapon_ssg08" "1" + "[hy_red_hex]weapon_m4a1" "1" + "[sp_mesh_safetyred]weapon_usp_silencer" "1" + "[aa_vertigo_red]weapon_sawedoff" "1" + } + "set_inferno_2_mythical" + { + "[gs_p250_checker]weapon_p250" "1" + "[aa_fade_mp7]weapon_mp7" "1" + "[hy_mesh_safetyorange]weapon_ak47" "1" + } + "set_inferno_2_legendary" + { + "[cu_dual_elites_rally]weapon_elite" "1" + "[cu_sg553_rally]weapon_sg556" "1" + } + "set_inferno_2" + { + "set_inferno_2_common" "1" + "set_inferno_2_uncommon" "1" + "set_inferno_2_rare" "1" + "set_inferno_2_mythical" "1" + "set_inferno_2_legendary" "1" + } + } + "item_sets" + { + "set_inferno_2" + { + "name" "#CSGO_set_inferno_2" + "set_description" "#CSGO_set_inferno_2_desc" + "is_collection" "1" + "items" + { + "[hy_mottled_sand]weapon_ump45" "1" + "[sp_tape_short_rally]weapon_mp5sd" "1" + "[hy_splatter3]weapon_mp9" "1" + "[sp_mesh_safetyblack]weapon_aug" "1" + "[aq_steel_inferno]weapon_mag7" "1" + "[so_red]weapon_bizon" "1" + "[gs_mac10_checker]weapon_mac10" "1" + "[so_orange_accents3]weapon_revolver" "1" + "[aa_vertigo_blue]weapon_glock" "1" + "[gs_ssg08_checker]weapon_ssg08" "1" + "[hy_red_hex]weapon_m4a1" "1" + "[sp_mesh_safetyred]weapon_usp_silencer" "1" + "[aa_vertigo_red]weapon_sawedoff" "1" + "[gs_p250_checker]weapon_p250" "1" + "[aa_fade_mp7]weapon_mp7" "1" + "[hy_mesh_safetyorange]weapon_ak47" "1" + "[cu_dual_elites_rally]weapon_elite" "1" + "[cu_sg553_rally]weapon_sg556" "1" + } + } + } + "paint_kits_rarity" + { + "cu_dual_elites_rally" "legendary" + "gs_mac10_checker" "uncommon" + "gs_p250_checker" "mythical" + "cu_sg553_rally" "legendary" + "gs_ssg08_checker" "rare" + "aa_fade_mp7" "mythical" + "sp_tape_short_rally" "common" + "hy_splatter3" "common" + "hy_red_hex" "uncommon" + "sp_mesh_safetyblack" "common" + "hy_mesh_safetyorange" "rare" + "sp_mesh_safetyred" "uncommon" + "aa_vertigo_red" "rare" + "so_orange_accents3" "uncommon" + "aa_vertigo_blue" "common" + "aq_steel_inferno" "common" + } + "sticker_kits" + { + "1697" + { + "name" "spray_std_axes_crossed" + "item_name" "#SprayKit_std_axes_crossed" + "description_string" "#SprayKit_desc_std_axes_crossed" + "sticker_material" "default/axes_crossed" + "item_rarity" "common" + } + "1698" + { + "name" "spray_std_bubble_dead" + "item_name" "#SprayKit_std_bubble_dead" + "description_string" "#SprayKit_desc_std_bubble_dead" + "sticker_material" "default/bubble_dead" + "item_rarity" "common" + } + "1699" + { + "name" "spray_std_chess_king" + "item_name" "#SprayKit_std_chess_king" + "description_string" "#SprayKit_desc_std_chess_king" + "sticker_material" "default/chess_king" + "item_rarity" "common" + } + "1700" + { + "name" "spray_std_crown" + "item_name" "#SprayKit_std_crown" + "description_string" "#SprayKit_desc_std_crown" + "sticker_material" "default/crown" + "item_rarity" "common" + } + "1701" + { + "name" "spray_std_dollar" + "item_name" "#SprayKit_std_dollar" + "description_string" "#SprayKit_desc_std_dollar" + "sticker_material" "default/dollar" + "item_rarity" "common" + } + "1702" + { + "name" "spray_std_double_kill" + "item_name" "#SprayKit_std_double_kill" + "description_string" "#SprayKit_desc_std_double_kill" + "sticker_material" "default/double_kill" + "item_rarity" "common" + } + "1703" + { + "name" "spray_std_eco_pistol" + "item_name" "#SprayKit_std_eco_pistol" + "description_string" "#SprayKit_desc_std_eco_pistol" + "sticker_material" "default/eco_pistol" + "item_rarity" "common" + } + "1704" + { + "name" "spray_std_emo_angry" + "item_name" "#SprayKit_std_emo_angry" + "description_string" "#SprayKit_desc_std_emo_angry" + "sticker_material" "default/emo_angry" + "item_rarity" "common" + } + "1705" + { + "name" "spray_std_emo_brainless" + "item_name" "#SprayKit_std_emo_brainless" + "description_string" "#SprayKit_desc_std_emo_brainless" + "sticker_material" "default/emo_brainless" + "item_rarity" "common" + } + "1706" + { + "name" "spray_std_emo_despair" + "item_name" "#SprayKit_std_emo_despair" + "description_string" "#SprayKit_desc_std_emo_despair" + "sticker_material" "default/emo_despair" + "item_rarity" "common" + } + "1707" + { + "name" "spray_std_emo_happy" + "item_name" "#SprayKit_std_emo_happy" + "description_string" "#SprayKit_desc_std_emo_happy" + "sticker_material" "default/emo_happy" + "item_rarity" "common" + } + "1708" + { + "name" "spray_std_emo_ninja" + "item_name" "#SprayKit_std_emo_ninja" + "description_string" "#SprayKit_desc_std_emo_ninja" + "sticker_material" "default/emo_ninja" + "item_rarity" "common" + } + "1709" + { + "name" "spray_std_emo_worry" + "item_name" "#SprayKit_std_emo_worry" + "description_string" "#SprayKit_desc_std_emo_worry" + "sticker_material" "default/emo_worry" + "item_rarity" "common" + } + "1710" + { + "name" "spray_std_evil_eye" + "item_name" "#SprayKit_std_evil_eye" + "description_string" "#SprayKit_desc_std_evil_eye" + "sticker_material" "default/evil_eye" + "item_rarity" "common" + } + "1711" + { + "name" "spray_std_eyeball" + "item_name" "#SprayKit_std_eyeball" + "description_string" "#SprayKit_desc_std_eyeball" + "sticker_material" "default/eyeball" + "item_rarity" "common" + } + "1712" + { + "name" "spray_std_gg_01" + "item_name" "#SprayKit_std_gg_01" + "description_string" "#SprayKit_desc_std_gg_01" + "sticker_material" "default/gg_01" + "item_rarity" "common" + } + "1713" + { + "name" "spray_std_gg_02" + "item_name" "#SprayKit_std_gg_02" + "description_string" "#SprayKit_desc_std_gg_02" + "sticker_material" "default/gg_02" + "item_rarity" "common" + } + "1714" + { + "name" "spray_std_glhf" + "item_name" "#SprayKit_std_glhf" + "description_string" "#SprayKit_desc_std_glhf" + "sticker_material" "default/glhf" + "item_rarity" "common" + } + "1715" + { + "name" "spray_std_gunsmoke" + "item_name" "#SprayKit_std_gunsmoke" + "description_string" "#SprayKit_desc_std_gunsmoke" + "sticker_material" "default/gunsmoke" + "item_rarity" "common" + } + "1716" + { + "name" "spray_std_hand_butterfly" + "item_name" "#SprayKit_std_hand_butterfly" + "description_string" "#SprayKit_desc_std_hand_butterfly" + "sticker_material" "default/hand_butterfly" + "item_rarity" "common" + } + "1717" + { + "name" "spray_std_hand_loser" + "item_name" "#SprayKit_std_hand_loser" + "description_string" "#SprayKit_desc_std_hand_loser" + "sticker_material" "default/hand_loser" + "item_rarity" "common" + } + "1718" + { + "name" "spray_std_hat_sherif" + "item_name" "#SprayKit_std_hat_sherif" + "description_string" "#SprayKit_desc_std_hat_sherif" + "sticker_material" "default/hat_sherif" + "item_rarity" "common" + } + "1719" + { + "name" "spray_std_headstone_rip" + "item_name" "#SprayKit_std_headstone_rip" + "description_string" "#SprayKit_desc_std_headstone_rip" + "sticker_material" "default/headstone_rip" + "item_rarity" "common" + } + "1720" + { + "name" "spray_std_heart" + "item_name" "#SprayKit_std_heart" + "description_string" "#SprayKit_desc_std_heart" + "sticker_material" "default/heart" + "item_rarity" "common" + } + "1721" + { + "name" "spray_std_hl_eightball" + "item_name" "#SprayKit_std_hl_eightball" + "description_string" "#SprayKit_desc_std_hl_eightball" + "sticker_material" "default/hl_eightball" + "item_rarity" "common" + } + "1722" + { + "name" "spray_std_hl_lambda" + "item_name" "#SprayKit_std_hl_lambda" + "description_string" "#SprayKit_desc_std_hl_lambda" + "sticker_material" "default/hl_lambda" + "item_rarity" "common" + } + "1723" + { + "name" "spray_std_hl_smiley" + "item_name" "#SprayKit_std_hl_smiley" + "description_string" "#SprayKit_desc_std_hl_smiley" + "sticker_material" "default/hl_smiley" + "item_rarity" "common" + } + "1724" + { + "name" "spray_std_jump_shot" + "item_name" "#SprayKit_std_jump_shot" + "description_string" "#SprayKit_desc_std_jump_shot" + "sticker_material" "default/jump_shot" + "item_rarity" "common" + } + "1725" + { + "name" "spray_std_karambit" + "item_name" "#SprayKit_std_karambit" + "description_string" "#SprayKit_desc_std_karambit" + "sticker_material" "default/karambit" + "item_rarity" "common" + } + "1726" + { + "name" "spray_std_knives_crossed" + "item_name" "#SprayKit_std_knives_crossed" + "description_string" "#SprayKit_desc_std_knives_crossed" + "sticker_material" "default/knives_crossed" + "item_rarity" "common" + } + "1727" + { + "name" "spray_std_moly" + "item_name" "#SprayKit_std_moly" + "description_string" "#SprayKit_desc_std_moly" + "sticker_material" "default/moly" + "item_rarity" "common" + } + "1728" + { + "name" "spray_std_necklace_dollar" + "item_name" "#SprayKit_std_necklace_dollar" + "description_string" "#SprayKit_desc_std_necklace_dollar" + "sticker_material" "default/necklace_dollar" + "item_rarity" "common" + } + "1729" + { + "name" "spray_std_no_scope" + "item_name" "#SprayKit_std_no_scope" + "description_string" "#SprayKit_desc_std_no_scope" + "sticker_material" "default/no_scope" + "item_rarity" "common" + } + "1730" + { + "name" "spray_std_piggles" + "item_name" "#SprayKit_std_piggles" + "description_string" "#SprayKit_desc_std_piggles" + "sticker_material" "default/piggles" + "item_rarity" "common" + } + "1731" + { + "name" "spray_std_popdog" + "item_name" "#SprayKit_std_popdog" + "description_string" "#SprayKit_desc_std_popdog" + "sticker_material" "default/popdog" + "item_rarity" "common" + } + "1732" + { + "name" "spray_std_rooster" + "item_name" "#SprayKit_std_rooster" + "description_string" "#SprayKit_desc_std_rooster" + "sticker_material" "default/rooster" + "item_rarity" "common" + } + "1733" + { + "name" "spray_std_salty" + "item_name" "#SprayKit_std_salty" + "description_string" "#SprayKit_desc_std_salty" + "sticker_material" "default/salty" + "item_rarity" "common" + } + "1734" + { + "name" "spray_std_sorry" + "item_name" "#SprayKit_std_sorry" + "description_string" "#SprayKit_desc_std_sorry" + "sticker_material" "default/sorry" + "item_rarity" "common" + } + "1735" + { + "name" "spray_std_tongue" + "item_name" "#SprayKit_std_tongue" + "description_string" "#SprayKit_desc_std_tongue" + "sticker_material" "default/tongue" + "item_rarity" "common" + } + "1736" + { + "name" "spray_std_wings" + "item_name" "#SprayKit_std_wings" + "description_string" "#SprayKit_desc_std_wings" + "sticker_material" "default/wings" + "item_rarity" "common" + } + "1737" + { + "name" "spray_std_gtg" + "item_name" "#SprayKit_std_gtg" + "description_string" "#SprayKit_desc_std_gtg" + "sticker_material" "default/gtg" + "item_rarity" "common" + } + } + "paint_kits" + { + "125" + { + "name" "cu_xray_p250" + "description_string" "#PaintKit_cu_xray_p250" + "description_tag" "#PaintKit_cu_xray_p250_Tag" + "style" "7" + "pattern" "xray_p250" + "pattern_scale" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + "phongexponent" "100" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + } + } + "item_sets" + { + "set_xraymachine" + { + "name" "#CSGO_set_xraymachine" + "set_description" "#CSGO_set_xraymachine_desc" + "is_collection" "1" + "items" + { + "[cu_xray_p250]weapon_p250" "1" + } + } + } + "paint_kits_rarity" + { + "cu_xray_p250" "mythical" + } + "revolving_loot_lists" + { + "292" "crate_xray_p250_lootlist" + } + "items" + { + "4668" + { + "item_name" "#CSGO_crate_xray_p250" + "name" "crate_xray_p250" + "item_description" "#CSGO_crate_xray_p250_desc" + "image_inventory" "econ/weapon_cases/crate_xray_p250" + "first_sale_date" "2019/10/02" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "292" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_xraymachine" + "tag_text" "#CSGO_set_xraymachine" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "client_loot_lists" + { + "crate_community_11_rare" + { + "[cu_bizon_citizen]weapon_bizon" "1" + "[aq_dualberettas_cartel]weapon_elite" "1" + "[am_mac10_electricity]weapon_mac10" "1" + "[cu_ssg08_necropos]weapon_ssg08" "1" + "[gs_tec9_jambiya]weapon_tec9" "1" + "[gs_usp_voltage]weapon_usp_silencer" "1" + } + "crate_community_11_mythical" + { + "[aq_famas_contour]weapon_famas" "1" + "[cu_fiveseven_augmented]weapon_fiveseven" "1" + "[gs_glock18_award]weapon_glock" "1" + "[gs_mag7_praetorian]weapon_mag7" "1" + "[sp_mp7_impire]weapon_mp7" "1" + } + "crate_community_11_legendary" + { + "[cu_awp_mastery]weapon_awp" "1" + "[aq_deserteagle_kumichodragon]weapon_deagle" "1" + "[cu_nova_hyperbeast]weapon_nova" "1" + } + "crate_community_11_ancient" + { + "[gs_ak47_supercharged]weapon_ak47" "1" + "[gs_m4a4_pioneer]weapon_m4a1" "1" + } + "crate_valve_1_rare" + { + "[hy_skulls]weapon_mp7" "1" + "[hy_feathers_aug]weapon_aug" "1" + "[so_purple]weapon_sg556" "1" + } + "crate_valve_1_mythical" + { + "[am_dragon_glock]weapon_glock" "1" + "[am_zebra_dark]weapon_usp_silencer" "1" + "[am_zebra_dark]weapon_m4a1_silencer" "1" + } + "crate_valve_1_legendary" + { + "[aq_oiled]weapon_ak47" "1" + "[aa_vertigo]weapon_deagle" "1" + } + "crate_valve_1_ancient" + { + "[am_lightning_awp]weapon_awp" "1" + } + "crate_esports_2013_rare" + { + "[sp_zebracam_bw]weapon_m4a1" "1" + "[hy_icosahedron]weapon_mag7" "1" + "[hy_doomkitty]weapon_famas" "1" + } + "crate_esports_2013_mythical" + { + "[hy_ddpat_orange]weapon_galilar" "1" + "[hy_ddpat_orange]weapon_sawedoff" "1" + "[sp_splash_p250]weapon_p250" "1" + } + "crate_esports_2013_legendary" + { + "[hy_ak47lam]weapon_ak47" "1" + "[hy_blam_simple]weapon_awp" "1" + } + "crate_esports_2013_ancient" + { + "[cu_catskulls_p90]weapon_p90" "1" + } + "crate_operation_ii_rare" + { + "[sp_spray_waves_bravo]weapon_sg556" "1" + "[cu_season_elites_bravo]weapon_elite" "1" + "[hy_seaside_bravo]weapon_nova" "1" + "[hy_crumple_bravo]weapon_galilar" "1" + "[sp_skull_diagram_bravo]weapon_ump45" "1" + "[hy_bluepolygon_bravo]weapon_g3sg1" "1" + } + "crate_operation_ii_mythical" + { + "[hy_siege_bravo]weapon_usp_silencer" "1" + "[sp_star_bravo]weapon_m4a1" "1" + "[aq_etched_mac10_bravo]weapon_mac10" "1" + "[hy_ocean_bravo]weapon_m4a1_silencer" "1" + } + "crate_operation_ii_legendary" + { + "[cu_dragon_p90_bravo]weapon_p90" "1" + "[am_ossify_blue_p2000_bravo]weapon_hkp2000" "1" + "[am_crumple_bravo]weapon_awp" "1" + } + "crate_operation_ii_ancient" + { + "[cu_fireserpent_ak47_bravo]weapon_ak47" "1" + "[am_scales_bravo]weapon_deagle" "1" + } + "crate_valve_2_rare" + { + "[an_titanium30v]weapon_tec9" "1" + "[hy_redtiger]weapon_m4a1_silencer" "1" + "[hy_bluehex]weapon_famas" "1" + "[hy_redhex]weapon_p250" "1" + "[hy_webs_darker]weapon_scar20" "1" + } + "crate_valve_2_mythical" + { + "[aq_oiled]weapon_fiveseven" "1" + "[aa_vertigo]weapon_mp9" "1" + "[am_crumple]weapon_nova" "1" + "[am_ossify_red]weapon_elite" "1" + } + "crate_valve_2_legendary" + { + "[am_slither_p90]weapon_p90" "1" + "[am_electric_red]weapon_usp_silencer" "1" + } + "crate_valve_2_ancient" + { + "[cu_shark]weapon_ssg08" "1" + } + "crate_esports_2013_winter_rare" + { + "[an_titanium30v]weapon_galilar" "1" + "[hy_flowers]weapon_fiveseven" "1" + "[hy_water_crest]weapon_bizon" "1" + "[sp_camo_wood_blue]weapon_nova" "1" + "[sp_zebracam_blue]weapon_g3sg1" "1" + "[am_ddpatdense_silver]weapon_p250" "1" + } + "crate_esports_2013_winter_mythical" + { + "[hy_ak47lam_blue]weapon_ak47" "1" + "[hy_modspots]weapon_p90" "1" + } + "crate_esports_2013_winter_legendary" + { + "[cu_broken_path_famas]weapon_famas" "1" + "[hy_hive]weapon_awp" "1" + "[am_ddpatdense_peacock]weapon_deagle" "1" + } + "crate_esports_2013_winter_ancient" + { + "[cu_xray_m4]weapon_m4a1" "1" + } + "crate_community_1_rare" + { + "[cu_sandstorm]weapon_galilar" "1" + "[hy_kami]weapon_fiveseven" "1" + "[aq_obsidian]weapon_m249" "1" + "[am_turqoise_halftone]weapon_bizon" "1" + } + "crate_community_1_mythical" + { + "[cu_famas_pulse]weapon_famas" "1" + "[hy_marina_sunrise]weapon_elite" "1" + "[am_thorny_rose_mp9]weapon_mp9" "1" + "[cu_skull_nova]weapon_nova" "1" + } + "crate_community_1_legendary" + { + "[cu_m4a1-s_elegant]weapon_m4a1_silencer" "1" + "[cu_p250_refined]weapon_p250" "1" + "[cu_awp_cobra]weapon_awp" "1" + } + "crate_community_1_ancient" + { + "[cu_m4_asimov]weapon_m4a1" "1" + "[cu_sawedoff_octopump]weapon_sawedoff" "1" + } + "crate_valve_3_rare" + { + "[hy_webs]weapon_cz75a" "1" + "[hy_poly_camo]weapon_hkp2000" "1" + "[so_panther]weapon_elite" "1" + "[aq_usp_stainless]weapon_usp_silencer" "1" + "[hy_craquelure]weapon_glock" "1" + } + "crate_valve_3_mythical" + { + "[am_diamond_plate]weapon_cz75a" "1" + "[am_fluted_tec9]weapon_tec9" "1" + "[aq_engraved_deagle]weapon_deagle" "1" + "[am_copper_flecks]weapon_fiveseven" "1" + } + "crate_valve_3_legendary" + { + "[am_fuschia]weapon_cz75a" "1" + "[am_p250_beaded_paint]weapon_p250" "1" + } + "crate_valve_3_ancient" + { + "[aq_etched_cz75]weapon_cz75a" "1" + } + "crate_community_2_rare" + { + "[cu_ump_corporal]weapon_ump45" "1" + "[sp_negev_turq_terrain]weapon_negev" "1" + "[cu_tec9_sandstorm]weapon_tec9" "1" + "[cu_mag7_heaven]weapon_mag7" "1" + } + "crate_community_2_mythical" + { + "[cu_mac10_redhot]weapon_mac10" "1" + "[cu_sg553_pulse]weapon_sg556" "1" + "[an_famas_sgt]weapon_famas" "1" + "[cu_usp_elegant]weapon_usp_silencer" "1" + } + "crate_community_2_legendary" + { + "[cu_ak47_cobra]weapon_ak47" "1" + "[cu_p90_trigon]weapon_p90" "1" + "[cu_nova_antique]weapon_nova" "1" + } + "crate_community_2_ancient" + { + "[cu_awp_asimov]weapon_awp" "1" + "[cu_aug_chameleonaire]weapon_aug" "1" + } + "crate_community_4_rare" + { + "[cu_mp7-commander]weapon_mp7" "1" + "[cu_negev_titanstorm]weapon_negev" "1" + "[cu_p2000_ivory]weapon_hkp2000" "1" + "[aq_leviathan]weapon_ssg08" "1" + "[hy_lines_orange]weapon_ump45" "1" + } + "crate_community_4_mythical" + { + "[cu_bizon-osiris]weapon_bizon" "1" + "[cu_c75a-tiger]weapon_cz75a" "1" + "[cu_nova_koi]weapon_nova" "1" + "[cu_bittersweet]weapon_p250" "1" + } + "crate_community_4_legendary" + { + "[cu_deagle_aureus]weapon_deagle" "1" + "[aq_57_feathers]weapon_fiveseven" "1" + "[cu_glock-liquescent]weapon_glock" "1" + } + "crate_community_4_ancient" + { + "[cu_p90-asiimov]weapon_p90" "1" + "[cu_m4a1s_cyrex]weapon_m4a1_silencer" "1" + } + "crate_esports_2014_summer_rare" + { + "[am_zebra_dark]weapon_ssg08" "1" + "[so_purple]weapon_mac10" "1" + "[hy_redtiger]weapon_usp_silencer" "1" + "[hy_bluehex]weapon_cz75a" "1" + "[cu_bratatat_negev]weapon_negev" "1" + "[hy_snakeskin_red]weapon_xm1014" "1" + } + "crate_esports_2014_summer_mythical" + { + "[hy_splatter]weapon_bizon" "1" + "[hy_zombie]weapon_p90" "1" + "[am_ossify_blue]weapon_mp7" "1" + "[am_ddpatdense_silver]weapon_glock" "1" + "[hy_webs_darker]weapon_deagle" "1" + } + "crate_esports_2014_summer_legendary" + { + "[hy_tiger]weapon_aug" "1" + "[cu_spring_nova]weapon_nova" "1" + "[cu_favela_awp]weapon_awp" "1" + "[cu_favela_p2000]weapon_hkp2000" "1" + } + "crate_esports_2014_summer_ancient" + { + "[cu_bullet_rain_m4a1]weapon_m4a1" "1" + "[cu_panther_ak47]weapon_ak47" "1" + } + "crate_community_5_rare" + { + "[am_g3sg1_murky]weapon_g3sg1" "1" + "[sp_mag7_firebitten]weapon_mag7" "1" + "[cu_mp9_chevron]weapon_mp9" "1" + "[cu_fiveseven_urban_hazard]weapon_fiveseven" "1" + "[sp_ump45_d-visions]weapon_ump45" "1" + } + "crate_community_5_mythical" + { + "[aq_glock_coiled]weapon_glock" "1" + "[aq_m4a1s_basilisk]weapon_m4a1_silencer" "1" + "[cu_m4a4_griffin]weapon_m4a1" "1" + "[aq_sawedoff_blackgold]weapon_sawedoff" "1" + } + "crate_community_5_legendary" + { + "[aq_p250_cartel]weapon_p250" "1" + "[cu_scar20_intervention]weapon_scar20" "1" + "[cu_xm1014_caritas]weapon_xm1014" "1" + } + "crate_community_5_ancient" + { + "[cu_tribute_ak47]weapon_ak47" "1" + "[cu_p2000_fire_elemental]weapon_hkp2000" "1" + } + "crate_community_6_rare" + { + "[cu_glock_deathtoll]weapon_glock" "1" + "[cu_m249_sektor]weapon_m249" "1" + "[cu_mp9_deadly_poison]weapon_mp9" "1" + "[aq_scar20_leak]weapon_scar20" "1" + "[aq_xm1014_sigla]weapon_xm1014" "1" + } + "crate_community_6_mythical" + { + "[cu_elites_urbanstorm]weapon_elite" "1" + "[aq_deagle_naga]weapon_deagle" "1" + "[am_mac10_malachite]weapon_mac10" "1" + "[cu_sawedoff_deva]weapon_sawedoff" "1" + } + "crate_community_6_legendary" + { + "[aq_ak47_cartel]weapon_ak47" "1" + "[cu_m4a4_ancestral]weapon_m4a1" "1" + "[cu_p250_mandala]weapon_p250" "1" + } + "crate_community_6_ancient" + { + "[am_awp_glory]weapon_awp" "1" + "[cu_galil_abrasion]weapon_galilar" "1" + } + "crate_community_7_rare" + { + "[cu_ak47_mastery]weapon_ak47" "1" + "[aq_mp7_ultramodern]weapon_mp7" "1" + "[am_bronze_sparkle]weapon_deagle" "1" + "[aq_p250_contour]weapon_p250" "1" + "[am_negev_glory]weapon_negev" "1" + "[cu_sawedoff_origami]weapon_sawedoff" "1" + } + "crate_community_7_mythical" + { + "[aq_awp_twine]weapon_awp" "1" + "[cu_mag7_redhot]weapon_mag7" "1" + "[cu_cz75_precision]weapon_cz75a" "1" + "[am_ump_racer]weapon_ump45" "1" + } + "crate_community_7_legendary" + { + "[cu_fiveseven_banana]weapon_fiveseven" "1" + "[cu_galil_eco]weapon_galilar" "1" + "[aq_famas_jinn]weapon_famas" "1" + } + "crate_community_7_ancient" + { + "[cu_m4a1_hyper_beast]weapon_m4a1_silencer" "1" + "[cu_mac10_neonrider]weapon_mac10" "1" + } + "crate_community_8_rare" + { + "[cu_galilar_particles]weapon_galilar" "1" + "[aq_glock18_flames_blue]weapon_glock" "1" + "[cu_nova_ranger]weapon_nova" "1" + "[cu_p90_mastery]weapon_p90" "1" + "[cu_ump45_uproar]weapon_ump45" "1" + "[cu_usp_progressiv]weapon_usp_silencer" "1" + } + "crate_community_8_mythical" + { + "[am_famas_dots]weapon_famas" "1" + "[cu_m4a4_evil_daimyo]weapon_m4a1" "1" + "[am_mp9_nitrogen]weapon_mp9" "1" + "[cu_negev_annihilator]weapon_negev" "1" + "[aq_p2000_boom]weapon_hkp2000" "1" + } + "crate_community_8_legendary" + { + "[cu_cz75a_chastizer]weapon_cz75a" "1" + "[cu_mp7_nemsis]weapon_mp7" "1" + "[cu_sg553_cyrex]weapon_sg556" "1" + } + "crate_community_8_ancient" + { + "[cu_ak47_courage_alt]weapon_ak47" "1" + "[cu_awp_hyper_beast]weapon_awp" "1" + } + "crate_community_9_rare" + { + "[cu_dualberretta_dragons]weapon_elite" "1" + "[cu_famas_lenta]weapon_famas" "1" + "[gs_glock18_wrathys]weapon_glock" "1" + "[cu_mac10_alekhya_duo]weapon_mac10" "1" + "[cu_mag7_myrcene]weapon_mag7" "1" + "[gs_scar20_peacemaker03]weapon_scar20" "1" + "[aq_xm1014_scumbria]weapon_xm1014" "1" + } + "crate_community_9_mythical" + { + "[gs_galil_nightwing]weapon_galilar" "1" + "[gs_m249_nebula_crusader]weapon_m249" "1" + "[cu_mp7_classified]weapon_mp7" "1" + "[hy_p250_crackshot]weapon_p250" "1" + } + "crate_community_9_legendary" + { + "[cu_ak47_winter_sport]weapon_ak47" "1" + "[gs_g3sg1_flux_purple]weapon_g3sg1" "1" + "[cu_ssg08_technicality]weapon_ssg08" "1" + } + "crate_community_9_ancient" + { + "[gs_m4a1s_snakebite_gold]weapon_m4a1_silencer" "1" + "[cu_usp_kill_confirmed]weapon_usp_silencer" "1" + } + "crate_community_10_rare" + { + "[hy_webs]weapon_revolver" "1" + "[am_aug_jumble]weapon_aug" "1" + "[aq_deagle_corinthian]weapon_deagle" "1" + "[am_p2000_imperial_red]weapon_hkp2000" "1" + "[gs_sawedoff_necromancer]weapon_sawedoff" "1" + "[hy_scar20_jungler]weapon_scar20" "1" + } + "crate_community_10_mythical" + { + "[cu_bizon_noxious]weapon_bizon" "1" + "[cu_fiveseven_retrobution]weapon_fiveseven" "1" + "[cu_negev_impact]weapon_negev" "1" + "[gs_sg553_tiger_moth]weapon_sg556" "1" + "[cu_tec9_avalanche]weapon_tec9" "1" + "[aq_xm1014_hot_rod]weapon_xm1014" "1" + } + "crate_community_10_legendary" + { + "[cu_ak47_point_disarray]weapon_ak47" "1" + "[cu_g3sg1_executioner]weapon_g3sg1" "1" + "[cu_p90_shapewood]weapon_p90" "1" + } + "crate_community_10_ancient" + { + "[gs_m4a4_royal_squire]weapon_m4a1" "1" + "[aa_fade_revolver]weapon_revolver" "1" + } + "crate_community_11" + { + "crate_community_11_rare" "1" + "crate_community_11_mythical" "1" + "crate_community_11_legendary" "1" + "crate_community_11_ancient" "1" + "community_case_11_unusual" "1" + } + "crate_valve_1" + { + "crate_valve_1_rare" "1" + "crate_valve_1_mythical" "1" + "crate_valve_1_legendary" "1" + "crate_valve_1_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_esports_2013" + { + "crate_esports_2013_rare" "1" + "crate_esports_2013_mythical" "1" + "crate_esports_2013_legendary" "1" + "crate_esports_2013_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_operation_ii" + { + "crate_operation_ii_rare" "1" + "crate_operation_ii_mythical" "1" + "crate_operation_ii_legendary" "1" + "crate_operation_ii_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_valve_2" + { + "crate_valve_2_rare" "1" + "crate_valve_2_mythical" "1" + "crate_valve_2_legendary" "1" + "crate_valve_2_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_esports_2013_winter" + { + "crate_esports_2013_winter_rare" "1" + "crate_esports_2013_winter_mythical" "1" + "crate_esports_2013_winter_legendary" "1" + "crate_esports_2013_winter_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_community_1" + { + "crate_community_1_rare" "1" + "crate_community_1_mythical" "1" + "crate_community_1_legendary" "1" + "crate_community_1_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_valve_3" + { + "crate_valve_3_rare" "1" + "crate_valve_3_mythical" "1" + "crate_valve_3_legendary" "1" + "crate_valve_3_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_community_2" + { + "crate_community_2_rare" "1" + "crate_community_2_mythical" "1" + "crate_community_2_legendary" "1" + "crate_community_2_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_community_4" + { + "crate_community_4_rare" "1" + "crate_community_4_mythical" "1" + "crate_community_4_legendary" "1" + "crate_community_4_ancient" "1" + "community_case_4_unusual" "1" + } + "crate_esports_2014_summer" + { + "crate_esports_2014_summer_rare" "1" + "crate_esports_2014_summer_mythical" "1" + "crate_esports_2014_summer_legendary" "1" + "crate_esports_2014_summer_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_community_5" + { + "crate_community_5_rare" "1" + "crate_community_5_mythical" "1" + "crate_community_5_legendary" "1" + "crate_community_5_ancient" "1" + "unusual_revolving_list" "1" + } + "crate_community_6" + { + "crate_community_6_rare" "1" + "crate_community_6_mythical" "1" + "crate_community_6_legendary" "1" + "crate_community_6_ancient" "1" + "community_case_6_unusual" "1" + } + "crate_community_7" + { + "crate_community_7_rare" "1" + "crate_community_7_mythical" "1" + "crate_community_7_legendary" "1" + "crate_community_7_ancient" "1" + "community_case_6_unusual" "1" + } + "crate_community_8" + { + "crate_community_8_rare" "1" + "crate_community_8_mythical" "1" + "crate_community_8_legendary" "1" + "crate_community_8_ancient" "1" + "community_case_8_unusual" "1" + } + "crate_community_9" + { + "crate_community_9_rare" "1" + "crate_community_9_mythical" "1" + "crate_community_9_legendary" "1" + "crate_community_9_ancient" "1" + "community_case_9_unusual" "1" + } + "crate_community_10" + { + "crate_community_10_rare" "1" + "crate_community_10_mythical" "1" + "crate_community_10_legendary" "1" + "crate_community_10_ancient" "1" + "unusual_revolving_list" "1" + } + "set_dust_uncommon" + { + "[hy_desert]weapon_m4a1" "1" + "[sp_palm]weapon_scar20" "1" + "[sp_zebracam]weapon_ak47" "1" + } + "set_dust_rare" + { + "[hy_copperhead]weapon_aug" "1" + "[sp_snake]weapon_awp" "1" + "[aq_copper]weapon_sawedoff" "1" + } + "set_dust_mythical" + { + "[aa_flames]weapon_deagle" "1" + "[am_scorpion_p2000]weapon_hkp2000" "1" + "[aq_brass]weapon_glock" "1" + } + "set_aztec_common" + { + "[sp_leaves]weapon_nova" "1" + "[sp_short_tape]weapon_ssg08" "1" + "[so_jungle]weapon_fiveseven" "1" + } + "set_aztec_uncommon" + { + "[hy_v_tiger]weapon_m4a1" "1" + "[sp_spray_jungle]weapon_ak47" "1" + } + "set_aztec_rare" + { + "[am_ossify]weapon_tec9" "1" + } + "set_vertigo_common" + { + "[hy_ddpat_urb]weapon_mac10" "1" + "[sp_tape_dots_urban]weapon_xm1014" "1" + } + "set_vertigo_uncommon" + { + "[am_carbon_fiber]weapon_bizon" "1" + } + "set_vertigo_rare" + { + "[sp_mesh_glacier]weapon_p90" "1" + "[hy_ak47lam_bw]weapon_ak47" "1" + } + "set_vertigo_mythical" + { + "[so_tangerine]weapon_elite" "1" + } + "set_inferno_common" + { + "[so_sand]weapon_mag7" "1" + "[cu_walnut_nova]weapon_nova" "1" + } + "set_inferno_uncommon" + { + "[hy_gelpen]weapon_p250" "1" + "[so_tornado]weapon_m4a1" "1" + } + "set_inferno_rare" + { + "[an_navy]weapon_elite" "1" + "[aq_brass]weapon_tec9" "1" + } + "set_militia_common" + { + "[sp_leaves]weapon_bizon" "1" + "[so_grassland]weapon_xm1014" "1" + "[so_tornado]weapon_mac10" "1" + } + "set_militia_uncommon" + { + "[sp_leaves_grassland]weapon_hkp2000" "1" + } + "set_militia_rare" + { + "[hy_hunter_modern]weapon_bizon" "1" + "[hy_hunter_modern]weapon_nova" "1" + "[hy_hunter_modern]weapon_p250" "1" + "[hy_hunter_blaze_orange]weapon_nova" "1" + "[hy_hunter_blaze_orange]weapon_xm1014" "1" + } + "set_militia_mythical" + { + "[hy_hunter_modern]weapon_m4a1" "1" + } + "set_militia_legendary" + { + "[hy_hunter_blaze_pink]weapon_scar20" "1" + } + "set_nuke_common" + { + "[sp_nukestripe_brown]weapon_bizon" "1" + "[sp_nukestripe_brown]weapon_mag7" "1" + "[sp_nukestripe_brown]weapon_sawedoff" "1" + } + "set_nuke_uncommon" + { + "[sp_nukestripe_maroon]weapon_p90" "1" + "[sp_nukestripe_maroon]weapon_ump45" "1" + "[sp_nukestripe_maroon]weapon_xm1014" "1" + } + "set_nuke_rare" + { + "[sp_nukestripe_orange]weapon_m4a1" "1" + } + "set_nuke_mythical" + { + "[sp_nukestripe_green]weapon_p250" "1" + "[sp_nukestripe_green_tec9]weapon_tec9" "1" + } + "set_office_common" + { + "[sp_spray]weapon_famas" "1" + } + "set_office_uncommon" + { + "[hy_arctic]weapon_g3sg1" "1" + "[hy_blizzard]weapon_m249" "1" + "[hy_forest_winter]weapon_galilar" "1" + } + "set_office_rare" + { + "[an_silver]weapon_hkp2000" "1" + "[so_whiteout]weapon_mp7" "1" + } + "set_assault_common" + { + "[so_caramel]weapon_ump45" "1" + "[so_tornado]weapon_sg556" "1" + } + "set_assault_uncommon" + { + "[so_red]weapon_fiveseven" "1" + } + "set_assault_rare" + { + "[an_navy]weapon_negev" "1" + "[an_red]weapon_aug" "1" + } + "set_assault_mythical" + { + "[aa_fade]weapon_glock" "1" + "[so_yellow]weapon_mp9" "1" + } + "set_bravo_ii_common" + { + "[sp_tape_dots_bravo]weapon_mp9" "1" + "[hy_ddpat_jungle_bravo]weapon_m249" "1" + "[so_jungle_bravo]weapon_xm1014" "1" + "[so_tornado_bravo]weapon_tec9" "1" + "[so_olive_bravo]weapon_mp7" "1" + "[an_gunmetal_bravo]weapon_fiveseven" "1" + } + "set_bravo_ii_uncommon" + { + "[hy_mayan_dreams_bravo]weapon_ssg08" "1" + "[sp_palm_bravo]weapon_negev" "1" + "[hy_ali_tile_bravo]weapon_sawedoff" "1" + "[hy_crumple_dark_bravo]weapon_p250" "1" + "[so_sand_bravo]weapon_glock" "1" + } + "set_bravo_ii_rare" + { + "[an_navy_bravo]weapon_aug" "1" + "[sp_hazard_bravo]weapon_mag7" "1" + "[aq_steel_bravo]weapon_bizon" "1" + } + "set_bravo_ii_mythical" + { + "[sp_spitfire_famas_bravo]weapon_famas" "1" + "[an_emerald_bravo]weapon_scar20" "1" + } + "set_dust_2_common" + { + "[hy_desert]weapon_g3sg1" "1" + "[so_sand]weapon_p250" "1" + "[sp_mesh_sand]weapon_scar20" "1" + "[sp_spray_sand]weapon_p90" "1" + "[sp_tape_short_sand]weapon_mp9" "1" + "[sp_zebracam]weapon_nova" "1" + } + "set_dust_2_uncommon" + { + "[sp_snake]weapon_sawedoff" "1" + "[sp_mesh_tan]weapon_ak47" "1" + "[sp_tape_orange]weapon_fiveseven" "1" + "[sp_palm]weapon_mac10" "1" + "[hy_varicamo]weapon_tec9" "1" + } + "set_dust_2_rare" + { + "[aq_brass]weapon_bizon" "1" + "[hy_varicamo]weapon_m4a1_silencer" "1" + "[aq_damascus_sg553]weapon_sg556" "1" + } + "set_dust_2_mythical" + { + "[aa_fade_metallic]weapon_hkp2000" "1" + } + "set_dust_2_legendary" + { + "[aa_fade_metallic_revolver]weapon_revolver" "1" + } + "set_train_common" + { + "[hy_ddpat_urb]weapon_ump45" "1" + "[so_space_marine]weapon_elite" "1" + "[hy_arctic_contrast]weapon_g3sg1" "1" + "[hy_forest_night]weapon_fiveseven" "1" + "[sp_mesh_arctic_contrast]weapon_nova" "1" + "[sp_tape_short_urban]weapon_bizon" "1" + } + "set_train_uncommon" + { + "[so_red]weapon_mac10" "1" + "[hy_ddpat_urb]weapon_m4a1" "1" + "[am_urban]weapon_mag7" "1" + "[am_urban]weapon_p250" "1" + "[am_carbon_fiber]weapon_scar20" "1" + "[sp_twigs]weapon_p90" "1" + } + "set_train_rare" + { + "[hy_varicamo_urban]weapon_deagle" "1" + "[aa_fade_metallic]weapon_sawedoff" "1" + } + "set_train_mythical" + { + "[am_crystallized]weapon_tec9" "1" + } + "set_mirage_common" + { + "[sp_tape]weapon_p250" "1" + "[so_pmc]weapon_fiveseven" "1" + "[so_space_marine]weapon_aug" "1" + "[sp_mesh_tan]weapon_g3sg1" "1" + "[sp_dapple]weapon_p90" "1" + "[sp_mesh_slashes]weapon_galilar" "1" + } + "set_mirage_uncommon" + { + "[so_olive]weapon_glock" "1" + "[sp_tape_orange]weapon_mp7" "1" + "[sp_palm_shadow]weapon_ssg08" "1" + "[hy_varicamo_desert]weapon_negev" "1" + "[sp_mesh_python]weapon_sg556" "1" + } + "set_mirage_rare" + { + "[an_red]weapon_mp9" "1" + "[aa_flames]weapon_ump45" "1" + "[aa_fade_metallic]weapon_mac10" "1" + } + "set_mirage_mythical" + { + "[so_yellow]weapon_mag7" "1" + } + "set_italy_common" + { + "[so_olive]weapon_tec9" "1" + "[so_pmc]weapon_aug" "1" + "[so_space_marine]weapon_famas" "1" + "[so_sand]weapon_nova" "1" + "[sp_tape_short_sand]weapon_bizon" "1" + } + "set_italy_uncommon" + { + "[so_red]weapon_nova" "1" + "[hy_gelpen]weapon_ump45" "1" + "[hy_granite]weapon_hkp2000" "1" + "[aq_forced]weapon_elite" "1" + "[hy_forest_boreal]weapon_m4a1_silencer" "1" + "[hy_varicamo_desert]weapon_xm1014" "1" + } + "set_italy_rare" + { + "[so_red]weapon_glock" "1" + "[an_navy]weapon_mp7" "1" + "[hy_varicamo_red]weapon_sawedoff" "1" + } + "set_italy_mythical" + { + "[hy_snakeskin]weapon_awp" "1" + } + "set_lake_common" + { + "[hy_forest_boreal]weapon_p250" "1" + "[so_moss]weapon_xm1014" "1" + "[so_stormfront]weapon_aug" "1" + "[sp_spray_desert_sage]weapon_galilar" "1" + "[sp_tape_dots_waves]weapon_sg556" "1" + "[sp_tape_short_jungle]weapon_g3sg1" "1" + } + "set_lake_uncommon" + { + "[aq_blued]weapon_xm1014" "1" + "[sp_mesh_tan]weapon_awp" "1" + "[hy_mottled_sand]weapon_deagle" "1" + "[hy_reef]weapon_famas" "1" + "[hy_varicamo_night]weapon_bizon" "1" + } + "set_lake_rare" + { + "[an_navy]weapon_sg556" "1" + "[hy_varicamo_night]weapon_usp_silencer" "1" + "[sp_mesh_hot_and_cold]weapon_p90" "1" + } + "set_lake_mythical" + { + "[am_crystallized_blue]weapon_elite" "1" + } + "set_safehouse_common" + { + "[so_pmc]weapon_elite" "1" + "[so_pmc]weapon_scar20" "1" + "[so_moss]weapon_ssg08" "1" + "[sp_mesh_army]weapon_tec9" "1" + "[sp_spray_army]weapon_mp7" "1" + } + "set_safehouse_uncommon" + { + "[sp_leaves]weapon_usp_silencer" "1" + "[sp_mesh_forest_fire]weapon_aug" "1" + "[sp_tape_orange]weapon_mp9" "1" + "[hy_varicamo]weapon_g3sg1" "1" + "[hy_varicamo]weapon_galilar" "1" + "[sp_mesh_python]weapon_m249" "1" + } + "set_safehouse_rare" + { + "[sp_mesh_hot_and_cold]weapon_famas" "1" + "[am_crystallized_silver]weapon_fiveseven" "1" + "[aa_fade_grassland]weapon_ssg08" "1" + } + "set_safehouse_mythical" + { + "[so_orange_accents]weapon_m4a1_silencer" "1" + } + "set_bank_common" + { + "[hy_ddpat]weapon_mp7" "1" + "[hy_ddpat]weapon_sawedoff" "1" + "[hy_ddpat_urb]weapon_tec9" "1" + "[sp_tape]weapon_revolver" "1" + "[am_army_shine]weapon_negev" "1" + "[am_army_shine]weapon_sg556" "1" + } + "set_bank_uncommon" + { + "[an_silver]weapon_mac10" "1" + "[am_carbon_fiber]weapon_ump45" "1" + "[hy_nerodia]weapon_glock" "1" + "[so_green]weapon_g3sg1" "1" + "[am_oval_hex]weapon_nova" "1" + } + "set_bank_rare" + { + "[am_crystallized_dark]weapon_deagle" "1" + "[so_orca]weapon_galilar" "1" + "[so_orca]weapon_cz75a" "1" + } + "set_bank_mythical" + { + "[cu_pinstripe_ak47]weapon_ak47" "1" + } + "set_bank_legendary" + { + "[cu_money]weapon_p250" "1" + } + "set_overpass_common" + { + "[sp_spray]weapon_m249" "1" + "[so_stormfront]weapon_mag7" "1" + "[so_stormfront]weapon_mp9" "1" + "[sp_spray_desert_sage]weapon_sawedoff" "1" + "[sp_dapple]weapon_ump45" "1" + } + "set_overpass_uncommon" + { + "[hy_gelpen]weapon_mp7" "1" + "[hy_ddpat_urb]weapon_deagle" "1" + "[so_night]weapon_glock" "1" + "[so_grassland]weapon_hkp2000" "1" + } + "set_overpass_rare" + { + "[hy_varicamo_blue]weapon_xm1014" "1" + "[hy_ssg08_marker]weapon_ssg08" "1" + "[so_orange_accents2]weapon_cz75a" "1" + } + "set_overpass_mythical" + { + "[hy_ddpat_pink]weapon_awp" "1" + "[cu_usp_sandpapered]weapon_usp_silencer" "1" + } + "set_overpass_legendary" + { + "[cu_m4a1-s_silence]weapon_m4a1_silencer" "1" + } + "set_cobblestone_common" + { + "[so_stormfront]weapon_p90" "1" + "[so_stormfront]weapon_scar20" "1" + "[hy_vines]weapon_elite" "1" + "[so_indigo_and_grey]weapon_mac10" "1" + "[so_indigo_and_grey]weapon_ump45" "1" + } + "set_cobblestone_uncommon" + { + "[an_silver]weapon_mag7" "1" + "[so_green]weapon_nova" "1" + "[aq_steel]weapon_sawedoff" "1" + "[hy_indigo_usp]weapon_usp_silencer" "1" + } + "set_cobblestone_rare" + { + "[am_chainmail]weapon_hkp2000" "1" + "[am_metal_inlay]weapon_mp9" "1" + } + "set_cobblestone_mythical" + { + "[am_royal]weapon_cz75a" "1" + "[aq_handcannon]weapon_deagle" "1" + } + "set_cobblestone_legendary" + { + "[am_metals]weapon_m4a1_silencer" "1" + } + "set_cobblestone_ancient" + { + "[cu_medieval_dragon_awp]weapon_awp" "1" + } + "set_baggage_common" + { + "[so_pmc]weapon_g3sg1" "1" + "[so_sand]weapon_ssg08" "1" + "[hy_plaid1]weapon_mp7" "1" + "[hy_plaid2]weapon_mp9" "1" + "[hy_plaid2]weapon_cz75a" "1" + } + "set_baggage_uncommon" + { + "[cu_brown_leather_p90]weapon_p90" "1" + "[cu_luggage_mac10]weapon_mac10" "1" + "[cu_luggage_p2000]weapon_hkp2000" "1" + "[cu_luggage_sg553]weapon_sg556" "1" + } + "set_baggage_rare" + { + "[cu_green_leather_sawedoff]weapon_sawedoff" "1" + "[cu_leather_xm1014]weapon_xm1014" "1" + "[cu_luggage_usp-s]weapon_usp_silencer" "1" + } + "set_baggage_mythical" + { + "[cu_green_leather_ak47]weapon_ak47" "1" + "[aq_pilot_deagle]weapon_deagle" "1" + } + "set_baggage_legendary" + { + "[cu_well_traveled_ak47]weapon_ak47" "1" + } + "set_cache_uncommon" + { + "[sp_nuclear_pattern3_negev]weapon_negev" "1" + "[hy_nuclear_skulls4_p250]weapon_p250" "1" + "[sp_nukestripe_orange_aug]weapon_aug" "1" + "[so_grey_nuclear_green_bizon]weapon_bizon" "1" + "[so_grey_nuclear_orange_five_seven]weapon_fiveseven" "1" + "[sp_nukestripe_maroon_sg553]weapon_sg556" "1" + } + "set_cache_rare" + { + "[am_nuclear_pattern1_glock]weapon_glock" "1" + "[hy_nuclear_pattern2_mp9]weapon_mp9" "1" + "[am_nuclear_skulls1_xm1014]weapon_xm1014" "1" + "[am_nuclear_skulls3_mac10]weapon_mac10" "1" + "[hy_nuclear_skulls5_tec9]weapon_tec9" "1" + } + "set_cache_mythical" + { + "[am_nuclear_skulls2_famas]weapon_famas" "1" + "[cu_cerbrus_galil]weapon_galilar" "1" + } + "set_gods_and_monsters_common" + { + "[sp_labyrinth]weapon_mp7" "1" + "[sp_labyrinth3]weapon_aug" "1" + "[hy_zodiac1]weapon_elite" "1" + "[hy_zodiac1]weapon_nova" "1" + } + "set_gods_and_monsters_uncommon" + { + "[hy_hades]weapon_tec9" "1" + "[sp_labyrinth2]weapon_hkp2000" "1" + "[hy_zodiac2]weapon_awp" "1" + "[hy_zodiac3]weapon_m249" "1" + } + "set_gods_and_monsters_rare" + { + "[cu_labyrinth]weapon_ump45" "1" + "[aa_pandora]weapon_mp9" "1" + } + "set_gods_and_monsters_mythical" + { + "[cu_chronos_g3sg1]weapon_g3sg1" "1" + "[hy_icarus]weapon_m4a1_silencer" "1" + } + "set_gods_and_monsters_legendary" + { + "[cu_poseidon]weapon_m4a1" "1" + } + "set_gods_and_monsters_ancient" + { + "[cu_medusa_awp]weapon_awp" "1" + } + "set_chopshop_common" + { + "[am_army_shine]weapon_scar20" "1" + "[am_army_shine]weapon_cz75a" "1" + "[so_keycolors]weapon_m249" "1" + "[so_aqua]weapon_mag7" "1" + } + "set_chopshop_uncommon" + { + "[so_night]weapon_deagle" "1" + "[hy_varicamo_urban]weapon_galilar" "1" + "[so_khaki_green]weapon_usp_silencer" "1" + } + "set_chopshop_rare" + { + "[aa_fade]weapon_mac10" "1" + "[so_whiteout]weapon_p250" "1" + "[hy_varicamo_red]weapon_mp7" "1" + "[so_orange_accents]weapon_fiveseven" "1" + "[an_emerald]weapon_cz75a" "1" + } + "set_chopshop_mythical" + { + "[so_yellow]weapon_sg556" "1" + "[gs_mother_of_pearl_elite]weapon_elite" "1" + } + "set_chopshop_legendary" + { + "[am_aqua_flecks]weapon_glock" "1" + "[an_red_m4a1s]weapon_m4a1_silencer" "1" + } + "set_kimono_common" + { + "[hy_bamboo_jungle_ink]weapon_bizon" "1" + "[hy_bamboo_jungle_black]weapon_sawedoff" "1" + "[hy_bamboo_jungle]weapon_tec9" "1" + "[hy_kimono_diamonds_orange]weapon_g3sg1" "1" + "[sp_kimono_diamonds]weapon_p250" "1" + } + "set_kimono_uncommon" + { + "[hy_kimono_diamonds_red]weapon_p250" "1" + "[am_seastorm]weapon_deagle" "1" + } + "set_kimono_rare" + { + "[am_geometric_steps]weapon_galilar" "1" + "[hy_geometric_steps_green]weapon_mag7" "1" + "[hy_geometric_steps_yellow]weapon_tec9" "1" + } + "set_kimono_mythical" + { + "[hy_kimono_diamonds]weapon_fiveseven" "1" + "[am_seastorm_blood]weapon_deagle" "1" + "[am_seastorm_shojo]weapon_deagle" "1" + "[am_kimono_sunrise]weapon_m4a1" "1" + } + "set_kimono_legendary" + { + "[am_bamboo_jungle]weapon_ak47" "1" + } + "set_kimono_ancient" + { + "[cu_anime_aug]weapon_aug" "1" + } + "set_dust" + { + "set_dust_uncommon" "1" + "set_dust_rare" "1" + "set_dust_mythical" "1" + } + "set_aztec" + { + "set_aztec_common" "1" + "set_aztec_uncommon" "1" + "set_aztec_rare" "1" + } + "set_vertigo" + { + "set_vertigo_common" "1" + "set_vertigo_uncommon" "1" + "set_vertigo_rare" "1" + "set_vertigo_mythical" "1" + } + "set_inferno" + { + "set_inferno_common" "1" + "set_inferno_uncommon" "1" + "set_inferno_rare" "1" + } + "set_militia" + { + "set_militia_common" "1" + "set_militia_uncommon" "1" + "set_militia_rare" "1" + "set_militia_mythical" "1" + "set_militia_legendary" "1" + } + "set_nuke" + { + "set_nuke_common" "1" + "set_nuke_uncommon" "1" + "set_nuke_rare" "1" + "set_nuke_mythical" "1" + } + "set_office" + { + "set_office_common" "1" + "set_office_uncommon" "1" + "set_office_rare" "1" + } + "set_assault" + { + "set_assault_common" "1" + "set_assault_uncommon" "1" + "set_assault_rare" "1" + "set_assault_mythical" "1" + } + "set_bravo_ii" + { + "set_bravo_ii_common" "1" + "set_bravo_ii_uncommon" "1" + "set_bravo_ii_rare" "1" + "set_bravo_ii_mythical" "1" + } + "set_dust_2" + { + "set_dust_2_common" "1" + "set_dust_2_uncommon" "1" + "set_dust_2_rare" "1" + "set_dust_2_mythical" "1" + "set_dust_2_legendary" "1" + } + "set_train" + { + "set_train_common" "1" + "set_train_uncommon" "1" + "set_train_rare" "1" + "set_train_mythical" "1" + } + "set_mirage" + { + "set_mirage_common" "1" + "set_mirage_uncommon" "1" + "set_mirage_rare" "1" + "set_mirage_mythical" "1" + } + "set_italy" + { + "set_italy_common" "1" + "set_italy_uncommon" "1" + "set_italy_rare" "1" + "set_italy_mythical" "1" + } + "set_lake" + { + "set_lake_common" "1" + "set_lake_uncommon" "1" + "set_lake_rare" "1" + "set_lake_mythical" "1" + } + "set_safehouse" + { + "set_safehouse_common" "1" + "set_safehouse_uncommon" "1" + "set_safehouse_rare" "1" + "set_safehouse_mythical" "1" + } + "set_bank" + { + "set_bank_common" "1" + "set_bank_uncommon" "1" + "set_bank_rare" "1" + "set_bank_mythical" "1" + "set_bank_legendary" "1" + } + "set_overpass" + { + "set_overpass_common" "1" + "set_overpass_uncommon" "1" + "set_overpass_rare" "1" + "set_overpass_mythical" "1" + "set_overpass_legendary" "1" + } + "set_cobblestone" + { + "set_cobblestone_common" "1" + "set_cobblestone_uncommon" "1" + "set_cobblestone_rare" "1" + "set_cobblestone_mythical" "1" + "set_cobblestone_legendary" "1" + "set_cobblestone_ancient" "1" + } + "set_baggage" + { + "set_baggage_common" "1" + "set_baggage_uncommon" "1" + "set_baggage_rare" "1" + "set_baggage_mythical" "1" + "set_baggage_legendary" "1" + } + "set_cache" + { + "set_cache_uncommon" "1" + "set_cache_rare" "1" + "set_cache_mythical" "1" + } + "set_gods_and_monsters" + { + "set_gods_and_monsters_common" "1" + "set_gods_and_monsters_uncommon" "1" + "set_gods_and_monsters_rare" "1" + "set_gods_and_monsters_mythical" "1" + "set_gods_and_monsters_legendary" "1" + "set_gods_and_monsters_ancient" "1" + } + "set_chopshop" + { + "set_chopshop_common" "1" + "set_chopshop_uncommon" "1" + "set_chopshop_rare" "1" + "set_chopshop_mythical" "1" + "set_chopshop_legendary" "1" + } + "set_kimono" + { + "set_kimono_common" "1" + "set_kimono_uncommon" "1" + "set_kimono_rare" "1" + "set_kimono_mythical" "1" + "set_kimono_legendary" "1" + "set_kimono_ancient" "1" + } + "crate_community_3_rare" + { + "[cu_tec9_asiimov]weapon_tec9" "1" + "[cu_ssg08_immortal]weapon_ssg08" "1" + "[hy_galil_kami]weapon_galilar" "1" + "[am_gyrate]weapon_cz75a" "1" + "[an_royalbleed]weapon_p90" "1" + "[cu_p2000_pulse]weapon_hkp2000" "1" + } + "crate_community_3_mythical" + { + "[cu_aug_progressiv]weapon_aug" "1" + "[cu_bizon_antique]weapon_bizon" "1" + "[cu_xm1014_heaven_guard]weapon_xm1014" "1" + "[cu_korupt]weapon_mac10" "1" + } + "crate_community_3_legendary" + { + "[am_m4a1-s_alloy_orange]weapon_m4a1_silencer" "1" + "[cu_scar_cyrex]weapon_scar20" "1" + "[cu_kaiman]weapon_usp_silencer" "1" + } + "crate_community_3_ancient" + { + "[cu_ak47_rubber]weapon_ak47" "1" + "[cu_titanstorm]weapon_m4a1" "1" + } + "crate_sticker_pack01_rare" + { + "[std_thirteen]sticker" "1" + "[std_aces_high]sticker" "1" + "[std_conquered]sticker" "1" + "[std_destroy]sticker" "1" + "[std_dispatch]sticker" "1" + "[std_fearsome]sticker" "1" + "[std_guarding_hell]sticker" "1" + "[std_lemon]sticker" "1" + "[std_luck]sticker" "1" + "[std_vigilance]sticker" "1" + } + "crate_sticker_pack01_mythical" + { + "[std_aces_high_holo]sticker" "1" + "[std_fearsome_holo]sticker" "1" + "[std_vigilance_holo]sticker" "1" + } + "crate_sticker_pack01_legendary" + { + "[std_thirteen_foil]sticker" "1" + "[std_luck_foil]sticker" "1" + } + "crate_sticker_pack01" + { + "crate_sticker_pack01_rare" "1" + "crate_sticker_pack01_mythical" "1" + "crate_sticker_pack01_legendary" "1" + } + "crate_sticker_pack02_rare" + { + "[std2_banana]sticker" "1" + "[std2_bomb_code]sticker" "1" + "[std2_chicken_lover]sticker" "1" + "[std2_goodgame]sticker" "1" + "[std2_goodluck]sticker" "1" + "[std2_havefun]sticker" "1" + "[std2_lets_roll_oll]sticker" "1" + "[std2_metal]sticker" "1" + "[std2_nice_shot]sticker" "1" + "[std2_welcome_clutch]sticker" "1" + } + "crate_sticker_pack02_mythical" + { + "[std2_bish_holo]sticker" "1" + "[std2_bash_holo]sticker" "1" + "[std2_bosh_holo]sticker" "1" + "[std2_lets_roll_oll_holo]sticker" "1" + } + "crate_sticker_pack02_legendary" + { + "[std_crown_foil]sticker" "1" + "[std2_stupid_banana_foil]sticker" "1" + } + "crate_sticker_pack02" + { + "crate_sticker_pack02_rare" "1" + "crate_sticker_pack02_mythical" "1" + "crate_sticker_pack02_legendary" "1" + } + "crate_sticker_pack_enfu_capsule_rare" + { + "[enfu_chicken]sticker" "1" + "[enfu_bombsquad]sticker" "1" + "[enfu_skullfuskulltorgeist]sticker" "1" + "[enfu_guru]sticker" "1" + "[enfu_ninja]sticker" "1" + "[enfu_samurai]sticker" "1" + "[enfu_skullfutrooop]sticker" "1" + "[enfu_soldier]sticker" "1" + "[enfu_spartan]sticker" "1" + "[enfu_unicorn]sticker" "1" + "[enfu_skullfulilboney]sticker" "1" + "[enfu_zombie]sticker" "1" + } + "crate_sticker_pack_enfu_capsule_mythical" + { + "[enfu_unicorn_holo]sticker" "1" + } + "crate_sticker_pack_enfu_capsule_legendary" + { + "[enfu_bombsquad_foil]sticker" "1" + "[enfu_ninja_foil]sticker" "1" + } + "crate_sticker_pack_enfu_capsule_lootlist" + { + "crate_sticker_pack_enfu_capsule_rare" "1" + "crate_sticker_pack_enfu_capsule_mythical" "1" + "crate_sticker_pack_enfu_capsule_legendary" "1" + } + "crate_sticker_pack_pinups_capsule_rare" + { + "[pinups_ivette]sticker" "1" + "[pinups_kimberly]sticker" "1" + "[pinups_martha]sticker" "1" + "[pinups_merietta]sticker" "1" + "[pinups_scherry]sticker" "1" + "[pinups_tamara]sticker" "1" + } + "crate_sticker_pack_pinups_capsule_mythical" + { + "[pinups_ivette_holo]sticker" "1" + "[pinups_kimberly_holo]sticker" "1" + "[pinups_martha_holo]sticker" "1" + "[pinups_merietta_holo]sticker" "1" + "[pinups_scherry_holo]sticker" "1" + "[pinups_tamara_holo]sticker" "1" + } + "crate_sticker_pack_pinups_capsule_lootlist" + { + "crate_sticker_pack_pinups_capsule_rare" "1" + "crate_sticker_pack_pinups_capsule_mythical" "1" + } + "crate_sticker_pack_slid3_capsule_rare" + { + "[slid3_boom]sticker" "1" + "[slid3_countdown]sticker" "1" + "[slid3_dontworryigotcha]sticker" "1" + "[slid3_hardclucklife]sticker" "1" + "[slid3_moveit]sticker" "1" + } + "crate_sticker_pack_slid3_capsule_mythical" + { + "[slid3_boom_holo]sticker" "1" + "[slid3_countdown_holo]sticker" "1" + "[slid3_dontworryigotcha_holo]sticker" "1" + "[slid3_hardclucklife_holo]sticker" "1" + "[slid3_moveit_holo]sticker" "1" + } + "crate_sticker_pack_slid3_capsule_legendary" + { + "[slid3_boom_foil]sticker" "1" + "[slid3_countdown_foil]sticker" "1" + "[slid3_dontworryigotcha_foil]sticker" "1" + "[slid3_hardclucklife_foil]sticker" "1" + "[slid3_moveit_foil]sticker" "1" + } + "crate_sticker_pack_slid3_capsule_lootlist" + { + "crate_sticker_pack_slid3_capsule_rare" "1" + "crate_sticker_pack_slid3_capsule_mythical" "1" + "crate_sticker_pack_slid3_capsule_legendary" "1" + } + "crate_sticker_pack_team_roles_capsule_rare" + { + "[team_roles_awper]sticker" "1" + "[team_roles_baiter]sticker" "1" + "[team_roles_bomber]sticker" "1" + "[team_roles_bot]sticker" "1" + "[team_roles_fragger]sticker" "1" + "[team_roles_leader]sticker" "1" + "[team_roles_lurker]sticker" "1" + "[team_roles_nader]sticker" "1" + "[team_roles_ninja]sticker" "1" + "[team_roles_support]sticker" "1" + } + "crate_sticker_pack_team_roles_capsule_legendary" + { + "[team_roles_pro_foil]sticker" "1" + } + "crate_sticker_pack_team_roles_capsule_lootlist" + { + "crate_sticker_pack_team_roles_capsule_rare" "1" + "crate_sticker_pack_team_roles_capsule_legendary" "1" + } + "crate_sticker_pack_kat2014_01_rare" + { + "[kat2014_3dmax]sticker" "1" + "[kat2014_ibuypower]sticker" "1" + "[kat2014_mousesports]sticker" "1" + "[kat2014_mystik]sticker" "1" + "[kat2014_navi]sticker" "1" + "[kat2014_reason]sticker" "1" + "[kat2014_virtuspro]sticker" "1" + "[kat2014_voxeminor]sticker" "1" + } + "crate_sticker_pack_kat2014_01_mythical" + { + "[kat2014_3dmax_holo]sticker" "1" + "[kat2014_ibuypower_holo]sticker" "1" + "[kat2014_mousesports_holo]sticker" "1" + "[kat2014_mystik_holo]sticker" "1" + "[kat2014_navi_holo]sticker" "1" + "[kat2014_reason_holo]sticker" "1" + "[kat2014_virtuspro_holo]sticker" "1" + "[kat2014_voxeminor_holo]sticker" "1" + } + "crate_sticker_pack_kat2014_01_legendary" + { + "[kat2014_esl1_foil]sticker" "1" + } + "crate_sticker_pack_kat2014_01" + { + "crate_sticker_pack_kat2014_01_rare" "1" + "crate_sticker_pack_kat2014_01_mythical" "1" + "crate_sticker_pack_kat2014_01_legendary" "1" + } + "crate_sticker_pack_kat2014_02_rare" + { + "[kat2014_complexity]sticker" "1" + "[kat2014_dignitas]sticker" "1" + "[kat2014_fnatic]sticker" "1" + "[kat2014_hellraisers]sticker" "1" + "[kat2014_ldlc]sticker" "1" + "[kat2014_lgb]sticker" "1" + "[kat2014_ninjasinpyjamas]sticker" "1" + "[kat2014_titan]sticker" "1" + } + "crate_sticker_pack_kat2014_02_mythical" + { + "[kat2014_complexity_holo]sticker" "1" + "[kat2014_dignitas_holo]sticker" "1" + "[kat2014_fnatic_holo]sticker" "1" + "[kat2014_hellraisers_holo]sticker" "1" + "[kat2014_ldlc_holo]sticker" "1" + "[kat2014_lgb_holo]sticker" "1" + "[kat2014_ninjasinpyjamas_holo]sticker" "1" + "[kat2014_titan_holo]sticker" "1" + } + "crate_sticker_pack_kat2014_02_legendary" + { + "[kat2014_esl2_foil]sticker" "1" + } + "crate_sticker_pack_kat2014_02" + { + "crate_sticker_pack_kat2014_02_rare" "1" + "crate_sticker_pack_kat2014_02_mythical" "1" + "crate_sticker_pack_kat2014_02_legendary" "1" + } + "crate_sticker_pack_dhw2014_01_mythical" + { + "[dhw2014_fnatic_holo]sticker" "1" + "[dhw2014_cloud9_holo]sticker" "1" + "[dhw2014_virtuspro_holo]sticker" "1" + "[dhw2014_ninjasinpyjamas_holo]sticker" "1" + "[dhw2014_navi_holo]sticker" "1" + "[dhw2014_dignitas_holo]sticker" "1" + } + "crate_sticker_pack_dhw2014_01_legendary" + { + "[dhw2014_fnatic_foil]sticker" "1" + "[dhw2014_cloud9_foil]sticker" "1" + "[dhw2014_virtuspro_foil]sticker" "1" + "[dhw2014_ninjasinpyjamas_foil]sticker" "1" + "[dhw2014_navi_foil]sticker" "1" + "[dhw2014_dignitas_foil]sticker" "1" + "[dhw2014_dhw_foil]sticker" "1" + } + "crate_sticker_pack_dhw2014_01" + { + "crate_sticker_pack_dhw2014_01_mythical" "1" + "crate_sticker_pack_dhw2014_01_legendary" "1" + } + "crate_sticker_pack_eslkatowice2015_01_mythical" + { + "[eslkatowice2015_fnatic_holo]sticker" "1" + "[eslkatowice2015_hellraisers_holo]sticker" "1" + "[eslkatowice2015_navi_holo]sticker" "1" + "[eslkatowice2015_ninjasinpyjamas_holo]sticker" "1" + "[eslkatowice2015_pentasports_holo]sticker" "1" + "[eslkatowice2015_teamenvyus_holo]sticker" "1" + "[eslkatowice2015_teamsolomid_holo]sticker" "1" + "[eslkatowice2015_virtuspro_holo]sticker" "1" + } + "crate_sticker_pack_eslkatowice2015_01_legendary" + { + "[eslkatowice2015_fnatic_foil]sticker" "1" + "[eslkatowice2015_hellraisers_foil]sticker" "1" + "[eslkatowice2015_navi_foil]sticker" "1" + "[eslkatowice2015_ninjasinpyjamas_foil]sticker" "1" + "[eslkatowice2015_pentasports_foil]sticker" "1" + "[eslkatowice2015_teamenvyus_foil]sticker" "1" + "[eslkatowice2015_teamsolomid_foil]sticker" "1" + "[eslkatowice2015_virtuspro_foil]sticker" "1" + "[eslkatowice2015_esl_a_foil]sticker" "1" + } + "crate_sticker_pack_eslkatowice2015_01" + { + "crate_sticker_pack_eslkatowice2015_01_mythical" "1" + "crate_sticker_pack_eslkatowice2015_01_legendary" "1" + } + "crate_sticker_pack_eslkatowice2015_02_mythical" + { + "[eslkatowice2015_3dmax_holo]sticker" "1" + "[eslkatowice2015_cloud9_holo]sticker" "1" + "[eslkatowice2015_counterlogic_holo]sticker" "1" + "[eslkatowice2015_flipsid3_holo]sticker" "1" + "[eslkatowice2015_keyd_holo]sticker" "1" + "[eslkatowice2015_lgb_holo]sticker" "1" + "[eslkatowice2015_titan_holo]sticker" "1" + "[eslkatowice2015_voxeminor_holo]sticker" "1" + } + "crate_sticker_pack_eslkatowice2015_02_legendary" + { + "[eslkatowice2015_3dmax_foil]sticker" "1" + "[eslkatowice2015_cloud9_foil]sticker" "1" + "[eslkatowice2015_counterlogic_foil]sticker" "1" + "[eslkatowice2015_flipsid3_foil]sticker" "1" + "[eslkatowice2015_keyd_foil]sticker" "1" + "[eslkatowice2015_lgb_foil]sticker" "1" + "[eslkatowice2015_titan_foil]sticker" "1" + "[eslkatowice2015_voxeminor_foil]sticker" "1" + "[eslkatowice2015_esl_a_foil]sticker" "1" + } + "crate_sticker_pack_eslkatowice2015_02" + { + "crate_sticker_pack_eslkatowice2015_02_mythical" "1" + "crate_sticker_pack_eslkatowice2015_02_legendary" "1" + } + "crate_sticker_pack_community01_rare" + { + "[comm01_backstab]sticker" "1" + "[comm01_pocket_bbq]sticker" "1" + "[comm01_bomb_doge]sticker" "1" + "[comm01_burn_them_all]sticker" "1" + "[comm01_llama_cannon]sticker" "1" + "[comm01_other_awp]sticker" "1" + "[comm01_shavemaster]sticker" "1" + "[comm01_skull]sticker" "1" + "[comm01_sneaky_beaky]sticker" "1" + "[comm01_to_b_or_not_to_b]sticker" "1" + "[comm01_death_comes]sticker" "1" + } + "crate_sticker_pack_community01_mythical" + { + "[comm01_teamwork_holo]sticker" "1" + "[comm01_rekt_holo]sticker" "1" + } + "crate_sticker_pack_community01_legendary" + { + "[comm01_headhunter_foil]sticker" "1" + "[comm01_flammable_foil]sticker" "1" + "[comm01_new_sheriff_foil]sticker" "1" + "[comm01_swag_foil]sticker" "1" + } + "crate_sticker_pack_community01" + { + "crate_sticker_pack_community01_rare" "1" + "crate_sticker_pack_community01_mythical" "1" + "crate_sticker_pack_community01_legendary" "1" + } + "crate_community_3" + { + "crate_community_3_rare" "1" + "crate_community_3_mythical" "1" + "crate_community_3_legendary" "1" + "crate_community_3_ancient" "1" + "community_case_3_unusual" "1" + } + "crate_sticker_pack_cologne2014_01_rare" + { + "[cologne2014_cloud9]sticker" "1" + "[cologne2014_fnatic]sticker" "1" + "[cologne2014_hellraisers]sticker" "1" + "[cologne2014_ninjasinpyjamas]sticker" "1" + "[cologne2014_teamdignitas]sticker" "1" + "[cologne2014_teamldlc]sticker" "1" + "[cologne2014_virtuspro]sticker" "1" + } + "crate_sticker_pack_cologne2014_01_mythical" + { + "[cologne2014_cloud9_holo]sticker" "1" + "[cologne2014_fnatic_holo]sticker" "1" + "[cologne2014_hellraisers_holo]sticker" "1" + "[cologne2014_ninjasinpyjamas_holo]sticker" "1" + "[cologne2014_teamdignitas_holo]sticker" "1" + "[cologne2014_teamldlc_holo]sticker" "1" + "[cologne2014_virtuspro_holo]sticker" "1" + } + "crate_sticker_pack_cologne2014_01_legendary" + { + "[cologne2014_esl_a]sticker" "1" + } + "crate_sticker_pack_cologne2014_01" + { + "crate_sticker_pack_cologne2014_01_rare" "1" + "crate_sticker_pack_cologne2014_01_mythical" "1" + "crate_sticker_pack_cologne2014_01_legendary" "1" + } + "crate_sticker_pack_cologne2014_02_rare" + { + "[cologne2014_copenhagenwolves]sticker" "1" + "[cologne2014_datteam]sticker" "1" + "[cologne2014_epsilonesports]sticker" "1" + "[cologne2014_ibuypower]sticker" "1" + "[cologne2014_londonconspiracy]sticker" "1" + "[cologne2014_navi]sticker" "1" + "[cologne2014_titan]sticker" "1" + "[cologne2014_voxeminor]sticker" "1" + "[cologne2014_wolf]sticker" "1" + } + "crate_sticker_pack_cologne2014_02_mythical" + { + "[cologne2014_copenhagenwolves_holo]sticker" "1" + "[cologne2014_datteam_holo]sticker" "1" + "[cologne2014_epsilonesports_holo]sticker" "1" + "[cologne2014_ibuypower_holo]sticker" "1" + "[cologne2014_londonconspiracy_holo]sticker" "1" + "[cologne2014_navi_holo]sticker" "1" + "[cologne2014_titan_holo]sticker" "1" + "[cologne2014_voxeminor_holo]sticker" "1" + "[cologne2014_wolf_holo]sticker" "1" + } + "crate_sticker_pack_cologne2014_02_legendary" + { + "[cologne2014_esl_b]sticker" "1" + } + "crate_sticker_pack_cologne2014_02" + { + "crate_sticker_pack_cologne2014_02_rare" "1" + "crate_sticker_pack_cologne2014_02_mythical" "1" + "crate_sticker_pack_cologne2014_02_legendary" "1" + } + "crate_esl14_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_esl14_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_esl14_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_esl14_promo_de_nuke" + { + "set_nuke" "1" + } + "crate_esl14_promo_de_cache" + { + "set_cache" "1" + } + "crate_esl14_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_esl14_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_dhw14_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_dhw14_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_dhw14_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_dhw14_promo_de_nuke" + { + "set_nuke" "1" + } + "crate_dhw14_promo_de_cache" + { + "set_cache" "1" + } + "crate_dhw14_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_dhw14_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_eslkatowice2015_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_eslkatowice2015_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_eslkatowice2015_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_eslkatowice2015_promo_de_nuke" + { + "set_nuke" "1" + } + "crate_eslkatowice2015_promo_de_cache" + { + "set_cache" "1" + } + "crate_eslkatowice2015_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_eslkatowice2015_promo_de_overpass" + { + "set_overpass" "1" + } + "quest_reward_crate_vanguard" + { + "crate_operation_vanguard" "1" + } + "dhw2014_fnatic_rare" + { + "[dhw2014_fnatic]sticker" "1" + } + "dhw2014_cloud9_rare" + { + "[dhw2014_cloud9]sticker" "1" + } + "dhw2014_virtuspro_rare" + { + "[dhw2014_virtuspro]sticker" "1" + } + "dhw2014_ninjasinpyjamas_rare" + { + "[dhw2014_ninjasinpyjamas]sticker" "1" + } + "dhw2014_navi_rare" + { + "[dhw2014_navi]sticker" "1" + } + "dhw2014_dignitas_rare" + { + "[dhw2014_dignitas]sticker" "1" + } + "dhw2014_bravadogaming_rare" + { + "[dhw2014_bravadogaming]sticker" "1" + } + "dhw2014_escgaming_rare" + { + "[dhw2014_escgaming]sticker" "1" + } + "dhw2014_hellraisers_rare" + { + "[dhw2014_hellraisers]sticker" "1" + } + "dhw2014_ibuypower_rare" + { + "[dhw2014_ibuypower]sticker" "1" + } + "dhw2014_pentasports_rare" + { + "[dhw2014_pentasports]sticker" "1" + } + "dhw2014_planetkeydynamics_rare" + { + "[dhw2014_planetkeydynamics]sticker" "1" + } + "dhw2014_teamldlc_rare" + { + "[dhw2014_teamldlc]sticker" "1" + } + "dhw2014_myxmg_rare" + { + "[dhw2014_myxmg]sticker" "1" + } + "dhw2014_dhw_rare" + { + "[dhw2014_dhw]sticker" "1" + } + "dhw2014_3dmax_rare" + { + "[dhw2014_3dmax]sticker" "1" + } + "dhw2014_copenhagenwolves_rare" + { + "[dhw2014_copenhagenwolves]sticker" "1" + } + "dhw2014_datteam_rare" + { + "[dhw2014_datteam]sticker" "1" + } + "dhw2014_londonconspiracy_rare" + { + "[dhw2014_londonconspiracy]sticker" "1" + } + "dhw2014_mousesports_rare" + { + "[dhw2014_mousesports]sticker" "1" + } + "dhw2014_flipsid3_rare" + { + "[dhw2014_flipsid3]sticker" "1" + } + "eslkatowice2015_3dmax_rare" + { + "[eslkatowice2015_3dmax]sticker" "1" + } + "eslkatowice2015_cloud9_rare" + { + "[eslkatowice2015_cloud9]sticker" "1" + } + "eslkatowice2015_counterlogic_rare" + { + "[eslkatowice2015_counterlogic]sticker" "1" + } + "eslkatowice2015_flipsid3_rare" + { + "[eslkatowice2015_flipsid3]sticker" "1" + } + "eslkatowice2015_fnatic_rare" + { + "[eslkatowice2015_fnatic]sticker" "1" + } + "eslkatowice2015_hellraisers_rare" + { + "[eslkatowice2015_hellraisers]sticker" "1" + } + "eslkatowice2015_keyd_rare" + { + "[eslkatowice2015_keyd]sticker" "1" + } + "eslkatowice2015_lgb_rare" + { + "[eslkatowice2015_lgb]sticker" "1" + } + "eslkatowice2015_navi_rare" + { + "[eslkatowice2015_navi]sticker" "1" + } + "eslkatowice2015_ninjasinpyjamas_rare" + { + "[eslkatowice2015_ninjasinpyjamas]sticker" "1" + } + "eslkatowice2015_pentasports_rare" + { + "[eslkatowice2015_pentasports]sticker" "1" + } + "eslkatowice2015_teamenvyus_rare" + { + "[eslkatowice2015_teamenvyus]sticker" "1" + } + "eslkatowice2015_teamsolomid_rare" + { + "[eslkatowice2015_teamsolomid]sticker" "1" + } + "eslkatowice2015_titan_rare" + { + "[eslkatowice2015_titan]sticker" "1" + } + "eslkatowice2015_virtuspro_rare" + { + "[eslkatowice2015_virtuspro]sticker" "1" + } + "eslkatowice2015_voxeminor_rare" + { + "[eslkatowice2015_voxeminor]sticker" "1" + } + "eslkatowice2015_esl_a_rare" + { + "[eslkatowice2015_esl_a]sticker" "1" + } + "eslcologne2015_rare_fnatic" + { + "[eslcologne2015_team_fnatic]sticker" "1" + } + "eslcologne2015_rare_virtuspro" + { + "[eslcologne2015_team_virtuspro]sticker" "1" + } + "eslcologne2015_rare_mousesports" + { + "[eslcologne2015_team_mousesports]sticker" "1" + } + "eslcologne2015_rare_navi" + { + "[eslcologne2015_team_navi]sticker" "1" + } + "eslcologne2015_rare_renegades" + { + "[eslcologne2015_team_renegades]sticker" "1" + } + "eslcologne2015_rare_kinguin" + { + "[eslcologne2015_team_kinguin]sticker" "1" + } + "eslcologne2015_rare_ebettle" + { + "[eslcologne2015_team_ebettle]sticker" "1" + } + "eslcologne2015_rare_cloud9" + { + "[eslcologne2015_team_cloud9]sticker" "1" + } + "eslcologne2015_rare_ninjasinpyjamas" + { + "[eslcologne2015_team_ninjasinpyjamas]sticker" "1" + } + "eslcologne2015_rare_envyus" + { + "[eslcologne2015_team_envyus]sticker" "1" + } + "eslcologne2015_rare_luminositygaming" + { + "[eslcologne2015_team_luminositygaming]sticker" "1" + } + "eslcologne2015_rare_solomid" + { + "[eslcologne2015_team_solomid]sticker" "1" + } + "eslcologne2015_rare_teamimmunity" + { + "[eslcologne2015_team_teamimmunity]sticker" "1" + } + "eslcologne2015_rare_flipside" + { + "[eslcologne2015_team_flipside]sticker" "1" + } + "eslcologne2015_rare_titan" + { + "[eslcologne2015_team_titan]sticker" "1" + } + "eslcologne2015_rare_clg" + { + "[eslcologne2015_team_clg]sticker" "1" + } + "eslcologne2015_rare_esl" + { + "[eslcologne2015_team_esl]sticker" "1" + } + "crate_sticker_pack_eslcologne2015_legends_rare" + { + "[eslcologne2015_team_fnatic]sticker" "1" + "[eslcologne2015_team_virtuspro]sticker" "1" + "[eslcologne2015_team_mousesports]sticker" "1" + "[eslcologne2015_team_navi]sticker" "1" + "[eslcologne2015_team_ninjasinpyjamas]sticker" "1" + "[eslcologne2015_team_envyus]sticker" "1" + "[eslcologne2015_team_luminositygaming]sticker" "1" + "[eslcologne2015_team_solomid]sticker" "1" + "[eslcologne2015_team_esl]sticker" "1" + } + "crate_sticker_pack_eslcologne2015_legends_legendary" + { + "[eslcologne2015_team_fnatic_foil]sticker" "1" + "[eslcologne2015_team_virtuspro_foil]sticker" "1" + "[eslcologne2015_team_mousesports_foil]sticker" "1" + "[eslcologne2015_team_navi_foil]sticker" "1" + "[eslcologne2015_team_ninjasinpyjamas_foil]sticker" "1" + "[eslcologne2015_team_envyus_foil]sticker" "1" + "[eslcologne2015_team_luminositygaming_foil]sticker" "1" + "[eslcologne2015_team_solomid_foil]sticker" "1" + "[eslcologne2015_team_esl_foil]sticker" "1" + } + "crate_sticker_pack_eslcologne2015_legends" + { + "crate_sticker_pack_eslcologne2015_legends_legendary" "1" + } + "crate_sticker_pack_eslcologne2015_challengers_rare" + { + "[eslcologne2015_team_renegades]sticker" "1" + "[eslcologne2015_team_kinguin]sticker" "1" + "[eslcologne2015_team_ebettle]sticker" "1" + "[eslcologne2015_team_cloud9]sticker" "1" + "[eslcologne2015_team_teamimmunity]sticker" "1" + "[eslcologne2015_team_flipside]sticker" "1" + "[eslcologne2015_team_titan]sticker" "1" + "[eslcologne2015_team_clg]sticker" "1" + } + "crate_sticker_pack_eslcologne2015_challengers_legendary" + { + "[eslcologne2015_team_renegades_foil]sticker" "1" + "[eslcologne2015_team_kinguin_foil]sticker" "1" + "[eslcologne2015_team_ebettle_foil]sticker" "1" + "[eslcologne2015_team_cloud9_foil]sticker" "1" + "[eslcologne2015_team_teamimmunity_foil]sticker" "1" + "[eslcologne2015_team_flipside_foil]sticker" "1" + "[eslcologne2015_team_titan_foil]sticker" "1" + "[eslcologne2015_team_clg_foil]sticker" "1" + "[eslcologne2015_team_esl_foil]sticker" "1" + } + "crate_sticker_pack_eslcologne2015_challengers" + { + "crate_sticker_pack_eslcologne2015_challengers_legendary" "1" + } + "eslcologne2015_signatures_fnatic" + { + "[eslcologne2015_signature_pronax]sticker" "1" + "[eslcologne2015_signature_flusha]sticker" "1" + "[eslcologne2015_signature_jw]sticker" "1" + "[eslcologne2015_signature_krimz]sticker" "1" + "[eslcologne2015_signature_olofmeister]sticker" "1" + } + "eslcologne2015_signatures_luminositygaming" + { + "[eslcologne2015_signature_fallen]sticker" "1" + "[eslcologne2015_signature_steel]sticker" "1" + "[eslcologne2015_signature_fer]sticker" "1" + "[eslcologne2015_signature_boltz]sticker" "1" + "[eslcologne2015_signature_coldzera]sticker" "1" + } + "eslcologne2015_signatures_navi" + { + "[eslcologne2015_signature_guardian]sticker" "1" + "[eslcologne2015_signature_zeus]sticker" "1" + "[eslcologne2015_signature_seized]sticker" "1" + "[eslcologne2015_signature_edward]sticker" "1" + "[eslcologne2015_signature_flamie]sticker" "1" + } + "eslcologne2015_signatures_ninjasinpyjamas" + { + "[eslcologne2015_signature_xizt]sticker" "1" + "[eslcologne2015_signature_forest]sticker" "1" + "[eslcologne2015_signature_getright]sticker" "1" + "[eslcologne2015_signature_friberg]sticker" "1" + "[eslcologne2015_signature_allu]sticker" "1" + } + "eslcologne2015_signatures_envyus" + { + "[eslcologne2015_signature_kennys]sticker" "1" + "[eslcologne2015_signature_kioshima]sticker" "1" + "[eslcologne2015_signature_happy]sticker" "1" + "[eslcologne2015_signature_apex]sticker" "1" + "[eslcologne2015_signature_nbk]sticker" "1" + } + "eslcologne2015_signatures_titan" + { + "[eslcologne2015_signature_maniac]sticker" "1" + "[eslcologne2015_signature_ex6tenz]sticker" "1" + "[eslcologne2015_signature_shox]sticker" "1" + "[eslcologne2015_signature_smithzz]sticker" "1" + "[eslcologne2015_signature_rpk]sticker" "1" + } + "eslcologne2015_signatures_solomid" + { + "[eslcologne2015_signature_karrigan]sticker" "1" + "[eslcologne2015_signature_device]sticker" "1" + "[eslcologne2015_signature_dupreeh]sticker" "1" + "[eslcologne2015_signature_xyp9x]sticker" "1" + "[eslcologne2015_signature_cajunb]sticker" "1" + } + "eslcologne2015_signatures_virtuspro" + { + "[eslcologne2015_signature_neo]sticker" "1" + "[eslcologne2015_signature_pasha]sticker" "1" + "[eslcologne2015_signature_taz]sticker" "1" + "[eslcologne2015_signature_snax]sticker" "1" + "[eslcologne2015_signature_byali]sticker" "1" + } + "eslcologne2015_signatures_mousesports" + { + "[eslcologne2015_signature_chrisj]sticker" "1" + "[eslcologne2015_signature_gobb]sticker" "1" + "[eslcologne2015_signature_denis]sticker" "1" + "[eslcologne2015_signature_nex]sticker" "1" + "[eslcologne2015_signature_spiidi]sticker" "1" + } + "eslcologne2015_signatures_renegades" + { + "[eslcologne2015_signature_azr]sticker" "1" + "[eslcologne2015_signature_havoc]sticker" "1" + "[eslcologne2015_signature_jks]sticker" "1" + "[eslcologne2015_signature_spunj]sticker" "1" + "[eslcologne2015_signature_yam]sticker" "1" + } + "eslcologne2015_signatures_teamimmunity" + { + "[eslcologne2015_signature_ustilo]sticker" "1" + "[eslcologne2015_signature_rickeh]sticker" "1" + "[eslcologne2015_signature_emagine]sticker" "1" + "[eslcologne2015_signature_snyper]sticker" "1" + "[eslcologne2015_signature_james]sticker" "1" + } + "eslcologne2015_signatures_ebettle" + { + "[eslcologne2015_signature_rallen]sticker" "1" + "[eslcologne2015_signature_hyper]sticker" "1" + "[eslcologne2015_signature_peet]sticker" "1" + "[eslcologne2015_signature_furlan]sticker" "1" + "[eslcologne2015_signature_gruby]sticker" "1" + } + "eslcologne2015_signatures_kinguin" + { + "[eslcologne2015_signature_dennis]sticker" "1" + "[eslcologne2015_signature_scream]sticker" "1" + "[eslcologne2015_signature_rain]sticker" "1" + "[eslcologne2015_signature_maikelele]sticker" "1" + "[eslcologne2015_signature_fox]sticker" "1" + } + "eslcologne2015_signatures_flipside" + { + "[eslcologne2015_signature_markeloff]sticker" "1" + "[eslcologne2015_signature_b1ad3]sticker" "1" + "[eslcologne2015_signature_bondik]sticker" "1" + "[eslcologne2015_signature_worldedit]sticker" "1" + "[eslcologne2015_signature_davcost]sticker" "1" + } + "eslcologne2015_signatures_clg" + { + "[eslcologne2015_signature_hazed]sticker" "1" + "[eslcologne2015_signature_fns]sticker" "1" + "[eslcologne2015_signature_jdm64]sticker" "1" + "[eslcologne2015_signature_reltuc]sticker" "1" + "[eslcologne2015_signature_tarik]sticker" "1" + } + "eslcologne2015_signatures_cloud9" + { + "[eslcologne2015_signature_nothing]sticker" "1" + "[eslcologne2015_signature_sgares]sticker" "1" + "[eslcologne2015_signature_shroud]sticker" "1" + "[eslcologne2015_signature_freakazoid]sticker" "1" + "[eslcologne2015_signature_skadoodle]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_1_rare" + { + "[eslcologne2015_signature_xizt]sticker" "1" + "[eslcologne2015_signature_forest]sticker" "1" + "[eslcologne2015_signature_getright]sticker" "1" + "[eslcologne2015_signature_friberg]sticker" "1" + "[eslcologne2015_signature_allu]sticker" "1" + "[eslcologne2015_signature_karrigan]sticker" "1" + "[eslcologne2015_signature_device]sticker" "1" + "[eslcologne2015_signature_dupreeh]sticker" "1" + "[eslcologne2015_signature_xyp9x]sticker" "1" + "[eslcologne2015_signature_cajunb]sticker" "1" + "[eslcologne2015_signature_azr]sticker" "1" + "[eslcologne2015_signature_havoc]sticker" "1" + "[eslcologne2015_signature_jks]sticker" "1" + "[eslcologne2015_signature_spunj]sticker" "1" + "[eslcologne2015_signature_yam]sticker" "1" + "[eslcologne2015_signature_hazed]sticker" "1" + "[eslcologne2015_signature_fns]sticker" "1" + "[eslcologne2015_signature_jdm64]sticker" "1" + "[eslcologne2015_signature_reltuc]sticker" "1" + "[eslcologne2015_signature_tarik]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_1_legendary" + { + "[eslcologne2015_signature_xizt_foil]sticker" "1" + "[eslcologne2015_signature_forest_foil]sticker" "1" + "[eslcologne2015_signature_getright_foil]sticker" "1" + "[eslcologne2015_signature_friberg_foil]sticker" "1" + "[eslcologne2015_signature_allu_foil]sticker" "1" + "[eslcologne2015_signature_karrigan_foil]sticker" "1" + "[eslcologne2015_signature_device_foil]sticker" "1" + "[eslcologne2015_signature_dupreeh_foil]sticker" "1" + "[eslcologne2015_signature_xyp9x_foil]sticker" "1" + "[eslcologne2015_signature_cajunb_foil]sticker" "1" + "[eslcologne2015_signature_azr_foil]sticker" "1" + "[eslcologne2015_signature_havoc_foil]sticker" "1" + "[eslcologne2015_signature_jks_foil]sticker" "1" + "[eslcologne2015_signature_spunj_foil]sticker" "1" + "[eslcologne2015_signature_yam_foil]sticker" "1" + "[eslcologne2015_signature_hazed_foil]sticker" "1" + "[eslcologne2015_signature_fns_foil]sticker" "1" + "[eslcologne2015_signature_jdm64_foil]sticker" "1" + "[eslcologne2015_signature_reltuc_foil]sticker" "1" + "[eslcologne2015_signature_tarik_foil]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_2_rare" + { + "[eslcologne2015_signature_fallen]sticker" "1" + "[eslcologne2015_signature_steel]sticker" "1" + "[eslcologne2015_signature_fer]sticker" "1" + "[eslcologne2015_signature_boltz]sticker" "1" + "[eslcologne2015_signature_coldzera]sticker" "1" + "[eslcologne2015_signature_kennys]sticker" "1" + "[eslcologne2015_signature_kioshima]sticker" "1" + "[eslcologne2015_signature_happy]sticker" "1" + "[eslcologne2015_signature_apex]sticker" "1" + "[eslcologne2015_signature_nbk]sticker" "1" + "[eslcologne2015_signature_dennis]sticker" "1" + "[eslcologne2015_signature_scream]sticker" "1" + "[eslcologne2015_signature_rain]sticker" "1" + "[eslcologne2015_signature_maikelele]sticker" "1" + "[eslcologne2015_signature_fox]sticker" "1" + "[eslcologne2015_signature_markeloff]sticker" "1" + "[eslcologne2015_signature_b1ad3]sticker" "1" + "[eslcologne2015_signature_bondik]sticker" "1" + "[eslcologne2015_signature_worldedit]sticker" "1" + "[eslcologne2015_signature_davcost]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_2_legendary" + { + "[eslcologne2015_signature_fallen_foil]sticker" "1" + "[eslcologne2015_signature_steel_foil]sticker" "1" + "[eslcologne2015_signature_fer_foil]sticker" "1" + "[eslcologne2015_signature_boltz_foil]sticker" "1" + "[eslcologne2015_signature_coldzera_foil]sticker" "1" + "[eslcologne2015_signature_kennys_foil]sticker" "1" + "[eslcologne2015_signature_kioshima_foil]sticker" "1" + "[eslcologne2015_signature_happy_foil]sticker" "1" + "[eslcologne2015_signature_apex_foil]sticker" "1" + "[eslcologne2015_signature_nbk_foil]sticker" "1" + "[eslcologne2015_signature_dennis_foil]sticker" "1" + "[eslcologne2015_signature_scream_foil]sticker" "1" + "[eslcologne2015_signature_rain_foil]sticker" "1" + "[eslcologne2015_signature_maikelele_foil]sticker" "1" + "[eslcologne2015_signature_fox_foil]sticker" "1" + "[eslcologne2015_signature_markeloff_foil]sticker" "1" + "[eslcologne2015_signature_b1ad3_foil]sticker" "1" + "[eslcologne2015_signature_bondik_foil]sticker" "1" + "[eslcologne2015_signature_worldedit_foil]sticker" "1" + "[eslcologne2015_signature_davcost_foil]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_3_rare" + { + "[eslcologne2015_signature_pronax]sticker" "1" + "[eslcologne2015_signature_flusha]sticker" "1" + "[eslcologne2015_signature_jw]sticker" "1" + "[eslcologne2015_signature_krimz]sticker" "1" + "[eslcologne2015_signature_olofmeister]sticker" "1" + "[eslcologne2015_signature_guardian]sticker" "1" + "[eslcologne2015_signature_zeus]sticker" "1" + "[eslcologne2015_signature_seized]sticker" "1" + "[eslcologne2015_signature_edward]sticker" "1" + "[eslcologne2015_signature_flamie]sticker" "1" + "[eslcologne2015_signature_maniac]sticker" "1" + "[eslcologne2015_signature_ex6tenz]sticker" "1" + "[eslcologne2015_signature_shox]sticker" "1" + "[eslcologne2015_signature_smithzz]sticker" "1" + "[eslcologne2015_signature_rpk]sticker" "1" + "[eslcologne2015_signature_rallen]sticker" "1" + "[eslcologne2015_signature_hyper]sticker" "1" + "[eslcologne2015_signature_peet]sticker" "1" + "[eslcologne2015_signature_furlan]sticker" "1" + "[eslcologne2015_signature_gruby]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_3_legendary" + { + "[eslcologne2015_signature_pronax_foil]sticker" "1" + "[eslcologne2015_signature_flusha_foil]sticker" "1" + "[eslcologne2015_signature_jw_foil]sticker" "1" + "[eslcologne2015_signature_krimz_foil]sticker" "1" + "[eslcologne2015_signature_olofmeister_foil]sticker" "1" + "[eslcologne2015_signature_guardian_foil]sticker" "1" + "[eslcologne2015_signature_zeus_foil]sticker" "1" + "[eslcologne2015_signature_seized_foil]sticker" "1" + "[eslcologne2015_signature_edward_foil]sticker" "1" + "[eslcologne2015_signature_flamie_foil]sticker" "1" + "[eslcologne2015_signature_maniac_foil]sticker" "1" + "[eslcologne2015_signature_ex6tenz_foil]sticker" "1" + "[eslcologne2015_signature_shox_foil]sticker" "1" + "[eslcologne2015_signature_smithzz_foil]sticker" "1" + "[eslcologne2015_signature_rpk_foil]sticker" "1" + "[eslcologne2015_signature_rallen_foil]sticker" "1" + "[eslcologne2015_signature_hyper_foil]sticker" "1" + "[eslcologne2015_signature_peet_foil]sticker" "1" + "[eslcologne2015_signature_furlan_foil]sticker" "1" + "[eslcologne2015_signature_gruby_foil]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_4_rare" + { + "[eslcologne2015_signature_neo]sticker" "1" + "[eslcologne2015_signature_pasha]sticker" "1" + "[eslcologne2015_signature_taz]sticker" "1" + "[eslcologne2015_signature_snax]sticker" "1" + "[eslcologne2015_signature_byali]sticker" "1" + "[eslcologne2015_signature_chrisj]sticker" "1" + "[eslcologne2015_signature_gobb]sticker" "1" + "[eslcologne2015_signature_denis]sticker" "1" + "[eslcologne2015_signature_nex]sticker" "1" + "[eslcologne2015_signature_spiidi]sticker" "1" + "[eslcologne2015_signature_ustilo]sticker" "1" + "[eslcologne2015_signature_rickeh]sticker" "1" + "[eslcologne2015_signature_emagine]sticker" "1" + "[eslcologne2015_signature_snyper]sticker" "1" + "[eslcologne2015_signature_james]sticker" "1" + "[eslcologne2015_signature_nothing]sticker" "1" + "[eslcologne2015_signature_sgares]sticker" "1" + "[eslcologne2015_signature_shroud]sticker" "1" + "[eslcologne2015_signature_freakazoid]sticker" "1" + "[eslcologne2015_signature_skadoodle]sticker" "1" + } + "crate_signature_pack_eslcologne2015_group_4_legendary" + { + "[eslcologne2015_signature_neo_foil]sticker" "1" + "[eslcologne2015_signature_pasha_foil]sticker" "1" + "[eslcologne2015_signature_taz_foil]sticker" "1" + "[eslcologne2015_signature_snax_foil]sticker" "1" + "[eslcologne2015_signature_byali_foil]sticker" "1" + "[eslcologne2015_signature_chrisj_foil]sticker" "1" + "[eslcologne2015_signature_gobb_foil]sticker" "1" + "[eslcologne2015_signature_denis_foil]sticker" "1" + "[eslcologne2015_signature_nex_foil]sticker" "1" + "[eslcologne2015_signature_spiidi_foil]sticker" "1" + "[eslcologne2015_signature_ustilo_foil]sticker" "1" + "[eslcologne2015_signature_rickeh_foil]sticker" "1" + "[eslcologne2015_signature_emagine_foil]sticker" "1" + "[eslcologne2015_signature_snyper_foil]sticker" "1" + "[eslcologne2015_signature_james_foil]sticker" "1" + "[eslcologne2015_signature_nothing_foil]sticker" "1" + "[eslcologne2015_signature_sgares_foil]sticker" "1" + "[eslcologne2015_signature_shroud_foil]sticker" "1" + "[eslcologne2015_signature_freakazoid_foil]sticker" "1" + "[eslcologne2015_signature_skadoodle_foil]sticker" "1" + } + "crate_eslcologne2015_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_eslcologne2015_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_eslcologne2015_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_eslcologne2015_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_eslcologne2015_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_eslcologne2015_promo_de_cache" + { + "set_cache" "1" + } + "crate_eslcologne2015_promo_de_train" + { + "set_train" "1" + } + "cluj2015_rare_nip" + { + "[cluj2015_team_nip]sticker" "1" + } + "cluj2015_rare_dig" + { + "[cluj2015_team_dig]sticker" "1" + } + "cluj2015_rare_clg" + { + "[cluj2015_team_clg]sticker" "1" + } + "cluj2015_rare_vex" + { + "[cluj2015_team_vex]sticker" "1" + } + "cluj2015_rare_flip" + { + "[cluj2015_team_flip]sticker" "1" + } + "cluj2015_rare_liq" + { + "[cluj2015_team_liq]sticker" "1" + } + "cluj2015_rare_mss" + { + "[cluj2015_team_mss]sticker" "1" + } + "cluj2015_rare_navi" + { + "[cluj2015_team_navi]sticker" "1" + } + "cluj2015_rare_vp" + { + "[cluj2015_team_vp]sticker" "1" + } + "cluj2015_rare_c9" + { + "[cluj2015_team_c9]sticker" "1" + } + "cluj2015_rare_g2" + { + "[cluj2015_team_g2]sticker" "1" + } + "cluj2015_rare_tit" + { + "[cluj2015_team_tit]sticker" "1" + } + "cluj2015_rare_tsolo" + { + "[cluj2015_team_tsolo]sticker" "1" + } + "cluj2015_rare_nv" + { + "[cluj2015_team_nv]sticker" "1" + } + "cluj2015_rare_fntc" + { + "[cluj2015_team_fntc]sticker" "1" + } + "cluj2015_rare_lumi" + { + "[cluj2015_team_lumi]sticker" "1" + } + "cluj2015_rare_dhc" + { + "[cluj2015_team_dhc]sticker" "1" + } + "crate_sticker_pack_cluj2015_legends_rare" + { + "[cluj2015_team_nip]sticker" "1" + "[cluj2015_team_navi]sticker" "1" + "[cluj2015_team_vp]sticker" "1" + "[cluj2015_team_g2]sticker" "1" + "[cluj2015_team_tsolo]sticker" "1" + "[cluj2015_team_nv]sticker" "1" + "[cluj2015_team_fntc]sticker" "1" + "[cluj2015_team_lumi]sticker" "1" + "[cluj2015_team_dhc]sticker" "1" + } + "crate_sticker_pack_cluj2015_legends_legendary" + { + "[cluj2015_team_nip_foil]sticker" "1" + "[cluj2015_team_navi_foil]sticker" "1" + "[cluj2015_team_vp_foil]sticker" "1" + "[cluj2015_team_g2_foil]sticker" "1" + "[cluj2015_team_tsolo_foil]sticker" "1" + "[cluj2015_team_nv_foil]sticker" "1" + "[cluj2015_team_fntc_foil]sticker" "1" + "[cluj2015_team_lumi_foil]sticker" "1" + "[cluj2015_team_dhc_foil]sticker" "1" + } + "crate_sticker_pack_cluj2015_legends" + { + "crate_sticker_pack_cluj2015_legends_legendary" "1" + } + "crate_sticker_pack_cluj2015_challengers_rare" + { + "[cluj2015_team_dig]sticker" "1" + "[cluj2015_team_clg]sticker" "1" + "[cluj2015_team_vex]sticker" "1" + "[cluj2015_team_flip]sticker" "1" + "[cluj2015_team_liq]sticker" "1" + "[cluj2015_team_mss]sticker" "1" + "[cluj2015_team_c9]sticker" "1" + "[cluj2015_team_tit]sticker" "1" + } + "crate_sticker_pack_cluj2015_challengers_legendary" + { + "[cluj2015_team_dig_foil]sticker" "1" + "[cluj2015_team_clg_foil]sticker" "1" + "[cluj2015_team_vex_foil]sticker" "1" + "[cluj2015_team_flip_foil]sticker" "1" + "[cluj2015_team_liq_foil]sticker" "1" + "[cluj2015_team_mss_foil]sticker" "1" + "[cluj2015_team_c9_foil]sticker" "1" + "[cluj2015_team_tit_foil]sticker" "1" + "[cluj2015_team_dhc_foil]sticker" "1" + } + "crate_sticker_pack_cluj2015_challengers" + { + "crate_sticker_pack_cluj2015_challengers_legendary" "1" + } + "cluj2015_signatures_nip" + { + "[cluj2015_signature_allu]sticker" "1" + "[cluj2015_signature_forest]sticker" "1" + "[cluj2015_signature_friberg]sticker" "1" + "[cluj2015_signature_getright]sticker" "1" + "[cluj2015_signature_xizt]sticker" "1" + } + "cluj2015_signatures_dig" + { + "[cluj2015_signature_aizy]sticker" "1" + "[cluj2015_signature_kjaerbye]sticker" "1" + "[cluj2015_signature_msl]sticker" "1" + "[cluj2015_signature_pimp]sticker" "1" + "[cluj2015_signature_tenzki]sticker" "1" + } + "cluj2015_signatures_clg" + { + "[cluj2015_signature_reltuc]sticker" "1" + "[cluj2015_signature_fns]sticker" "1" + "[cluj2015_signature_hazed]sticker" "1" + "[cluj2015_signature_jdm64]sticker" "1" + "[cluj2015_signature_tarik]sticker" "1" + } + "cluj2015_signatures_vex" + { + "[cluj2015_signature_furlan]sticker" "1" + "[cluj2015_signature_gruby]sticker" "1" + "[cluj2015_signature_hyper]sticker" "1" + "[cluj2015_signature_peet]sticker" "1" + "[cluj2015_signature_rallen]sticker" "1" + } + "cluj2015_signatures_flip" + { + "[cluj2015_signature_b1ad3]sticker" "1" + "[cluj2015_signature_bondik]sticker" "1" + "[cluj2015_signature_davcost]sticker" "1" + "[cluj2015_signature_markeloff]sticker" "1" + "[cluj2015_signature_worldedit]sticker" "1" + } + "cluj2015_signatures_liq" + { + "[cluj2015_signature_adren]sticker" "1" + "[cluj2015_signature_elige]sticker" "1" + "[cluj2015_signature_fugly]sticker" "1" + "[cluj2015_signature_hiko]sticker" "1" + "[cluj2015_signature_nitro]sticker" "1" + } + "cluj2015_signatures_mss" + { + "[cluj2015_signature_chrisj]sticker" "1" + "[cluj2015_signature_denis]sticker" "1" + "[cluj2015_signature_gobb]sticker" "1" + "[cluj2015_signature_nex]sticker" "1" + "[cluj2015_signature_niko]sticker" "1" + } + "cluj2015_signatures_navi" + { + "[cluj2015_signature_edward]sticker" "1" + "[cluj2015_signature_flamie]sticker" "1" + "[cluj2015_signature_guardian]sticker" "1" + "[cluj2015_signature_seized]sticker" "1" + "[cluj2015_signature_zeus]sticker" "1" + } + "cluj2015_signatures_vp" + { + "[cluj2015_signature_byali]sticker" "1" + "[cluj2015_signature_neo]sticker" "1" + "[cluj2015_signature_pasha]sticker" "1" + "[cluj2015_signature_snax]sticker" "1" + "[cluj2015_signature_taz]sticker" "1" + } + "cluj2015_signatures_c9" + { + "[cluj2015_signature_freakazoid]sticker" "1" + "[cluj2015_signature_sgares]sticker" "1" + "[cluj2015_signature_shroud]sticker" "1" + "[cluj2015_signature_skadoodle]sticker" "1" + "[cluj2015_signature_nothing]sticker" "1" + } + "cluj2015_signatures_g2" + { + "[cluj2015_signature_dennis]sticker" "1" + "[cluj2015_signature_fox]sticker" "1" + "[cluj2015_signature_maikelele]sticker" "1" + "[cluj2015_signature_rain]sticker" "1" + "[cluj2015_signature_jkaem]sticker" "1" + } + "cluj2015_signatures_tit" + { + "[cluj2015_signature_ex6tenz]sticker" "1" + "[cluj2015_signature_rpk]sticker" "1" + "[cluj2015_signature_scream]sticker" "1" + "[cluj2015_signature_shox]sticker" "1" + "[cluj2015_signature_smithzz]sticker" "1" + } + "cluj2015_signatures_tsolo" + { + "[cluj2015_signature_cajunb]sticker" "1" + "[cluj2015_signature_device]sticker" "1" + "[cluj2015_signature_dupreeh]sticker" "1" + "[cluj2015_signature_karrigan]sticker" "1" + "[cluj2015_signature_xyp9x]sticker" "1" + } + "cluj2015_signatures_nv" + { + "[cluj2015_signature_apex]sticker" "1" + "[cluj2015_signature_happy]sticker" "1" + "[cluj2015_signature_kioshima]sticker" "1" + "[cluj2015_signature_kennys]sticker" "1" + "[cluj2015_signature_nbk]sticker" "1" + } + "cluj2015_signatures_fntc" + { + "[cluj2015_signature_flusha]sticker" "1" + "[cluj2015_signature_jw]sticker" "1" + "[cluj2015_signature_krimz]sticker" "1" + "[cluj2015_signature_olofmeister]sticker" "1" + "[cluj2015_signature_pronax]sticker" "1" + } + "cluj2015_signatures_lumi" + { + "[cluj2015_signature_boltz]sticker" "1" + "[cluj2015_signature_coldzera]sticker" "1" + "[cluj2015_signature_fallen]sticker" "1" + "[cluj2015_signature_fer]sticker" "1" + "[cluj2015_signature_steel]sticker" "1" + } + "crate_signature_pack_cluj2015_group_1_rare" + { + "[cluj2015_signature_aizy]sticker" "1" + "[cluj2015_signature_kjaerbye]sticker" "1" + "[cluj2015_signature_msl]sticker" "1" + "[cluj2015_signature_pimp]sticker" "1" + "[cluj2015_signature_tenzki]sticker" "1" + "[cluj2015_signature_reltuc]sticker" "1" + "[cluj2015_signature_fns]sticker" "1" + "[cluj2015_signature_hazed]sticker" "1" + "[cluj2015_signature_jdm64]sticker" "1" + "[cluj2015_signature_tarik]sticker" "1" + "[cluj2015_signature_furlan]sticker" "1" + "[cluj2015_signature_gruby]sticker" "1" + "[cluj2015_signature_hyper]sticker" "1" + "[cluj2015_signature_peet]sticker" "1" + "[cluj2015_signature_rallen]sticker" "1" + "[cluj2015_signature_b1ad3]sticker" "1" + "[cluj2015_signature_bondik]sticker" "1" + "[cluj2015_signature_davcost]sticker" "1" + "[cluj2015_signature_markeloff]sticker" "1" + "[cluj2015_signature_worldedit]sticker" "1" + "[cluj2015_signature_adren]sticker" "1" + "[cluj2015_signature_elige]sticker" "1" + "[cluj2015_signature_fugly]sticker" "1" + "[cluj2015_signature_hiko]sticker" "1" + "[cluj2015_signature_nitro]sticker" "1" + "[cluj2015_signature_chrisj]sticker" "1" + "[cluj2015_signature_denis]sticker" "1" + "[cluj2015_signature_gobb]sticker" "1" + "[cluj2015_signature_nex]sticker" "1" + "[cluj2015_signature_niko]sticker" "1" + "[cluj2015_signature_freakazoid]sticker" "1" + "[cluj2015_signature_sgares]sticker" "1" + "[cluj2015_signature_shroud]sticker" "1" + "[cluj2015_signature_skadoodle]sticker" "1" + "[cluj2015_signature_nothing]sticker" "1" + "[cluj2015_signature_ex6tenz]sticker" "1" + "[cluj2015_signature_rpk]sticker" "1" + "[cluj2015_signature_scream]sticker" "1" + "[cluj2015_signature_shox]sticker" "1" + "[cluj2015_signature_smithzz]sticker" "1" + } + "crate_signature_pack_cluj2015_group_1_legendary" + { + "[cluj2015_signature_aizy_foil]sticker" "1" + "[cluj2015_signature_kjaerbye_foil]sticker" "1" + "[cluj2015_signature_msl_foil]sticker" "1" + "[cluj2015_signature_pimp_foil]sticker" "1" + "[cluj2015_signature_tenzki_foil]sticker" "1" + "[cluj2015_signature_reltuc_foil]sticker" "1" + "[cluj2015_signature_fns_foil]sticker" "1" + "[cluj2015_signature_hazed_foil]sticker" "1" + "[cluj2015_signature_jdm64_foil]sticker" "1" + "[cluj2015_signature_tarik_foil]sticker" "1" + "[cluj2015_signature_furlan_foil]sticker" "1" + "[cluj2015_signature_gruby_foil]sticker" "1" + "[cluj2015_signature_hyper_foil]sticker" "1" + "[cluj2015_signature_peet_foil]sticker" "1" + "[cluj2015_signature_rallen_foil]sticker" "1" + "[cluj2015_signature_b1ad3_foil]sticker" "1" + "[cluj2015_signature_bondik_foil]sticker" "1" + "[cluj2015_signature_davcost_foil]sticker" "1" + "[cluj2015_signature_markeloff_foil]sticker" "1" + "[cluj2015_signature_worldedit_foil]sticker" "1" + "[cluj2015_signature_adren_foil]sticker" "1" + "[cluj2015_signature_elige_foil]sticker" "1" + "[cluj2015_signature_fugly_foil]sticker" "1" + "[cluj2015_signature_hiko_foil]sticker" "1" + "[cluj2015_signature_nitro_foil]sticker" "1" + "[cluj2015_signature_chrisj_foil]sticker" "1" + "[cluj2015_signature_denis_foil]sticker" "1" + "[cluj2015_signature_gobb_foil]sticker" "1" + "[cluj2015_signature_nex_foil]sticker" "1" + "[cluj2015_signature_niko_foil]sticker" "1" + "[cluj2015_signature_freakazoid_foil]sticker" "1" + "[cluj2015_signature_sgares_foil]sticker" "1" + "[cluj2015_signature_shroud_foil]sticker" "1" + "[cluj2015_signature_skadoodle_foil]sticker" "1" + "[cluj2015_signature_nothing_foil]sticker" "1" + "[cluj2015_signature_ex6tenz_foil]sticker" "1" + "[cluj2015_signature_rpk_foil]sticker" "1" + "[cluj2015_signature_scream_foil]sticker" "1" + "[cluj2015_signature_shox_foil]sticker" "1" + "[cluj2015_signature_smithzz_foil]sticker" "1" + } + "crate_signature_pack_cluj2015_group_2_rare" + { + "[cluj2015_signature_allu]sticker" "1" + "[cluj2015_signature_forest]sticker" "1" + "[cluj2015_signature_friberg]sticker" "1" + "[cluj2015_signature_getright]sticker" "1" + "[cluj2015_signature_xizt]sticker" "1" + "[cluj2015_signature_edward]sticker" "1" + "[cluj2015_signature_flamie]sticker" "1" + "[cluj2015_signature_guardian]sticker" "1" + "[cluj2015_signature_seized]sticker" "1" + "[cluj2015_signature_zeus]sticker" "1" + "[cluj2015_signature_byali]sticker" "1" + "[cluj2015_signature_neo]sticker" "1" + "[cluj2015_signature_pasha]sticker" "1" + "[cluj2015_signature_snax]sticker" "1" + "[cluj2015_signature_taz]sticker" "1" + "[cluj2015_signature_dennis]sticker" "1" + "[cluj2015_signature_fox]sticker" "1" + "[cluj2015_signature_maikelele]sticker" "1" + "[cluj2015_signature_rain]sticker" "1" + "[cluj2015_signature_jkaem]sticker" "1" + "[cluj2015_signature_cajunb]sticker" "1" + "[cluj2015_signature_device]sticker" "1" + "[cluj2015_signature_dupreeh]sticker" "1" + "[cluj2015_signature_karrigan]sticker" "1" + "[cluj2015_signature_xyp9x]sticker" "1" + "[cluj2015_signature_apex]sticker" "1" + "[cluj2015_signature_happy]sticker" "1" + "[cluj2015_signature_kioshima]sticker" "1" + "[cluj2015_signature_kennys]sticker" "1" + "[cluj2015_signature_nbk]sticker" "1" + "[cluj2015_signature_flusha]sticker" "1" + "[cluj2015_signature_jw]sticker" "1" + "[cluj2015_signature_krimz]sticker" "1" + "[cluj2015_signature_olofmeister]sticker" "1" + "[cluj2015_signature_pronax]sticker" "1" + "[cluj2015_signature_boltz]sticker" "1" + "[cluj2015_signature_coldzera]sticker" "1" + "[cluj2015_signature_fallen]sticker" "1" + "[cluj2015_signature_fer]sticker" "1" + "[cluj2015_signature_steel]sticker" "1" + } + "crate_signature_pack_cluj2015_group_2_legendary" + { + "[cluj2015_signature_allu_foil]sticker" "1" + "[cluj2015_signature_forest_foil]sticker" "1" + "[cluj2015_signature_friberg_foil]sticker" "1" + "[cluj2015_signature_getright_foil]sticker" "1" + "[cluj2015_signature_xizt_foil]sticker" "1" + "[cluj2015_signature_edward_foil]sticker" "1" + "[cluj2015_signature_flamie_foil]sticker" "1" + "[cluj2015_signature_guardian_foil]sticker" "1" + "[cluj2015_signature_seized_foil]sticker" "1" + "[cluj2015_signature_zeus_foil]sticker" "1" + "[cluj2015_signature_byali_foil]sticker" "1" + "[cluj2015_signature_neo_foil]sticker" "1" + "[cluj2015_signature_pasha_foil]sticker" "1" + "[cluj2015_signature_snax_foil]sticker" "1" + "[cluj2015_signature_taz_foil]sticker" "1" + "[cluj2015_signature_dennis_foil]sticker" "1" + "[cluj2015_signature_fox_foil]sticker" "1" + "[cluj2015_signature_maikelele_foil]sticker" "1" + "[cluj2015_signature_rain_foil]sticker" "1" + "[cluj2015_signature_jkaem_foil]sticker" "1" + "[cluj2015_signature_cajunb_foil]sticker" "1" + "[cluj2015_signature_device_foil]sticker" "1" + "[cluj2015_signature_dupreeh_foil]sticker" "1" + "[cluj2015_signature_karrigan_foil]sticker" "1" + "[cluj2015_signature_xyp9x_foil]sticker" "1" + "[cluj2015_signature_apex_foil]sticker" "1" + "[cluj2015_signature_happy_foil]sticker" "1" + "[cluj2015_signature_kioshima_foil]sticker" "1" + "[cluj2015_signature_kennys_foil]sticker" "1" + "[cluj2015_signature_nbk_foil]sticker" "1" + "[cluj2015_signature_flusha_foil]sticker" "1" + "[cluj2015_signature_jw_foil]sticker" "1" + "[cluj2015_signature_krimz_foil]sticker" "1" + "[cluj2015_signature_olofmeister_foil]sticker" "1" + "[cluj2015_signature_pronax_foil]sticker" "1" + "[cluj2015_signature_boltz_foil]sticker" "1" + "[cluj2015_signature_coldzera_foil]sticker" "1" + "[cluj2015_signature_fallen_foil]sticker" "1" + "[cluj2015_signature_fer_foil]sticker" "1" + "[cluj2015_signature_steel_foil]sticker" "1" + } + "crate_cluj2015_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_cluj2015_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_cluj2015_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_cluj2015_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_cluj2015_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_cluj2015_promo_de_cache" + { + "set_cache" "1" + } + "crate_cluj2015_promo_de_train" + { + "set_train" "1" + } + "removed_items" + { + "public_list_contents" "1" + "[cu_m4a1_howling]weapon_m4a1" "1" + } + "coupon loot list - bossyburger" + { + "public_list_contents" "1" + "[bossyburger]sticker" "1" + } + "coupon loot list - catcall" + { + "public_list_contents" "1" + "[catcall]sticker" "1" + } + "coupon loot list - chickenstrike" + { + "public_list_contents" "1" + "[chickenstrike]sticker" "1" + } + "coupon loot list - ctbanana" + { + "public_list_contents" "1" + "[ctbanana]sticker" "1" + } + "coupon loot list - dontworryimpro" + { + "public_list_contents" "1" + "[dontworryimpro]sticker" "1" + } + "coupon loot list - fightlikeagirl" + { + "public_list_contents" "1" + "[fightlikeagirl]sticker" "1" + } + "coupon loot list - handmadeflash" + { + "public_list_contents" "1" + "[handmadeflash]sticker" "1" + } + "coupon loot list - kawaiikiller" + { + "public_list_contents" "1" + "[kawaiikiller]sticker" "1" + } + "coupon loot list - neluthebear" + { + "public_list_contents" "1" + "[neluthebear]sticker" "1" + } + "coupon loot list - oneshotonekill" + { + "public_list_contents" "1" + "[oneshotonekill]sticker" "1" + } + "coupon loot list - shootingstar" + { + "public_list_contents" "1" + "[shootingstar]sticker" "1" + } + "coupon loot list - warpenguin" + { + "public_list_contents" "1" + "[warpenguin]sticker" "1" + } + "coupon loot list - windywalking" + { + "public_list_contents" "1" + "[windywalking]sticker" "1" + } + "coupon loot list - blitzkrieg" + { + "public_list_contents" "1" + "[blitzkrieg]sticker" "1" + } + "coupon loot list - pigeonmaster" + { + "public_list_contents" "1" + "[pigeonmaster]sticker" "1" + } + "coupon loot list - terrorized" + { + "public_list_contents" "1" + "[terrorized]sticker" "1" + } + "coupon loot list - tilldeathdouspart" + { + "public_list_contents" "1" + "[tilldeathdouspart]sticker" "1" + } + "coupon loot list - stayfrosty" + { + "public_list_contents" "1" + "[stayfrosty]sticker" "1" + } + "coupon loot list - toncat" + { + "public_list_contents" "1" + "[toncat]sticker" "1" + } + "coupon loot list - danielsadowski_01" + { + "public_list_contents" "1" + "[danielsadowski_01]musickit" "1" + } + "coupon loot list - noisia_01" + { + "public_list_contents" "1" + "[noisia_01]musickit" "1" + } + "coupon loot list - robertallaire_01" + { + "public_list_contents" "1" + "[robertallaire_01]musickit" "1" + } + "coupon loot list - seanmurray_01" + { + "public_list_contents" "1" + "[seanmurray_01]musickit" "1" + } + "coupon loot list - feedme_01" + { + "public_list_contents" "1" + "[feedme_01]musickit" "1" + } + "coupon loot list - dren_01" + { + "public_list_contents" "1" + "[dren_01]musickit" "1" + } + "coupon loot list - austinwintory_01" + { + "public_list_contents" "1" + "[austinwintory_01]musickit" "1" + } + "coupon loot list - sasha_01" + { + "public_list_contents" "1" + "[sasha_01]musickit" "1" + } + "coupon loot list - skog_01" + { + "public_list_contents" "1" + "[skog_01]musickit" "1" + } + "coupon loot list - doomed" + { + "public_list_contents" "1" + "[doomed]sticker" "1" + } + "coupon loot list - queenofpain" + { + "public_list_contents" "1" + "[queenofpain]sticker" "1" + } + "coupon loot list - trickorthreat" + { + "public_list_contents" "1" + "[trickorthreat]sticker" "1" + } + "coupon loot list - trickortreat" + { + "public_list_contents" "1" + "[trickortreat]sticker" "1" + } + "coupon loot list - witch" + { + "public_list_contents" "1" + "[witch]sticker" "1" + } + "coupon loot list - zombielover" + { + "public_list_contents" "1" + "[zombielover]sticker" "1" + } + "coupon loot list - blood_broiler" + { + "public_list_contents" "1" + "[blood_broiler]sticker" "1" + } + "coupon loot list - dinked" + { + "public_list_contents" "1" + "[dinked]sticker" "1" + } + "coupon loot list - drugwarveteran" + { + "public_list_contents" "1" + "[drugwarveteran]sticker" "1" + } + "coupon loot list - hohoho" + { + "public_list_contents" "1" + "[hohoho]sticker" "1" + } + "coupon loot list - massivepear" + { + "public_list_contents" "1" + "[massivepear]sticker" "1" + } + "coupon loot list - mylittlefriend" + { + "public_list_contents" "1" + "[mylittlefriend]sticker" "1" + } + "coupon loot list - pandamonium" + { + "public_list_contents" "1" + "[pandamonium]sticker" "1" + } + "coupon loot list - pieceofcake" + { + "public_list_contents" "1" + "[pieceofcake]sticker" "1" + } + "coupon loot list - saschicken" + { + "public_list_contents" "1" + "[saschicken]sticker" "1" + } + "coupon loot list - thuglife" + { + "public_list_contents" "1" + "[thuglife]sticker" "1" + } + "coupon loot list - trekt" + { + "public_list_contents" "1" + "[trekt]sticker" "1" + } + "coupon loot list - warowl" + { + "public_list_contents" "1" + "[warowl]sticker" "1" + } + "coupon loot list - workforfood" + { + "public_list_contents" "1" + "[workforfood]sticker" "1" + } + "coupon loot list - phoenix_foil" + { + "public_list_contents" "1" + "[phoenix_foil]sticker" "1" + } + "coupon loot list - bombsquad_foil" + { + "public_list_contents" "1" + "[bombsquad_foil]sticker" "1" + } + "coupon loot list - midnightriders_01" + { + "public_list_contents" "1" + "[midnightriders_01]musickit" "1" + } + "coupon loot list - danielsadowski_02" + { + "public_list_contents" "1" + "[danielsadowski_02]musickit" "1" + } + "coupon loot list - hotlinemiami_01" + { + "public_list_contents" "1" + "[hotlinemiami_01]musickit" "1" + } + "coupon loot list - mattlange_01" + { + "public_list_contents" "1" + "[mattlange_01]musickit" "1" + } + "coupon loot list - mateomessina_01" + { + "public_list_contents" "1" + "[mateomessina_01]musickit" "1" + } + "coupon loot list - damjanmravunac_01" + { + "public_list_contents" "1" + "[damjanmravunac_01]musickit" "1" + } + "coupon loot list - flickshot" + { + "public_list_contents" "1" + "[flickshot]sticker" "1" + } + "coupon loot list - headshot_guarantee" + { + "public_list_contents" "1" + "[headshot_guarantee]sticker" "1" + } + "coupon loot list - eco_rush" + { + "public_list_contents" "1" + "[eco_rush]sticker" "1" + } + "coupon loot list - just_trolling" + { + "public_list_contents" "1" + "[just_trolling]sticker" "1" + } + "coupon loot list - firestarter_holo" + { + "public_list_contents" "1" + "[firestarter_holo]sticker" "1" + } + "coupon loot list - lucky_cat_foil" + { + "public_list_contents" "1" + "[lucky_cat_foil]sticker" "1" + } + "coupon loot list - robot_head" + { + "public_list_contents" "1" + "[robot_head]sticker" "1" + } + "coupon loot list - witchcraft" + { + "public_list_contents" "1" + "[witchcraft]sticker" "1" + } + "coupon loot list - wanna_fight" + { + "public_list_contents" "1" + "[wanna_fight]sticker" "1" + } + "coupon loot list - hostage_rescue" + { + "public_list_contents" "1" + "[hostage_rescue]sticker" "1" + } + "coupon loot list - hamster_hawk" + { + "public_list_contents" "1" + "[hamster_hawk]sticker" "1" + } + "coupon loot list - headless_chicken" + { + "public_list_contents" "1" + "[headless_chicken]sticker" "1" + } + "coupon loot list - proxy_01" + { + "public_list_contents" "1" + "[proxy_01]musickit" "1" + } + "coupon loot list - kitheory_01" + { + "public_list_contents" "1" + "[kitheory_01]musickit" "1" + } + "coupon loot list - troelsfolmann_01" + { + "public_list_contents" "1" + "[troelsfolmann_01]musickit" "1" + } + "coupon loot list - kellybailey_01" + { + "public_list_contents" "1" + "[kellybailey_01]musickit" "1" + } + "coupon loot list - skog_02" + { + "public_list_contents" "1" + "[skog_02]musickit" "1" + } + "coupon loot list - enfu_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_enfu_capsule" "1" + } + "coupon loot list - awp_country" + { + "public_list_contents" "1" + "[awp_country]sticker" "1" + } + "coupon loot list - chi_bomb" + { + "public_list_contents" "1" + "[chi_bomb]sticker" "1" + } + "coupon loot list - fox" + { + "public_list_contents" "1" + "[fox]sticker" "1" + } + "coupon loot list - knifeclub" + { + "public_list_contents" "1" + "[knifeclub]sticker" "1" + } + "coupon loot list - cs_on_the_mind" + { + "public_list_contents" "1" + "[cs_on_the_mind]sticker" "1" + } + "coupon loot list - ninja_defuse" + { + "public_list_contents" "1" + "[ninja_defuse]sticker" "1" + } + "coupon loot list - pros_dont_fake" + { + "public_list_contents" "1" + "[pros_dont_fake]sticker" "1" + } + "coupon loot list - kawaiikiller_t" + { + "public_list_contents" "1" + "[kawaiikiller_t]sticker" "1" + } + "coupon loot list - baackstabber" + { + "public_list_contents" "1" + "[baackstabber]sticker" "1" + } + "coupon loot list - delicious_tears" + { + "public_list_contents" "1" + "[delicious_tears]sticker" "1" + } + "coupon loot list - danielsadowski_03" + { + "public_list_contents" "1" + "[danielsadowski_03]musickit" "1" + } + "coupon loot list - awolnation_01" + { + "public_list_contents" "1" + "[awolnation_01]musickit" "1" + } + "coupon loot list - mordfustang_01" + { + "public_list_contents" "1" + "[mordfustang_01]musickit" "1" + } + "coupon loot list - michaelbross_01" + { + "public_list_contents" "1" + "[michaelbross_01]musickit" "1" + } + "coupon loot list - ianhultquist_01" + { + "public_list_contents" "1" + "[ianhultquist_01]musickit" "1" + } + "coupon loot list - newbeatfund_01" + { + "public_list_contents" "1" + "[newbeatfund_01]musickit" "1" + } + "coupon loot list - beartooth_01" + { + "public_list_contents" "1" + "[beartooth_01]musickit" "1" + } + "coupon loot list - lenniemoore_01" + { + "public_list_contents" "1" + "[lenniemoore_01]musickit" "1" + } + "coupon loot list - darude_01" + { + "public_list_contents" "1" + "[darude_01]musickit" "1" + } + "coupon loot list - proxy_01_stattrak" + { + "public_list_contents" "1" + "[proxy_01]musickit" "1" + } + "coupon loot list - kitheory_01_stattrak" + { + "public_list_contents" "1" + "[kitheory_01]musickit" "1" + } + "coupon loot list - troelsfolmann_01_stattrak" + { + "public_list_contents" "1" + "[troelsfolmann_01]musickit" "1" + } + "coupon loot list - kellybailey_01_stattrak" + { + "public_list_contents" "1" + "[kellybailey_01]musickit" "1" + } + "coupon loot list - skog_02_stattrak" + { + "public_list_contents" "1" + "[skog_02]musickit" "1" + } + "coupon loot list - danielsadowski_03_stattrak" + { + "public_list_contents" "1" + "[danielsadowski_03]musickit" "1" + } + "coupon loot list - awolnation_01_stattrak" + { + "public_list_contents" "1" + "[awolnation_01]musickit" "1" + } + "coupon loot list - mordfustang_01_stattrak" + { + "public_list_contents" "1" + "[mordfustang_01]musickit" "1" + } + "coupon loot list - michaelbross_01_stattrak" + { + "public_list_contents" "1" + "[michaelbross_01]musickit" "1" + } + "coupon loot list - ianhultquist_01_stattrak" + { + "public_list_contents" "1" + "[ianhultquist_01]musickit" "1" + } + "coupon loot list - newbeatfund_01_stattrak" + { + "public_list_contents" "1" + "[newbeatfund_01]musickit" "1" + } + "coupon loot list - beartooth_01_stattrak" + { + "public_list_contents" "1" + "[beartooth_01]musickit" "1" + } + "coupon loot list - lenniemoore_01_stattrak" + { + "public_list_contents" "1" + "[lenniemoore_01]musickit" "1" + } + "coupon loot list - darude_01_stattrak" + { + "public_list_contents" "1" + "[darude_01]musickit" "1" + } + "coupon loot list - danielsadowski_01_stattrak" + { + "public_list_contents" "1" + "[danielsadowski_01]musickit" "1" + } + "coupon loot list - noisia_01_stattrak" + { + "public_list_contents" "1" + "[noisia_01]musickit" "1" + } + "coupon loot list - robertallaire_01_stattrak" + { + "public_list_contents" "1" + "[robertallaire_01]musickit" "1" + } + "coupon loot list - seanmurray_01_stattrak" + { + "public_list_contents" "1" + "[seanmurray_01]musickit" "1" + } + "coupon loot list - feedme_01_stattrak" + { + "public_list_contents" "1" + "[feedme_01]musickit" "1" + } + "coupon loot list - dren_01_stattrak" + { + "public_list_contents" "1" + "[dren_01]musickit" "1" + } + "coupon loot list - austinwintory_01_stattrak" + { + "public_list_contents" "1" + "[austinwintory_01]musickit" "1" + } + "coupon loot list - sasha_01_stattrak" + { + "public_list_contents" "1" + "[sasha_01]musickit" "1" + } + "coupon loot list - skog_01_stattrak" + { + "public_list_contents" "1" + "[skog_01]musickit" "1" + } + "coupon loot list - midnightriders_01_stattrak" + { + "public_list_contents" "1" + "[midnightriders_01]musickit" "1" + } + "coupon loot list - danielsadowski_02_stattrak" + { + "public_list_contents" "1" + "[danielsadowski_02]musickit" "1" + } + "coupon loot list - hotlinemiami_01_stattrak" + { + "public_list_contents" "1" + "[hotlinemiami_01]musickit" "1" + } + "coupon loot list - mattlange_01_stattrak" + { + "public_list_contents" "1" + "[mattlange_01]musickit" "1" + } + "coupon loot list - mateomessina_01_stattrak" + { + "public_list_contents" "1" + "[mateomessina_01]musickit" "1" + } + "coupon loot list - damjanmravunac_01_stattrak" + { + "public_list_contents" "1" + "[damjanmravunac_01]musickit" "1" + } + "coupon loot list - pinups_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_pinups_capsule" "1" + } + "coupon loot list - slid3_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_slid3_capsule" "1" + } + "coupon loot list - team_roles_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_team_roles_capsule" "1" + } + "coupon loot list - pins_series_1" + { + "public_list_contents" "1" + "crate_pins_series_1" "1" + } + "coupon loot list - sugarface_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_sugarface_capsule" "1" + } + "coupon loot list - bestiary_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_bestiary_capsule" "1" + } + "coupon loot list - crate_sprays_vcap1" + { + "public_list_contents" "1" + "crate_sprays_vcap1" "1" + } + "coupon loot list - crate_sprays_community_1" + { + "public_list_contents" "1" + "crate_sprays_community_1" "1" + } + "coupon loot list - pins_series_2" + { + "public_list_contents" "1" + "crate_pins_series_2" "1" + } + "coupon loot list - radicals_stattrak_musickit_capsule" + { + "public_list_contents" "1" + "crate_musickit_radicals_stattrak_capsule" "1" + } + "coupon loot list - illuminate_capsule_01" + { + "public_list_contents" "1" + "crate_sticker_pack_illuminate_capsule_01" "1" + } + "coupon loot list - illuminate_capsule_02" + { + "public_list_contents" "1" + "crate_sticker_pack_illuminate_capsule_02" "1" + } + "coupon loot list - illuminate_sprays_capsule_01" + { + "public_list_contents" "1" + "crate_sprays_illuminate1" "1" + } + "coupon loot list - comm2018_01_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_comm2018_01_capsule" "1" + } + "coupon loot list - pins_series_3" + { + "public_list_contents" "1" + "crate_pins_series_3" "1" + } + "coupon loot list - skillgroup_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_skillgroup_capsule" "1" + } + "coupon loot list - theverkkars_01" + { + "public_list_contents" "1" + "[theverkkars_01]musickit" "1" + } + "coupon loot list - theverkkars_01_stattrak" + { + "public_list_contents" "1" + "[theverkkars_01]musickit" "1" + } + "coupon loot list - feral_predators_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_feral_predators_capsule" "1" + } + "coupon loot list - chicken_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_chicken_capsule" "1" + } + "coupon loot list - crate_xray_p250" + { + "public_list_contents" "1" + "crate_xray_p250" "1" + } + "coupon loot list - cs20_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_cs20_capsule" "1" + } + "coupon loot list - halo_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_halo_capsule" "1" + } + "coupon loot list - scarlxrd_01" + { + "public_list_contents" "1" + "[scarlxrd_01]musickit" "1" + } + "coupon loot list - scarlxrd_01_stattrak" + { + "public_list_contents" "1" + "[scarlxrd_01]musickit" "1" + } + "coupon loot list - crate_patch_pack01" + { + "public_list_contents" "1" + "crate_patch_pack01" "1" + } + "coupon loot list - pins_hlalyx" + { + "public_list_contents" "1" + "crate_pins_hlalyx" "1" + } + "coupon loot list - hlalyx_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_hlalyx_capsule" "1" + } + "coupon loot list - crate_patch_pack_hlalyx" + { + "public_list_contents" "1" + "crate_patch_pack_hlalyx" "1" + } + "coupon loot list - masterminds_musickit_capsule" + { + "public_list_contents" "1" + "crate_musickit_masterminds_capsule" "1" + } + "coupon loot list - masterminds_stattrak_musickit_capsule" + { + "public_list_contents" "1" + "crate_musickit_masterminds_stattrak_capsule" "1" + } + "coupon loot list - warhammer_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_warhammer" "1" + } + "coupon loot list - amontobin_01" + { + "public_list_contents" "1" + "[amontobin_01]musickit" "1" + } + "coupon loot list - amontobin_01_stattrak" + { + "public_list_contents" "1" + "[amontobin_01]musickit" "1" + } + "coupon loot list - poorly_drawn_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_poorly_drawn" "1" + } + "coupon loot list - neckdeep_02" + { + "public_list_contents" "1" + "[neckdeep_02]musickit" "1" + } + "coupon loot list - neckdeep_02_stattrak" + { + "public_list_contents" "1" + "[neckdeep_02]musickit" "1" + } + "coupon loot list - scarlxrd_02" + { + "public_list_contents" "1" + "[scarlxrd_02]musickit" "1" + } + "coupon loot list - scarlxrd_02_stattrak" + { + "public_list_contents" "1" + "[scarlxrd_02]musickit" "1" + } + "coupon loot list - tacticians_musickit_capsule" + { + "public_list_contents" "1" + "crate_musickit_tacticians_capsule" "1" + } + "coupon loot list - tacticians_stattrak_musickit_capsule" + { + "public_list_contents" "1" + "crate_musickit_tacticians_stattrak_capsule" "1" + } + "coupon loot list - community2021_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_community2021_capsule" "1" + } + "coupon loot list - bf2042_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_bf2042_capsule" "1" + } + "coupon loot list - bbnos_01" + { + "public_list_contents" "1" + "[bbnos_01]musickit" "1" + } + "coupon loot list - bbnos_01_stattrak" + { + "public_list_contents" "1" + "[bbnos_01]musickit" "1" + } + "coupon loot list - theverkkars_02" + { + "public_list_contents" "1" + "[theverkkars_02]musickit" "1" + } + "coupon loot list - theverkkars_02_stattrak" + { + "public_list_contents" "1" + "[theverkkars_02]musickit" "1" + } + "coupon loot list - spring2022_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_spring2022_capsule" "1" + } + "coupon loot list - csgo10_sticker_capsule" + { + "public_list_contents" "1" + "crate_sticker_pack_csgo10_capsule" "1" + } + "coupon loot list - initiators_musickit_capsule" + { + "public_list_contents" "1" + "crate_musickit_initiators_capsule" "1" + } + "coupon loot list - initiators_stattrak_musickit_capsule" + { + "public_list_contents" "1" + "crate_musickit_initiators_stattrak_capsule" "1" + } + "coupon loot list - perfectworld_01" + { + "public_list_contents" "1" + "[perfectworld_01]musickit" "1" + } + "coupon loot list - perfectworld_01_stattrak" + { + "public_list_contents" "1" + "[perfectworld_01]musickit" "1" + } + } + "revolving_loot_lists" + { + "1" "crate_valve_1" + "2" "crate_esports_2013" + "3" "crate_operation_ii" + "4" "crate_valve_2" + "5" "crate_esports_2013_winter" + "6" "crate_dhw13_promo" + "7" "crate_community_1" + "8" "giftpkg_2013_winter" + "9" "crate_sticker_pack01" + "10" "crate_valve_3" + "11" "crate_community_2" + "12" "crate_sticker_pack02" + "13" "crate_ems14_promo" + "14" "crate_sticker_pack_kat2014_01" + "15" "crate_sticker_pack_kat2014_02" + "16" "crate_sticker_pack_community01" + "17" "crate_community_3" + "18" "crate_community_4" + "19" "crate_esports_2014_summer" + "20" "crate_sticker_pack_cologne2014_01" + "21" "crate_sticker_pack_cologne2014_02" + "22" "crate_esl14_promo_de_dust2" + "23" "crate_esl14_promo_de_inferno" + "24" "crate_esl14_promo_de_mirage" + "25" "crate_esl14_promo_de_nuke" + "26" "crate_esl14_promo_de_cache" + "27" "crate_esl14_promo_de_cbble" + "28" "crate_esl14_promo_de_overpass" + "29" "crate_community_5" + "30" "crate_sticker_pack_dhw2014_01" + "31" "crate_dhw14_promo_de_dust2" + "32" "crate_dhw14_promo_de_inferno" + "33" "crate_dhw14_promo_de_mirage" + "34" "crate_dhw14_promo_de_nuke" + "35" "crate_dhw14_promo_de_cache" + "36" "crate_dhw14_promo_de_cbble" + "37" "crate_dhw14_promo_de_overpass" + "38" "crate_community_6" + "39" "crate_eslkatowice2015_promo_de_dust2" + "40" "crate_eslkatowice2015_promo_de_inferno" + "41" "crate_eslkatowice2015_promo_de_mirage" + "42" "crate_eslkatowice2015_promo_de_nuke" + "43" "crate_eslkatowice2015_promo_de_cache" + "44" "crate_eslkatowice2015_promo_de_cbble" + "45" "crate_eslkatowice2015_promo_de_overpass" + "46" "crate_sticker_pack_eslkatowice2015_01" + "47" "crate_sticker_pack_eslkatowice2015_02" + "48" "crate_community_7" + "49" "crate_sticker_pack_enfu_capsule_lootlist" + "50" "crate_community_8" + "51" "crate_sticker_pack_eslcologne2015_legends" + "52" "crate_sticker_pack_eslcologne2015_challengers" + "53" "crate_signature_pack_eslcologne2015_group_1_legendary" + "54" "crate_signature_pack_eslcologne2015_group_2_legendary" + "55" "crate_signature_pack_eslcologne2015_group_3_legendary" + "56" "crate_signature_pack_eslcologne2015_group_4_legendary" + "57" "eslcologne2015_signatures_fnatic" + "58" "eslcologne2015_signatures_luminositygaming" + "59" "eslcologne2015_signatures_navi" + "60" "eslcologne2015_signatures_ninjasinpyjamas" + "61" "eslcologne2015_signatures_envyus" + "62" "eslcologne2015_signatures_titan" + "63" "eslcologne2015_signatures_solomid" + "64" "eslcologne2015_signatures_virtuspro" + "65" "eslcologne2015_signatures_mousesports" + "66" "eslcologne2015_signatures_renegades" + "67" "eslcologne2015_signatures_teamimmunity" + "68" "eslcologne2015_signatures_ebettle" + "69" "eslcologne2015_signatures_kinguin" + "70" "eslcologne2015_signatures_flipside" + "71" "eslcologne2015_signatures_clg" + "72" "eslcologne2015_signatures_cloud9" + "73" "crate_eslcologne2015_promo_de_dust2" + "74" "crate_eslcologne2015_promo_de_mirage" + "75" "crate_eslcologne2015_promo_de_inferno" + "76" "crate_eslcologne2015_promo_de_cbble" + "77" "crate_eslcologne2015_promo_de_overpass" + "78" "crate_eslcologne2015_promo_de_cache" + "79" "crate_eslcologne2015_promo_de_train" + "80" "crate_community_9" + "81" "crate_sticker_pack_cluj2015_legends" + "82" "crate_sticker_pack_cluj2015_challengers" + "83" "crate_signature_pack_cluj2015_group_1_legendary" + "84" "crate_signature_pack_cluj2015_group_2_legendary" + "85" "cluj2015_signatures_nip" + "86" "cluj2015_signatures_dig" + "87" "cluj2015_signatures_clg" + "88" "cluj2015_signatures_vex" + "89" "cluj2015_signatures_flip" + "90" "cluj2015_signatures_liq" + "91" "cluj2015_signatures_mss" + "92" "cluj2015_signatures_navi" + "93" "cluj2015_signatures_vp" + "94" "cluj2015_signatures_c9" + "95" "cluj2015_signatures_g2" + "96" "cluj2015_signatures_tit" + "97" "cluj2015_signatures_tsolo" + "98" "cluj2015_signatures_nv" + "99" "cluj2015_signatures_fntc" + "100" "cluj2015_signatures_lumi" + "101" "crate_cluj2015_promo_de_dust2" + "102" "crate_cluj2015_promo_de_mirage" + "103" "crate_cluj2015_promo_de_inferno" + "104" "crate_cluj2015_promo_de_cbble" + "105" "crate_cluj2015_promo_de_overpass" + "106" "crate_cluj2015_promo_de_cache" + "107" "crate_cluj2015_promo_de_train" + "108" "crate_sticker_pack_pinups_capsule_lootlist" + "109" "crate_sticker_pack_slid3_capsule_lootlist" + "110" "crate_sticker_pack_team_roles_capsule_lootlist" + "111" "crate_community_10" + "112" "crate_community_11" + } + "quest_reward_loot_lists" + { + "1" "set_dust" + "2" "set_aztec" + "3" "set_vertigo" + "4" "set_inferno" + "5" "set_militia" + "6" "set_nuke" + "8" "set_office" + "9" "set_assault" + "13" "set_bravo_ii" + "15" "set_dust_2" + "16" "set_train" + "17" "set_mirage" + "18" "set_italy" + "19" "set_lake" + "20" "set_safehouse" + "24" "set_bank" + "26" "set_overpass" + "28" "set_cobblestone" + "29" "set_baggage" + "31" "set_cache" + "39" "set_gods_and_monsters" + "40" "set_chopshop" + "41" "set_kimono" + } + "item_levels" + { + "KillEaterRank" + { + "0" + { + "score" "2" + } + "1" + { + "score" "4" + } + "2" + { + "score" "6" + } + "3" + { + "score" "8" + } + "4" + { + "score" "10" + } + "5" + { + "score" "12" + } + "6" + { + "score" "14" + } + "7" + { + "score" "16" + } + "8" + { + "score" "18" + } + "9" + { + "score" "20" + } + "10" + { + "score" "22" + } + "11" + { + "score" "24" + } + "12" + { + "score" "26" + } + } + } + "kill_eater_score_types" + { + "0" + { + "type_name" "Kills" + "model_attribute" "stattrak model" + } + "1" + { + "type_name" "OCMVPs" + } + } + "music_definitions" + { + "1" + { + "name" "valve_csgo_01" + "loc_name" "#musickit_valve_csgo_01" + "loc_description" "#musickit_valve_csgo_01_desc" + "image_inventory" "econ/music_kits/valve_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_valve_01.mdl" + } + "2" + { + "name" "valve_csgo_02" + "loc_name" "#musickit_valve_csgo_02" + "loc_description" "#musickit_valve_csgo_02_desc" + "image_tooltip" "tooltip_image_01" + "image_inventory" "econ/music_kits/valve_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_valve_02.mdl" + } + "3" + { + "name" "danielsadowski_01" + "loc_name" "#musickit_danielsadowski_01" + "loc_description" "#musickit_danielsadowski_01_desc" + "image_inventory" "econ/music_kits/danielsadowski_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_danielsadowski_01.mdl" + } + "4" + { + "name" "noisia_01" + "loc_name" "#musickit_noisia_01" + "loc_description" "#musickit_noisia_01_desc" + "image_inventory" "econ/music_kits/noisia_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_noisia_01.mdl" + } + "5" + { + "name" "robertallaire_01" + "loc_name" "#musickit_robertallaire_01" + "loc_description" "#musickit_robertallaire_01_desc" + "image_inventory" "econ/music_kits/robertallaire_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_robertallaire_01.mdl" + } + "6" + { + "name" "seanmurray_01" + "loc_name" "#musickit_seanmurray_01" + "loc_description" "#musickit_seanmurray_01_desc" + "image_inventory" "econ/music_kits/seanmurray_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_seanmurray_01.mdl" + } + "7" + { + "name" "feedme_01" + "loc_name" "#musickit_feedme_01" + "loc_description" "#musickit_feedme_01_desc" + "image_inventory" "econ/music_kits/feedme_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_feedme_01.mdl" + } + "8" + { + "name" "dren_01" + "loc_name" "#musickit_dren_01" + "loc_description" "#musickit_dren_01_desc" + "image_inventory" "econ/music_kits/dren_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_dren_01.mdl" + } + "9" + { + "name" "austinwintory_01" + "loc_name" "#musickit_austinwintory_01" + "loc_description" "#musickit_austinwintory_01_desc" + "image_inventory" "econ/music_kits/austinwintory_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_austinwintory_01.mdl" + } + "10" + { + "name" "sasha_01" + "loc_name" "#musickit_sasha_01" + "loc_description" "#musickit_sasha_01_desc" + "image_inventory" "econ/music_kits/sasha_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_sasha_01.mdl" + } + "11" + { + "name" "skog_01" + "loc_name" "#musickit_skog_01" + "loc_description" "#musickit_skog_01_desc" + "image_inventory" "econ/music_kits/skog_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_skog_01.mdl" + } + "12" + { + "name" "midnightriders_01" + "loc_name" "#musickit_midnightriders_01" + "loc_description" "#musickit_midnightriders_01_desc" + "image_inventory" "econ/music_kits/midnightriders_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_midnight_riders_01.mdl" + } + "13" + { + "name" "mattlange_01" + "loc_name" "#musickit_mattlange_01" + "loc_description" "#musickit_mattlange_01_desc" + "image_inventory" "econ/music_kits/mattlange_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_mattlange_01.mdl" + } + "14" + { + "name" "mateomessina_01" + "loc_name" "#musickit_mateomessina_01" + "loc_description" "#musickit_mateomessina_01_desc" + "image_inventory" "econ/music_kits/mateomessina_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_mateomessina_01.mdl" + } + "15" + { + "name" "hotlinemiami_01" + "loc_name" "#musickit_hotlinemiami_01" + "loc_description" "#musickit_hotlinemiami_01_desc" + "image_inventory" "econ/music_kits/hotlinemiami_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_hotlinemiami_01.mdl" + } + "16" + { + "name" "danielsadowski_02" + "loc_name" "#musickit_danielsadowski_02" + "loc_description" "#musickit_danielsadowski_02_desc" + "image_inventory" "econ/music_kits/danielsadowski_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_danielsadowski_02.mdl" + } + "17" + { + "name" "damjanmravunac_01" + "loc_name" "#musickit_damjanmravunac_01" + "loc_description" "#musickit_damjanmravunac_01_desc" + "image_inventory" "econ/music_kits/damjanmravunac_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_damjanmravunac_01.mdl" + } + "18" + { + "name" "proxy_01" + "loc_name" "#musickit_proxy_01" + "loc_description" "#musickit_proxy_01_desc" + "image_inventory" "econ/music_kits/proxy_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_proxy_01.mdl" + } + "19" + { + "name" "kitheory_01" + "loc_name" "#musickit_kitheory_01" + "loc_description" "#musickit_kitheory_01_desc" + "image_inventory" "econ/music_kits/kitheory_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_kitheory_01.mdl" + } + "20" + { + "name" "troelsfolmann_01" + "loc_name" "#musickit_troelsfolmann_01" + "loc_description" "#musickit_troelsfolmann_01_desc" + "image_inventory" "econ/music_kits/troelsfolmann_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_troelsfolmann_01.mdl" + } + "21" + { + "name" "kellybailey_01" + "loc_name" "#musickit_kellybailey_01" + "loc_description" "#musickit_kellybailey_01_desc" + "image_inventory" "econ/music_kits/kellybailey_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_kellybailey_01.mdl" + } + "22" + { + "name" "skog_02" + "loc_name" "#musickit_skog_02" + "loc_description" "#musickit_skog_02_desc" + "image_inventory" "econ/music_kits/skog_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_skog_02.mdl" + } + "23" + { + "name" "danielsadowski_03" + "loc_name" "#musickit_danielsadowski_03" + "loc_description" "#musickit_danielsadowski_03_desc" + "image_inventory" "econ/music_kits/danielsadowski_03" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_danielsadowski_03.mdl" + } + "24" + { + "name" "awolnation_01" + "loc_name" "#musickit_awolnation_01" + "loc_description" "#musickit_awolnation_01_desc" + "image_inventory" "econ/music_kits/awolnation_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_awolnation_01.mdl" + } + "25" + { + "name" "mordfustang_01" + "loc_name" "#musickit_mordfustang_01" + "loc_description" "#musickit_mordfustang_01_desc" + "image_inventory" "econ/music_kits/mordfustang_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_mordfustang_01.mdl" + } + "26" + { + "name" "michaelbross_01" + "loc_name" "#musickit_michaelbross_01" + "loc_description" "#musickit_michaelbross_01_desc" + "image_inventory" "econ/music_kits/michaelbross_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_michaelbross_01.mdl" + } + "27" + { + "name" "ianhultquist_01" + "loc_name" "#musickit_ianhultquist_01" + "loc_description" "#musickit_ianhultquist_01_desc" + "image_inventory" "econ/music_kits/ianhultquist_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_ianhultquist_01.mdl" + } + "28" + { + "name" "newbeatfund_01" + "loc_name" "#musickit_newbeatfund_01" + "loc_description" "#musickit_newbeatfund_01_desc" + "image_inventory" "econ/music_kits/newbeatfund_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_newbeatfund_01.mdl" + } + "29" + { + "name" "beartooth_01" + "loc_name" "#musickit_beartooth_01" + "loc_description" "#musickit_beartooth_01_desc" + "image_inventory" "econ/music_kits/beartooth_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_beartooth_01.mdl" + } + "30" + { + "name" "lenniemoore_01" + "loc_name" "#musickit_lenniemoore_01" + "loc_description" "#musickit_lenniemoore_01_desc" + "image_inventory" "econ/music_kits/lenniemoore_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_lenniemoore_01.mdl" + } + "31" + { + "name" "darude_01" + "loc_name" "#musickit_darude_01" + "loc_description" "#musickit_darude_01_desc" + "image_inventory" "econ/music_kits/darude_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_darude_01.mdl" + } + "39" + { + "name" "theverkkars_01" + "loc_name" "#musickit_theverkkars_01" + "loc_description" "#musickit_theverkkars_01_desc" + "image_inventory" "econ/music_kits/theverkkars_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_theverkkars_01.mdl" + } + "40" + { + "name" "halo_01" + "loc_name" "#musickit_halo_01" + "loc_description" "#musickit_halo_01_desc" + "image_inventory" "econ/music_kits/halo_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_halo_01.mdl" + } + "41" + { + "name" "scarlxrd_01" + "loc_name" "#musickit_scarlxrd_01" + "loc_description" "#musickit_scarlxrd_01_desc" + "image_inventory" "econ/music_kits/scarlxrd_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_scarlxrd_01.mdl" + } + "42" + { + "name" "halflife_alyx_01" + "loc_name" "#musickit_hlalyx_01" + "loc_description" "#musickit_hlalyx_01_desc" + "image_inventory" "econ/music_kits/hlalyx_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_hlalyx_01.mdl" + } + "50" + { + "name" "amontobin_01" + "loc_name" "#musickit_amontobin_01" + "loc_description" "#musickit_amontobin_01_desc" + "image_inventory" "econ/music_kits/amontobin_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_amontobin_01.mdl" + } + "51" + { + "name" "hades_01" + "loc_name" "#musickit_hades_01" + "loc_description" "#musickit_hades_01_desc" + "image_inventory" "econ/music_kits/hades_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_hades_01.mdl" + } + "52" + { + "name" "neckdeep_02" + "loc_name" "#musickit_neckdeep_02" + "loc_description" "#musickit_neckdeep_02_desc" + "image_inventory" "econ/music_kits/neckdeep_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_neckdeep_02.mdl" + } + "53" + { + "name" "scarlxrd_02" + "loc_name" "#musickit_scarlxrd_02" + "loc_description" "#musickit_scarlxrd_02_desc" + "image_inventory" "econ/music_kits/scarlxrd_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_scarlxrd_02.mdl" + } + "60" + { + "name" "bbnos_01" + "loc_name" "#musickit_bbnos_01" + "loc_description" "#musickit_bbnos_01_desc" + "image_inventory" "econ/music_kits/bbnos_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_bbnos_01.mdl" + } + "61" + { + "name" "theverkkars_02" + "loc_name" "#musickit_theverkkars_02" + "loc_description" "#musickit_theverkkars_02_desc" + "image_inventory" "econ/music_kits/theverkkars_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_theverkkars_02.mdl" + } + "68" + { + "name" "perfectworld_01" + "loc_name" "#musickit_perfectworld_01" + "loc_description" "#musickit_perfectworld_01_desc" + "image_inventory" "econ/music_kits/perfectworld_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_perfectworld_01.mdl" + } + } + "quest_definitions" + { + "11" + { + "name" "Casual Kills: SMG" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "casual" + "expression" "%weapon_smg% && %act_kill_human%" + } + "12" + { + "name" "Casual Kills: Secondary" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "casual" + "expression" " %weapon_secondary% && %act_kill_human% " + } + "13" + { + "name" "Casual Kills: Heavy" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "casual" + "expression" " %weapon_heavy% && %act_kill_human% " + } + "14" + { + "name" "Casual Kills: Knife" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_single_desc" + "gamemode" "casual" + "expression" " %weapon_melee% && %act_kill_human% " + } + "15" + { + "name" "Casual Kills: Rifle" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "casual" + "expression" " %weapon_rifle% && %act_kill_human% " + } + "16" + { + "name" "Win Competitive Dust" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_dust" + "expression" " ( %act_win_match% == 1.0 ) " + } + "17" + { + "name" "Win Competitive Dust2" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_dust2" + "expression" " ( %act_win_match% == 1.0 ) " + } + "18" + { + "name" "Win Competitive Train" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_train" + "expression" " ( %act_win_match% == 1.0 ) " + } + "19" + { + "name" "Win Competitive Inferno" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_inferno" + "expression" " ( %act_win_match% == 1.0 ) " + } + "20" + { + "name" "Win Competitive Nuke" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_nuke" + "expression" " ( %act_win_match% == 1.0 ) " + } + "21" + { + "name" "Win Competitive Italy" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_italy" + "expression" " ( %act_win_match% == 1.0 ) " + } + "22" + { + "name" "Win Competitive Office" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_office" + "expression" " ( %act_win_match% == 1.0 ) " + } + "23" + { + "name" "Win Competitive Aztec" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_aztec" + "expression" " ( %act_win_match% == 1.0 ) " + } + "24" + { + "name" "Win Competitive Vertigo" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_vertigo" + "expression" " ( %act_win_match% == 1.0 ) " + } + "25" + { + "name" "Win Competitive Militia" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_militia" + "expression" " ( %act_win_match% == 1.0 ) " + } + "26" + { + "name" "Win Competitive Mirage" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "expression" " ( %act_win_match% == 1.0 ) " + } + "27" + { + "name" "Win Competitive Overpass" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_overpass" + "expression" " ( %act_win_match% == 1.0 ) " + } + "28" + { + "name" "Win Competitive Cobblestone" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_cbble" + "expression" " ( %act_win_match% == 1.0 ) " + } + "32" + { + "name" "Deathmatch Kills: AK47" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_ak47% && %act_kill_human% " + } + "33" + { + "name" "Deathmatch Kills: AUG" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_aug% && %act_kill_human% " + } + "34" + { + "name" "Deathmatch Kills: AWP" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_awp% && %act_kill_human% " + } + "35" + { + "name" "Deathmatch Kills: Desert Eagle" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_deagle% && %act_kill_human% " + } + "36" + { + "name" "Deathmatch Kills: Dual Berettas" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_elite% && %act_kill_human% " + } + "37" + { + "name" "Deathmatch Kills: FAMAS" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_famas% && %act_kill_human% " + } + "38" + { + "name" "Deathmatch Kills: Five-seveN" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_fiveseven% && %act_kill_human% " + } + "39" + { + "name" "Deathmatch Kills: G3SG1" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_g3sg1% && %act_kill_human% " + } + "40" + { + "name" "Deathmatch Kills: Galil AR" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_galilar% && %act_kill_human% " + } + "41" + { + "name" "Deathmatch Kills: Glock-18" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_glock% && %act_kill_human% " + } + "42" + { + "name" "Deathmatch Kills: Knife" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_melee% && %act_kill_human% " + } + "43" + { + "name" "Deathmatch Kills: M249" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_m249% && %act_kill_human% " + } + "44" + { + "name" "Deathmatch Kills: M4A4" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_m4a1% && %act_kill_human% " + } + "45" + { + "name" "Deathmatch Kills: M4A1-S" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_m4a1_silencer% && %act_kill_human% " + } + "46" + { + "name" "Deathmatch Kills: MAC-10" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_mac10% && %act_kill_human% " + } + "47" + { + "name" "Deathmatch Kills: P90" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_p90% && %act_kill_human% " + } + "48" + { + "name" "Deathmatch Kills: UMP-45" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_ump45% && %act_kill_human% " + } + "49" + { + "name" "Deathmatch Kills: XM1014" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_xm1014% && %act_kill_human% " + } + "50" + { + "name" "Deathmatch Kills: PP-Bizon" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_bizon% && %act_kill_human% " + } + "51" + { + "name" "Deathmatch Kills: MAG-7" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_mag7% && %act_kill_human% " + } + "52" + { + "name" "Deathmatch Kills: Negev" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_negev% && %act_kill_human% " + } + "53" + { + "name" "Deathmatch Kills: Sawed-Off" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_sawedoff% && %act_kill_human% " + } + "54" + { + "name" "Deathmatch Kills: Tec-9" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_tec9% && %act_kill_human% " + } + "55" + { + "name" "Deathmatch Kills: Zeus x27" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_taser% && %act_kill_human% " + } + "56" + { + "name" "Deathmatch Kills: P2000" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_hkp2000% && %act_kill_human% " + } + "57" + { + "name" "Deathmatch Kills: MP7" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_mp7% && %act_kill_human% " + } + "58" + { + "name" "Deathmatch Kills: MP9" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_mp9% && %act_kill_human% " + } + "59" + { + "name" "Deathmatch Kills: Nova" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_nova% && %act_kill_human% " + } + "60" + { + "name" "Deathmatch Kills: P250" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_p250% && %act_kill_human% " + } + "61" + { + "name" "Deathmatch Kills: CZ75-Auto" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_cz75a% && %act_kill_human% " + } + "62" + { + "name" "Deathmatch Kills: SCAR-20" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_scar20% && %act_kill_human% " + } + "63" + { + "name" "Deathmatch Kills: SG 553" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_sg556% && %act_kill_human% " + } + "64" + { + "name" "Deathmatch Kills: SSG08" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_ssg08% && %act_kill_human% " + } + "65" + { + "name" "Deathmatch Kills: USP-S" + "loc_name" "#Quest_Weapon_Mode" + "loc_description" "#Quest_Weapon_Mode_desc" + "gamemode" "deathmatch" + "expression" " %weapon_usp_silencer% && %act_kill_human% " + } + "66" + { + "name" "Casual Active Kills" + "loc_name" "#Quest_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %act_kill_human% " + } + "67" + { + "name" "Casual Reserves Kills" + "loc_name" "#Quest_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + "gamemode" "casual" + "mapgroup" "mg_reserves" + "expression" " %act_kill_human% " + } + "68" + { + "name" "Casual Operation Kills" + "loc_name" "#Quest_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + "gamemode" "casual" + "mapgroup" "mg_op_breakout" + "expression" " %act_kill_human% " + } + "69" + { + "name" "Demolition Kills" + "loc_name" "#Quest_Kills_Mode" + "loc_description" "#Quest_Kills_Mode_desc" + "gamemode" "gungametrbomb" + "expression" " %act_kill_human% " + } + "70" + { + "name" "ArmsRace Kills" + "loc_name" "#Quest_Kills_Mode" + "loc_description" "#Quest_Kills_Mode_desc" + "gamemode" "gungameprogressive" + "expression" " %act_kill_human% " + } + "71" + { + "name" "Deathmatch Kills" + "loc_name" "#Quest_Kills_Mode" + "loc_description" "#Quest_Kills_Mode_desc" + "gamemode" "deathmatch" + "expression" " %act_kill_human% " + } + "73" + { + "name" "Win Competitive Assault" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_assault" + "expression" " ( %act_win_match% == 1.0 ) " + } + "74" + { + "name" "Win Competitive Cache" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_cache" + "expression" " ( %act_win_match% == 1.0 ) " + } + "75" + { + "name" "Win Competitive Castle" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_castle" + "expression" " ( %act_win_match% == 1.0 ) " + } + "76" + { + "name" "Win Competitive Overgrown" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_overgrown" + "expression" " ( %act_win_match% == 1.0 ) " + } + "77" + { + "name" "Win Competitive Black Gold" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_blackgold" + "expression" " ( %act_win_match% == 1.0 ) " + } + "78" + { + "name" "Win Competitive Rush" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_rush" + "expression" " ( %act_win_match% == 1.0 ) " + } + "79" + { + "name" "Win Competitive Mist" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_mist" + "expression" " ( %act_win_match% == 1.0 ) " + } + "80" + { + "name" "Win Competitive Insertion" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_insertion" + "expression" " ( %act_win_match% == 1.0 ) " + } + "81" + { + "name" "Win Rounds Competitive Dust" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_dust" + "expression" " %act_win_round% " + } + "82" + { + "name" "Win Rounds Competitive Dust2" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_dust2" + "expression" " %act_win_round% " + } + "83" + { + "name" "Win Rounds Competitive Train" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_train" + "expression" " %act_win_round% " + } + "84" + { + "name" "Win Rounds Competitive Inferno" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_inferno" + "expression" " %act_win_round% " + } + "85" + { + "name" "Win Rounds Competitive Nuke" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_nuke" + "expression" " %act_win_round% " + } + "86" + { + "name" "Win Rounds Competitive Italy" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_italy" + "expression" " %act_win_round% " + } + "87" + { + "name" "Win Rounds Competitive Office" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_office" + "expression" " %act_win_round% " + } + "88" + { + "name" "Win Rounds Competitive Aztec" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_aztec" + "expression" " %act_win_round% " + } + "89" + { + "name" "Win Rounds Competitive Vertigo" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_vertigo" + "expression" " %act_win_round% " + } + "90" + { + "name" "Win Rounds Competitive Militia" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_militia" + "expression" " %act_win_round% " + } + "91" + { + "name" "Win Rounds Competitive Mirage" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "expression" " %act_win_round% " + } + "92" + { + "name" "Win Rounds Competitive Overpass" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_overpass" + "expression" " %act_win_round% " + } + "93" + { + "name" "Win Rounds Competitive Cobblestone" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_cbble" + "expression" " %act_win_round% " + } + "94" + { + "name" "Win Rounds Competitive Cache" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_cache" + "expression" " %act_win_round% " + } + "95" + { + "name" "Win Rounds Competitive Assault" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_assault" + "expression" " %act_win_round% " + } + "96" + { + "name" "Win Rounds Competitive Castle" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_castle" + "expression" " %act_win_round% " + } + "97" + { + "name" "Win Rounds Competitive Overgrown" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_overgrown" + "expression" " %act_win_round% " + } + "98" + { + "name" "Win Rounds Competitive Black Gold" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_blackgold" + "expression" " %act_win_round% " + } + "99" + { + "name" "Win Rounds Competitive Rush" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_rush" + "expression" " %act_win_round% " + } + "100" + { + "name" "Win Rounds Competitive Mist" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_de_mist" + "expression" " %act_win_round% " + } + "101" + { + "name" "Win Rounds Competitive Insertion" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "gamemode" "competitive" + "mapgroup" "mg_cs_insertion" + "expression" " %act_win_round% " + } + "102" + { + "name" "Deathmatch Active Duty Chicken Kills" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "expression" " %act_kill_chicken% " + "points" "20" + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Chicken_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + "quest_icon" "chicken" + } + "104" + { + "name" "Casual Overpass Mag7 Kills" + "gamemode" "casual" + "map" "de_overpass" + "mapgroup" "mg_active" + "expression" " %weapon_mag7% && %act_kill_human% " + "points" "10" + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + } + "105" + { + "name" "AR_Baggage Kills" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + "points" "10" + "gamemode" "gungameprogressive" + "map" "ar_baggage" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "difficulty" "1" + "quest_reward" "set_baggage" + } + "106" + { + "name" "Casual Italy Tec9 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "10" + "gamemode" "casual" + "map" "cs_italy" + "mapgroup" "mg_reserves" + "expression" " %weapon_tec9% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "set_italy" + } + "107" + { + "name" "Deathmatch Inferno Deagle Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "20" + "gamemode" "deathmatch" + "map" "de_inferno" + "mapgroup" "mg_active" + "expression" " %weapon_deagle% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "108" + { + "name" "Casual Nuke Kills" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + "points" "30" + "gamemode" "casual" + "map" "de_nuke" + "mapgroup" "mg_active" + "expression" " %act_kill_human% " + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "109" + { + "name" "Casual Inferno Kills" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + "points" "30" + "gamemode" "casual" + "map" "de_inferno" + "mapgroup" "mg_active" + "expression" " %act_kill_human% " + "quest_reward" "quest_reward_crate_vanguard" + "difficulty" "1" + "operational_points" "1" + } + "110" + { + "name" "ArmsRace 20 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + } + "111" + { + "name" "Win 8 Rounds Competitive Cobblestone" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "8" + "gamemode" "competitive" + "mapgroup" "mg_de_cbble" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "set_cobblestone" + } + "112" + { + "name" "Win 8 Rounds Competitive Cache" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "8" + "gamemode" "competitive" + "mapgroup" "mg_de_cache" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "set_cache" + } + "113" + { + "name" "Win 8 Rounds Competitive Nuke" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "8" + "gamemode" "competitive" + "mapgroup" "mg_de_nuke" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "set_nuke" + } + "114" + { + "name" "Win 16 Rounds Competitive Inferno" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_inferno" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + } + "115" + { + "name" "Win 16 Rounds Competitive Overpass" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_overpass" + "expression" " %act_win_round% " + "quest_reward" "quest_reward_crate_vanguard" + "difficulty" "2" + "operational_points" "2" + } + "116" + { + "name" "Win 16 Rounds Competitive Cobblestone" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_cbble" + "expression" " %act_win_round% " + "difficulty" "3" + "quest_reward" "set_cobblestone" + } + "117" + { + "name" "Win 16 Rounds Competitive Overpass" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_overpass" + "expression" " %act_win_round% " + "difficulty" "3" + "quest_reward" "set_overpass" + } + "118" + { + "name" "Win 16 Rounds Competitive Cache" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_cache" + "expression" " %act_win_round% " + "difficulty" "3" + "quest_reward" "set_cache" + } + "119" + { + "name" "Win Competitive Inferno Twice" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "points" "2" + "gamemode" "competitive" + "mapgroup" "mg_de_inferno" + "expression" " %act_win_match% " + "difficulty" "3" + "quest_reward" "quest_reward_crate_vanguard" + } + "120" + { + "name" "Win Competitive Nuke Twice" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "points" "2" + "gamemode" "competitive" + "mapgroup" "mg_de_nuke" + "expression" " %act_win_match% " + "quest_reward" "quest_reward_crate_vanguard" + "difficulty" "3" + "operational_points" "3" + } + "121" + { + "name" "ArmsRace 10 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "10" + "quest_reward" "set_overpass" + "loc_name" "#Quest_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + "difficulty" "1" + } + "122" + { + "name" "ArmsRace 20 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "set_baggage" + "loc_name" "#Quest_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + } + "123" + { + "name" "ArmsRace 40 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "40" + "difficulty" "3" + "quest_reward" "set_lake" + "loc_name" "#Quest_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + } + "158" + { + "name" "quest_berlin2019_de_inferno_play" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_de_inferno_play" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_de_inferno_play" + "quest_icon" "play" + "gamemode" "competitive" + "map" "de_inferno" + "singlematch" "1" + "points" "10" + "expression" "%act_win_round%" + "loc_huddescription" "#quest_default_hud_var_desc" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "target" "#emptystring" + } + } + "159" + { + "name" "quest_berlin2019_de_mirage_play" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_de_mirage_play" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_de_mirage_play" + "quest_icon" "play" + "gamemode" "competitive" + "map" "de_mirage" + "singlematch" "1" + "points" "10" + "expression" "%act_win_round%" + "loc_huddescription" "#quest_default_hud_var_desc" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "target" "#emptystring" + } + } + "160" + { + "name" "quest_berlin2019_de_dust2_play" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_de_dust2_play" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_de_dust2_play" + "quest_icon" "play" + "gamemode" "competitive" + "map" "de_dust2" + "singlematch" "1" + "points" "10" + "expression" "%act_win_round%" + "loc_huddescription" "#quest_default_hud_var_desc" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "target" "#emptystring" + } + } + "161" + { + "name" "quest_berlin2019_de_overpass_play" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_de_overpass_play" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_de_overpass_play" + "quest_icon" "play" + "gamemode" "competitive" + "map" "de_overpass" + "singlematch" "1" + "points" "10" + "expression" "%act_win_round%" + "loc_huddescription" "#quest_default_hud_var_desc" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "target" "#emptystring" + } + } + "162" + { + "name" "quest_berlin2019_de_train_play" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_de_train_play" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_de_train_play" + "quest_icon" "play" + "gamemode" "competitive" + "map" "de_train" + "singlematch" "1" + "points" "10" + "expression" "%act_win_round%" + "loc_huddescription" "#quest_default_hud_var_desc" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "target" "#emptystring" + } + } + "163" + { + "name" "quest_berlin2019_de_nuke_play" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_de_nuke_play" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_de_nuke_play" + "quest_icon" "play" + "gamemode" "competitive" + "map" "de_nuke" + "singlematch" "1" + "points" "10" + "expression" "%act_win_round%" + "loc_huddescription" "#quest_default_hud_var_desc" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "target" "#emptystring" + } + } + "164" + { + "name" "quest_berlin2019_de_vertigo_play" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_de_vertigo_play" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_de_vertigo_play" + "quest_icon" "play" + "gamemode" "competitive" + "map" "de_vertigo" + "singlematch" "1" + "points" "10" + "expression" "%act_win_round%" + "loc_huddescription" "#quest_default_hud_var_desc" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "target" "#emptystring" + } + } + "201" + { + "name" "Deathmatch Vanguard Bonus Points 100" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op05" + "expression" " %act_dm_bonus_points% " + "points" "100" + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_DMBonusPoints_Mapgroup" + "loc_description" "#Quest_DMBonusPoints_Mapgroup_desc" + } + "203" + { + "name" "Deathmatch Vanguard Chicken Kills" + "loc_name" "#Quest_Chicken_Kills_Mapgroup" + "loc_description" "#Quest_Kills_Mapgroup_desc" + "quest_icon" "chicken" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op05" + "expression" " %act_kill_chicken% " + "points" "20" + "difficulty" "1" + "xp_reward" "100" + } + "204" + { + "name" "Deathmatch Vanguard Sawedoff Kills" + "loc_name" "#Quest_Weapon_Mapgroup" + "loc_description" "#Quest_Weapon_Mapgroup_desc" + "points" "20" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op05" + "expression" " %weapon_sawedoff% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "205" + { + "name" "Casual Vanguard 10 M4A4 Kills" + "loc_name" "#Quest_Weapon_Mapgroup" + "loc_description" "#Quest_Weapon_Mapgroup_desc" + "points" "10" + "gamemode" "casual" + "mapgroup" "mg_op_op05" + "expression" " %weapon_m4a1% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "set_aztec" + } + "206" + { + "name" "Deathmatch Vanguard 20 P90 Kills" + "loc_name" "#Quest_Weapon_Mapgroup" + "loc_description" "#Quest_Weapon_Mapgroup_desc" + "points" "20" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op05" + "expression" " %weapon_p90% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "set_italy" + } + "207" + { + "name" "Casual Facade 30 Kills" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + "points" "30" + "gamemode" "casual" + "map" "de_facade" + "mapgroup" "mg_op_op05" + "expression" " %act_kill_human% " + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "208" + { + "name" "Casual Season 30 Kills" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + "points" "30" + "gamemode" "casual" + "map" "de_season" + "mapgroup" "mg_op_op05" + "expression" " %act_kill_human% " + "difficulty" "1" + "operational_points" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "209" + { + "name" "Win 8 Rounds Competitive Workout" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "8" + "gamemode" "competitive" + "mapgroup" "mg_cs_workout" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "set_nuke" + } + "210" + { + "name" "Win 8 Rounds Competitive Marquis" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "8" + "gamemode" "competitive" + "mapgroup" "mg_de_marquis" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + } + "211" + { + "name" "Win 8 Rounds Competitive Season" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "8" + "gamemode" "competitive" + "mapgroup" "mg_de_season" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "set_nuke" + } + "212" + { + "name" "Win 8 Rounds Competitive Facade" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "8" + "gamemode" "competitive" + "mapgroup" "mg_de_facade" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "set_militia" + } + "213" + { + "name" "Win 16 Rounds Competitive Backalley" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_cs_backalley" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + } + "214" + { + "name" "Win 16 Rounds Competitive Bazaar" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_bazaar" + "expression" " %act_win_round% " + "difficulty" "2" + "operational_points" "2" + "quest_reward" "quest_reward_crate_vanguard" + } + "215" + { + "name" "Win 16 Rounds Competitive Season" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_season" + "expression" " %act_win_round% " + "difficulty" "3" + "quest_reward" "quest_reward_crate_vanguard" + } + "216" + { + "name" "Win 16 Rounds Competitive Backalley" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_cs_backalley" + "expression" " %act_win_round% " + "difficulty" "3" + "quest_reward" "set_train" + } + "217" + { + "name" "Win 16 Rounds Competitive Marquis" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_marquis" + "expression" " %act_win_round% " + "difficulty" "3" + "quest_reward" "set_dust" + } + "218" + { + "name" "Win Competitive Facade Twice" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "points" "2" + "gamemode" "competitive" + "mapgroup" "mg_de_facade" + "expression" " %act_win_match% " + "difficulty" "3" + "quest_reward" "quest_reward_crate_vanguard" + } + "219" + { + "name" "Win Competitive Bazaar Twice" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "points" "2" + "gamemode" "competitive" + "mapgroup" "mg_de_bazaar" + "expression" " %act_win_match% " + "operational_points" "3" + "difficulty" "3" + "quest_reward" "quest_reward_crate_vanguard" + } + "220" + { + "name" "ArmsRace Safehouse 10 Kills" + "gamemode" "gungameprogressive" + "map" "de_safehouse" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "10" + "quest_reward" "set_militia" + "difficulty" "1" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "221" + { + "name" "ArmsRace StMarc 20 Kills" + "gamemode" "gungameprogressive" + "map" "de_stmarc" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "set_nuke" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "222" + { + "name" "ArmsRace Lake 40 Kills" + "gamemode" "gungameprogressive" + "map" "de_lake" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "40" + "difficulty" "3" + "quest_reward" "set_bank" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "301" + { + "name" "Deathmatch Dust2 Bonus Points 100" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_dust2" + "expression" " %act_dm_bonus_points% " + "points" "100" + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_DMBonusPoints_Map" + "loc_description" "#Quest_DMBonusPoints_Map_desc" + } + "302" + { + "name" "Demolition ShortDust 20 Kills" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "map" "de_shortdust" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "set_dust" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "303" + { + "name" "Casual Mirage 10 P90 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "10" + "gamemode" "casual" + "map" "de_mirage" + "mapgroup" "mg_active" + "expression" " %weapon_p90% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "304" + { + "name" "Deathmatch Mirage 20 fiveseven Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "20" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_mirage" + "expression" " %weapon_fiveseven% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "set_mirage" + } + "305" + { + "name" "Casual Dust2 10 UMP Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "10" + "gamemode" "casual" + "map" "de_dust2" + "mapgroup" "mg_active" + "expression" " %weapon_ump45% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "306" + { + "name" "Casual Dust2 10 Nova Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "10" + "gamemode" "casual" + "map" "de_dust2" + "mapgroup" "mg_active" + "expression" " %weapon_nova% && %act_kill_human% " + "difficulty" "1" + "quest_reward" "set_dust" + } + "307" + { + "name" "Casual Mirage 30 Kills" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + "points" "30" + "gamemode" "casual" + "map" "de_mirage" + "mapgroup" "mg_active" + "expression" " %act_kill_human% " + "difficulty" "1" + "quest_reward" "set_mirage" + } + "308" + { + "name" "Casual Dust2 30 Kills" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + "points" "30" + "gamemode" "casual" + "mapgroup" "mg_active" + "map" "de_dust2" + "expression" " %act_kill_human% " + "difficulty" "1" + "operational_points" "1" + "quest_reward" "quest_reward_crate_vanguard" + } + "309" + { + "name" "Deathmatch Mirage 30 tec9 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "30" + "gamemode" "deathmatch" + "map" "de_mirage" + "mapgroup" "mg_active" + "expression" " %weapon_tec9% && %act_kill_human% " + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + } + "310" + { + "name" "Deathmatch Mirage 30 AWP Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "30" + "gamemode" "deathmatch" + "map" "de_mirage" + "mapgroup" "mg_active" + "expression" " %weapon_awp% && %act_kill_human% " + "difficulty" "2" + "quest_reward" "set_mirage" + } + "311" + { + "name" "Win 16 Rounds Competitive Mirage" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "expression" " %act_win_round% " + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + } + "312" + { + "name" "Deathmatch Dust2 SSG08 20 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "20" + "gamemode" "deathmatch" + "map" "de_dust2" + "mapgroup" "mg_active" + "expression" " %weapon_ssg08% && %act_kill_human% " + "difficulty" "2" + "quest_reward" "set_dust_2" + } + "313" + { + "name" "Deathmatch Dust2 AK47 30 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "30" + "gamemode" "deathmatch" + "map" "de_dust2" + "mapgroup" "mg_active" + "expression" " %weapon_ak47% && %act_kill_human% " + "difficulty" "2" + "quest_reward" "set_dust_2" + } + "314" + { + "name" "Win 16 Rounds Competitive Dust2" + "loc_name" "#Quest_Win_Rounds_Map" + "loc_description" "#Quest_Win_Rounds_Map_desc" + "points" "16" + "gamemode" "competitive" + "mapgroup" "mg_de_dust2" + "expression" " %act_win_round% " + "difficulty" "2" + "operational_points" "2" + "quest_reward" "quest_reward_crate_vanguard" + } + "315" + { + "name" "Deathmatch Mirage SSG08 75 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "75" + "gamemode" "deathmatch" + "map" "de_mirage" + "mapgroup" "mg_active" + "expression" " %weapon_ssg08% && %act_kill_human% " + "difficulty" "3" + "quest_reward" "set_mirage" + } + "316" + { + "name" "Deathmatch Mirage Famas 100 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "100" + "gamemode" "deathmatch" + "map" "de_mirage" + "mapgroup" "mg_active" + "expression" " %weapon_famas% && %act_kill_human% " + "difficulty" "3" + "quest_reward" "set_mirage" + } + "317" + { + "name" "Win Competitive Mirage Twice" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "points" "2" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "expression" " %act_win_match% " + "difficulty" "3" + "quest_reward" "quest_reward_crate_vanguard" + } + "318" + { + "name" "Deathmatch Dust2 Galil 100 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "100" + "gamemode" "deathmatch" + "map" "de_dust2" + "mapgroup" "mg_active" + "expression" " %weapon_galilar% && %act_kill_human% " + "difficulty" "3" + "quest_reward" "set_dust_2" + } + "319" + { + "name" "Deathmatch Dust2 Deagle 75 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "75" + "gamemode" "deathmatch" + "map" "de_dust2" + "mapgroup" "mg_active" + "expression" " %weapon_deagle% && %act_kill_human% " + "difficulty" "3" + "quest_reward" "set_dust_2" + } + "320" + { + "name" "Deathmatch Dust2 AK47 100 Kills" + "loc_name" "#Quest_Weapon_Map" + "loc_description" "#Quest_Weapon_Map_desc" + "points" "100" + "gamemode" "deathmatch" + "map" "de_dust2" + "mapgroup" "mg_active" + "expression" " %weapon_ak47% && %act_kill_human% " + "difficulty" "3" + "quest_reward" "set_dust" + } + "321" + { + "name" "Win Competitive Dust2 Twice" + "loc_name" "#Quest_Win_a_Mapgroup" + "loc_description" "#Quest_Win_a_Mapgroup_desc" + "points" "2" + "gamemode" "competitive" + "mapgroup" "mg_de_dust2" + "expression" " %act_win_match% " + "difficulty" "3" + "operational_points" "3" + "quest_reward" "quest_reward_crate_vanguard" + } + "401" + { + "name" "ArmsRace Shoots 20 Kills" + "gamemode" "gungameprogressive" + "map" "ar_shoots" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "402" + { + "name" "ArmsRace Safehouse 10 Kills" + "gamemode" "gungameprogressive" + "map" "de_safehouse" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "10" + "difficulty" "1" + "quest_reward" "set_safehouse" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "403" + { + "name" "Demolition 10 Kills" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "expression" " %act_kill_human% " + "points" "10" + "difficulty" "1" + "quest_reward" "set_aztec" + "loc_name" "#Quest_Kills_Mode" + "loc_description" "#Quest_Kills_Mode_desc" + } + "404" + { + "name" "ArmsRace Monastery 10 Kills" + "gamemode" "gungameprogressive" + "map" "ar_monastery" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "10" + "difficulty" "1" + "quest_reward" "set_lake" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "405" + { + "name" "Deathmatch Nuke Bonus Points 50" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_nuke" + "expression" " %act_dm_bonus_points% " + "points" "50" + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_DMBonusPoints_Map" + "loc_description" "#Quest_DMBonusPoints_Map_desc" + } + "406" + { + "name" "ArmsRace StMarc 10 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_stmarc" + "expression" " %act_kill_human% " + "points" "10" + "difficulty" "1" + "quest_reward" "set_train" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "407" + { + "name" "ArmsRace Safehouse 20 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_safehouse" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "1" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "408" + { + "name" "ArmsRace Lake 20 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_lake" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "1" + "operational_points" "1" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "409" + { + "name" "Demolition ShortDust 20 Kills" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "map" "de_shortdust" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "set_dust" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "410" + { + "name" "Deathmatch Inferno Bonus Points 100" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_inferno" + "expression" " %act_dm_bonus_points% " + "points" "100" + "difficulty" "2" + "quest_reward" "set_inferno" + "loc_name" "#Quest_DMBonusPoints_Map" + "loc_description" "#Quest_DMBonusPoints_Map_desc" + } + "411" + { + "name" "Demolition 20 Kills" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "set_vertigo" + "loc_name" "#Quest_Kills_Mode" + "loc_description" "#Quest_Kills_Mode_desc" + } + "412" + { + "name" "Deathmatch Nuke Bonus Points 100" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_nuke" + "expression" " %act_dm_bonus_points% " + "points" "100" + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_DMBonusPoints_Map" + "loc_description" "#Quest_DMBonusPoints_Map_desc" + } + "413" + { + "name" "ArmsRace St Marc 20 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_stmarc" + "expression" " %act_kill_human% " + "points" "20" + "difficulty" "2" + "quest_reward" "set_italy" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "414" + { + "name" "ArmsRace Safehouse 40 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_safehouse" + "expression" " %act_kill_human% " + "points" "40" + "difficulty" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "415" + { + "name" "ArmsRace Lake 40 Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_lake" + "expression" " %act_kill_human% " + "points" "40" + "difficulty" "2" + "operational_points" "2" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "416" + { + "name" "Deathmatch Inferno Bonus Points 200" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_inferno" + "expression" " %act_dm_bonus_points% " + "points" "200" + "difficulty" "3" + "quest_reward" "set_inferno" + "loc_name" "#Quest_DMBonusPoints_Map" + "loc_description" "#Quest_DMBonusPoints_Map_desc" + } + "417" + { + "name" "Demolition 40 Kills" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "expression" " %act_kill_human% " + "points" "40" + "difficulty" "3" + "quest_reward" "set_overpass" + "loc_name" "#Quest_Kills_Mode" + "loc_description" "#Quest_Kills_Mode_desc" + } + "418" + { + "name" "Deathmatch Nuke Bonus Points 200" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_nuke" + "expression" " %act_dm_bonus_points% " + "points" "200" + "difficulty" "3" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_DMBonusPoints_Map" + "loc_description" "#Quest_DMBonusPoints_Map_desc" + } + "419" + { + "name" "ArmsRace St Marc 40 Kills" + "gamemode" "gungameprogressive" + "map" "de_stmarc" + "mapgroup" "mg_armsrace" + "expression" " %act_kill_human% " + "points" "40" + "difficulty" "3" + "quest_reward" "set_italy" + "loc_name" "#Quest_Kills_Map" + "loc_description" "#Quest_Kills_Map_desc" + } + "420" + { + "name" "Win ArmsRace Safehouse" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_safehouse" + "expression" " %act_win_match% " + "points" "1" + "difficulty" "3" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Win_a_Map" + "loc_description" "#Quest_Win_a_Map_desc" + } + "421" + { + "name" "Win ArmsRace Lake" + "gamemode" "gungameprogressive" + "map" "de_lake" + "mapgroup" "mg_armsrace" + "expression" " %act_win_match% " + "points" "1" + "difficulty" "3" + "operational_points" "3" + "quest_reward" "quest_reward_crate_vanguard" + "loc_name" "#Quest_Win_a_Map" + "loc_description" "#Quest_Win_a_Map_desc" + } + "501" + { + "name" "Deathmatch Op6 p250 kills" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op06" + "expression" " %act_kill_human% && %weapon_p250% " + "expr_bonus" " %act_kill_human% && %weapon_p250% && %cond_damage_headshot% " + "points" "30" + "xp_bonus_percent" "200" + "difficulty" "2" + "loc_name" "Op_bloodhound_501" + "loc_description" "#Quest_Weapon_Mapgroup_desc" + "loc_bonus" "#quest_bonus_headshot" + } + "502" + { + "name" "Casual Reserve 10 Awp kills w/set_lake" + "gamemode" "casual" + "mapgroup" "mg_reserves" + "expression" " %act_kill_human% && %weapon_awp% " + "expr_bonus" " %act_kill_human% && %weapon_awp% && %set_lake% " + "points" "10" + "xp_bonus_percent" "100" + "difficulty" "1" + "loc_name" "Op_bloodhound_502" + "loc_description" "#Quest_Weapon_Mapgroup_desc" + "loc_bonus" "#quest_bonus_set_lake" + } + "503" + { + "name" "Casual Active Duty SSG08 Damage: 1500" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %weapon_ssg08% ? %act_damage% : 0 " + "expr_bonus" " ( %map_de_train% && %weapon_ssg08% ) ? %act_damage% : 0 " + "points" "1500" + "xp_bonus_percent" "50" + "difficulty" "1" + "loc_name" "Op_bloodhound_503" + "loc_description" "#Quest_WeaponDamage_Mapgroup_desc" + "loc_bonus" "#quest_bonus_de_train" + } + "504" + { + "name" "Deathmatch Zoo Kills" + "points" "40" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op06" + "map" "de_zoo" + "expression" " %weapon_aug% && %act_kill_human% " + "expr_bonus" " %weapon_aug% && %act_kill_human% && %cond_player_zoomed% " + "xp_bonus_percent" "100" + "difficulty" "1" + "loc_name" "Op_bloodhound_504" + "loc_description" "#Quest_Weapon_Map_desc" + "loc_bonus" "#quest_bonus_zoomed" + } + "505" + { + "name" "Demolition 20 kills" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "expression" " %act_kill_human% " + "expr_bonus" " %act_kill_human% && %set_lake% " + "points" "20" + "operational_points" "1" + "xp_bonus_percent" "100" + "difficulty" "1" + "loc_name" "Op_bloodhound_505" + "loc_description" "#Quest_Kills_Mode_desc" + "loc_bonus" "#quest_bonus_set_lake" + } + "506" + { + "name" "Deathmatch SSG08 Op6 kills 40" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op06" + "expression" " %weapon_ssg08% && ( %act_kill_human% || %act_kill_chicken% ) " + "expr_bonus" " %weapon_ssg08% && %act_kill_chicken% " + "points" "50" + "xp_bonus_percent" "50" + "difficulty" "2" + "loc_name" "Op_bloodhound_506" + "loc_description" "#Quest_Weapon_Mapgroup_desc" + "loc_bonus" "#quest_bonus_chickens" + "string_tokens" + { + "optional_target" "#quest_target_human_or_chicken" + } + } + "507" + { + "name" "Deathmatch Mirage AWP kills 40" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_mirage" + "expression" " %weapon_awp% && %act_kill_human% " + "expr_bonus" " %weapon_awp% && %act_kill_human% && ( %cond_life_killstreak_human% >= 3 ) " + "points" "40" + "xp_bonus_percent" "200" + "difficulty" "2" + "loc_name" "Op_bloodhound_507" + "loc_description" "#Quest_Weapon_Map_desc" + "loc_bonus" "#quest_bonus_killstreak_3" + } + "508" + { + "name" "Deathmatch Dust2 Deagle kills 40" + "gamemode" "deathmatch" + "mapgroup" "mg_active" + "map" "de_dust2" + "expression" " %weapon_deagle% && %act_kill_human% " + "expr_bonus" " %weapon_deagle% && %act_kill_human% && %set_community_7% " + "points" "60" + "xp_bonus_percent" "100" + "difficulty" "2" + "loc_name" "Op_bloodhound_508" + "loc_description" "#Quest_Weapon_Map_desc" + "loc_bonus" "#quest_bonus_set_community_7" + } + "509" + { + "name" "Casual Active CZ or Enemy Weapons 20" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %act_kill_human% && ( %weapon_cz75a% || %cond_item_borrowed_enemy% ) " + "expr_bonus" " %act_kill_human% && %cond_item_borrowed_enemy% " + "points" "20" + "operational_points" "2" + "xp_bonus_percent" "100" + "difficulty" "2" + "loc_name" "Op_bloodhound_509" + "loc_description" "#Quest_Weapon_Mapgroup_desc" + "loc_bonus" "#quest_bonus_borrowed_gun_enemy" + "quest_icon" "cz75a" + "string_tokens" + { + "weapon" "#quest_weapon_CZ75a_or_enemy_weapon" + } + } + "510" + { + "name" "Graduation: Casual Active Awp Kills First 3 bullets" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %act_kill_human% && %weapon_awp% && ( %cond_bullet_since_spawn% <= 3 ) " + "expr_bonus" " %act_kill_human% && %weapon_awp% && ( %cond_bullet_since_spawn% <= 1 ) " + "points" "15" + "xp_bonus_percent" "200" + "difficulty" "2" + "loc_name" "Op_bloodhound_510" + "loc_description" "#Quest_Weapon_Within_3_Mapgroup_desc" + "loc_bonus" "#quest_bonus_bulletcount_1" + } + "511" + { + "name" "VIP - mg_op_op06" + "gamemode" "casual" + "mapgroup" "mg_reserves" + "map" "cs_militia" + "expression" " ( %act_kill_target% ) && ( %cond_victim_terrorist% ) && ( %cond_player_ct% ) " + "points" "1" + "target_team" "2" + "difficulty" "2" + "loc_name" "Op_bloodhound_511" + "loc_description" "#Quest_Assassination_desc" + "quest_icon" "assassin" + "string_tokens" + { + "target" "#quest_target_sergei" + "victim team" "#CSGOEcon_SelectTerrorist" + } + } + "512" + { + "name" "Arms Race St. Marc 15 kills ( set_italy )" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_stmarc" + "expression" " %act_kill_human% " + "expr_bonus" " %act_kill_human% && %set_italy% " + "points" "20" + "xp_bonus_percent" "100" + "difficulty" "1" + "loc_name" "Op_bloodhound_512" + "loc_description" "#Quest_Kills_Map_desc" + "loc_bonus" "#quest_bonus_set_italy" + } + "513" + { + "name" "Competitive Season win 6 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_season" + "expression" " %act_win_round% " + "points" "8" + "difficulty" "1" + "loc_name" "Op_bloodhound_513" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "514" + { + "name" "Competitive Cobblestone win 8 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_cbble" + "expression" " %act_win_round% " + "points" "8" + "difficulty" "1" + "loc_name" "Op_bloodhound_514" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "515" + { + "name" "Casual Rails AWP Kills 10" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "map" "de_rails" + "expression" " %act_kill_human% && %weapon_awp% " + "expr_bonus" " %act_kill_human% && %weapon_awp% && %cond_damage_headshot% " + "points" "10" + "xp_bonus_percent" "200" + "difficulty" "1" + "loc_name" "Op_bloodhound_515" + "loc_description" "#Quest_Weapon_Map_desc" + "loc_bonus" "#quest_bonus_headshot" + } + "516" + { + "name" "Competitive Mirage win 6 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "expression" " %act_win_round% " + "points" "8" + "difficulty" "1" + "loc_name" "Op_bloodhound_516" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "517" + { + "name" "Pickup Hostages Reserve 10" + "gamemode" "casual" + "mapgroup" "mg_reserves" + "map" "cs_assault" + "expression" " %act_pick_up_hostage% " + "points" "10" + "operational_points" "1" + "difficulty" "1" + "loc_name" "Op_bloodhound_517" + "loc_description" "#Quest_Rescue_Map_desc" + } + "518" + { + "name" "Competitive Zoo win 16 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_zoo" + "expression" " %act_win_round% " + "points" "16" + "difficulty" "3" + "loc_name" "Op_bloodhound_518" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "519" + { + "name" "Competitive Mirage win 16 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "expression" " %act_win_round% " + "points" "16" + "difficulty" "3" + "loc_name" "Op_bloodhound_519" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "520" + { + "name" "Guardian: Kills on Mirage" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 3 ) " + "points" "1" + "xp_reward" "300" + "xp_bonus_percent" "40" + "difficulty" "2" + "loc_name" "Op_bloodhound_520" + "loc_description" "#Quest_Guardian_Bomb_desc" + "loc_bonus" "#quest_bonus_totalrounds_3" + "string_tokens" + { + "map" "#SFUI_Map_de_mirage" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "521" + { + "name" "Arms Race Safehouse 50 kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_safehouse" + "expression" " %act_kill_human% " + "expr_bonus" " %act_kill_human% && %weapon_melee% " + "points" "50" + "xp_bonus_percent" "200" + "difficulty" "3" + "loc_name" "Op_bloodhound_521" + "loc_description" "#Quest_Kills_Map_desc" + "loc_bonus" "#quest_bonus_melee" + } + "522" + { + "name" "Competitive Train win 16 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_train" + "expression" " %act_win_round% " + "points" "16" + "difficulty" "3" + "loc_name" "Op_bloodhound_522" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "523" + { + "name" "Competitive Overpass win 32 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_overpass" + "expression" " %act_win_round% " + "points" "32" + "difficulty" "3" + "loc_name" "Op_bloodhound_523" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "524" + { + "name" "Competitive Cache 32 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_cache" + "expression" " %act_win_round% " + "points" "32" + "operational_points" "2" + "difficulty" "3" + "loc_name" "Op_bloodhound_524" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "525" + { + "name" "VIP - mg_op_op06" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "map" "cs_agency" + "expression" " ( %act_kill_target% ) && ( %cond_victim_terrorist% ) && ( %cond_player_ct% )" + "points" "1" + "target_team" "2" + "difficulty" "2" + "operational_points" "3" + "loc_name" "Op_bloodhound_525" + "loc_description" "#Quest_Assassination_desc" + "quest_icon" "assassin" + "string_tokens" + { + "target" "#quest_target_turner" + "victim team" "#CSGOEcon_SelectTerrorist" + } + } + "526" + { + "name" "Guardian: Kills with an m4 (easy)" + "gamemode" "cooperative" + "mapgroup" "mg_de_dust" + "map" "de_dust" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 4 ) " + "points" "1" + "xp_reward" "300" + "xp_bonus_percent" "20" + "difficulty" "2" + "loc_name" "Op_bloodhound_526" + "loc_description" "#Quest_Guardian_Bomb_desc" + "loc_bonus" "#quest_bonus_totalrounds_4" + "string_tokens" + { + "map" "#SFUI_Map_de_dust" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_M4A1" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "527" + { + "name" "Guardian: Kills on Dust2" + "gamemode" "cooperative" + "mapgroup" "mg_de_dust2" + "map" "de_dust2" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 3 ) " + "points" "1" + "xp_reward" "400" + "xp_bonus_percent" "50" + "difficulty" "3" + "loc_name" "Op_bloodhound_527" + "loc_description" "#Quest_Guardian_Bomb_desc" + "loc_bonus" "#quest_bonus_totalrounds_3" + "string_tokens" + { + "map" "#SFUI_Map_de_dust2" + "kills" "quest_guardian_kills_25" + "weapon" "#SFUI_WPNHUD_AK47" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "528" + { + "name" "Guardian: Kills on Dust Holdout" + "gamemode" "cooperative" + "mapgroup" "mg_gd_crashsite" + "map" "gd_crashsite" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 3 ) " + "points" "1" + "xp_reward" "500" + "xp_bonus_percent" "50" + "difficulty" "3" + "loc_name" "Op_bloodhound_528" + "loc_description" "#Quest_Guardian_Bomb_desc" + "loc_bonus" "#quest_bonus_totalrounds_3" + "string_tokens" + { + "map" "#SFUI_Map_gd_crashsite" + "kills" "quest_guardian_kills_50" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "529" + { + "name" "Casual Op6 income 1,000,000" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "expression" " ( %act_income% && %cond_player_ct% ) ? %act_income% : 0 " + "points" "1000000" + "xp_reward" "600" + "difficulty" "3" + "loc_name" "Op_bloodhound_529" + "loc_description" "#Quest_Income_Mapgroup_Team_desc" + "quest_icon" "income" + } + "530" + { + "name" "Deathmatch Op6 Chicken Kills" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op06" + "expression" " %act_kill_chicken% && %cond_player_ct% " + "expr_bonus" " %act_kill_chicken% && %cond_player_ct% && ( %cond_life_killstreak_chicken% >= 2 ) " + "points" "300" + "xp_reward" "600" + "xp_bonus_percent" "50" + "difficulty" "3" + "loc_name" "Op_bloodhound_530" + "loc_description" "#Quest_Kills_Mapgroup_Team_desc" + "loc_bonus" "#quest_bonus_chickenstreak_2" + "quest_icon" "chicken" + "string_tokens" + { + "optional_target" "#quest_target_chicken" + } + } + "531" + { + "name" "Unique Weapons" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "expression" " %act_kill_human% && %cond_match_unique_weapon% && %cond_player_ct%" + "expr_bonus" " %act_kill_human% && %cond_match_unique_weapon% && %cond_player_ct% && %cond_item_borrowed% " + "points" "100" + "xp_reward" "600" + "xp_bonus_percent" "100" + "difficulty" "3" + "loc_name" "Op_bloodhound_531" + "loc_description" "#Quest_Unique_Weapon_Mapgroup_Team_desc" + "loc_bonus" "#Quest_bonus_borrowed_gun" + "quest_icon" "mission-ct" + } + "601" + { + "name" "Deathmatch Bonus Points kills" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op06" + "expression" " %act_dm_bonus_points% " + "expr_bonus" " %act_dm_bonus_points% && ( %cond_life_killstreak_human% >= 2 ) " + "points" "200" + "xp_bonus_percent" "200" + "difficulty" "2" + "loc_name" "Op_bloodhound_Valeria_Two_Sides" + "loc_description" "#Quest_DMBonusPoints_Mapgroup_desc" + "loc_bonus" "#quest_bonus_killstreak_2" + } + "602" + { + "name" "Casual Plant Bombs" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %act_plant_bomb% " + "points" "3" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_spark" + "loc_description" "#Quest_PlantBomb_Mapgroup_desc" + "quest_icon" "bomb" + } + "603" + { + "name" "Casual Burn Damage Active Duty" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %cond_damage_burn% ? %act_damage% : 0 " + "expr_bonus" " ( %map_de_train% && %cond_damage_burn% ) ? %act_damage% : 0 " + "points" "200" + "xp_bonus_percent" "50" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_Flames" + "loc_description" "#Quest_Burn_Mapgroup_desc" + "loc_bonus" "#quest_bonus_de_train" + "quest_icon" "molotov" + } + "604" + { + "name" "DM Rails Sawed Off kills" + "points" "10" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "map" "de_rails" + "expression" " %weapon_sawedoff% && %act_kill_human% " + "expr_bonus" " %weapon_sawedoff% && %act_kill_human% && ( %cond_life_killstreak_human% >= 2 ) " + "xp_bonus_percent" "100" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_tyrants" + "loc_description" "#Quest_Weapon_Map_desc" + "loc_bonus" "#quest_bonus_killstreak_2" + } + "605" + { + "name" "Op6 Casual pistol kills" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "expression" " %act_kill_human% && %weapon_secondary%" + "expr_bonus" " %act_kill_human% && %weapon_secondary% && %set_weapons_iii% " + "points" "20" + "operational_points" "1" + "xp_bonus_percent" "100" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_booth" + "loc_description" "#Quest_Weapon_Mode_desc" + "loc_bonus" "#quest_bonus_set_weapons_iii" + } + "606" + { + "name" "Casual Active SMG kills 30" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %act_kill_human% && %weapon_smg% && %cond_player_terrorist% " + "expr_bonus" " %act_kill_human% && %weapon_smg% && %cond_player_terrorist% && %cond_roundstate_bomb_planted% " + "points" "25" + "xp_bonus_percent" "200" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_smg" + "loc_description" "#Quest_Weapon_Mapgroup_Team_desc" + "loc_bonus" "#quest_bonus_bomb_planted" + "quest_icon" "mission-t" + } + "607" + { + "name" "Arms Race Knife Kills" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "expression" " %weapon_melee% && %act_kill_human% " + "expr_bonus" " %weapon_melee% && %act_kill_human% && %map_de_lake% " + "points" "15" + "xp_reward" "405" + "xp_bonus_percent" "100" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_knife" + "loc_description" "#Quest_Weapon_Mode_desc" + "loc_bonus" "#quest_bonus_de_lake" + } + "608" + { + "name" "Arms Race Monastery Kills, optional arms deal 1 weapon" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "ar_monastery" + "expression" " %act_kill_human% " + "expr_bonus" " %act_kill_human% && %set_weapons_i% " + "points" "60" + "xp_bonus_percent" "150" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_open_house" + "loc_description" "#Quest_Kills_Map_desc" + "loc_bonus" "#quest_bonus_set_weapons_i" + } + "609" + { + "name" "Enemy Weapon" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "expression" " %act_kill_human% && %cond_item_borrowed_enemy% " + "expr_bonus" " %act_kill_human% && %cond_item_borrowed_enemy% && %cond_item_borrowed_victim% " + "points" "20" + "operational_points" "2" + "xp_bonus_percent" "200" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_rebirth" + "loc_description" "Quest_Kills_Mapgroup_cond_desc" + "loc_bonus" "#quest_bonus_borrowed_gun_own" + "string_tokens" + { + "condition" "#quest_bonus_borrowed_gun_enemy" + } + } + "610" + { + "name" "Kill a CT in Hostage" + "gamemode" "casual" + "mapgroup" "mg_reserves" + "expression" " %act_kill_human% && %cond_victim_ct% && %cond_player_terrorist% " + "expr_bonus" " %act_kill_human% && %cond_victim_ct% && %cond_player_terrorist% && %cond_victim_rescuing% " + "points" "40" + "xp_bonus_percent" "100" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_meet_mentor" + "loc_description" "#Quest_Kills_Mapgroup_Victim_Team_desc" + "loc_bonus" "#quest_bonus_victim_rescuing" + "quest_icon" "hostage" + } + "611" + { + "name" "VIP - mg_op_op06" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "map" "de_log" + "expression" " %act_kill_target% && %cond_victim_ct% && %cond_player_terrorist% " + "expr_bonus" " %act_kill_target% && %cond_victim_ct% && %weapon_taser%" + "points" "1" + "target_team" "3" + "difficulty" "2" + "xp_bonus_percent" "100" + "loc_name" "Op_bloodhound_Valeria_dead_turner" + "loc_description" "#Quest_Assassination_desc" + "quest_icon" "assassin" + "loc_bonus" "#quest_bonus_taser" + "string_tokens" + { + "target" "#quest_target_jackson" + } + } + "612" + { + "name" "Guardian: Office Kills (easy)" + "gamemode" "cooperative" + "mapgroup" "mg_cs_office" + "map" "cs_office" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 3 ) " + "points" "1" + "xp_reward" "300" + "xp_bonus_percent" "30" + "difficulty" "2" + "loc_name" "Op_bloodhound_Valeria_loyalty" + "loc_description" "#Quest_Guardian_Hostage_desc" + "loc_bonus" "#quest_bonus_totalrounds_3" + "string_tokens" + { + "map" "#SFUI_Map_cs_office" + "kills" "quest_guardian_kills_30" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_terrorist" + "extradetails" "#quest_guardian_empty" + } + } + "613" + { + "name" "Demolition Bomb Plants" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "expression" " %act_plant_bomb% " + "points" "5" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_resources" + "loc_description" "#Quest_PlantBomb_Mapgroup_Desc" + } + "614" + { + "name" "Competitive Resort win 8 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_log" + "expression" " %act_win_round% " + "points" "8" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_conflict" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "615" + { + "name" "Casual reserves AWP Kills 10" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "map" "de_season" + "expression" " %act_kill_human% && %weapon_awp% " + "expr_bonus" " %act_kill_human% && %weapon_awp% && %cond_damage_headshot% " + "points" "10" + "xp_bonus_percent" "200" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_role_turner" + "loc_description" "#Quest_Weapon_Map_desc" + "loc_bonus" "#quest_bonus_headshot" + } + "616" + { + "name" "Competitive train win 6 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_train" + "expression" " %act_win_round% " + "points" "8" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_message" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "617" + { + "name" "Headshots" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "expression" " %act_kill_human% && %cond_damage_headshot% " + "expr_bonus" " %act_kill_human% && %cond_damage_headshot% && %set_community_2% " + "points" "10" + "xp_bonus_percent" "200" + "operational_points" "1" + "difficulty" "1" + "loc_name" "Op_bloodhound_Valeria_pollock_turner" + "loc_description" "#Quest_Headshots_Mapgroup_desc" + "loc_bonus" "#quest_bonus_set_community_2" + } + "618" + { + "name" "Competitive Agency win 16 rounds" + "gamemode" "competitive" + "mapgroup" "mg_cs_agency" + "expression" " %act_win_round% " + "points" "16" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_underhill_turner" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "619" + { + "name" "Competitive Dust2 win 16 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_dust2" + "expression" " %act_win_round% " + "points" "16" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_maghreb_turner" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "620" + { + "name" "Guardian: Kills on Bank" + "gamemode" "cooperative" + "mapgroup" "mg_gd_bank" + "map" "gd_bank" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 3 ) " + "points" "1" + "xp_reward" "500" + "xp_bonus_percent" "30" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_bank_turner" + "loc_description" "#Quest_Guardian_Hostage_desc" + "loc_bonus" "#quest_bonus_totalrounds_3" + "string_tokens" + { + "map" "#SFUI_Map_gd_bank" + "kills" "quest_guardian_kills_40" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_terrorist" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "621" + { + "name" "Competitive Overpass win 16 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_overpass" + "expression" " %act_win_round% " + "points" "16" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_fruitless_turner" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "622" + { + "name" "Competitive Train win 16 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_train" + "expression" " %act_win_round% " + "points" "16" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_fear_turner" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "623" + { + "name" "Competitive Resort win 32 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_resort" + "expression" " %act_win_round% " + "points" "32" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_elysee_turner" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "624" + { + "name" "Competitive Mirage 32 rounds" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "expression" " %act_win_round% " + "points" "32" + "operational_points" "2" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_history_turner" + "loc_description" "#Quest_Win_Rounds_Map_desc" + } + "625" + { + "name" "VIP - mg_op_op06" + "gamemode" "casual" + "mapgroup" "mg_op_op06" + "map" "de_season" + "expression" " ( %act_kill_target% ) && ( %cond_victim_ct% ) && ( %cond_player_terrorist% ) " + "points" "1" + "target_team" "3" + "difficulty" "2" + "operational_points" "3" + "loc_name" "Op_bloodhound_Valeria_blunt_turner" + "loc_description" "#Quest_Assassination_desc" + "quest_icon" "assassin" + "string_tokens" + { + "target" "#quest_target_chapel" + } + } + "626" + { + "name" "Guardian: Cobblestone" + "gamemode" "cooperative" + "mapgroup" "mg_gd_cbble" + "map" "gd_cbble" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 3 ) " + "points" "1" + "xp_reward" "400" + "xp_bonus_percent" "50" + "difficulty" "3" + "loc_name" "Op_bloodhound_Valeria_cobble_turner" + "loc_description" "#Quest_Guardian_Hostage_desc" + "loc_bonus" "#quest_bonus_totalrounds_3" + "string_tokens" + { + "map" "#SFUI_Map_gd_cbble" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_SSG08" + "team" "#quest_team_terrorist" + "extradetails" "#quest_guardian_empty" + } + } + "627" + { + "name" "Guardian: Kills on Lake" + "gamemode" "cooperative" + "mapgroup" "mg_gd_lake" + "map" "gd_lake" + "expression" " %act_win_match% " + "expr_bonus" " %act_win_match% && ( %cond_match_rounds_played% <= 3 ) " + "points" "1" + "xp_reward" "300" + "xp_bonus_percent" "50" + "difficulty" "2" + "loc_name" "Op_bloodhound_Valeria_journalist_turner" + "loc_description" "#Quest_Guardian_Hostage_desc" + "loc_bonus" "#quest_bonus_totalrounds_3" + "string_tokens" + { + "map" "#SFUI_Map_gd_lake" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_xm1014" + "team" "#quest_team_terrorist" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "629" + { + "name" "Casual Active Duty Spend 1,000,000" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " ( %act_spend% && %cond_player_terrorist% ) ? %act_spend% : 0 " + "points" "1000000" + "xp_reward" "600" + "difficulty" "3" + "loc_name" "op_bloodhound_booth_Spend" + "loc_description" "#Quest_Spend_Mapgroup_Team_desc" + "quest_icon" "income" + } + "630" + { + "name" "Casual blind players" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %act_flashbang_enemy% && %cond_player_terrorist%" + "points" "50" + "xp_reward" "600" + "difficulty" "3" + "loc_name" "op_bloodhound_booth_flash" + "loc_description" "#Quest_Flashbang_Mapgroup_Team_desc" + "quest_icon" "flashbang" + } + "631" + { + "name" "Defend the Bomb" + "gamemode" "casual" + "mapgroup" "mg_active" + "expression" " %act_kill_human% && %cond_player_terrorist% && %cond_roundstate_bomb_planted% " + "expr_bonus" " %act_kill_human% && %cond_player_terrorist% && %cond_roundstate_bomb_planted% && %set_bravo_ii% " + "points" "25" + "xp_reward" "600" + "xp_bonus_percent" "50" + "difficulty" "3" + "loc_name" "op_bloodhound_booth_bomb" + "loc_description" "#Quest_Defend_Bomb_Mapgroup_desc" + "loc_bonus" "#quest_bonus_set_bravo_ii" + "quest_icon" "bomb" + } + "701" + { + "name" "placeholder_701" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "10" + "expression" "%cond_damage_burn% ? %act_damage% : 0" + "difficulty" "1" + "loc_name" "op07_quest_name_701" + "quest_icon" "molotov" + "string_tokens" + { + "commandverb" "#quest_commandverb_deal" + "actions" "#quest_action_plural_damage_burn" + "action" "#quest_action_singular_damage_burn" + } + } + "702" + { + "name" "placeholder_702" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "map" "cs_cruise" + "points" "20" + "expression" "%act_kill_human% && %weapon_secondary%" + "expr_bonus" "%act_kill_human% && %weapon_elite%" + "difficulty" "1" + "xp_bonus_percent" "50" + "loc_name" "op07_quest_name_702" + "quest_icon" "deathmatch" + "loc_bonus" "#quest_bonus_weapon_elite" + } + "703" + { + "name" "placeholder_703" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "map" "cs_cruise" + "points" "20" + "expression" "%act_kill_human% && %weapon_smg%" + "expr_bonus" "%act_kill_human% && %cond_damage_headshot%" + "difficulty" "1" + "xp_bonus_percent" "50" + "loc_name" "op07_quest_name_703" + "quest_icon" "mp7" + "loc_bonus" "#quest_bonus_headshot" + } + "704" + { + "name" "placeholder_704" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "map" "de_mikla" + "points" "20" + "expression" "%act_kill_chicken%" + "expr_bonus" "%act_kill_chicken% && ( %cond_life_killstreak_chicken% >= 2 )" + "difficulty" "1" + "xp_bonus_percent" "50" + "loc_name" "op07_quest_name_704" + "quest_icon" "chicken" + "loc_bonus" "#quest_bonus_chickenstreak_2" + "string_tokens" + { + "target" "#quest_target_chicken" + } + } + "705" + { + "name" "placeholder_705" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "map" "de_mikla" + "points" "25" + "expression" "%act_kill_human% && %weapon_awp%" + "expr_bonus" "%act_kill_human% && !%cond_player_zoomed%" + "difficulty" "2" + "loc_name" "op07_quest_name_705" + "quest_icon" "awp" + "loc_bonus" "#quest_bonus_not_zoomed" + } + "706" + { + "name" "placeholder_706" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "ar_baggage" + "points" "10" + "expression" "%act_kill_human%" + "difficulty" "1" + "loc_name" "op07_quest_name_706" + "quest_icon" "gungameprogressive" + } + "707" + { + "name" "placeholder_707" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "de_lake" + "points" "20" + "expression" "%act_kill_human%" + "expr_bonus" "%act_kill_human% && %cond_damage_headshot%" + "difficulty" "1" + "xp_bonus_percent" "50" + "loc_name" "op07_quest_name_707" + "quest_icon" "gungameprogressive" + "loc_bonus" "#quest_bonus_headshot" + } + "708" + { + "name" "placeholder_708" + "gamemode" "gungameprogressive" + "mapgroup" "mg_armsrace" + "map" "ar_shoots" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "loc_name" "op07_quest_name_708" + "quest_icon" "gungameprogressive" + } + "709" + { + "name" "placeholder_709" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "map" "de_coast" + "points" "25" + "expression" "%act_kill_human% && (%weapon_ak47% || %weapon_m4a1% || %weapon_m4a1_silencer%)" + "expr_bonus" "%act_kill_human% && (%weapon_ak47% || %weapon_m4a1% || %weapon_m4a1_silencer%) && ( %cond_life_killstreak_human% >= 3 )" + "difficulty" "1" + "xp_bonus_percent" "50" + "operational_points" "1" + "loc_name" "op07_quest_name_709" + "quest_icon" "ak47" + "loc_bonus" "#quest_bonus_killstreak_3" + } + "710" + { + "name" "placeholder_710" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "map" "de_empire" + "points" "20" + "expression" "%act_kill_human% && %weapon_p250%" + "expr_bonus" "%act_kill_human% && %weapon_p250% && %set_kimono%" + "difficulty" "2" + "loc_name" "op07_quest_name_710" + "quest_icon" "p250" + "loc_bonus" "#quest_bonus_set_kimono" + } + "711" + { + "name" "placeholder_711" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "map" "de_santorini" + "points" "30" + "expression" "%act_kill_human% && ( %weapon_aug% || %weapon_sg556% )" + "expr_bonus" "%act_kill_human% && ( %weapon_aug% || %weapon_sg556% ) && %cond_player_zoomed%" + "difficulty" "2" + "loc_name" "op07_quest_name_711" + "quest_icon" "aug" + "loc_bonus" "#quest_bonus_zoomed" + } + "712" + { + "name" "placeholder_712" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "points" "25" + "expression" "%act_kill_human% && %weapon_ssg08%" + "expr_bonus" "%act_kill_human% && %weapon_ssg08% && %cond_damage_headshot%" + "difficulty" "2" + "loc_name" "op07_quest_name_712" + "quest_icon" "ssg08" + "loc_bonus" "#quest_bonus_headshot" + } + "713" + { + "name" "placeholder_713" + "gamemode" "deathmatch" + "mapgroup" "mg_op_op07" + "map" "de_tulip" + "points" "30" + "expression" "%act_kill_human% && ( %weapon_famas% || %weapon_galilar% )" + "expr_bonus" "%act_kill_human% && ( %weapon_famas% || %weapon_galilar% ) && %set_community_11%" + "difficulty" "2" + "operational_points" "1" + "loc_name" "op07_quest_name_713" + "quest_icon" "famas" + "loc_bonus" "#quest_bonus_set_community_11" + } + "714" + { + "name" "placeholder_714" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "map" "de_santorini" + "points" "40" + "expression" "%act_kill_human% && ( %weapon_aug% || %weapon_sg556% )" + "expr_bonus" "%act_kill_human% && ( %weapon_aug% || %weapon_sg556% ) && !%cond_player_zoomed%" + "difficulty" "3" + "loc_name" "op07_quest_name_714" + "quest_icon" "aug" + "loc_bonus" "#quest_bonus_not_zoomed" + } + "715" + { + "name" "placeholder_715" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "20" + "expression" "%act_kill_human% && %weapon_ssg08%" + "expr_bonus" "%act_kill_human% && %weapon_ssg08% && %cond_damage_headshot%" + "difficulty" "3" + "loc_name" "op07_quest_name_715" + "quest_icon" "ssg08" + "loc_bonus" "#quest_bonus_headshot" + } + "716" + { + "name" "placeholder_716" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "map" "de_tulip" + "points" "40" + "expression" "%act_kill_human% && ( %weapon_famas% || %weapon_galilar% )" + "expr_bonus" "%act_kill_human% && ( %weapon_famas% || %weapon_galilar% ) && %cond_item_borrowed_enemy%" + "difficulty" "3" + "operational_points" "2" + "loc_name" "op07_quest_name_716" + "quest_icon" "famas" + "loc_bonus" "#quest_bonus_borrowed_gun_enemy" + } + "717" + { + "name" "placeholder_717" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "map" "de_bank" + "points" "20" + "expression" "%act_kill_human%" + "difficulty" "1" + "loc_name" "op07_quest_name_717" + "quest_icon" "bomb" + } + "718" + { + "name" "placeholder_718" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "map" "de_lake" + "points" "30" + "expression" "%act_kill_human%" + "difficulty" "2" + "loc_name" "op07_quest_name_718" + "quest_icon" "gungametrbomb" + } + "719" + { + "name" "placeholder_719" + "gamemode" "gungametrbomb" + "mapgroup" "mg_demolition" + "map" "de_shortdust" + "points" "5" + "expression" "%act_plant_bomb% || %act_defuse_bomb%" + "difficulty" "3" + "loc_name" "op07_quest_name_719" + "quest_icon" "gungametrbomb" + "string_tokens" + { + "commandverb" "#quest_commandverb_execute" + "actions" "#quest_action_plural_bomb_plants_or_defuses" + "action" "#quest_action_singular_bomb_plants_or_defuses" + } + } + "720" + { + "name" "placeholder_720" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "15" + "expression" "%act_flashbang_enemy%" + "difficulty" "2" + "loc_name" "op07_quest_name_720" + "quest_icon" "flashbang" + "string_tokens" + { + "commandverb" "#quest_commandverb_execute" + } + } + "721" + { + "name" "placeholder_721" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "map" "de_royal" + "points" "25" + "expression" "%act_kill_human% && ( %weapon_ssg08% || %weapon_awp% || %weapon_g3sg1% || %weapon_scar20% )" + "expr_bonus" "%act_kill_human% && %weapon_ssg08%" + "difficulty" "3" + "operational_points" "1" + "loc_name" "op07_quest_name_722" + "quest_icon" "scar20" + "loc_bonus" "#quest_bonus_weapon_ssg08" + } + "722" + { + "name" "placeholder_722" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "15" + "expression" "%act_kill_human% && %cond_item_borrowed_teammate%" + "difficulty" "1" + "loc_name" "op07_quest_name_723" + "quest_icon" "killquest" + } + "723" + { + "name" "placeholder_723" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "5" + "expression" "%act_plant_bomb% || %act_defuse_bomb%" + "difficulty" "2" + "loc_name" "op07_quest_name_724" + "quest_icon" "bomb" + "string_tokens" + { + "commandverb" "#quest_commandverb_execute" + "actions" "#quest_action_plural_bomb_plants_or_defuses" + "action" "#quest_action_singular_bomb_plants_or_defuses" + } + } + "724" + { + "name" "placeholder_724" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "50" + "expression" "%cond_damage_burn% ? %act_damage% : 0" + "difficulty" "3" + "loc_name" "op07_quest_name_725" + "quest_icon" "molotov" + "string_tokens" + { + "commandverb" "#quest_commandverb_deal" + "actions" "#quest_action_plural_damage_burn" + "action" "#quest_action_singular_damage_burn" + } + } + "725" + { + "name" "placeholder_725" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "15" + "expression" "%act_kill_human% && %cond_item_borrowed_enemy%" + "difficulty" "2" + "loc_name" "op07_quest_name_726" + "quest_icon" "killquest" + } + "726" + { + "name" "placeholder_726" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "15" + "expression" "%act_kill_human% && %weapon_secondary%" + "expr_bonus" "%act_kill_human% && %weapon_revolver%" + "difficulty" "2" + "loc_name" "op07_quest_name_727" + "quest_icon" "p250" + "loc_bonus" "#quest_bonus_weapon_revolver" + } + "727" + { + "name" "placeholder_727" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "40" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "expr_bonus" "%act_kill_human% && %cond_damage_headshot% && %set_community_11%" + "difficulty" "3" + "operational_points" "2" + "loc_name" "op07_quest_name_728" + "quest_icon" "headshot" + "loc_bonus" "#quest_bonus_set_community_11" + "string_tokens" + { + "action" "#quest_action_singular_headshot_kill" + "actions" "#quest_action_plural_headshot_kill" + } + } + "728" + { + "name" "placeholder_728" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "25" + "expression" "%act_kill_human% && %cond_item_borrowed_enemy%" + "expr_bonus" "%act_kill_human% && %cond_item_borrowed_enemy% && %map_de_santorini%" + "difficulty" "3" + "loc_name" "op07_quest_name_729" + "quest_icon" "killquest" + "loc_bonus" "#quest_bonus_de_santorini" + } + "729" + { + "name" "placeholder_729" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "40" + "expression" "%act_kill_human% && %weapon_secondary%" + "expr_bonus" "%act_kill_human% && ( %weapon_glock% || %weapon_hkp2000% || %weapon_usp_silencer% )" + "difficulty" "3" + "loc_name" "op07_quest_name_730" + "quest_icon" "p250" + "loc_bonus" "#quest_bonus_weapon_glock_hkp2000_usp_silencer" + } + "730" + { + "name" "placeholder_730" + "gamemode" "casual" + "mapgroup" "mg_op_op07" + "points" "20" + "expression" "%act_kill_human% && (%cond_life_killstreak_human% == 2)" + "expr_bonus" "%act_kill_human% && (%cond_life_killstreak_human% == 3)" + "difficulty" "3" + "operational_points" "2" + "loc_name" "op07_quest_name_731" + "quest_icon" "bomb" + "loc_bonus" "#quest_bonus_killstreak_3" + "string_tokens" + { + "action" "#quest_action_singular_multikill" + "actions" "#quest_action_plural_multikill" + } + } + "801" + { + "name" "placeholder_801" + "gamemode" "cooperative" + "mapgroup" "mg_de_coast" + "map" "de_coast" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "400" + "loc_name" "op07_quest_name_801" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_coast.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_coast" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_Nova" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "802" + { + "name" "placeholder_802" + "gamemode" "cooperative" + "mapgroup" "mg_de_santorini" + "map" "de_santorini" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "400" + "loc_name" "op07_quest_name_802" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_santorini.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_santorini" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_P90" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "803" + { + "name" "placeholder_803" + "gamemode" "cooperative" + "mapgroup" "mg_de_tulip" + "map" "de_tulip" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "400" + "loc_name" "op07_quest_name_803" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_tulip.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_tulip" + "kills" "quest_guardian_kills_20" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "804" + { + "name" "placeholder_804" + "gamemode" "coopmission" + "mapgroup" "mg_coop_cementplant" + "map" "coop_cementplant" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "600" + "operational_points" "1" + "loc_name" "op07_quest_name_804" + "loc_description" "#Quest_Coop_Desc_Rescue" + "server_exec" "execwithwhitelist coop_cementplant_1.cfg */maps" + "string_tokens" + { + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "805" + { + "name" "placeholder_805" + "gamemode" "cooperative" + "mapgroup" "mg_de_empire" + "map" "de_empire" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_805" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_empire.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_empire" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_AK47" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "806" + { + "name" "placeholder_806" + "gamemode" "cooperative" + "mapgroup" "mg_de_cbble" + "map" "de_cbble" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_806" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_cbble.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_cbble" + "kills" "quest_guardian_kills_10" + "weapon" "#SFUI_WPNHUD_SCAR20" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_moneyreset" + } + } + "807" + { + "name" "placeholder_807" + "gamemode" "cooperative" + "mapgroup" "mg_de_royal" + "map" "de_royal" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "operational_points" "1" + "loc_name" "op07_quest_name_807" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_royal.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_royal" + "kills" "quest_guardian_kills_50" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "808" + { + "name" "placeholder_808" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "400" + "loc_name" "op07_quest_name_808" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_train.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_train" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "809" + { + "name" "placeholder_809" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_809" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_train_alt1.cfg */maps" + "string_tokens" + { + "server_exec" "guardian_de_train_alt1.cfg" + "map" "#SFUI_Map_de_train" + "kills" "quest_guardian_kills_30" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "810" + { + "name" "placeholder_810" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "loc_name" "op07_quest_name_810" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_train_alt2.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_train" + "kills" "quest_guardian_kills_30" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_killrewardsonly" + } + } + "811" + { + "name" "placeholder_811" + "gamemode" "cooperative" + "mapgroup" "mg_de_vertigo" + "map" "de_vertigo" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "400" + "loc_name" "op07_quest_name_811" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_vertigo.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_vertigo" + "kills" "quest_guardian_kills_5" + "weapon" "#SFUI_WPNHUD_Negev" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_moneyreset" + } + } + "812" + { + "name" "placeholder_812" + "gamemode" "cooperative" + "mapgroup" "mg_de_mikla" + "map" "de_mikla" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "400" + "loc_name" "op07_quest_name_812" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_mikla.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_mikla" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_Tec9" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "813" + { + "name" "placeholder_813" + "gamemode" "cooperative" + "mapgroup" "mg_de_mikla" + "map" "de_mikla" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "operational_points" "1" + "loc_name" "op07_quest_name_813" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_mikla_alt1.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_mikla" + "kills" "quest_guardian_kills_25" + "weapon" "#SFUI_WPNHUD_Glock18" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "814" + { + "name" "placeholder_814" + "gamemode" "cooperative" + "mapgroup" "mg_de_overpass" + "map" "de_overpass" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "400" + "loc_name" "op07_quest_name_814" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_overpass.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_overpass" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_SSG08" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "815" + { + "name" "placeholder_815" + "gamemode" "cooperative" + "mapgroup" "mg_de_overpass" + "map" "de_overpass" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_815" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_overpass_alt1.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_overpass" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_SSG08" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "816" + { + "name" "placeholder_816" + "gamemode" "coopmission" + "mapgroup" "mg_coop_cementplant" + "map" "coop_cementplant" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "900" + "operational_points" "2" + "loc_name" "op07_quest_name_816" + "loc_description" "#Quest_Coop_Desc_Recon" + "server_exec" "execwithwhitelist coop_cementplant_2.cfg */maps" + "string_tokens" + { + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "817" + { + "name" "placeholder_817" + "gamemode" "cooperative" + "mapgroup" "mg_de_tulip" + "map" "de_tulip" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_817" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_tulip_alt1.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_tulip" + "kills" "quest_guardian_kills_40" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "818" + { + "name" "placeholder_818" + "gamemode" "cooperative" + "mapgroup" "mg_de_dust2" + "map" "de_dust2" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "loc_name" "op07_quest_name_818" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_dust2_alt1.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_dust2" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_SSG08" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_killrewardsonly" + } + } + "819" + { + "name" "placeholder_819" + "gamemode" "cooperative" + "mapgroup" "mg_de_dust2" + "map" "de_dust2" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_819" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_dust2.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_dust2" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "820" + { + "name" "placeholder_820" + "gamemode" "cooperative" + "mapgroup" "mg_de_lake" + "map" "de_lake" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_820" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_lake.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_lake" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_Bizon" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "821" + { + "name" "placeholder_821" + "gamemode" "cooperative" + "mapgroup" "mg_de_lake" + "map" "de_lake" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "loc_name" "op07_quest_name_821" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_lake_alt1.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_lake" + "kills" "quest_guardian_kills_30" + "weapon" "#SFUI_WPNHUD_Mag7" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "822" + { + "name" "placeholder_822" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "500" + "loc_name" "op07_quest_name_822" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_mirage.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_mirage" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_CZ75" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_maxmoneylimit" + } + } + "823" + { + "name" "placeholder_823" + "gamemode" "coopmission" + "mapgroup" "mg_coop_cementplant" + "map" "coop_cementplant" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "1200" + "operational_points" "3" + "loc_name" "op07_quest_name_823" + "loc_description" "#Quest_Coop_Desc_Bomb" + "server_exec" "execwithwhitelist coop_cementplant_3.cfg */maps" + "string_tokens" + { + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "824" + { + "name" "placeholder_824" + "gamemode" "cooperative" + "mapgroup" "mg_de_empire" + "map" "de_empire" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "loc_name" "op07_quest_name_824" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_empire_alt1.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_empire" + "kills" "quest_guardian_kills_50" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_cantbuy" + } + } + "825" + { + "name" "placeholder_825" + "gamemode" "cooperative" + "mapgroup" "mg_de_cache" + "map" "de_cache" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "loc_name" "op07_quest_name_825" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_cache.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_cache" + "kills" "quest_guardian_kills_25" + "weapon" "#SFUI_WPNHUD_DesertEagle" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_killrewardsonly" + } + } + "826" + { + "name" "placeholder_826" + "gamemode" "cooperative" + "mapgroup" "mg_de_nuke" + "map" "de_nuke" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "operational_points" "1" + "loc_name" "op07_quest_name_826" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "server_exec" "execwithwhitelist guardian_de_nuke.cfg */maps" + "string_tokens" + { + "map" "#SFUI_Map_de_nuke" + "kills" "quest_guardian_kills_40" + "weapon" "#SFUI_WPNHUD_M4_SILENCER" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_killrewardsonly" + } + } + "827" + { + "name" "placeholder_827" + "gamemode" "cooperative" + "mapgroup" "mg_de_aztec" + "map" "de_aztec" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "600" + "loc_name" "op07_quest_name_827" + "loc_description" "#Quest_Guardian_Bomb_Desc" + "string_tokens" + { + "map" "#SFUI_Map_de_aztec" + "kills" "quest_guardian_kills_30" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "extradetails" "#quest_guardian_empty" + } + } + "901" + { + "name" "placeholder_901" + "gamemode" "cooperative" + "mapgroup" "mg_de_austria" + "map" "de_austria" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_901" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_austria" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_P90" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "902" + { + "name" "placeholder_902" + "gamemode" "cooperative" + "mapgroup" "mg_de_shipped" + "map" "de_shipped" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_902" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_shipped" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_xm1014" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "903" + { + "name" "placeholder_903" + "gamemode" "cooperative" + "mapgroup" "mg_de_lite" + "map" "de_lite" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_903" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_lite" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_UMP45" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "904" + { + "name" "placeholder_904" + "gamemode" "cooperative" + "mapgroup" "mg_de_thrill" + "map" "de_thrill" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_904" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_thrill" + "kills" "quest_guardian_kills_10" + "weapon" "#quest_weapon_m4" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_headshot" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "905" + { + "name" "placeholder_905" + "gamemode" "cooperative" + "mapgroup" "mg_de_inferno" + "map" "de_inferno" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_905" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_inferno" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_MP9" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "906" + { + "name" "placeholder_906" + "gamemode" "cooperative" + "mapgroup" "mg_de_lite" + "map" "de_lite" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_906" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_lite" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_Bizon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "907" + { + "name" "placeholder_907" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_907" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_mirage" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_MP7" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "908" + { + "name" "placeholder_908" + "gamemode" "cooperative" + "mapgroup" "mg_de_blackgold" + "map" "de_blackgold" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_908" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_blackgold" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_Mag7" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "909" + { + "name" "placeholder_909" + "gamemode" "cooperative" + "mapgroup" "mg_de_canals" + "map" "de_canals" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_909" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_canals" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_Aug" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "910" + { + "name" "placeholder_910" + "gamemode" "cooperative" + "mapgroup" "mg_gd_rialto" + "map" "gd_rialto" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_910" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_gd_rialto" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_Famas" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "911" + { + "name" "placeholder_911" + "gamemode" "cooperative" + "mapgroup" "mg_de_shipped" + "map" "de_shipped" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_911" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_shipped" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_Negev" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "912" + { + "name" "placeholder_912" + "gamemode" "cooperative" + "mapgroup" "mg_de_austria" + "map" "de_austria" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "1" + "xp_reward" "350" + "operational_points" "0" + "loc_name" "op08_quest_name_912" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_austria" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_Elites" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "913" + { + "name" "placeholder_913" + "gamemode" "cooperative" + "mapgroup" "mg_de_blackgold" + "map" "de_blackgold" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_913" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_blackgold" + "kills" "quest_guardian_kills_10" + "weapon" "#SFUI_WPNHUD_DesertEagle" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_headshot" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "914" + { + "name" "placeholder_914" + "gamemode" "cooperative" + "mapgroup" "mg_de_inferno" + "map" "de_inferno" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_914" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_inferno" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_AK47" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_cantbuy" + "presence" "#quest_presence_empty" + } + } + "915" + { + "name" "placeholder_915" + "gamemode" "cooperative" + "mapgroup" "mg_de_lite" + "map" "de_lite" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_915" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_lite" + "kills" "quest_guardian_kills_10" + "weapon" "#SFUI_WPNHUD_SSG08" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_headshot" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "916" + { + "name" "placeholder_916" + "gamemode" "cooperative" + "mapgroup" "mg_de_shipped" + "map" "de_shipped" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_916" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_shipped" + "kills" "quest_guardian_kills_5" + "weapon" "#SFUI_Inferno" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "917" + { + "name" "placeholder_917" + "gamemode" "cooperative" + "mapgroup" "mg_de_lite" + "map" "de_lite" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_917" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_lite" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_SCAR20" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + } + } + "918" + { + "name" "placeholder_918" + "gamemode" "cooperative" + "mapgroup" "mg_de_canals" + "map" "de_canals" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_918" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_canals" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + } + } + "919" + { + "name" "placeholder_919" + "gamemode" "cooperative" + "mapgroup" "mg_de_lite" + "map" "de_lite" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_919" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_lite" + "kills" "quest_guardian_kills_25" + "weapon" "#SFUI_WPNHUD_REVOLVER" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "920" + { + "name" "placeholder_920" + "gamemode" "cooperative" + "mapgroup" "mg_de_thrill" + "map" "de_thrill" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_920" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_thrill" + "kills" "quest_guardian_kills_25" + "weapon" "#SFUI_WPNHUD_Aug" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + } + } + "921" + { + "name" "placeholder_921" + "gamemode" "cooperative" + "mapgroup" "mg_de_blackgold" + "map" "de_blackgold" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_921" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_blackgold" + "kills" "quest_guardian_kills_15" + "weapon" "#quest_weapon_starter_ct" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + } + } + "922" + { + "name" "placeholder_922" + "gamemode" "cooperative" + "mapgroup" "mg_de_austria" + "map" "de_austria" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "2" + "xp_reward" "525" + "operational_points" "0" + "loc_name" "op08_quest_name_922" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_austria" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_CZ75" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + } + } + "923" + { + "name" "placeholder_923" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_923" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_train" + "kills" "quest_guardian_kills_20" + "weapon" "#SFUI_WPNHUD_SSG08" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_heavyarmor" + "presence" "#quest_presence_empty" + } + } + "924" + { + "name" "placeholder_924" + "gamemode" "cooperative" + "mapgroup" "mg_de_shipped" + "map" "de_shipped" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_924" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_shipped" + "kills" "quest_guardian_kills_10" + "weapon" "#SFUI_WPNHUD_Mag7" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_blind" + "extradetails" "#quest_guardian_heavyarmor" + "presence" "#quest_presence_empty" + } + } + "925" + { + "name" "placeholder_925" + "gamemode" "cooperative" + "mapgroup" "mg_gd_rialto" + "map" "gd_rialto" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_925" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_gd_rialto" + "kills" "quest_guardian_kills_30" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_heavyarmor" + "presence" "#quest_presence_heavy" + } + } + "926" + { + "name" "placeholder_926" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_926" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_train" + "kills" "quest_guardian_kills_10" + "weapon" "#SFUI_WPNHUD_Taser" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_heavyarmorresetmoney" + "presence" "#quest_presence_empty" + } + } + "927" + { + "name" "placeholder_927" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_927" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_mirage" + "kills" "quest_guardian_kills_25" + "weapon" "#quest_weapon_any_pistol" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_noarmor" + "presence" "#quest_presence_empty" + } + } + "928" + { + "name" "placeholder_928" + "gamemode" "cooperative" + "mapgroup" "mg_de_lite" + "map" "de_lite" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_928" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_lite" + "kills" "quest_guardian_kills_30" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_cantbuy" + "presence" "#quest_presence_heavy" + } + } + "929" + { + "name" "placeholder_929" + "gamemode" "cooperative" + "mapgroup" "mg_de_thrill" + "map" "de_thrill" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_929" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_de_thrill" + "kills" "quest_guardian_kills_15" + "weapon" "#SFUI_WPNHUD_AWP" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_headshot" + "extradetails" "#quest_guardian_heavyarmor" + "presence" "#quest_presence_heavy" + } + } + "930" + { + "name" "placeholder_930" + "gamemode" "cooperative" + "mapgroup" "mg_gd_rialto" + "map" "gd_rialto" + "points" "1" + "expression" "%act_win_match%" + "difficulty" "3" + "xp_reward" "700" + "operational_points" "0" + "loc_name" "op08_quest_name_930" + "loc_description" "#Quest_Guardian_Desc_op08" + "string_tokens" + { + "map" "#SFUI_Map_gd_rialto" + "kills" "quest_guardian_kills_30" + "weapon" "#quest_weapon_any_pistol" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_headshot" + "extradetails" "#quest_guardian_heavyarmor" + "presence" "#quest_presence_heavy" + } + } + "124" + { + "name" "comp coast" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_coast" + "map" "de_coast" + "expression" "%act_win_round%" + } + "125" + { + "name" "comp empire" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_empire" + "map" "de_empire" + "expression" "%act_win_round%" + } + "126" + { + "name" "comp mikla" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_mikla" + "map" "de_mikla" + "expression" "%act_win_round%" + } + "127" + { + "name" "comp royal" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_royal" + "map" "de_royal" + "expression" "%act_win_round%" + } + "128" + { + "name" "comp santorini" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_santorini" + "map" "de_santorini" + "expression" "%act_win_round%" + } + "129" + { + "name" "comp tulip" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_tulip" + "map" "de_tulip" + "expression" "%act_win_round%" + } + "130" + { + "name" "comp cruise" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_cs_cruise" + "map" "cs_cruise" + "expression" "%act_win_round%" + } + "131" + { + "name" "comp nuke" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_nuke" + "map" "de_nuke" + "expression" "%act_win_round%" + } + "132" + { + "name" "comp dust2" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_dust2" + "map" "de_dust2" + "expression" "%act_win_round%" + } + "133" + { + "name" "comp train" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_train" + "map" "de_train" + "expression" "%act_win_round%" + } + "134" + { + "name" "comp mirage" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "expression" "%act_win_round%" + } + "135" + { + "name" "comp inferno" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_inferno" + "map" "de_inferno" + "expression" "%act_win_round%" + } + "136" + { + "name" "comp cbble" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_cbble" + "map" "de_cbble" + "expression" "%act_win_round%" + } + "137" + { + "name" "comp overpass" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_overpass" + "map" "de_overpass" + "expression" "%act_win_round%" + } + "138" + { + "name" "comp cache" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_cache" + "map" "de_cache" + "expression" "%act_win_round%" + } + "139" + { + "name" "comp aztec" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_aztec" + "map" "de_aztec" + "expression" "%act_win_round%" + } + "140" + { + "name" "comp dust" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_dust" + "map" "de_dust" + "expression" "%act_win_round%" + } + "141" + { + "name" "comp vertigo" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_de_vertigo" + "map" "de_vertigo" + "expression" "%act_win_round%" + } + "142" + { + "name" "comp office" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_cs_office" + "map" "cs_office" + "expression" "%act_win_round%" + } + "143" + { + "name" "comp italy" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_cs_italy" + "map" "cs_italy" + "expression" "%act_win_round%" + } + "144" + { + "name" "comp assault" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_cs_assault" + "map" "cs_assault" + "expression" "%act_win_round%" + } + "145" + { + "name" "comp militia" + "is_an_event" "1" + "gamemode" "competitive" + "mapgroup" "mg_cs_militia" + "map" "cs_militia" + "expression" "%act_win_round%" + } + "10001" + { + "name" "event_op08_tandem_overpass" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_overpass" + } + "10002" + { + "name" "event_op08_tandem_lake" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_lake" + } + "10003" + { + "name" "event_op08_tandem_safehouse" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_safehouse" + } + "10004" + { + "name" "event_op08_tandem_stmarc" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_stmarc" + } + "10005" + { + "name" "event_op08_tandem_shortdust" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shortdust" + } + "10006" + { + "name" "event_op08_tandem_shorttrain" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shorttrain" + } + "10007" + { + "name" "event_op08_tandem_rialto" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_gd_rialto" + } + "10008" + { + "name" "event_op08_we_austria" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_dust2" + } + "10009" + { + "name" "event_op08_we_lite" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_lite" + } + "10010" + { + "name" "event_op08_we_shipped" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_shipped" + } + "10011" + { + "name" "event_op08_we_thrill" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_thrill" + } + "10012" + { + "name" "event_op08_we_blackgold" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_blackgold" + } + "10013" + { + "name" "event_op08_we_agency" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_cs_agency" + } + "10014" + { + "name" "event_op08_we_insertion" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_cs_insertion" + } + "10015" + { + "name" "event_op08_we_inferno" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_inferno" + } + "10016" + { + "name" "event_op08_we_train" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_train" + } + "10017" + { + "name" "event_op08_we_mirage" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_mirage" + } + "10018" + { + "name" "event_op08_we_nuke" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_nuke" + } + "10019" + { + "name" "event_op08_we_cbble" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_cbble" + } + "10020" + { + "name" "event_op08_we_overpass" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_overpass" + } + "10021" + { + "name" "event_op08_we_cache" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_cache" + } + "10022" + { + "name" "event_op08_we_dust2" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_dust2" + } + "10023" + { + "name" "event_op08_we_aztec" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_aztec" + } + "10024" + { + "name" "event_op08_we_dust" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_dust" + } + "10025" + { + "name" "event_op08_we_vertigo" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_vertigo" + } + "10026" + { + "name" "event_op08_we_office" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_cs_office" + } + "10027" + { + "name" "event_op08_we_italy" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_cs_italy" + } + "10028" + { + "name" "event_op08_we_assault" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_cs_assault" + } + "10029" + { + "name" "event_op08_we_militia" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_cs_militia" + } + "10030" + { + "name" "event_op08_we_canals" + "is_an_event" "1" + "gamemode" "scrimcomp5v5" + "mapgroup" "mg_de_canals" + } + "10034" + { + "name" "event_op08_skirmish_all" + "is_an_event" "1" + "gamemode" "skirmish" + "mapgroup" "mg_skirmish_stabstabzap,mg_skirmish_flyingscoutsman,mg_skirmish_triggerdiscipline,mg_skirmish_headshots,mg_skirmish_huntergatherers,mg_skirmish_heavyassaultsuit" + } + "10035" + { + "name" "event_op08_wingman_1" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shorttrain,mg_gd_rialto,mg_de_inferno" + } + "10036" + { + "name" "event_op08_wingman_2" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_inferno,mg_de_lake,mg_de_shortdust" + } + "10037" + { + "name" "event_op08_wingman_3" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shortdust,mg_de_overpass,mg_de_cbble" + } + "10038" + { + "name" "event_op08_wingman_4" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_cbble,mg_de_safehouse,mg_de_shorttrain" + } + "10039" + { + "name" "event_op08_wingman_5" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shorttrain,mg_de_stmarc,mg_de_inferno" + } + "10040" + { + "name" "event_op08_wingman_6" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_inferno,mg_gd_rialto,mg_de_shortdust" + } + "10041" + { + "name" "event_op08_wingman_7" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shortdust,mg_de_lake,mg_de_cbble" + } + "10042" + { + "name" "event_op08_wingman_8" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_cbble,mg_de_overpass,mg_de_shorttrain" + } + "10043" + { + "name" "event_op08_wingman_9" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shorttrain,mg_de_safehouse,mg_de_inferno" + } + "10044" + { + "name" "event_op08_wingman_10" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_inferno,mg_de_stmarc,mg_de_shortdust" + } + "10045" + { + "name" "event_op08_wingman_11" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shortdust,mg_gd_rialto,mg_de_cbble" + } + "10046" + { + "name" "event_op08_wingman_12" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_cbble,mg_de_lake,mg_de_shorttrain" + } + "10047" + { + "name" "event_op08_wingman_13" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shorttrain,mg_de_overpass,mg_de_inferno" + } + "10048" + { + "name" "event_op08_wingman_14" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_inferno,mg_de_safehouse,mg_de_shortdust" + } + "10049" + { + "name" "event_op08_wingman_15" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shortdust,mg_de_stmarc,mg_de_cbble" + } + "10050" + { + "name" "event_op08_wingman_16" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_cbble,mg_gd_rialto,mg_de_shorttrain" + } + "10051" + { + "name" "event_op08_wingman_17" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shorttrain,mg_de_lake,mg_de_inferno" + } + "10052" + { + "name" "event_op08_wingman_18" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_inferno,mg_de_overpass,mg_de_shortdust" + } + "10053" + { + "name" "event_op08_wingman_19" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_shortdust,mg_de_safehouse,mg_de_cbble" + } + "10054" + { + "name" "event_op08_wingman_20" + "is_an_event" "1" + "gamemode" "scrimcomp2v2" + "mapgroup" "mg_de_cbble,mg_de_stmarc,mg_de_shorttrain" + } + "931" + { + "name" "placeholder_931" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "10" + "quest_icon" "awp" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_awp%" + "loc_description" "#quest_931_var_desc" + "loc_huddescription" "#quest_931_hud_var_desc" + "loc_name" "#op09_quest_name_931" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "932" + { + "name" "placeholder_932" + "gamemode" "casual" + "mapgroup" "mg_skirmish_flyingscoutsman" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_player_airborne%" + "loc_description" "#quest_932_var_desc" + "loc_huddescription" "#quest_932_hud_var_desc" + "loc_name" "#op09_quest_name_932" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "933" + { + "name" "placeholder_933" + "gamemode" "competitive" + "map" "de_train" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_933_var_desc" + "loc_huddescription" "#quest_933_hud_var_desc" + "loc_name" "#op09_quest_name_933" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "934" + { + "name" "placeholder_934" + "gamemode" "cooperative" + "mapgroup" "mg_gd_cbble" + "map" "gd_cbble" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_934_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card1.cfg */maps" + "loc_huddescription" "#quest_934_hud_var_desc" + "loc_name" "#op09_quest_name_934" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_ssg08_or_mag7" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "935" + { + "name" "placeholder_935" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "20" + "quest_icon" "ssg08" + "operational_points" "3" + "singlematch" "1" + "expression" "%act_kill_human% && %weapon_ssg08%" + "loc_description" "#quest_935_var_desc" + "loc_huddescription" "#quest_935_hud_var_desc" + "loc_name" "#op09_quest_name_935" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "936" + { + "name" "placeholder_936" + "gamemode" "survival" + "points" "5" + "quest_icon" "ssg08" + "operational_points" "3" + "expression" "%act_kill_human% && %weapon_ssg08%" + "loc_description" "#quest_936_var_desc" + "loc_huddescription" "#quest_936_hud_var_desc" + "loc_name" "#op09_quest_name_936" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "937" + { + "name" "placeholder_937" + "gamemode" "casual" + "map" "de_nuke" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( ( (%player_location_Silo% || %player_location_Vending%) && %cond_player_ct%) || ( ( %player_location_Heaven% || %player_location_Garage% ) && %cond_player_terrorist% ) )" + "loc_description" "#quest_937_var_desc" + "loc_huddescription" "#quest_937_hud_var_desc" + "loc_name" "#op09_quest_name_937" + "string_tokens" + { + "commandverb" "#quest_commandverb_apply" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + "target" "#emptystring" + } + } + "938" + { + "name" "placeholder_938" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_victim_armsrace_leader%" + "loc_description" "#quest_938_var_desc" + "loc_huddescription" "#quest_938_hud_var_desc" + "loc_name" "#op09_quest_name_938" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_armsraceleader" + } + } + "939" + { + "name" "placeholder_939" + "gamemode" "cooperative" + "mapgroup" "mg_de_nuke" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_939_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card2.cfg */maps" + "loc_huddescription" "#quest_939_hud_var_desc" + "loc_name" "#op09_quest_name_939" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_mp5sd" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "940" + { + "name" "placeholder_940" + "gamemode" "competitive" + "map" "de_nuke" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_940_var_desc" + "loc_huddescription" "#quest_940_hud_var_desc" + "loc_name" "#op09_quest_name_940" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "941" + { + "name" "placeholder_941" + "gamemode" "scrimcomp2v2" + "map" "de_shortnuke" + "points" "4" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_round% && %cond_roundstate_pistolround%" + "loc_description" "#quest_941_var_desc" + "loc_huddescription" "#quest_941_hud_var_desc" + "loc_name" "#op09_quest_name_941" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#quest_target_pistolround" + } + } + "942" + { + "name" "placeholder_942" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "30" + "quest_icon" "mp5sd" + "operational_points" "3" + "singlematch" "1" + "expression" "%act_kill_human% && %weapon_mp5sd%" + "loc_description" "#quest_942_var_desc" + "loc_huddescription" "#quest_942_hud_var_desc" + "loc_name" "#op09_quest_name_942" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "943" + { + "name" "placeholder_943" + "gamemode" "casual" + "mapgroup" "mg_skirmish_flyingscoutsman" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_943_var_desc" + "loc_huddescription" "#quest_943_hud_var_desc" + "loc_name" "#op09_quest_name_943" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "944" + { + "name" "placeholder_944" + "gamemode" "survival" + "points" "5000" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_spend%" + "loc_description" "#quest_944_var_desc" + "loc_huddescription" "#quest_944_hud_var_desc" + "loc_name" "#op09_quest_name_944" + "string_tokens" + { + "commandverb" "#quest_commandverb_spend" + "actions" "#quest_action_plural_act_spend" + "action" "#quest_action_singular_act_spend" + "target" "#emptystring" + } + } + "945" + { + "name" "placeholder_945" + "gamemode" "cooperative" + "mapgroup" "mg_cs_office" + "map" "cs_office" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_945_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card3.cfg */maps" + "loc_huddescription" "#quest_945_hud_var_desc" + "loc_name" "#op09_quest_name_945" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "946" + { + "name" "placeholder_946" + "gamemode" "competitive" + "map" "cs_office" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_946_var_desc" + "loc_huddescription" "#quest_946_hud_var_desc" + "loc_name" "#op09_quest_name_946" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "947" + { + "name" "placeholder_947" + "gamemode" "scrimcomp2v2" + "map" "de_vertigo" + "points" "16" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_round%" + "loc_description" "#quest_947_var_desc" + "loc_huddescription" "#quest_947_hud_var_desc" + "loc_name" "#op09_quest_name_947" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "948" + { + "name" "placeholder_948" + "gamemode" "casual" + "mapgroup" "mg_hostage" + "points" "5" + "quest_icon" "test" + "operational_points" "3" + "expression" "(%act_rescue_hostage% || (%act_kill_human% && %cond_player_terrorist% && %cond_victim_rescuing%))" + "loc_description" "#quest_948_var_desc" + "loc_huddescription" "#quest_948_hud_var_desc" + "loc_name" "#op09_quest_name_948" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_rescue_hostage" + "action" "#quest_action_singular_act_rescue_hostage" + "target" "#emptystring" + } + } + "949" + { + "name" "placeholder_949" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "10" + "quest_icon" "nova" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_nova%" + "loc_description" "#quest_949_var_desc" + "loc_huddescription" "#quest_949_hud_var_desc" + "loc_name" "#op09_quest_name_949" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "950" + { + "name" "placeholder_950" + "gamemode" "survival" + "points" "5" + "quest_icon" "nova" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_heavy%" + "loc_description" "#quest_950_var_desc" + "loc_huddescription" "#quest_950_hud_var_desc" + "loc_name" "#op09_quest_name_950" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "951" + { + "name" "placeholder_951" + "gamemode" "cooperative" + "mapgroup" "mg_de_vertigo" + "map" "de_vertigo" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_951_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card4.cfg */maps" + "loc_huddescription" "#quest_951_hud_var_desc" + "loc_name" "#op09_quest_name_951" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_Shotgun" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "952" + { + "name" "placeholder_952" + "gamemode" "competitive" + "map" "de_vertigo" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_952_var_desc" + "loc_huddescription" "#quest_952_hud_var_desc" + "loc_name" "#op09_quest_name_952" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "953" + { + "name" "placeholder_953" + "gamemode" "scrimcomp2v2" + "map" "de_inferno" + "points" "16" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_round%" + "loc_description" "#quest_953_var_desc" + "loc_huddescription" "#quest_953_hud_var_desc" + "loc_name" "#op09_quest_name_953" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "954" + { + "name" "placeholder_954" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "25" + "quest_icon" "nova" + "operational_points" "3" + "singlematch" "1" + "expression" "%act_kill_human% && (%weapon_nova% || %weapon_xm1014% || %weapon_sawedoff% || %weapon_mag7%)" + "loc_description" "#quest_954_var_desc" + "loc_huddescription" "#quest_954_hud_var_desc" + "loc_name" "#op09_quest_name_954" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_shotgun" + } + } + "955" + { + "name" "placeholder_955" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "180" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_protect_chicken%" + "loc_description" "#quest_955_var_desc" + "loc_huddescription" "#quest_955_hud_var_desc" + "loc_name" "#op09_quest_name_955" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_protect_chicken" + "action" "#quest_action_singular_act_protect_chicken" + "target" "#emptystring" + } + } + "956" + { + "name" "placeholder_956" + "gamemode" "survival" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_parachute_landed%" + "loc_description" "#quest_956_var_desc" + "loc_huddescription" "#quest_956_hud_var_desc" + "loc_name" "#op09_quest_name_956" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_parachute_landed" + "action" "#quest_action_singular_act_parachute_landed" + "target" "#emptystring" + } + } + "957" + { + "name" "placeholder_957" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "25" + "quest_icon" "negev" + "operational_points" "2" + "expression" "%act_kill_human% && %weapon_negev%" + "loc_description" "#quest_957_var_desc" + "loc_huddescription" "#quest_957_hud_var_desc" + "loc_name" "#op09_quest_name_957" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "958" + { + "name" "placeholder_958" + "gamemode" "competitive" + "map" "de_breach" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_958_var_desc" + "loc_huddescription" "#quest_958_hud_var_desc" + "loc_name" "#op09_quest_name_958" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "959" + { + "name" "placeholder_959" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "50" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human%" + "loc_description" "#quest_959_var_desc" + "loc_huddescription" "#quest_959_hud_var_desc" + "loc_name" "#op09_quest_name_959" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "960" + { + "name" "placeholder_960" + "gamemode" "cooperative" + "mapgroup" "mg_de_overpass" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_match%" + "loc_description" "#quest_960_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card5.cfg */maps" + "loc_huddescription" "#quest_960_hud_var_desc" + "loc_name" "#op09_quest_name_960" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_awp_or_p90" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "961" + { + "name" "placeholder_961" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "20" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_secondary%" + "loc_description" "#quest_961_var_desc" + "loc_huddescription" "#quest_961_hud_var_desc" + "loc_name" "#op09_quest_name_961" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_pistolround" + } + } + "962" + { + "name" "placeholder_962" + "gamemode" "survival" + "points" "2" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && (%cond_player_money_spent% == 0)" + "loc_description" "#quest_962_var_desc" + "loc_huddescription" "#quest_962_hud_var_desc" + "loc_name" "#op09_quest_name_962" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "963" + { + "name" "placeholder_963" + "gamemode" "cooperative" + "mapgroup" "mg_de_bank" + "map" "de_bank" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_963_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card6_1.cfg */maps" + "loc_huddescription" "#quest_963_hud_var_desc" + "loc_name" "#op09_quest_name_963" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_XM1014" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "964" + { + "name" "placeholder_964" + "gamemode" "competitive" + "points" "2" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round% && %cond_roundstate_pistolround%" + "loc_description" "#quest_964_var_desc" + "loc_huddescription" "#quest_964_hud_var_desc" + "loc_name" "#op09_quest_name_964" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#quest_target_pistolround" + } + } + "965" + { + "name" "placeholder_965" + "gamemode" "cooperative" + "mapgroup" "mg_de_vertigo" + "map" "de_vertigo" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_match%" + "loc_description" "#quest_965_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card6_2.cfg */maps" + "loc_huddescription" "#quest_965_hud_var_desc" + "loc_name" "#op09_quest_name_965" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "966" + { + "name" "placeholder_966" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "100000" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_income%" + "loc_description" "#quest_966_var_desc" + "loc_huddescription" "#quest_966_hud_var_desc" + "loc_name" "#op09_quest_name_966" + "string_tokens" + { + "commandverb" "#quest_commandverb_earn" + "actions" "#quest_action_plural_act_income" + "action" "#quest_action_singular_act_income" + "target" "#emptystring" + } + } + "967" + { + "name" "placeholder_967" + "gamemode" "casual" + "mapgroup" "mg_hostage" + "points" "10" + "quest_icon" "deagle" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_deagle%" + "loc_description" "#quest_967_var_desc" + "loc_huddescription" "#quest_967_hud_var_desc" + "loc_name" "#op09_quest_name_967" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "968" + { + "name" "placeholder_968" + "gamemode" "survival" + "points" "2" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%weapon_ssg08% || %weapon_awp% || %weapon_scar20% || %weapon_g3sg1%)" + "loc_description" "#quest_968_var_desc" + "loc_huddescription" "#quest_968_hud_var_desc" + "loc_name" "#op09_quest_name_968" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_sniperrifle" + } + } + "969" + { + "name" "placeholder_969" + "gamemode" "cooperative" + "mapgroup" "mg_de_cache" + "map" "de_cache" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_969_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card7_1.cfg */maps" + "loc_huddescription" "#quest_969_hud_var_desc" + "loc_name" "#op09_quest_name_969" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_awp" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "970" + { + "name" "placeholder_970" + "gamemode" "competitive" + "map" "de_dust2" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_970_var_desc" + "loc_huddescription" "#quest_970_hud_var_desc" + "loc_name" "#op09_quest_name_970" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "971" + { + "name" "placeholder_971" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_match%" + "loc_description" "#quest_971_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card7_2.cfg */maps" + "loc_huddescription" "#quest_971_hud_var_desc" + "loc_name" "#op09_quest_name_971" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "972" + { + "name" "placeholder_972" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "30" + "quest_icon" "test" + "operational_points" "3" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_972_var_desc" + "loc_huddescription" "#quest_972_hud_var_desc" + "loc_name" "#op09_quest_name_972" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_headshot" + } + } + "973" + { + "name" "placeholder_973" + "gamemode" "casual" + "map" "de_canals" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_973_var_desc" + "loc_huddescription" "#quest_973_hud_var_desc" + "loc_name" "#op09_quest_name_973" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "974" + { + "name" "placeholder_974" + "gamemode" "casual" + "map" "de_inferno" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_974_var_desc" + "loc_huddescription" "#quest_974_hud_var_desc" + "loc_name" "#op09_quest_name_974" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_headshot" + } + } + "975" + { + "name" "placeholder_975" + "gamemode" "cooperative" + "mapgroup" "mg_cs_italy" + "map" "cs_italy" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_975_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card8.cfg */maps" + "loc_huddescription" "#quest_975_hud_var_desc" + "loc_name" "#op09_quest_name_975" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_ct" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "976" + { + "name" "placeholder_976" + "gamemode" "competitive" + "map" "de_inferno" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_976_var_desc" + "loc_huddescription" "#quest_976_hud_var_desc" + "loc_name" "#op09_quest_name_976" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "977" + { + "name" "placeholder_977" + "gamemode" "scrimcomp2v2" + "map" "gd_rialto" + "points" "16" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_round%" + "loc_description" "#quest_977_var_desc" + "loc_huddescription" "#quest_977_hud_var_desc" + "loc_name" "#op09_quest_name_977" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "978" + { + "name" "placeholder_978" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "40" + "quest_icon" "elite" + "operational_points" "3" + "expression" "%act_kill_human% && %weapon_elite%" + "loc_description" "#quest_978_var_desc" + "loc_huddescription" "#quest_978_hud_var_desc" + "loc_name" "#op09_quest_name_978" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "979" + { + "name" "placeholder_979" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%cond_life_killstreak_human% >= 4)" + "loc_description" "#quest_979_var_desc" + "loc_huddescription" "#quest_979_hud_var_desc" + "loc_name" "#op09_quest_name_979" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "980" + { + "name" "placeholder_980" + "gamemode" "survival" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_dz_game_end_placement% >= 1 && %act_dz_game_end_placement% <= 4" + "loc_description" "#quest_980_var_desc" + "loc_huddescription" "#quest_980_hud_var_desc" + "loc_name" "#op09_quest_name_980" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_dz_game_end_placement" + "action" "#quest_action_singular_act_dz_game_end_placement" + "target" "#emptystring" + } + } + "981" + { + "name" "placeholder_981" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_981_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card9.cfg */maps" + "loc_huddescription" "#quest_981_hud_var_desc" + "loc_name" "#op09_quest_name_981" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_usp_silencer" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "982" + { + "name" "placeholder_982" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "5" + "quest_icon" "test" + "operational_points" "2" + "singlematch" "1" + "expression" "%act_kill_human% && %weapon_deagle% && %cond_damage_headshot%" + "loc_description" "#quest_982_var_desc" + "loc_huddescription" "#quest_982_hud_var_desc" + "loc_name" "#op09_quest_name_982" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_headshot" + } + } + "983" + { + "name" "placeholder_983" + "gamemode" "scrimcomp2v2" + "points" "5" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_983_var_desc" + "loc_huddescription" "#quest_983_hud_var_desc" + "loc_name" "#op09_quest_name_983" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_headshot" + } + } + "984" + { + "name" "placeholder_984" + "gamemode" "competitive" + "points" "5" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_round_mvp%" + "loc_description" "#quest_984_var_desc" + "loc_huddescription" "#quest_984_hud_var_desc" + "loc_name" "#op09_quest_name_984" + "string_tokens" + { + "commandverb" "#quest_commandverb_earn" + "actions" "#quest_action_plural_act_round_mvp" + "action" "#quest_action_singular_act_round_mvp" + "target" "#emptystring" + } + } + "985" + { + "name" "placeholder_985" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "15" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%weapon_usp_silencer% || %weapon_hkp2000% || %weapon_glock%)" + "loc_description" "#quest_985_var_desc" + "loc_huddescription" "#quest_985_hud_var_desc" + "loc_name" "#op09_quest_name_985" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_defaultpistol" + } + } + "986" + { + "name" "placeholder_986" + "gamemode" "cooperative" + "mapgroup" "mg_de_canals" + "map" "de_canals" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_986_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card10.cfg */maps" + "loc_huddescription" "#quest_986_hud_var_desc" + "loc_name" "#op09_quest_name_986" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_m4a1_silencer" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "987" + { + "name" "placeholder_987" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "5" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_human% && ( ( %cond_player_ct% && %weapon_ak47% ) || ( %cond_player_terrorist% && ( %weapon_m4a1% || %weapon_m4a1_silencer% ) ) )" + "loc_description" "#quest_987_var_desc" + "loc_huddescription" "#quest_987_hud_var_desc" + "loc_name" "#op09_quest_name_987" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "988" + { + "name" "placeholder_988" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "3" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_human% && %weapon_knife%" + "loc_description" "#quest_988_var_desc" + "loc_huddescription" "#quest_988_hud_var_desc" + "loc_name" "#op09_quest_name_988" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#quest_target_knife" + } + } + "989" + { + "name" "placeholder_989" + "gamemode" "competitive" + "points" "100" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_round_end% ? %cond_damage_utility% : 0" + "loc_description" "#quest_989_var_desc" + "loc_huddescription" "#quest_989_hud_var_desc" + "loc_name" "#op09_quest_name_989" + "string_tokens" + { + "commandverb" "#quest_commandverb_deal" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#quest_target_utility" + } + } + "990" + { + "name" "placeholder_990" + "gamemode" "scrimcomp2v2" + "points" "5" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_round% && ( %cond_life_killstreak_human% >= 2 )" + "loc_description" "#quest_990_var_desc" + "loc_huddescription" "#quest_990_hud_var_desc" + "loc_name" "#op09_quest_name_990" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "991" + { + "name" "placeholder_991" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( ( %cond_player_terrorist% && %weapon_tec9% ) || ( %cond_player_ct% && %weapon_fiveseven% ) )" + "loc_description" "#quest_991_var_desc" + "loc_huddescription" "#quest_991_hud_var_desc" + "loc_name" "#op09_quest_name_991" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "992" + { + "name" "placeholder_992" + "gamemode" "cooperative" + "mapgroup" "mg_de_dust2" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_992_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card11_1.cfg */maps" + "loc_huddescription" "#quest_992_hud_var_desc" + "loc_name" "#op09_quest_name_992" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_BreachCharge" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "993" + { + "name" "placeholder_993" + "gamemode" "casual" + "map" "de_mirage" + "points" "300" + "quest_icon" "test" + "operational_points" "2" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_993_var_desc" + "loc_huddescription" "#quest_993_hud_var_desc" + "loc_name" "#op09_quest_name_993" + "string_tokens" + { + "commandverb" "#quest_commandverb_deal" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#quest_target_utility" + } + } + "994" + { + "name" "placeholder_994" + "gamemode" "survival" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_human%" + "loc_description" "#quest_994_var_desc" + "loc_huddescription" "#quest_994_hud_var_desc" + "loc_name" "#op09_quest_name_994" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "995" + { + "name" "placeholder_995" + "gamemode" "scrimcomp2v2" + "map" "de_shortdust" + "points" "16" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_round%" + "loc_description" "#quest_995_var_desc" + "loc_huddescription" "#quest_995_hud_var_desc" + "loc_name" "#op09_quest_name_995" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "996" + { + "name" "placeholder_996" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "200" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human%" + "loc_description" "#quest_996_var_desc" + "loc_huddescription" "#quest_996_hud_var_desc" + "loc_name" "#op09_quest_name_996" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "997" + { + "name" "placeholder_997" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( ( %cond_player_terrorist% && %weapon_galilar% ) || ( %cond_player_ct% && %weapon_famas% ) )" + "loc_description" "#quest_997_var_desc" + "loc_huddescription" "#quest_997_hud_var_desc" + "loc_name" "#op09_quest_name_997" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "998" + { + "name" "placeholder_998" + "gamemode" "cooperative" + "mapgroup" "mg_cs_agency" + "map" "cs_agency" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_998_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card12.cfg */maps" + "loc_huddescription" "#quest_998_hud_var_desc" + "loc_name" "#op09_quest_name_998" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_sg556" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "999" + { + "name" "placeholder_999" + "gamemode" "competitive" + "map" "de_train" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_human% && %weapon_glock%" + "loc_description" "#quest_999_var_desc" + "loc_huddescription" "#quest_999_hud_var_desc" + "loc_name" "#op09_quest_name_999" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1000" + { + "name" "placeholder_1000" + "gamemode" "survival" + "points" "2" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_other% && %victim_classname_drone% && %cond_drone_enemy%" + "loc_description" "#quest_1000_var_desc" + "loc_huddescription" "#quest_1000_hud_var_desc" + "loc_name" "#op09_quest_name_1000" + "string_tokens" + { + "commandverb" "#quest_commandverb_destroy" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + "target" "#quest_target_enemydrone" + } + } + "1001" + { + "name" "placeholder_1001" + "gamemode" "competitive" + "map" "de_inferno" + "points" "3" + "quest_icon" "test" + "operational_points" "3" + "singlematch" "1" + "expression" "%act_round_mvp%" + "loc_description" "#quest_1001_var_desc" + "loc_huddescription" "#quest_1001_hud_var_desc" + "loc_name" "#op09_quest_name_1001" + "string_tokens" + { + "commandverb" "#quest_commandverb_earnT" + "actions" "#quest_action_plural_act_round_mvp" + "action" "#quest_action_singular_act_round_mvp" + "target" "#emptystring" + } + } + "1002" + { + "name" "placeholder_1002" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "5" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human% && (%cond_life_killstreak_human% == 2)" + "loc_description" "#quest_1002_var_desc" + "loc_huddescription" "#quest_1002_hud_var_desc" + "loc_name" "#op09_quest_name_1002" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1003" + { + "name" "placeholder_1003" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_negev%" + "loc_description" "#quest_1003_var_desc" + "loc_huddescription" "#quest_1003_hud_var_desc" + "loc_name" "#op09_quest_name_1003" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1004" + { + "name" "placeholder_1004" + "gamemode" "cooperative" + "mapgroup" "mg_de_inferno" + "map" "de_inferno" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_1004_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card13.cfg */maps" + "loc_huddescription" "#quest_1004_hud_var_desc" + "loc_name" "#op09_quest_name_1004" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_m249" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1005" + { + "name" "placeholder_1005" + "gamemode" "competitive" + "map" "de_overpass" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_1005_var_desc" + "loc_huddescription" "#quest_1005_hud_var_desc" + "loc_name" "#op09_quest_name_1005" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1006" + { + "name" "placeholder_1006" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "40" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_human%" + "loc_description" "#quest_1006_var_desc" + "loc_huddescription" "#quest_1006_hud_var_desc" + "loc_name" "#op09_quest_name_1006" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1007" + { + "name" "placeholder_1007" + "gamemode" "survival" + "points" "5" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_other% && %victim_classname_dz_door% && %weapon_breachcharge%" + "loc_description" "#quest_1007_var_desc" + "loc_huddescription" "#quest_1007_hud_var_desc" + "loc_name" "#op09_quest_name_1007" + "string_tokens" + { + "commandverb" "#quest_commandverb_destroy" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + "target" "#quest_target_lockeddoor" + } + } + "1008" + { + "name" "placeholder_1008" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "200" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human% && (%weapon_m4a1_silencer% || %weapon_m4a1% || %weapon_ak47%)" + "loc_description" "#quest_1008_var_desc" + "loc_huddescription" "#quest_1008_hud_var_desc" + "loc_name" "#op09_quest_name_1008" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1009" + { + "name" "placeholder_1009" + "gamemode" "scrimcomp2v2" + "map" "de_train" + "points" "8" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1009_var_desc" + "loc_huddescription" "#quest_1009_hud_var_desc" + "loc_name" "#op09_quest_name_1009" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1010" + { + "name" "placeholder_1010" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_bizon%" + "loc_description" "#quest_1010_var_desc" + "loc_huddescription" "#quest_1010_hud_var_desc" + "loc_name" "#op09_quest_name_1010" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1011" + { + "name" "placeholder_1011" + "gamemode" "competitive" + "map" "de_cache" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round% && ( %cond_score_first_half% == 5 || %cond_score_second_half% == 5 )" + "loc_description" "#quest_1011_var_desc" + "loc_huddescription" "#quest_1011_hud_var_desc" + "loc_name" "#op09_quest_name_1011" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1012" + { + "name" "placeholder_1012" + "gamemode" "survival" + "points" "3" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_bumpmine_launch%" + "loc_description" "#quest_1012_var_desc" + "loc_huddescription" "#quest_1012_hud_var_desc" + "loc_name" "#op09_quest_name_1012" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_bumpmine_launch" + "action" "#quest_action_singular_act_bumpmine_launch" + "target" "#emptystring" + } + } + "1013" + { + "name" "placeholder_1013" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human% && %weapon_deagle%" + "loc_description" "#quest_1013_var_desc" + "loc_huddescription" "#quest_1013_hud_var_desc" + "loc_name" "#op09_quest_name_1013" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1014" + { + "name" "placeholder_1014" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_match%" + "loc_description" "#quest_1014_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card14.cfg */maps" + "loc_huddescription" "#quest_1014_hud_var_desc" + "loc_name" "#op09_quest_name_1014" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_ak47" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "1015" + { + "name" "placeholder_1015" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%cond_player_money_spent_this_round% <= 2000)" + "loc_description" "#quest_1015_var_desc" + "loc_huddescription" "#quest_1015_hud_var_desc" + "loc_name" "#op09_quest_name_1015" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1016" + { + "name" "placeholder_1016" + "gamemode" "survival" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_cash% >= 3000" + "loc_description" "#quest_1016_var_desc" + "loc_huddescription" "#quest_1016_hud_var_desc" + "loc_name" "#op09_quest_name_1016" + "string_tokens" + { + "commandverb" "#quest_commandverb_earn" + "actions" "#quest_action_plural_act_income" + "action" "#quest_action_singular_act_income" + "target" "#emptystring" + } + } + "1017" + { + "name" "placeholder_1017" + "gamemode" "competitive" + "map" "de_mirage" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_1017_var_desc" + "loc_huddescription" "#quest_1017_hud_var_desc" + "loc_name" "#op09_quest_name_1017" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1018" + { + "name" "placeholder_1018" + "gamemode" "cooperative" + "mapgroup" "mg_de_overpass" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1018_var_desc" + "server_exec" "execwithwhitelist guardian_op09_card15.cfg */maps" + "loc_huddescription" "#quest_1018_hud_var_desc" + "loc_name" "#op09_quest_name_1018" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "1019" + { + "name" "placeholder_1019" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "20" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human% && %weapon_smg%" + "loc_description" "#quest_1019_var_desc" + "loc_huddescription" "#quest_1019_hud_var_desc" + "loc_name" "#op09_quest_name_1019" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1020" + { + "name" "placeholder_1020" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "200" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_kill_human% && %weapon_ump45%" + "loc_description" "#quest_1020_var_desc" + "loc_huddescription" "#quest_1020_hud_var_desc" + "loc_name" "#op09_quest_name_1020" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1021" + { + "name" "placeholder_1021" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "20" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_chicken%" + "loc_description" "#quest_1021_var_desc" + "loc_huddescription" "#quest_1021_hud_var_desc" + "loc_name" "#op09_quest_name_1021" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_chicken" + "action" "#quest_action_singular_act_kill_chicken" + "target" "#quest_target_chicken" + } + } + "1022" + { + "name" "placeholder_1022" + "gamemode" "survival" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_other% && %victim_classname_prop_exploding_barrel%" + "loc_description" "#quest_1022_var_desc" + "loc_huddescription" "#quest_1022_hud_var_desc" + "loc_name" "#op09_quest_name_1022" + "string_tokens" + { + "commandverb" "#quest_commandverb_destroy" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + "target" "#quest_target_explodingbarrel" + } + } + "1023" + { + "name" "placeholder_1023" + "gamemode" "competitive" + "map" "cs_agency" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_round%" + "loc_description" "#quest_1023_var_desc" + "loc_huddescription" "#quest_1023_hud_var_desc" + "loc_name" "#op09_quest_name_1023" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1024" + { + "name" "placeholder_1024" + "gamemode" "casual" + "mapgroup" "mg_hostage" + "points" "200" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_other% && (%victim_classname_func_breakable% || %victim_classname_prop_dynamic%)" + "loc_description" "#quest_1024_var_desc" + "loc_huddescription" "#quest_1024_hud_var_desc" + "loc_name" "#op09_quest_name_1024" + "string_tokens" + { + "commandverb" "#quest_commandverb_destroy" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + "target" "#quest_target_glasspane" + } + } + "1025" + { + "name" "placeholder_1025" + "gamemode" "scrimcomp2v2" + "map" "de_lake" + "points" "16" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_round%" + "loc_description" "#quest_1025_var_desc" + "loc_huddescription" "#quest_1025_hud_var_desc" + "loc_name" "#op09_quest_name_1025" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1027" + { + "name" "placeholder_1027" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "5" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_apply_graffiti% && ( ( %player_location_CTSpawn% && %cond_player_terrorist% ) || ( %player_location_TSpawn% && %cond_player_ct% ) )" + "loc_description" "#quest_1027_var_desc" + "loc_huddescription" "#quest_1027_hud_var_desc" + "loc_name" "#op09_quest_name_1027" + "string_tokens" + { + "commandverb" "#quest_commandverb_apply" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + "target" "#emptystring" + } + } + "1028" + { + "name" "placeholder_1028" + "gamemode" "deathmatch" + "map" "de_inferno" + "points" "10" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_kill_human% && ( %player_location_Banana% || %player_location_Apartments% )" + "loc_description" "#quest_1028_var_desc" + "loc_huddescription" "#quest_1028_hud_var_desc" + "loc_name" "#op09_quest_name_1028" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1029" + { + "name" "placeholder_1029" + "gamemode" "casual" + "map" "de_mirage" + "points" "5" + "quest_icon" "smokegrenade" + "operational_points" "2" + "expression" "%act_detonate_smokegrenade% && ( ( (%victim_location_SnipersNest% || %victim_location_Stairs%) && %cond_player_terrorist% ) || ( %cond_player_ct% && ( %victim_location_TRamp% || %victim_location_Apartments% ) ) )" + "loc_description" "#quest_1029_var_desc" + "loc_huddescription" "#quest_1029_hud_var_desc" + "loc_name" "#op09_quest_name_1029" + "string_tokens" + { + "commandverb" "#quest_commandverb_throw" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + "target" "#emptystring" + } + } + "1030" + { + "name" "placeholder_1030" + "gamemode" "coopmission" + "mapgroup" "mg_coop_kasbah" + "map" "coop_kasbah" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_1030_var_desc" + "loc_huddescription" "#quest_1030_hud_var_desc" + "loc_name" "#op09_quest_name_1030" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1031" + { + "name" "placeholder_1031" + "gamemode" "coopmission" + "mapgroup" "mg_coop_kasbah" + "map" "coop_kasbah" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "%act_win_match%" + "loc_description" "#quest_1031_var_desc" + "server_exec" "execwithwhitelist coopstrike_op09_mission2.cfg */maps" + "loc_huddescription" "#quest_1031_hud_var_desc" + "loc_name" "#op09_quest_name_1031" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1098" + { + "name" "placeholder_1098" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1098_var_desc" + "loc_huddescription" "#quest_1098_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1098" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1032" + { + "name" "placeholder_1032" + "gamemode" "competitive" + "map" "de_engage" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1032_var_desc" + "loc_huddescription" "#quest_1032_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1032" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1033" + { + "name" "placeholder_1033" + "gamemode" "cooperative" + "mapgroup" "mg_de_engage" + "map" "de_engage" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1033_var_desc" + "server_exec" "execwithwhitelist guardian_op10_engage_a.cfg */maps" + "loc_huddescription" "#quest_1033_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1033" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1034" + { + "name" "placeholder_1034" + "gamemode" "coopmission" + "mapgroup" "mg_coop_autumn" + "map" "coop_autumn" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1034_var_desc" + "loc_huddescription" "#quest_1034_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1034" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1035" + { + "name" "placeholder_1035" + "gamemode" "casual" + "map" "de_ancient" + "points" "25,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %weapon_ak47% || %weapon_m4a1% || %weapon_m4a1_silencer% )" + "loc_description" "#quest_1035_var_desc" + "loc_huddescription" "#quest_1035_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1035" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1036" + { + "name" "placeholder_1036" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "10,7,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1036_var_desc" + "loc_huddescription" "#quest_1036_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1036" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1037" + { + "name" "placeholder_1037" + "gamemode" "survival" + "map" "dz_frostbite" + "points" "6,4,2" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1037_var_desc" + "loc_huddescription" "#quest_1037_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1037" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1099" + { + "name" "placeholder_1099" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "9,6,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_round_mvp%" + "loc_description" "#quest_1099_var_desc" + "loc_huddescription" "#quest_1099_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1099" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_round_mvp" + "action" "#quest_action_singular_act_round_mvp" + "target" "#emptystring" + } + } + "1038" + { + "name" "placeholder_1038" + "gamemode" "competitive" + "map" "cs_apollo" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1038_var_desc" + "loc_huddescription" "#quest_1038_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1038" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1039" + { + "name" "placeholder_1039" + "gamemode" "cooperative" + "mapgroup" "mg_cs_apollo" + "map" "cs_apollo" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1039_var_desc" + "server_exec" "execwithwhitelist guardian_op10_apollo.cfg */maps" + "loc_huddescription" "#quest_1039_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1039" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_unique_pistol" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1040" + { + "name" "placeholder_1040" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "15,8,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_secondary%" + "loc_description" "#quest_1040_var_desc" + "loc_huddescription" "#quest_1040_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1040" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1041" + { + "name" "placeholder_1041" + "gamemode" "casual" + "mapgroup" "mg_hostage" + "points" "18,9,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_deagle%" + "loc_description" "#quest_1041_var_desc" + "loc_huddescription" "#quest_1041_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1041" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1042" + { + "name" "placeholder_1042" + "gamemode" "competitive" + "map" "de_ancient" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1042_var_desc" + "loc_huddescription" "#quest_1042_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1042" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1043" + { + "name" "placeholder_1043" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1043_var_desc" + "server_exec" "execwithwhitelist guardian_op10_train_b.cfg */maps" + "loc_huddescription" "#quest_1043_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1043" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_sniperrifle" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1044" + { + "name" "placeholder_1044" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "40,20,10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%cond_victim_distance% >= 15)" + "loc_description" "#quest_1044_var_desc" + "loc_huddescription" "#quest_1044_hud_var_desc" + "show_victim_distance" "1" + "loc_name" "#op10_quest_name_1044" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1045" + { + "name" "placeholder_1045" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "10,6,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%weapon_ssg08% || %weapon_awp% || %weapon_scar20% || %weapon_g3sg1%)" + "loc_description" "#quest_1045_var_desc" + "loc_huddescription" "#quest_1045_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1045" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1046" + { + "name" "placeholder_1046" + "gamemode" "scrimcomp2v2" + "map" "de_inferno" + "points" "12,8,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1046_var_desc" + "loc_huddescription" "#quest_1046_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1046" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1047" + { + "name" "placeholder_1047" + "gamemode" "cooperative" + "mapgroup" "mg_de_inferno" + "map" "de_inferno" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1047_var_desc" + "server_exec" "execwithwhitelist guardian_op10_inferno_a.cfg */maps" + "loc_huddescription" "#quest_1047_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1047" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_M249" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "1048" + { + "name" "placeholder_1048" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "150,100,50" + "quest_icon" "test" + "operational_points" "1" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_1048_var_desc" + "loc_huddescription" "#quest_1048_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1048" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1049" + { + "name" "placeholder_1049" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "100000,50000,25000" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_income%" + "loc_description" "#quest_1049_var_desc" + "loc_huddescription" "#quest_1049_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1049" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_income" + "action" "#quest_action_singular_act_income" + "target" "#emptystring" + } + } + "1050" + { + "name" "placeholder_1050" + "gamemode" "competitive" + "map" "de_mirage" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1050_var_desc" + "loc_huddescription" "#quest_1050_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1050" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1051" + { + "name" "placeholder_1051" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1051_var_desc" + "server_exec" "execwithwhitelist guardian_op10_mirage_a.cfg */maps" + "loc_huddescription" "#quest_1051_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1051" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1052" + { + "name" "placeholder_1052" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "5,3,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_retakes_picked_enemy_card%" + "loc_description" "#quest_1052_var_desc" + "loc_huddescription" "#quest_1052_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1052" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_retakes_picked_enemy_card" + "action" "#quest_action_singular_act_retakes_picked_enemy_card" + "target" "#emptystring" + } + } + "1053" + { + "name" "placeholder_1053" + "gamemode" "casual" + "map" "de_nuke" + "points" "15,10,5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_detonate_smokegrenade% && ( ( ( %victim_location_Mini% || %victim_location_Garage% ) && %cond_player_terrorist% ) || ( %cond_player_ct% && ( %victim_location_Hut% || %victim_location_Control% ) ) )" + "loc_description" "#quest_1053_var_desc" + "loc_huddescription" "#quest_1053_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1053" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + "target" "#emptystring" + } + } + "1054" + { + "name" "placeholder_1054" + "gamemode" "scrimcomp2v2" + "map" "de_vertigo" + "points" "12,8,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1054_var_desc" + "loc_huddescription" "#quest_1054_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1054" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1055" + { + "name" "placeholder_1055" + "gamemode" "cooperative" + "mapgroup" "mg_de_vertigo" + "map" "de_vertigo" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1055_var_desc" + "server_exec" "execwithwhitelist guardian_op10_vertigo_b.cfg */maps" + "loc_huddescription" "#quest_1055_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1055" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1056" + { + "name" "placeholder_1056" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "40,20,10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Tunnel% ||%player_location_TunnelStairs% || %player_location_PalaceInterior% || %player_location_Scaffolding% )" + "loc_description" "#quest_1056_var_desc" + "loc_huddescription" "#quest_1056_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1056" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1057" + { + "name" "placeholder_1057" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "30,20,10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1057_var_desc" + "loc_huddescription" "#quest_1057_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1057" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1058" + { + "name" "placeholder_1058" + "gamemode" "competitive" + "map" "de_nuke" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1058_var_desc" + "loc_huddescription" "#quest_1058_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1058" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1059" + { + "name" "placeholder_1059" + "gamemode" "cooperative" + "mapgroup" "mg_de_nuke" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1059_var_desc" + "server_exec" "execwithwhitelist guardian_op10_nuke_b.cfg */maps" + "loc_huddescription" "#quest_1059_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1059" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1060" + { + "name" "placeholder_1060" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "60,40,20" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_smg%" + "loc_description" "#quest_1060_var_desc" + "loc_huddescription" "#quest_1060_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1060" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1061" + { + "name" "placeholder_1061" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "12,8,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_smg%" + "loc_description" "#quest_1061_var_desc" + "loc_huddescription" "#quest_1061_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1061" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1062" + { + "name" "placeholder_1062" + "gamemode" "competitive" + "map" "de_dust2" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1062_var_desc" + "loc_huddescription" "#quest_1062_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1062" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1063" + { + "name" "placeholder_1063" + "gamemode" "cooperative" + "mapgroup" "mg_de_ancient" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1063_var_desc" + "server_exec" "execwithwhitelist guardian_op10_ancient_a.cfg */maps" + "loc_huddescription" "#quest_1063_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1063" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1064" + { + "name" "placeholder_1064" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "5,3,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_retakes_picked_mvp_card%" + "loc_description" "#quest_1064_var_desc" + "loc_huddescription" "#quest_1064_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1064" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_retakes_picked_mvp_card" + "action" "#quest_action_singular_act_retakes_picked_mvp_card" + "target" "#emptystring" + } + } + "1065" + { + "name" "placeholder_1065" + "gamemode" "casual" + "map" "de_ancient" + "points" "10,7,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( ( %player_location_Middle% && %cond_player_terrorist% ) || ( ( %player_location_TSideUpper% || %player_location_Outside% ) && %cond_player_ct% ) )" + "loc_description" "#quest_1065_var_desc" + "loc_huddescription" "#quest_1065_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1065" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + "target" "#emptystring" + } + } + "1100" + { + "name" "placeholder_1100" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1100_var_desc" + "loc_huddescription" "#quest_1100_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1100" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1066" + { + "name" "placeholder_1066" + "gamemode" "competitive" + "map" "de_ancient" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1066_var_desc" + "loc_huddescription" "#quest_1066_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1066" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1067" + { + "name" "placeholder_1067" + "gamemode" "cooperative" + "mapgroup" "mg_de_overpass" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1067_var_desc" + "server_exec" "execwithwhitelist guardian_op10_overpass_a.cfg */maps" + "loc_huddescription" "#quest_1067_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1067" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1068" + { + "name" "placeholder_1068" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "7,3,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_flashbang_enemy%" + "loc_description" "#quest_1068_var_desc" + "loc_huddescription" "#quest_1068_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1068" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_flashbang_enemy" + "action" "#quest_action_singular_act_flashbang_enemy" + "target" "#emptystring" + } + } + "1069" + { + "name" "placeholder_1069" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "10,7,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( ( ( %player_location_Catwalk% || %player_location_UpperTunnel% ) && %cond_player_terrorist% ) || ( ( %player_location_LowerTunnel% || %player_location_ShortStairs% ) && %cond_player_ct% ) )" + "loc_description" "#quest_1069_var_desc" + "loc_huddescription" "#quest_1069_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1069" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + "target" "#emptystring" + } + } + "1101" + { + "name" "placeholder_1101" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1101_var_desc" + "loc_huddescription" "#quest_1101_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1101" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1070" + { + "name" "placeholder_1070" + "gamemode" "scrimcomp2v2" + "map" "de_shortdust" + "points" "12,8,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1070_var_desc" + "loc_huddescription" "#quest_1070_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1070" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1071" + { + "name" "placeholder_1071" + "gamemode" "cooperative" + "mapgroup" "mg_de_dust2" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1071_var_desc" + "server_exec" "execwithwhitelist guardian_op10_dust2_b.cfg */maps" + "loc_huddescription" "#quest_1071_hud_var_desc" + "show_victim_distance" "1" + "loc_name" "#op10_quest_name_1071" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1072" + { + "name" "placeholder_1072" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "40,20,10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%cond_victim_distance% <= 10)" + "loc_description" "#quest_1072_var_desc" + "loc_huddescription" "#quest_1072_hud_var_desc" + "show_victim_distance" "1" + "loc_name" "#op10_quest_name_1072" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1073" + { + "name" "placeholder_1073" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "30,20,10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1073_var_desc" + "loc_huddescription" "#quest_1073_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1073" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1074" + { + "name" "placeholder_1074" + "gamemode" "competitive" + "map" "de_train" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1074_var_desc" + "loc_huddescription" "#quest_1074_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1074" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1075" + { + "name" "placeholder_1075" + "gamemode" "cooperative" + "mapgroup" "mg_de_train" + "map" "de_train" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1075_var_desc" + "server_exec" "execwithwhitelist guardian_op10_train_a.cfg */maps" + "loc_huddescription" "#quest_1075_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1075" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_heavy" + "target" "#emptystring" + } + } + "1076" + { + "name" "placeholder_1076" + "gamemode" "deathmatch" + "map" "de_train" + "points" "40,20,10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1076_var_desc" + "loc_huddescription" "#quest_1076_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1076" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1077" + { + "name" "placeholder_1077" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %weapon_heavy%" + "loc_description" "#quest_1077_var_desc" + "loc_huddescription" "#quest_1077_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1077" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1102" + { + "name" "placeholder_1102" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1102_var_desc" + "loc_huddescription" "#quest_1102_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1102" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1078" + { + "name" "placeholder_1078" + "gamemode" "competitive" + "map" "de_cache" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1078_var_desc" + "loc_huddescription" "#quest_1078_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1078" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1079" + { + "name" "placeholder_1079" + "gamemode" "cooperative" + "mapgroup" "mg_de_dust2" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1079_var_desc" + "server_exec" "execwithwhitelist guardian_op10_dust2_a.cfg */maps" + "loc_huddescription" "#quest_1079_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1079" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1080" + { + "name" "placeholder_1080" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "40,20,10" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_chicken%" + "loc_description" "#quest_1080_var_desc" + "loc_huddescription" "#quest_1080_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1080" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_chicken" + "action" "#quest_action_singular_act_kill_chicken" + "target" "#emptystring" + } + } + "1081" + { + "name" "placeholder_1081" + "gamemode" "casual" + "mapgroup" "mg_skirmish_flyingscoutsman" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1081_var_desc" + "loc_huddescription" "#quest_1081_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1081" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1082" + { + "name" "placeholder_1082" + "gamemode" "scrimcomp2v2" + "map" "de_vertigo" + "points" "12,8,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1082_var_desc" + "loc_huddescription" "#quest_1082_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1082" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1083" + { + "name" "placeholder_1083" + "gamemode" "cooperative" + "mapgroup" "mg_de_vertigo" + "map" "de_vertigo" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1083_var_desc" + "server_exec" "execwithwhitelist guardian_op10_vertigo_a.cfg */maps" + "loc_huddescription" "#quest_1083_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1083" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1084" + { + "name" "placeholder_1084" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1084_var_desc" + "loc_huddescription" "#quest_1084_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1084" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1085" + { + "name" "placeholder_1085" + "gamemode" "casual" + "map" "de_vertigo" + "points" "150,100,50" + "quest_icon" "test" + "operational_points" "1" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_1085_v2_var_desc" + "loc_huddescription" "#quest_1085_v2_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1085" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1086" + { + "name" "placeholder_1086" + "gamemode" "scrimcomp2v2" + "map" "de_guard" + "points" "12,8,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1086_var_desc" + "loc_huddescription" "#quest_1086_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1086" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1087" + { + "name" "placeholder_1087" + "gamemode" "cooperative" + "mapgroup" "mg_de_mirage" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1087_var_desc" + "server_exec" "execwithwhitelist guardian_op10_mirage_b.cfg */maps" + "loc_huddescription" "#quest_1087_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1087" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1088" + { + "name" "placeholder_1088" + "gamemode" "deathmatch" + "mapgroup" "mg_dust247" + "points" "40,20,15" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( (%cond_player_ct% && (%player_location_BombsiteA% || %player_location_ARamp% || %player_location_Ramp% || %player_location_ExtendedA% || %player_location_UnderA% || %player_location_BombsiteB% || %player_location_BDoors% || %player_location_Hole% ) ) || (%cond_victim_ct% && (%victim_location_BombsiteA% || %victim_location_ARamp% || %victim_location_Ramp% || %victim_location_ExtendedA% || %victim_location_UnderA% || %victim_location_BombsiteB% || %victim_location_BDoors% || %victim_location_Hole% ) ) )" + "loc_description" "#quest_1088_var_desc" + "loc_huddescription" "#quest_1088_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1088" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1089" + { + "name" "placeholder_1089" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "15,10,5" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_player_zoomed%" + "loc_description" "#quest_1089_v2_var_desc" + "loc_huddescription" "#quest_1089_v2_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1089" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1090" + { + "name" "placeholder_1090" + "gamemode" "scrimcomp2v2" + "map" "de_elysion" + "points" "12,8,4" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1090_var_desc" + "loc_huddescription" "#quest_1090_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1090" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1091" + { + "name" "placeholder_1091" + "gamemode" "cooperative" + "mapgroup" "mg_de_engage" + "map" "de_engage" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1091_var_desc" + "server_exec" "execwithwhitelist guardian_op10_engage_b.cfg */maps" + "loc_huddescription" "#quest_1091_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1091" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1092" + { + "name" "placeholder_1092" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "600,300,150" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_dm_bonus_points%" + "loc_description" "#quest_1092_v2_var_desc" + "loc_huddescription" "#quest_1092_v2_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1092" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_dm_bonus_points" + "action" "#quest_action_singular_act_dm_bonus_points" + "target" "#emptystring" + } + } + "1093" + { + "name" "placeholder_1093" + "gamemode" "survival" + "points" "7500,5000,2500" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_spend%" + "loc_description" "#quest_1093_var_desc" + "loc_huddescription" "#quest_1093_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1093" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_spend" + "action" "#quest_action_singular_act_spend" + "target" "#emptystring" + } + } + "1094" + { + "name" "placeholder_1094" + "gamemode" "competitive" + "map" "de_ancient" + "points" "20,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1094_var_desc" + "loc_huddescription" "#quest_1094_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1094" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1095" + { + "name" "placeholder_1095" + "gamemode" "cooperative" + "mapgroup" "mg_de_ancient" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1095_v2_var_desc" + "server_exec" "execwithwhitelist guardian_op10_ancient_b.cfg */maps" + "loc_huddescription" "#quest_1095_v2_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1095" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1096" + { + "name" "placeholder_1096" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "10,7,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1096_var_desc" + "loc_huddescription" "#quest_1096_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1096" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + "target" "#emptystring" + } + } + "1097" + { + "name" "placeholder_1097" + "gamemode" "coopmission" + "mapgroup" "mg_coop_fall" + "map" "coop_fall" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_description" "#quest_1097_v2_var_desc" + "loc_huddescription" "#quest_1097_v2_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1097" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1103" + { + "name" "placeholder_1103" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "25,15,7" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_flashbang_enemy%" + "loc_description" "#quest_1103_var_desc" + "loc_huddescription" "#quest_1103_hud_var_desc" + "show_victim_distance" "0" + "loc_name" "#op10_quest_name_1103" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_flashbang_enemy" + "action" "#quest_action_singular_act_flashbang_enemy" + "target" "#emptystring" + } + } + "1200" + { + "name" "placeholder_1200" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1200_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1201" + { + "name" "placeholder_1201" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1201_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1104" + { + "name" "placeholder_1104" + "gamemode" "competitive" + "map" "lobby_mapveto" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1201|1200" + "loc_name" "#op11_quest_name_1104" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1202" + { + "name" "placeholder_1202" + "gamemode" "scrimcomp2v2" + "map" "de_extraction" + "points" "200" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_1202_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1203" + { + "name" "placeholder_1203" + "gamemode" "scrimcomp2v2" + "map" "de_extraction" + "points" "300" + "quest_icon" "test" + "operational_points" "1" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_1203_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1105" + { + "name" "placeholder_1105" + "gamemode" "scrimcomp2v2" + "map" "de_extraction" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1203|1202" + "loc_name" "#op11_quest_name_1105" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1106" + { + "name" "placeholder_1106" + "gamemode" "cooperative" + "mapgroup" "mg_dz_blacksite" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1106" + "loc_description" "#quest_1106_var_desc" + "server_exec" "execwithwhitelist guardian_op11_blacksite_1.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1204" + { + "name" "placeholder_1204" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_other% && %victim_classname_drone% && %cond_drone_enemy%" + "loc_description" "#quest_1204_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + "target" "#emptystring" + } + } + "1205" + { + "name" "placeholder_1205" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_other% && %victim_classname_prop_exploding_barrel%" + "loc_description" "#quest_1205_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + } + } + "1206" + { + "name" "placeholder_1206" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_other% && (%victim_classname_func_breakable% || %victim_classname_prop_dynamic%)" + "loc_description" "#quest_1206_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + } + } + "1207" + { + "name" "placeholder_1207" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_bumpmine_launch% && (%cond_player_x% > 4250 && %cond_player_x% < 5100) && (%cond_player_y% > 2000 && %cond_player_y% < 2700) && (%cond_player_z% >= 1800)" + "loc_description" "#quest_1207_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_bumpmine_launch" + "action" "#quest_action_singular_act_bumpmine_launch" + } + } + "1208" + { + "name" "placeholder_1208" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_rescue_hostage%" + "loc_description" "#quest_1208_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_rescue_hostage" + "action" "#quest_action_singular_act_rescue_hostage" + } + } + "1107" + { + "name" "placeholder_1107" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "5,3,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1204|1205|1206|1207|1208" + "loc_name" "#op11_quest_name_1107" + "loc_description" "#quest_1107_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_round_end" + "action" "#quest_action_singular_act_round_end" + } + } + "1209" + { + "name" "placeholder_1209" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_TSpawn% || %player_location_PalaceAlley% || %player_location_SideAlley% )" + "loc_description" "#quest_1209_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1210" + { + "name" "placeholder_1210" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_TRamp% || (%cond_player_x% > -160 && %cond_player_x% < 750 && %cond_player_y% > -1720 && %cond_player_y% < -1360) )" + "loc_description" "#quest_1210_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1211" + { + "name" "placeholder_1211" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_BombsiteA%" + "loc_description" "#quest_1211_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1212" + { + "name" "placeholder_1212" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_CTSpawn%" + "loc_description" "#quest_1212_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1213" + { + "name" "placeholder_1213" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_Shop%" + "loc_description" "#quest_1213_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1214" + { + "name" "placeholder_1214" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_BombsiteB%" + "loc_description" "#quest_1214_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1215" + { + "name" "placeholder_1215" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_Catwalk%" + "loc_description" "#quest_1215_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1216" + { + "name" "placeholder_1216" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Middle% || %player_location_TopofMid% || (%cond_player_x% > -1250 && %cond_player_x% < 550 && %cond_player_y% > -820 && %cond_player_y% < -290) )" + "loc_description" "#quest_1216_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1217" + { + "name" "placeholder_1217" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Connector% || %player_location_Jungle% || %player_location_Stairs% )" + "loc_description" "#quest_1217_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1218" + { + "name" "placeholder_1218" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_BombsiteA%" + "loc_description" "#quest_1218_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1108" + { + "name" "placeholder_1108" + "gamemode" "deathmatch" + "map" "de_mirage" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:>1211>1212>1213>1214>1215>1216>1217>1218>1210>1209" + "loc_name" "#op11_quest_name_1108" + "loc_description" "#quest_1108_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1219" + { + "name" "placeholder_1219" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "4" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && (%cond_life_killstreak_human% == 2)" + "loc_description" "#quest_1219_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1220" + { + "name" "placeholder_1220" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "30" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1220_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1109" + { + "name" "placeholder_1109" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1220|1219" + "loc_name" "#op11_quest_name_1109" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1221" + { + "name" "placeholder_1221" + "gamemode" "competitive" + "map" "de_basalt" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1221_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1222" + { + "name" "placeholder_1222" + "gamemode" "competitive" + "map" "de_basalt" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1222_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1110" + { + "name" "placeholder_1110" + "gamemode" "competitive" + "map" "de_basalt" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1222|1221" + "loc_name" "#op11_quest_name_1110" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1111" + { + "name" "placeholder_1111" + "gamemode" "cooperative" + "mapgroup" "mg_dz_sirocco" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1111" + "loc_description" "#quest_1111_var_desc" + "server_exec" "execwithwhitelist guardian_op11_sirocco_2.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1223" + { + "name" "placeholder_1223" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "30" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1223_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1224" + { + "name" "placeholder_1224" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "50" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1224_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1112" + { + "name" "placeholder_1112" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1224|1223" + "loc_name" "#op11_quest_name_1112" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1225" + { + "name" "placeholder_1225" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_damage% && %cond_damage_utility%" + "loc_description" "#quest_1225_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1226" + { + "name" "placeholder_1226" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "14" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1226_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1113" + { + "name" "placeholder_1113" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1226|1225" + "loc_name" "#op11_quest_name_1113" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1227" + { + "name" "placeholder_1227" + "gamemode" "scrimcomp2v2" + "map" "de_ravine" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_1227_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1228" + { + "name" "placeholder_1228" + "gamemode" "scrimcomp2v2" + "map" "de_ravine" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1228_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1114" + { + "name" "placeholder_1114" + "gamemode" "scrimcomp2v2" + "map" "de_ravine" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "QQ:|1228|1227" + "loc_name" "#op11_quest_name_1114" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1115" + { + "name" "placeholder_1115" + "gamemode" "cooperative" + "mapgroup" "mg_dz_blacksite" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1115" + "loc_description" "#quest_1115_var_desc" + "server_exec" "execwithwhitelist guardian_op11_blacksite_4.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_sniperrifle" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1229" + { + "name" "placeholder_1229" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "1000" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_damage%" + "loc_description" "#quest_1229_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1230" + { + "name" "placeholder_1230" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "2000" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_damage%" + "loc_description" "#quest_1230_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1116" + { + "name" "placeholder_1116" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1230|1229" + "loc_name" "#op11_quest_name_1116" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1231" + { + "name" "placeholder_1231" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_CTSpawn%" + "loc_description" "#quest_1231_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + "target" "#emptystring" + } + } + "1232" + { + "name" "placeholder_1232" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%player_location_BombsiteA% || %player_location_ARamp% || %player_location_Ramp% || %player_location_ExtendedA% || %player_location_UnderA%)" + "loc_description" "#quest_1232_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1233" + { + "name" "placeholder_1233" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_Pit%" + "loc_description" "#quest_1233_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1234" + { + "name" "placeholder_1234" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%player_location_BombsiteB% || %player_location_BDoors% || %player_location_Hole% )" + "loc_description" "#quest_1234_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1235" + { + "name" "placeholder_1235" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_MidDoors%" + "loc_description" "#quest_1235_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1236" + { + "name" "placeholder_1236" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_TSpawn%" + "loc_description" "#quest_1236_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1237" + { + "name" "placeholder_1237" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_Catwalk%" + "loc_description" "#quest_1237_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1238" + { + "name" "placeholder_1238" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_UpperTunnel%" + "loc_description" "#quest_1238_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1239" + { + "name" "placeholder_1239" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_LongDoors%" + "loc_description" "#quest_1239_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1240" + { + "name" "placeholder_1240" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && %player_location_Middle%" + "loc_description" "#quest_1240_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1117" + { + "name" "placeholder_1117" + "gamemode" "casual" + "mapgroup" "mg_dust247" + "points" "10,7,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1231|1232|1233|1234|1235|1236|1237|1238|1239|1240" + "loc_name" "#op11_quest_name_1117" + "loc_description" "#quest_1117_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1241" + { + "name" "placeholder_1241" + "gamemode" "competitive" + "map" "cs_insertion2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1241_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1242" + { + "name" "placeholder_1242" + "gamemode" "competitive" + "map" "cs_insertion2" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1242_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1118" + { + "name" "placeholder_1118" + "gamemode" "competitive" + "map" "cs_insertion2" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1242|1241" + "loc_name" "#op11_quest_name_1118" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1119" + { + "name" "placeholder_1119" + "gamemode" "cooperative" + "mapgroup" "mg_dz_sirocco" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1119" + "loc_description" "#quest_1119_var_desc" + "server_exec" "execwithwhitelist guardian_op11_sirocco_1.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_shotgun" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1243" + { + "name" "placeholder_1243" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_Outside%" + "loc_description" "#quest_1243_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1244" + { + "name" "placeholder_1244" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_BombsiteA%" + "loc_description" "#quest_1244_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1245" + { + "name" "placeholder_1245" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Lobby% || %player_location_Squeaky% || %player_location_Vending% || %player_location_Hut% )" + "loc_description" "#quest_1245_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1246" + { + "name" "placeholder_1246" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_Ramp%" + "loc_description" "#quest_1246_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1247" + { + "name" "placeholder_1247" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteB% || %player_location_Observation% || %player_location_Decon% || (%cond_player_x% > 1050 && %cond_player_x% < 1500 && %cond_player_y% > -1150 && %cond_player_y% < -650 && %cond_player_z% < -530) )" + "loc_description" "#quest_1247_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1248" + { + "name" "placeholder_1248" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Tunnels% || %player_location_Secret%)" + "loc_description" "#quest_1248_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1249" + { + "name" "placeholder_1249" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_Outside%" + "loc_description" "#quest_1249_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1250" + { + "name" "placeholder_1250" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_TSpawn%" + "loc_description" "#quest_1250_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1251" + { + "name" "placeholder_1251" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( ( (%cond_player_x% - 78)*(%cond_player_x% - 78) + (%cond_player_y% - -1660)*(%cond_player_y% - -1660) + (%cond_player_z% - 44)*(%cond_player_z% - 44) ) < (300*300) )" + "loc_description" "#quest_1251_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1252" + { + "name" "placeholder_1252" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %player_location_CTSpawn%" + "loc_description" "#quest_1252_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1120" + { + "name" "placeholder_1120" + "gamemode" "deathmatch" + "map" "de_nuke" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:>1243>1244>1245>1246>1247>1248>1249>1250>1251>1252" + "loc_name" "#op11_quest_name_1120" + "loc_description" "#quest_1120_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1253" + { + "name" "placeholder_1253" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_bullet_since_spawn% <= 5" + "loc_description" "#quest_1253_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1254" + { + "name" "placeholder_1254" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "30" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1254_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1121" + { + "name" "placeholder_1121" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1254|1253" + "loc_name" "#op11_quest_name_1121" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1255" + { + "name" "placeholder_1255" + "gamemode" "competitive" + "map" "de_dust2" + "points" "3" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "gamemodeflags" "32" + "expression" "%act_round_mvp%" + "loc_description" "#quest_1255_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_round_mvp" + "action" "#quest_action_singular_act_round_mvp" + "target" "#emptystring" + } + } + "1256" + { + "name" "placeholder_1256" + "gamemode" "competitive" + "map" "de_dust2" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1256_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1122" + { + "name" "placeholder_1122" + "gamemode" "competitive" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1256|1255" + "loc_name" "#op11_quest_name_1122" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1123" + { + "name" "placeholder_1123" + "gamemode" "cooperative" + "mapgroup" "mg_cs_insertion2" + "map" "cs_insertion2" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1123" + "loc_description" "#quest_1123_var_desc" + "server_exec" "execwithwhitelist guardian_op11_insertion2_a.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_smg" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1257" + { + "name" "placeholder_1257" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "16" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1257_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1258" + { + "name" "placeholder_1258" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "30" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1258_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1124" + { + "name" "placeholder_1124" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1258|1257" + "loc_name" "#op11_quest_name_1124" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1259" + { + "name" "placeholder_1259" + "gamemode" "survival" + "map" "dz_county" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_survivalincome% && %cond_tablet_reception_is_blocked%" + "loc_description" "#quest_1259_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_survivalincome" + "action" "#quest_action_singular_act_survivalincome" + "target" "#emptystring" + } + } + "1260" + { + "name" "placeholder_1260" + "gamemode" "survival" + "map" "dz_county" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_dz_purchase_item% && %cond_tablet_has_upgrade_highres%" + "loc_description" "#quest_1260_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_dz_purchase_item" + "action" "#quest_action_singular_act_dz_purchase_item" + } + } + "1261" + { + "name" "placeholder_1261" + "gamemode" "survival" + "map" "dz_county" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_other% && %victim_classname_dronegun%" + "loc_description" "#quest_1261_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_other" + "action" "#quest_action_singular_act_kill_other" + } + } + "1262" + { + "name" "placeholder_1262" + "gamemode" "survival" + "map" "dz_county" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_plant_bomb% && (%cond_player_x% > -3000 && %cond_player_x% < 1150) && (%cond_player_y% > -50 && %cond_player_y% < 3700)" + "loc_description" "#quest_1262_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_plant_bomb" + "action" "#quest_action_singular_act_plant_bomb" + } + } + "1263" + { + "name" "placeholder_1263" + "gamemode" "survival" + "map" "dz_county" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_damage% && %player_surface_rock%" + "loc_description" "#quest_1263_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1125" + { + "name" "placeholder_1125" + "gamemode" "survival" + "map" "dz_county" + "points" "5,3,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1259|1260|1261|1262|1263" + "loc_name" "#op11_quest_name_1125" + "loc_description" "#quest_1125_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_round_end" + "action" "#quest_action_singular_act_round_end" + } + } + "1264" + { + "name" "placeholder_1264" + "gamemode" "scrimcomp2v2" + "map" "de_shortnuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_1264_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1265" + { + "name" "placeholder_1265" + "gamemode" "scrimcomp2v2" + "map" "de_shortnuke" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1265_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1126" + { + "name" "placeholder_1126" + "gamemode" "scrimcomp2v2" + "map" "de_shortnuke" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "QQ:|1265|1264" + "loc_name" "#op11_quest_name_1126" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1127" + { + "name" "placeholder_1127" + "gamemode" "cooperative" + "mapgroup" "mg_dz_blacksite" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1127" + "loc_description" "#quest_1127_var_desc" + "server_exec" "execwithwhitelist guardian_op11_blacksite_2.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_rifle" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1266" + { + "name" "placeholder_1266" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %cond_life_killstreak_human% == 3 )" + "loc_description" "#quest_1266_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1267" + { + "name" "placeholder_1267" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %cond_life_killstreak_human% == 5 )" + "loc_description" "#quest_1267_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1268" + { + "name" "placeholder_1268" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %cond_life_killstreak_human% == 7 )" + "loc_description" "#quest_1268_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1128" + { + "name" "placeholder_1128" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "3,2,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:>1266>1267>1268" + "loc_name" "#op11_quest_name_1128" + "loc_description" "#quest_1128_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1269" + { + "name" "placeholder_1269" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "7" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_item_borrowed%" + "loc_description" "#quest_1269_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1270" + { + "name" "placeholder_1270" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "15" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_item_borrowed%" + "loc_description" "#quest_1270_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1129" + { + "name" "placeholder_1129" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1270|1269" + "loc_name" "#op11_quest_name_1129" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1271" + { + "name" "placeholder_1271" + "gamemode" "competitive" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1271_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1272" + { + "name" "placeholder_1272" + "gamemode" "competitive" + "map" "de_mirage" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1272_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1130" + { + "name" "placeholder_1130" + "gamemode" "competitive" + "map" "de_mirage" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1272|1271" + "loc_name" "#op11_quest_name_1130" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1131" + { + "name" "placeholder_1131" + "gamemode" "cooperative" + "mapgroup" "mg_dz_sirocco" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1131" + "loc_description" "#quest_1131_var_desc" + "server_exec" "execwithwhitelist guardian_op11_sirocco_5.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1273" + { + "name" "placeholder_1273" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_MidDoors% )" + "loc_description" "#quest_1273_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1274" + { + "name" "placeholder_1274" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Middle% || %player_location_Catwalk% || %player_location_ShortStairs% )" + "loc_description" "#quest_1274_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1275" + { + "name" "placeholder_1275" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_TopofMid% || %player_location_OutsideLong% )" + "loc_description" "#quest_1275_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1276" + { + "name" "placeholder_1276" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Pit% || %player_location_Side% ||( %cond_player_x% > 965 && %cond_player_x% < 1770 && %cond_player_y% > 215 && %cond_player_y% < 1200 ) )" + "loc_description" "#quest_1276_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1277" + { + "name" "placeholder_1277" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteA% || %player_location_ExtendedA% ||( %cond_player_x% > 770 && %cond_player_x% < 1790 && %cond_player_y% > 1800 && %cond_player_y% < 3060 ) )" + "loc_description" "#quest_1277_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1278" + { + "name" "placeholder_1278" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_MidDoors% )" + "loc_description" "#quest_1278_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1279" + { + "name" "placeholder_1279" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteB% || %player_location_BDoors% || %player_location_Hole% )" + "loc_description" "#quest_1279_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1280" + { + "name" "placeholder_1280" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_UppperTunnel% || %player_location_TunnelStairs% || %player_location_LowerTunnel% )" + "loc_description" "#quest_1280_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1281" + { + "name" "placeholder_1281" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_OutsideTunnel% || %player_location_TRamp% )" + "loc_description" "#quest_1281_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1282" + { + "name" "placeholder_1282" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_TSpawn% )" + "loc_description" "#quest_1282_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1132" + { + "name" "placeholder_1132" + "gamemode" "deathmatch" + "map" "de_dust2" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:>1273>1274>1275>1276>1277>1278>1279>1280>1281>1282" + "loc_name" "#op11_quest_name_1132" + "loc_description" "#quest_1132_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1283" + { + "name" "placeholder_1283" + "gamemode" "casual" + "mapgroup" "mg_skirmish_flyingscoutsman" + "points" "500" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%cond_player_airborne% ? %act_damage% : 0" + "loc_description" "#quest_1283_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1284" + { + "name" "placeholder_1284" + "gamemode" "casual" + "mapgroup" "mg_skirmish_flyingscoutsman" + "points" "1000" + "quest_icon" "test" + "operational_points" "1" + "expression" "%cond_player_airborne% ? %act_damage% : 0" + "loc_description" "#quest_1284_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1133" + { + "name" "placeholder_1133" + "gamemode" "casual" + "mapgroup" "mg_skirmish_flyingscoutsman" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1284|1283" + "loc_name" "#op11_quest_name_1133" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1285" + { + "name" "placeholder_1285" + "gamemode" "competitive" + "map" "de_inferno" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1285_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1286" + { + "name" "placeholder_1286" + "gamemode" "competitive" + "map" "de_inferno" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1286_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1134" + { + "name" "placeholder_1134" + "gamemode" "competitive" + "map" "de_inferno" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1286|1285" + "loc_name" "#op11_quest_name_1134" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1135" + { + "name" "placeholder_1135" + "gamemode" "cooperative" + "mapgroup" "mg_cs_insertion2" + "map" "cs_insertion2" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1135" + "loc_description" "#quest_1135_var_desc" + "server_exec" "execwithwhitelist guardian_op11_insertion2_b.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_shotgun" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1287" + { + "name" "placeholder_1287" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_gg_upgrade_to_knifegg%" + "loc_description" "#quest_1287_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_gg_upgrade_to_knifegg" + "action" "#quest_action_singular_act_gg_upgrade_to_knifegg" + "target" "#emptystring" + } + } + "1288" + { + "name" "placeholder_1288" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "25" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_gg_weapon_upgrade%" + "loc_description" "#quest_1288_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_gg_weapon_upgrade" + "action" "#quest_action_singular_act_gg_weapon_upgrade" + } + } + "1136" + { + "name" "placeholder_1136" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1288|1287" + "loc_name" "#op11_quest_name_1136" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_gg_weapon_upgrade" + "action" "#quest_action_singular_act_gg_weapon_upgrade" + } + } + "1289" + { + "name" "placeholder_1289" + "gamemode" "casual" + "map" "de_inferno" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_detonate_smokegrenade% && ( %cond_victim_x% > 960 && %cond_victim_x% < 1550 && %cond_victim_y% > 300 && %cond_victim_y% < 850 )" + "loc_description" "#quest_1289_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + "target" "#emptystring" + } + } + "1290" + { + "name" "placeholder_1290" + "gamemode" "casual" + "map" "de_inferno" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_detonate_smokegrenade% && %victim_location_Banana%" + "loc_description" "#quest_1290_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + } + } + "1291" + { + "name" "placeholder_1291" + "gamemode" "casual" + "map" "de_inferno" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_detonate_molotov% && %victim_location_Banana%" + "loc_description" "#quest_1291_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + } + } + "1292" + { + "name" "placeholder_1292" + "gamemode" "casual" + "map" "de_inferno" + "points" "3" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_flashbang_enemy%" + "loc_description" "#quest_1292_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + } + } + "1293" + { + "name" "placeholder_1293" + "gamemode" "casual" + "map" "de_inferno" + "points" "50" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_1293_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + } + } + "1137" + { + "name" "placeholder_1137" + "gamemode" "casual" + "map" "de_inferno" + "points" "5,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1289|1290|1291|1292|1293" + "loc_name" "#op11_quest_name_1137" + "loc_description" "#quest_1137_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_detonate_smokegrenade" + "action" "#quest_action_singular_act_detonate_smokegrenade" + } + } + "1294" + { + "name" "placeholder_1294" + "gamemode" "scrimcomp2v2" + "map" "de_shortdust" + "points" "9" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1294_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1295" + { + "name" "placeholder_1295" + "gamemode" "scrimcomp2v2" + "map" "de_shortdust" + "points" "20" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1295_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1138" + { + "name" "placeholder_1138" + "gamemode" "scrimcomp2v2" + "map" "de_shortdust" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "QQ:|1295|1294" + "loc_name" "#op11_quest_name_1138" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1139" + { + "name" "placeholder_1139" + "gamemode" "cooperative" + "mapgroup" "mg_de_basalt" + "map" "de_basalt" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1139" + "loc_description" "#quest_1139_var_desc" + "server_exec" "execwithwhitelist guardian_op11_basalt_a.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1296" + { + "name" "placeholder_1296" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > 4250 && %cond_player_x% < 5100 && %cond_player_y% > 2000 && %cond_player_y% < 2700 && %cond_player_z% >= 1800 )" + "loc_description" "#quest_1296_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + "target" "#emptystring" + } + } + "1297" + { + "name" "placeholder_1297" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > 6800 && %cond_player_x% < 7500 && %cond_player_y% > -2030 && %cond_player_y% < -1500 )" + "loc_description" "#quest_1297_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1298" + { + "name" "placeholder_1298" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > -1000 && %cond_player_x% < 0 && %cond_player_y% > -7600 && %cond_player_y% < -6900 )" + "loc_description" "#quest_1298_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1299" + { + "name" "placeholder_1299" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > -2970 && %cond_player_x% < -1390 && %cond_player_y% > 880 && %cond_player_y% < 2050 && %cond_player_z% >= 1500 )" + "loc_description" "#quest_1299_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1300" + { + "name" "placeholder_1300" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > 6000 && %cond_player_x% < 6700 && %cond_player_y% > 1700 && %cond_player_y% < 2350 )" + "loc_description" "#quest_1300_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1301" + { + "name" "placeholder_1301" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( ( (%cond_player_x% - -6291)*(%cond_player_x% - -6291) + (%cond_player_y% - 2387)*(%cond_player_y% - 2387) + (%cond_player_z% - 1009)*(%cond_player_z% - 1009) ) < (275*275) )" + "loc_description" "#quest_1301_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1302" + { + "name" "placeholder_1302" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > -7200 && %cond_player_x% < -5600 && %cond_player_y% > 5850 && %cond_player_y% < 7000 )" + "loc_description" "#quest_1302_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1303" + { + "name" "placeholder_1303" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > -5800 && %cond_player_x% < -3400 && %cond_player_y% > 5700 && %cond_player_y% < 6000 && %cond_player_z% >= 850 )" + "loc_description" "#quest_1303_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1304" + { + "name" "placeholder_1304" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > 3450 && %cond_player_x% < 4250 && %cond_player_y% > 5200 && %cond_player_y% < 6300 )" + "loc_description" "#quest_1304_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1140" + { + "name" "placeholder_1140" + "gamemode" "survival" + "map" "dz_blacksite" + "points" "9,6,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1296|1297|1298|1299|1300|1301|1302|1303|1304" + "loc_name" "#op11_quest_name_1140" + "loc_description" "#quest_1140_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1305" + { + "name" "placeholder_1305" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "2" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %weapon_deagle%" + "loc_description" "#quest_1305_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1306" + { + "name" "placeholder_1306" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "18" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_gg_weapon_upgrade%" + "loc_description" "#quest_1306_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_gg_weapon_upgrade" + "action" "#quest_action_singular_act_gg_weapon_upgrade" + } + } + "1141" + { + "name" "placeholder_1141" + "gamemode" "gungametrbomb" + "mapgroup" "mg_skirmish_demolition" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1306|1305" + "loc_name" "#op11_quest_name_1141" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_gg_weapon_upgrade" + "action" "#quest_action_singular_act_gg_weapon_upgrade" + } + } + "1307" + { + "name" "placeholder_1307" + "gamemode" "competitive" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1307_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1308" + { + "name" "placeholder_1308" + "gamemode" "competitive" + "map" "de_nuke" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1308_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1142" + { + "name" "placeholder_1142" + "gamemode" "competitive" + "map" "de_nuke" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1308|1307" + "loc_name" "#op11_quest_name_1142" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1143" + { + "name" "placeholder_1143" + "gamemode" "cooperative" + "mapgroup" "mg_dz_sirocco" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1143" + "loc_description" "#quest_1143_var_desc" + "server_exec" "execwithwhitelist guardian_op11_sirocco_4.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_Aug" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1309" + { + "name" "placeholder_1309" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Playground% )" + "loc_description" "#quest_1309_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1310" + { + "name" "placeholder_1310" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_UpperPark% )" + "loc_description" "#quest_1310_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1311" + { + "name" "placeholder_1311" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteA% || %player_location_BackofA% || %player_location_Lobby% )" + "loc_description" "#quest_1311_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1312" + { + "name" "placeholder_1312" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_SnipersNest% )" + "loc_description" "#quest_1312_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1313" + { + "name" "placeholder_1313" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteB% || %player_location_Water% || %player_location_Walkway% || %player_location_Bridge% || %player_location_Construction% || %player_location_Canal% )" + "loc_description" "#quest_1313_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1314" + { + "name" "placeholder_1314" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_TSpawn% || %player_location_Alley% || %player_location_SideAlley% )" + "loc_description" "#quest_1314_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1315" + { + "name" "placeholder_1315" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Connector% || %player_location_Tunnels% )" + "loc_description" "#quest_1315_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1316" + { + "name" "placeholder_1316" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Playground% )" + "loc_description" "#quest_1316_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1317" + { + "name" "placeholder_1317" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Fountain% )" + "loc_description" "#quest_1317_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1318" + { + "name" "placeholder_1318" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Restroom% )" + "loc_description" "#quest_1318_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1144" + { + "name" "placeholder_1144" + "gamemode" "deathmatch" + "map" "de_overpass" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:>1309>1310>1311>1312>1313>1314>1315>1316>1317>1318" + "loc_name" "#op11_quest_name_1144" + "loc_description" "#quest_1144_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1319" + { + "name" "placeholder_1319" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1319_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1320" + { + "name" "placeholder_1320" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "20" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_damage_headshot%" + "loc_description" "#quest_1320_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1145" + { + "name" "placeholder_1145" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1320|1319" + "loc_name" "#op11_quest_name_1145" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1321" + { + "name" "placeholder_1321" + "gamemode" "competitive" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1321_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1322" + { + "name" "placeholder_1322" + "gamemode" "competitive" + "map" "de_overpass" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1322_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1146" + { + "name" "placeholder_1146" + "gamemode" "competitive" + "map" "de_overpass" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1322|1321" + "loc_name" "#op11_quest_name_1146" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1147" + { + "name" "placeholder_1147" + "gamemode" "cooperative" + "mapgroup" "mg_de_basalt" + "map" "de_basalt" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1147" + "loc_description" "#quest_1147_var_desc" + "server_exec" "execwithwhitelist guardian_op11_basalt_b.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_MP9" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1323" + { + "name" "placeholder_1323" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_use_healthshot%" + "loc_description" "#quest_1323_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_use_healthshot" + "action" "#quest_action_singular_act_use_healthshot" + "target" "#emptystring" + } + } + "1324" + { + "name" "placeholder_1324" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "12" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_use_healthshot%" + "loc_description" "#quest_1324_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_use_healthshot" + "action" "#quest_action_singular_act_use_healthshot" + } + } + "1148" + { + "name" "placeholder_1148" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1324|1323" + "loc_name" "#op11_quest_name_1148" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_use_healthshot" + "action" "#quest_action_singular_act_use_healthshot" + } + } + "1325" + { + "name" "placeholder_1325" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "100" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_1325_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1326" + { + "name" "placeholder_1326" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "250" + "quest_icon" "test" + "operational_points" "1" + "expression" "%weapon_grenade% ? %act_damage% : 0" + "loc_description" "#quest_1326_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1149" + { + "name" "placeholder_1149" + "gamemode" "casual" + "mapgroup" "mg_skirmish_retakes" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1326|1325" + "loc_name" "#op11_quest_name_1149" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1327" + { + "name" "placeholder_1327" + "gamemode" "scrimcomp2v2" + "map" "de_extraction" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_1327_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1328" + { + "name" "placeholder_1328" + "gamemode" "scrimcomp2v2" + "map" "de_extraction" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1328_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1150" + { + "name" "placeholder_1150" + "gamemode" "scrimcomp2v2" + "map" "de_extraction" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "QQ:|1328|1327" + "loc_name" "#op11_quest_name_1150" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1151" + { + "name" "placeholder_1151" + "gamemode" "cooperative" + "mapgroup" "mg_dz_blacksite" + "map" "dz_blacksite" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1151" + "loc_description" "#quest_1151_var_desc" + "server_exec" "execwithwhitelist guardian_op11_blacksite_3.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_smg" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1329" + { + "name" "placeholder_1329" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%cond_life_killstreak_human% == 3)" + "loc_description" "#quest_1329_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1330" + { + "name" "placeholder_1330" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%cond_life_killstreak_human% == 4)" + "loc_description" "#quest_1330_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1331" + { + "name" "placeholder_1331" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && (%cond_life_killstreak_human% == 5)" + "loc_description" "#quest_1331_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1152" + { + "name" "placeholder_1152" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "3,2,1" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:>1329>1330>1331" + "loc_name" "#op11_quest_name_1152" + "loc_description" "#quest_1152_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1332" + { + "name" "placeholder_1332" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_match_unique_weapon%" + "loc_description" "#quest_1332_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1333" + { + "name" "placeholder_1333" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "20" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_match_unique_weapon%" + "loc_description" "#quest_1333_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1153" + { + "name" "placeholder_1153" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1333|1332" + "loc_name" "#op11_quest_name_1153" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1334" + { + "name" "placeholder_1334" + "gamemode" "competitive" + "map" "de_vertigo" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1334_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1335" + { + "name" "placeholder_1335" + "gamemode" "competitive" + "map" "de_vertigo" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1335_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1154" + { + "name" "placeholder_1154" + "gamemode" "competitive" + "map" "de_vertigo" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1335|1334" + "loc_name" "#op11_quest_name_1154" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1155" + { + "name" "placeholder_1155" + "gamemode" "cooperative" + "mapgroup" "mg_de_ravine" + "map" "de_ravine" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1155" + "loc_description" "#quest_1155_var_desc" + "server_exec" "execwithwhitelist guardian_op11_ravine.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_enemy_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1336" + { + "name" "placeholder_1336" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Middle% || %player_location_TopofMid% )" + "loc_description" "#quest_1336_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1337" + { + "name" "placeholder_1337" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteA% || %player_location_BackHall% || %player_location_SideHall% )" + "loc_description" "#quest_1337_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1338" + { + "name" "placeholder_1338" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_CTSpawn% )" + "loc_description" "#quest_1338_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1339" + { + "name" "placeholder_1339" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_House% )" + "loc_description" "#quest_1339_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1340" + { + "name" "placeholder_1340" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteB% || %player_location_Alley% || %player_location_SideEntrance% || %player_location_Ramp% )" + "loc_description" "#quest_1340_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1341" + { + "name" "placeholder_1341" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Ruins% || %player_location_Water% || %player_location_Tunnel% )" + "loc_description" "#quest_1341_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1342" + { + "name" "placeholder_1342" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_TSpawn% || %player_location_Outside% )" + "loc_description" "#quest_1342_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1343" + { + "name" "placeholder_1343" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_MainHall% )" + "loc_description" "#quest_1343_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1344" + { + "name" "placeholder_1344" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_BombsiteA% || %player_location_BackHall% || %player_location_SideHall% )" + "loc_description" "#quest_1344_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1345" + { + "name" "placeholder_1345" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && ( %player_location_Middle% || %player_location_TopofMid% )" + "loc_description" "#quest_1345_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1156" + { + "name" "placeholder_1156" + "gamemode" "deathmatch" + "map" "de_ancient" + "points" "10" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:>1336>1337>1338>1339>1340>1341>1342>1343>1344>1345" + "loc_name" "#op11_quest_name_1156" + "loc_description" "#quest_1156_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1346" + { + "name" "placeholder_1346" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > -350 && %cond_player_x% < 150 && %cond_player_y% > -1000 && %cond_player_y% < -350)" + "loc_description" "#quest_1346_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + "target" "#emptystring" + } + } + "1347" + { + "name" "placeholder_1347" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( ( (%cond_player_x% - 2487)*(%cond_player_x% - 2487) + (%cond_player_y% - -447)*(%cond_player_y% - -447) ) <= (450*450) )" + "loc_description" "#quest_1347_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1348" + { + "name" "placeholder_1348" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > 5500 && %cond_player_x% < 6350 && %cond_player_y% > 2600 && %cond_player_y% < 3600 )" + "loc_description" "#quest_1348_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1349" + { + "name" "placeholder_1349" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( ( (%cond_player_x% - 6721)*(%cond_player_x% - 6721) + (%cond_player_y% - 5685)*(%cond_player_y% - 5685) ) <= (320*320) )" + "loc_description" "#quest_1349_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1350" + { + "name" "placeholder_1350" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > -526 && %cond_player_x% < 1982 && %cond_player_y% > 5400 && %cond_player_y% < 8321 )" + "loc_description" "#quest_1350_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1351" + { + "name" "placeholder_1351" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > -6900 && %cond_player_x% < -6075 && %cond_player_y% > 3175 && %cond_player_y% < 3735 )" + "loc_description" "#quest_1351_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1352" + { + "name" "placeholder_1352" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( ( (%cond_player_x% - -6878)*(%cond_player_x% - -6878) + (%cond_player_y% - -320)*(%cond_player_y% - -320) ) <= (400*400) )" + "loc_description" "#quest_1352_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1353" + { + "name" "placeholder_1353" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && ( %cond_player_z% >= 800 ) && ( ( (%cond_player_x% - 3977)*(%cond_player_x% - 3977) + (%cond_player_y% - -6688)*(%cond_player_y% - -6688) ) <= (250*250) )" + "loc_description" "#quest_1353_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1354" + { + "name" "placeholder_1354" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_apply_graffiti% && (%cond_player_x% > 466 && %cond_player_x% < 1629 && %cond_player_y% > -4861 && %cond_player_y% < -4037 )" + "loc_description" "#quest_1354_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1157" + { + "name" "placeholder_1157" + "gamemode" "survival" + "map" "dz_sirocco" + "points" "9,6,3" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1346|1347|1348|1349|1350|1351|1352|1353|1354" + "loc_name" "#op11_quest_name_1157" + "loc_description" "#quest_1157_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_apply_graffiti" + "action" "#quest_action_singular_act_apply_graffiti" + } + } + "1355" + { + "name" "placeholder_1355" + "gamemode" "competitive" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1355_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1356" + { + "name" "placeholder_1356" + "gamemode" "competitive" + "map" "de_ancient" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1356_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1158" + { + "name" "placeholder_1158" + "gamemode" "competitive" + "map" "de_ancient" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1356|1355" + "loc_name" "#op11_quest_name_1158" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1159" + { + "name" "placeholder_1159" + "gamemode" "cooperative" + "mapgroup" "mg_dz_county" + "map" "dz_county" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1159" + "loc_description" "#quest_1159_var_desc" + "server_exec" "execwithwhitelist guardian_op11_county_1.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#SFUI_WPNHUD_BreachCharge" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1357" + { + "name" "placeholder_1357" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "30" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %cond_player_zoomed%" + "loc_description" "#quest_1357_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1358" + { + "name" "placeholder_1358" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "60" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human% && %cond_player_zoomed%" + "loc_description" "#quest_1358_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1160" + { + "name" "placeholder_1160" + "gamemode" "deathmatch" + "mapgroup" "mg_casualdelta" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1358|1357" + "loc_name" "#op11_quest_name_1160" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1359" + { + "name" "placeholder_1359" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && (%cond_roundstate_time_elapsed% <=30)" + "loc_description" "#quest_1359_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1360" + { + "name" "placeholder_1360" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "25" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1360_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1161" + { + "name" "placeholder_1161" + "gamemode" "casual" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1360|1359" + "loc_name" "#op11_quest_name_1161" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1361" + { + "name" "placeholder_1361" + "gamemode" "scrimcomp2v2" + "map" "de_ravine" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_match%" + "loc_description" "#quest_1361_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1362" + { + "name" "placeholder_1362" + "gamemode" "scrimcomp2v2" + "map" "de_ravine" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_win_round%" + "loc_description" "#quest_1362_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1162" + { + "name" "placeholder_1162" + "gamemode" "scrimcomp2v2" + "map" "de_ravine" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "QQ:|1362|1361" + "loc_name" "#op11_quest_name_1162" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1163" + { + "name" "placeholder_1163" + "gamemode" "cooperative" + "mapgroup" "mg_de_extraction" + "map" "de_extraction" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1163" + "loc_description" "#quest_1163_var_desc" + "server_exec" "execwithwhitelist guardian_op11_extraction.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_LoadoutSlot_Heavy" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1363" + { + "name" "placeholder_1363" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "5" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && (%cond_victim_armsrace_leader%)" + "loc_description" "#quest_1363_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1364" + { + "name" "placeholder_1364" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "30" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1364_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1164" + { + "name" "placeholder_1164" + "gamemode" "gungameprogressive" + "mapgroup" "mg_skirmish_armsrace" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "expression" "QQ:|1364|1363" + "loc_name" "#op11_quest_name_1164" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1365" + { + "name" "placeholder_1365" + "gamemode" "casual" + "mapgroup" "mg_hostage" + "points" "1000" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_damage%" + "loc_description" "#quest_1365_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + "target" "#emptystring" + } + } + "1366" + { + "name" "placeholder_1366" + "gamemode" "casual" + "mapgroup" "mg_hostage" + "points" "2500" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_damage%" + "loc_description" "#quest_1366_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1165" + { + "name" "placeholder_1165" + "gamemode" "casual" + "mapgroup" "mg_hostage" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1366|1365" + "loc_name" "#op11_quest_name_1165" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_damage" + "action" "#quest_action_singular_act_damage" + } + } + "1367" + { + "name" "placeholder_1367" + "gamemode" "competitive" + "map" "de_basalt" + "points" "1" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_match%" + "loc_description" "#quest_1367_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "target" "#emptystring" + } + } + "1368" + { + "name" "placeholder_1368" + "gamemode" "competitive" + "map" "de_basalt" + "points" "21" + "quest_icon" "test" + "operational_points" "1" + "gamemodeflags" "32" + "expression" "%act_win_round%" + "loc_description" "#quest_1368_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1166" + { + "name" "placeholder_1166" + "gamemode" "competitive" + "map" "de_basalt" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "gamemodeflags" "32" + "expression" "QQ:|1368|1367" + "loc_name" "#op11_quest_name_1166" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_round" + "action" "#quest_action_singular_act_win_round" + } + } + "1167" + { + "name" "placeholder_1167" + "gamemode" "cooperative" + "mapgroup" "mg_dz_county" + "map" "dz_county" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "%act_win_match%" + "loc_name" "#op11_quest_name_1167" + "loc_description" "#quest_1167_var_desc" + "server_exec" "execwithwhitelist guardian_op11_county_2.cfg */maps" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_win_match" + "action" "#quest_action_singular_act_win_match" + "weapon" "#quest_weapon_any_weapon" + "team" "#quest_team_ct" + "killtype" "#quest_killtype_normal" + "extradetails" "#quest_guardian_empty" + "presence" "#quest_presence_empty" + "target" "#emptystring" + } + } + "1369" + { + "name" "placeholder_1369" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "30" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && %set_op11_characters%" + "loc_description" "#quest_1369_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1370" + { + "name" "placeholder_1370" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "100" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1370_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1168" + { + "name" "placeholder_1168" + "gamemode" "deathmatch" + "mapgroup" "mg_casualsigma" + "points" "1" + "quest_icon" "test" + "operational_points" "2" + "expression" "QQ:|1370|1369" + "loc_name" "#op11_quest_name_1168" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1371" + { + "name" "placeholder_1371" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "7" + "quest_icon" "test" + "operational_points" "1" + "singlematch" "1" + "expression" "%act_kill_human% && (%set_dust_2_2021% || %set_mirage_2021% || %set_vertigo_2021% || %set_train_2021% || %set_community_29%)" + "loc_description" "#quest_1371_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + "target" "#emptystring" + } + } + "1372" + { + "name" "placeholder_1372" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "25" + "quest_icon" "test" + "operational_points" "1" + "expression" "%act_kill_human%" + "loc_description" "#quest_1372_var_desc" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + "1169" + { + "name" "placeholder_1169" + "gamemode" "casual" + "mapgroup" "mg_casualdelta" + "points" "1" + "quest_icon" "test" + "operational_points" "3" + "expression" "QQ:|1372|1371" + "loc_name" "#op11_quest_name_1169" + "show_victim_distance" "0" + "string_tokens" + { + "commandverb" "#quest_commandverb_default" + "actions" "#quest_action_plural_act_kill_human" + "action" "#quest_action_singular_act_kill_human" + } + } + } + "campaign_definitions" + { + "1" + { + "loc_name" "#csgo_campaign_eurasia" + "loc_description" "#csgo_campaign_eurasia_desc" + "season_number" "4" + "2" + { + "quest_index" "102" + "->" "4" + "->" "10" + } + "4" + { + "quest_index" "104" + "->" "5" + } + "5" + { + "quest_index" "105" + "->" "6" + } + "6" + { + "quest_index" "106" + "->" "7" + } + "7" + { + "quest_index" "107" + "->" "21" + } + "8" + { + "quest_index" "108" + "->" "9" + } + "9" + { + "quest_index" "109" + } + "10" + { + "quest_index" "110" + "->" "11" + "->" "16" + } + "11" + { + "quest_index" "111" + "->" "12" + } + "12" + { + "quest_index" "112" + "->" "13" + } + "13" + { + "quest_index" "113" + "->" "22" + } + "14" + { + "quest_index" "114" + "->" "15" + } + "15" + { + "quest_index" "115" + } + "16" + { + "quest_index" "116" + "->" "17" + } + "17" + { + "quest_index" "117" + "->" "18" + } + "18" + { + "quest_index" "118" + "->" "23" + } + "19" + { + "quest_index" "119" + "->" "20" + } + "20" + { + "quest_index" "120" + } + "21" + { + "quest_index" "121" + "->" "8" + } + "22" + { + "quest_index" "122" + "->" "21" + "->" "14" + } + "23" + { + "quest_index" "123" + "->" "22" + "->" "19" + } + } + "2" + { + "loc_name" "#csgo_campaign_vanguard" + "loc_description" "#csgo_campaign_vanguard_desc" + "season_number" "4" + "1" + { + "quest_index" "201" + "->" "3" + "->" "9" + } + "3" + { + "quest_index" "203" + "->" "4" + } + "4" + { + "quest_index" "204" + "->" "5" + } + "5" + { + "quest_index" "205" + "->" "6" + } + "6" + { + "quest_index" "206" + "->" "20" + } + "7" + { + "quest_index" "207" + "->" "8" + } + "8" + { + "quest_index" "208" + } + "9" + { + "quest_index" "209" + "->" "10" + "->" "15" + } + "10" + { + "quest_index" "210" + "->" "11" + } + "11" + { + "quest_index" "211" + "->" "12" + } + "12" + { + "quest_index" "212" + "->" "21" + } + "13" + { + "quest_index" "213" + "->" "14" + } + "14" + { + "quest_index" "214" + } + "15" + { + "quest_index" "215" + "->" "16" + } + "16" + { + "quest_index" "216" + "->" "17" + } + "17" + { + "quest_index" "217" + "->" "22" + "->" "12" + } + "18" + { + "quest_index" "218" + "->" "19" + } + "19" + { + "quest_index" "219" + } + "20" + { + "quest_index" "220" + "->" "7" + } + "21" + { + "quest_index" "221" + "->" "7" + "->" "13" + } + "22" + { + "quest_index" "222" + "->" "18" + } + } + "3" + { + "loc_name" "#csgo_campaign_maghreb" + "loc_description" "#csgo_campaign_maghreb_desc" + "season_number" "4" + "1" + { + "quest_index" "301" + "->" "2" + } + "2" + { + "quest_index" "302" + "->" "3" + "->" "9" + } + "3" + { + "quest_index" "303" + "->" "4" + } + "4" + { + "quest_index" "304" + "->" "5" + } + "5" + { + "quest_index" "305" + "->" "6" + } + "6" + { + "quest_index" "306" + "->" "7" + } + "7" + { + "quest_index" "307" + "->" "8" + } + "8" + { + "quest_index" "308" + } + "9" + { + "quest_index" "309" + "->" "10" + "->" "15" + "->" "16" + } + "10" + { + "quest_index" "310" + "->" "11" + } + "11" + { + "quest_index" "311" + "->" "12" + } + "12" + { + "quest_index" "312" + "->" "13" + "->" "6" + } + "13" + { + "quest_index" "313" + "->" "14" + } + "14" + { + "quest_index" "314" + } + "15" + { + "quest_index" "315" + "->" "17" + } + "16" + { + "quest_index" "316" + "->" "17" + } + "17" + { + "quest_index" "317" + "->" "18" + "->" "19" + "->" "12" + } + "18" + { + "quest_index" "318" + "->" "20" + } + "19" + { + "quest_index" "319" + "->" "20" + } + "20" + { + "quest_index" "320" + "->" "21" + } + "21" + { + "quest_index" "321" + } + } + "4" + { + "loc_name" "#csgo_campaign_weapons" + "loc_description" "#csgo_campaign_weapons_desc" + "season_number" "4" + "1" + { + "quest_index" "401" + "->" "2" + "->" "9" + } + "2" + { + "quest_index" "402" + "->" "3" + } + "3" + { + "quest_index" "403" + "->" "4" + } + "4" + { + "quest_index" "404" + "->" "5" + } + "5" + { + "quest_index" "405" + "->" "6" + } + "6" + { + "quest_index" "406" + "->" "7" + } + "7" + { + "quest_index" "407" + "->" "8" + } + "8" + { + "quest_index" "408" + } + "9" + { + "quest_index" "409" + "->" "10" + "->" "16" + } + "10" + { + "quest_index" "410" + "->" "4" + "->" "11" + } + "11" + { + "quest_index" "411" + "->" "12" + } + "12" + { + "quest_index" "412" + "->" "13" + "->" "6" + } + "13" + { + "quest_index" "413" + "->" "14" + } + "14" + { + "quest_index" "414" + "->" "15" + } + "15" + { + "quest_index" "415" + } + "16" + { + "quest_index" "416" + "->" "17" + } + "17" + { + "quest_index" "417" + "->" "18" + } + "18" + { + "quest_index" "418" + "->" "19" + } + "19" + { + "quest_index" "419" + "->" "20" + "->" "14" + } + "20" + { + "quest_index" "420" + "->" "21" + } + "21" + { + "quest_index" "421" + } + } + "5" + { + "loc_name" "#csgo_campaign_marksman" + "loc_description" "#csgo_campaign_marksman_desc" + "season_number" "5" + "1" + { + "quest_index" "501" + "->" "2" + "->" "6" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_501" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_501_radio.mp3" + } + } + "2" + { + "quest_index" "502" + "->" "3" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_502_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_502_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_502" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_502_radio.mp3" + } + } + "3" + { + "quest_index" "503" + "->" "4" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_503" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_503_radio.mp3" + } + } + "4" + { + "quest_index" "504" + "->" "5" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_504_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_504_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_504" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_504_radio.mp3" + } + } + "5" + { + "quest_index" "505" + "->" "10" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_505_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_505_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_505" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_505_radio.mp3" + } + } + "6" + { + "quest_index" "506" + "->" "7" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_506_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_506_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_506" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_506_radio.mp3" + } + } + "7" + { + "quest_index" "507" + "->" "8" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_507" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_507_radio.mp3" + } + } + "8" + { + "quest_index" "508" + "->" "9" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_508" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_508_radio.mp3" + } + } + "9" + { + "quest_index" "509" + "->" "10" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_509_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_509_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_509" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_509_radio.mp3" + } + } + "10" + { + "quest_index" "510" + "->" "11" + "->" "29" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_510" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_510_radio.mp3" + } + } + "11" + { + "quest_index" "511" + "->" "12" + "->" "18" + "->" "26" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_511" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_511_radio.mp3" + } + } + "12" + { + "quest_index" "512" + "->" "13" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_512_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_512_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_512" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_512_radio.mp3" + } + } + "13" + { + "quest_index" "513" + "->" "14" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_513_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_513_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_513" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_513_radio.mp3" + } + } + "14" + { + "quest_index" "514" + "->" "15" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_514" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_514_radio.mp3" + } + } + "15" + { + "quest_index" "515" + "->" "16" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_515" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_515_radio.mp3" + } + } + "16" + { + "quest_index" "516" + "->" "17" + "->" "21" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_516_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_516_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_516" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_516_radio.mp3" + } + } + "17" + { + "quest_index" "517" + "->" "25" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_517_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_517_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_517" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_517_radio.mp3" + } + } + "18" + { + "quest_index" "518" + "->" "19" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_518" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_518_radio.mp3" + } + } + "19" + { + "quest_index" "519" + "->" "20" + "->" "14" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_519" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_519_radio.mp3" + } + } + "20" + { + "quest_index" "520" + "->" "21" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_520_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_520_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_520" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_520_radio.mp3" + } + } + "21" + { + "quest_index" "521" + "->" "22" + "->" "27" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_521_new_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_521_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_521_new" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_521_new_radio.mp3" + } + } + "22" + { + "quest_index" "522" + "->" "23" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_521" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_521_radio.mp3" + } + } + "23" + { + "quest_index" "523" + "->" "24" + "->" "28" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_524" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_524_radio.mp3" + } + } + "24" + { + "quest_index" "524" + "->" "25" + "story_block" + { + "expression" " %525% " + "character_name" "Hennequet" + "description" "Op_Bloodhound_sebastien_525_turner" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_525_turner_radio.mp3" + } + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_525" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_525_radio.mp3" + } + } + "25" + { + "quest_index" "525" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_526" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_526_radio.mp3" + } + } + "26" + { + "quest_index" "526" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_526_new" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_526_new_radio.mp3" + } + } + "27" + { + "quest_index" "527" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_527" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_527_radio.mp3" + } + } + "28" + { + "quest_index" "528" + "story_block" + { + "character_name" "Hennequet" + "description" "Op_bloodhound_Sebastien_528" + "content_file" "type:audio,file:campaign/bloodhound/sebastien/op_bloodhound_sebastien_528_radio.mp3" + } + } + "29" + { + "quest_index" "529" + "->" "30" + "story_block" + { + "character_name" "Booth" + "description" "Op_bloodhound_Booth_529" + "content_file" "type:audio,file:campaign/bloodhound/booth/op_bloodhound_booth_529_radio.mp3" + } + } + "30" + { + "quest_index" "530" + "->" "31" + "story_block" + { + "character_name" "Booth" + "description" "Op_bloodhound_Booth_530" + "content_file" "type:audio,file:campaign/bloodhound/booth/op_bloodhound_booth_530_radio.mp3" + } + } + "31" + { + "quest_index" "531" + "story_block" + { + "expression" " %525% " + "character_name" "Booth" + "description" "Op_Bloodhound_booth_531_turner" + "content_file" "type:audio,file:campaign/bloodhound/booth/op_bloodhound_booth_531_turner_radio.mp3" + } + "story_block" + { + "character_name" "Booth" + "description" "Op_bloodhound_Booth_531" + "content_file" "type:audio,file:campaign/bloodhound/booth/op_bloodhound_booth_531_radio.mp3" + } + } + } + "6" + { + "loc_name" "#csgo_campaign_revolution" + "loc_description" "#csgo_campaign_revolution_desc" + "season_number" "5" + "1" + { + "quest_index" "601" + "->" "2" + "->" "6" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_Two_Sides_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/op_bloodhound_Valeria_Two_Sides.mp3" + } + } + "2" + { + "quest_index" "602" + "->" "3" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_spark_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/op_bloodhound_Valeria_spark.mp3" + } + } + "3" + { + "quest_index" "603" + "->" "4" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_Flames_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_Flames.mp3" + } + } + "4" + { + "quest_index" "604" + "->" "5" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_tyrants_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_tyrants.mp3" + } + } + "5" + { + "quest_index" "605" + "->" "10" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_booth_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_booth.mp3" + } + } + "6" + { + "quest_index" "606" + "->" "7" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_smg_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_smg.mp3" + } + } + "7" + { + "quest_index" "607" + "->" "8" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_knife_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_knife.mp3" + } + } + "8" + { + "quest_index" "608" + "->" "9" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_open_house_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_open_house.mp3" + } + } + "9" + { + "quest_index" "609" + "->" "10" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_rebirth_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_rebirth.mp3" + } + } + "10" + { + "quest_index" "610" + "->" "11" + "->" "12" + "->" "29" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_labels_turner" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_labels_turner.mp3" + } + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_meet_mentor_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_meet_mentor.mp3" + } + } + "11" + { + "quest_index" "611" + "->" "26" + "->" "18" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_dead_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_dead_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_intro" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_intro.mp3" + } + } + "12" + { + "quest_index" "612" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_loyalty_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_loyalty.mp3" + } + } + "13" + { + "quest_index" "613" + "->" "14" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_resources_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_resources.mp3" + } + } + "14" + { + "quest_index" "614" + "->" "15" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_conflict_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_conflict.mp3" + } + } + "15" + { + "quest_index" "615" + "->" "16" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_role_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_role_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_bloodhound_turner_AWP" + "content_file" "type:audio,file:campaign/bloodhound/turner/op_bloodhound_turner_AWP.mp3" + } + } + "16" + { + "quest_index" "616" + "->" "17" + "->" "27" + "story_block" + { + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_message_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_message.mp3" + } + } + "17" + { + "quest_index" "617" + "->" "25" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_pollock_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_pollock_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_headshot" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_headshot.mp3" + } + } + "18" + { + "quest_index" "618" + "->" "19" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_underhill_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_underhill_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_prodigy" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_prodigy.mp3" + } + } + "19" + { + "quest_index" "619" + "->" "27" + "->" "14" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_maghreb_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_maghreb_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_hero" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_hero.mp3" + } + } + "20" + { + "quest_index" "620" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_bank_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_bank_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_booth" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_booth.mp3" + } + } + "21" + { + "quest_index" "621" + "->" "22" + "->" "20" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_fruitless_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_fruitless_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_chaos" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_chaos.mp3" + } + } + "22" + { + "quest_index" "622" + "->" "23" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_fear_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_fear_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_valeria" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_valeria.mp3" + } + } + "23" + { + "quest_index" "623" + "->" "24" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_elysee_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_elysee_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_underhill" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_underhill.mp3" + } + } + "24" + { + "quest_index" "624" + "->" "25" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_history_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_history_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_shame" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_shame.mp3" + } + } + "25" + { + "quest_index" "625" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_blunt_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_blunt_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_blunt" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_blunt.mp3" + } + } + "26" + { + "quest_index" "627" + "->" "13" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_journalist_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_journalist_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_journalist" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_journalist.mp3" + } + } + "27" + { + "quest_index" "626" + "->" "21" + "story_block" + { + "expression" " %525% " + "character_name" "Valeria" + "description" "Op_bloodhound_Valeria_cobble_turner_sub" + "content_file" "type:audio,file:campaign/bloodhound/valeria/Op_bloodhound_Valeria_cobble_turner.mp3" + } + "story_block" + { + "character_name" "Turner" + "description" "Op_Bloodhound_Turner_cobble" + "content_file" "type:audio,file:campaign/bloodhound/turner/Op_Bloodhound_Turner_cobble.mp3" + } + } + "29" + { + "quest_index" "629" + "->" "30" + "story_block" + { + "character_name" "Booth" + "description" "op_bloodhound_booth_Spend_sub" + "content_file" "type:audio,file:campaign/bloodhound/booth/op_bloodhound_booth_spend.mp3" + } + } + "30" + { + "quest_index" "630" + "->" "31" + "story_block" + { + "character_name" "Booth" + "description" "op_bloodhound_booth_flash_sub" + "content_file" "type:audio,file:campaign/bloodhound/booth/op_bloodhound_booth_flash.mp3" + } + } + "31" + { + "quest_index" "631" + "story_block" + { + "character_name" "Booth" + "description" "op_bloodhound_booth_bomb_sub" + "content_file" "type:audio,file:campaign/bloodhound/booth/op_bloodhound_booth_bomb.mp3" + } + } + } + "7" + { + "loc_name" "#csgo_campaign_7" + "loc_description" "#csgo_campaign_7_desc" + "season_number" "6" + "1" + { + "quest_index" "701" + "->" "2" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_701" + "content_file" "type:audio,file:campaign/op07/op07_701.mp3" + } + } + "2" + { + "quest_index" "702" + "->" "3" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_702" + "content_file" "type:audio,file:campaign/op07/op07_702.mp3" + } + } + "3" + { + "quest_index" "703" + "->" "4" + "->" "5" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_703" + "content_file" "type:audio,file:campaign/op07/op07_703.mp3" + } + } + "4" + { + "quest_index" "704" + "->" "6" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_704" + "content_file" "type:audio,file:campaign/op07/op07_704.mp3" + } + } + "5" + { + "quest_index" "705" + "->" "6" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_705" + "content_file" "type:audio,file:campaign/op07/op07_705.mp3" + } + } + "6" + { + "quest_index" "706" + "->" "7" + "->" "8" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_706" + "content_file" "type:audio,file:campaign/op07/op07_706.mp3" + } + } + "7" + { + "quest_index" "707" + "->" "9" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_707" + "content_file" "type:audio,file:campaign/op07/op07_707.mp3" + } + } + "8" + { + "quest_index" "708" + "->" "9" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_708" + "content_file" "type:audio,file:campaign/op07/op07_708.mp3" + } + } + "9" + { + "quest_index" "709" + "->" "10" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_709" + "content_file" "type:audio,file:campaign/op07/op07_709.mp3" + } + } + "10" + { + "quest_index" "710" + "->" "11" + "->" "14" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_710" + "content_file" "type:audio,file:campaign/op07/op07_710.mp3" + } + } + "11" + { + "quest_index" "711" + "->" "12" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_711" + "content_file" "type:audio,file:campaign/op07/op07_711.mp3" + } + } + "12" + { + "quest_index" "712" + "->" "13" + "->" "15" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_712" + "content_file" "type:audio,file:campaign/op07/op07_712.mp3" + } + } + "13" + { + "quest_index" "713" + "->" "17" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_713" + "content_file" "type:audio,file:campaign/op07/op07_713.mp3" + } + } + "14" + { + "quest_index" "714" + "->" "15" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_714" + "content_file" "type:audio,file:campaign/op07/op07_714.mp3" + } + } + "15" + { + "quest_index" "715" + "->" "16" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_715" + "content_file" "type:audio,file:campaign/op07/op07_715.mp3" + } + } + "16" + { + "quest_index" "716" + "->" "17" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_716" + "content_file" "type:audio,file:campaign/op07/op07_716.mp3" + } + } + "17" + { + "quest_index" "717" + "->" "18" + "->" "19" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_717" + "content_file" "type:audio,file:campaign/op07/op07_717.mp3" + } + } + "18" + { + "quest_index" "718" + "->" "20" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_718" + "content_file" "type:audio,file:campaign/op07/op07_718.mp3" + } + } + "19" + { + "quest_index" "719" + "->" "20" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_719" + "content_file" "type:audio,file:campaign/op07/op07_719.mp3" + } + } + "20" + { + "quest_index" "720" + "->" "24" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_720" + "content_file" "type:audio,file:campaign/op07/op07_720.mp3" + } + } + "21" + { + "quest_index" "721" + "->" "25" + "->" "26" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_722" + "content_file" "type:audio,file:campaign/op07/op07_722.mp3" + } + } + "22" + { + "quest_index" "722" + "->" "21" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_723" + "content_file" "type:audio,file:campaign/op07/op07_723.mp3" + } + } + "23" + { + "quest_index" "723" + "->" "21" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_724" + "content_file" "type:audio,file:campaign/op07/op07_724.mp3" + } + } + "24" + { + "quest_index" "724" + "->" "22" + "->" "23" + } + "25" + { + "quest_index" "725" + "->" "28" + } + "26" + { + "quest_index" "726" + "->" "29" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_727" + "content_file" "type:audio,file:campaign/op07/op07_727.mp3" + } + } + "27" + { + "quest_index" "727" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_728" + "content_file" "type:audio,file:campaign/op07/op07_728.mp3" + } + } + "28" + { + "quest_index" "728" + "->" "30" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_729" + "content_file" "type:audio,file:campaign/op07/op07_729.mp3" + } + } + "29" + { + "quest_index" "729" + "->" "27" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_730" + "content_file" "type:audio,file:campaign/op07/op07_730.mp3" + } + } + "30" + { + "quest_index" "730" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_731" + "content_file" "type:audio,file:campaign/op07/op07_731.mp3" + } + } + } + "8" + { + "loc_name" "#csgo_campaign_8" + "loc_description" "#csgo_campaign_8_desc" + "season_number" "6" + "1" + { + "quest_index" "801" + "->" "2" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_801" + "content_file" "type:audio,file:campaign/op07/op07_801.mp3" + } + } + "2" + { + "quest_index" "802" + "->" "3" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_802" + "content_file" "type:audio,file:campaign/op07/op07_802.mp3" + } + } + "3" + { + "quest_index" "803" + "->" "4" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_803" + "content_file" "type:audio,file:campaign/op07/op07_803.mp3" + } + } + "4" + { + "quest_index" "804" + "->" "5" + "->" "8" + "->" "29" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_804" + "content_file" "type:audio,file:campaign/op07/op07_804.mp3" + } + } + "5" + { + "quest_index" "805" + "->" "6" + "story_block" + { + "character_name" "Kincaide" + "description" "op07_subtitle_805" + "content_file" "type:audio,file:campaign/op07/op07_805.mp3" + } + } + "6" + { + "quest_index" "806" + "->" "7" + "story_block" + { + "character_name" "Kincaide" + "description" "op07_subtitle_806" + "content_file" "type:audio,file:campaign/op07/op07_806.mp3" + } + } + "7" + { + "quest_index" "807" + "story_block" + { + "character_name" "Kincaide" + "description" "op07_subtitle_807" + "content_file" "type:audio,file:campaign/op07/op07_807.mp3" + } + } + "8" + { + "quest_index" "808" + "->" "9" + "->" "11" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_808" + "content_file" "type:audio,file:campaign/op07/op07_808.mp3" + } + } + "9" + { + "quest_index" "809" + "->" "10" + "story_block" + { + "character_name" "Booth2" + "description" "op07_subtitle_809" + "content_file" "type:audio,file:campaign/op07/op07_809.mp3" + } + } + "10" + { + "quest_index" "810" + "story_block" + { + "character_name" "Booth2" + "description" "op07_subtitle_810" + "content_file" "type:audio,file:campaign/op07/op07_810.mp3" + } + } + "11" + { + "quest_index" "811" + "->" "12" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_811" + "content_file" "type:audio,file:campaign/op07/op07_811.mp3" + } + } + "12" + { + "quest_index" "812" + "->" "13" + "->" "14" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_812" + "content_file" "type:audio,file:campaign/op07/op07_812.mp3" + } + } + "13" + { + "quest_index" "813" + "story_block" + { + "character_name" "Booth2" + "description" "op07_subtitle_813" + "content_file" "type:audio,file:campaign/op07/op07_813.mp3" + } + } + "14" + { + "quest_index" "814" + "->" "16" + "->" "15" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_814" + "content_file" "type:audio,file:campaign/op07/op07_814.mp3" + } + } + "15" + { + "quest_index" "815" + "story_block" + { + "character_name" "Booth2" + "description" "op07_subtitle_815" + "content_file" "type:audio,file:campaign/op07/op07_815.mp3" + } + } + "16" + { + "quest_index" "816" + "->" "17" + "->" "19" + "->" "30" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_816" + "content_file" "type:audio,file:campaign/op07/op07_816.mp3" + } + } + "17" + { + "quest_index" "817" + "->" "18" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_817" + "content_file" "type:audio,file:campaign/op07/op07_817.mp3" + } + } + "18" + { + "quest_index" "818" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_818" + "content_file" "type:audio,file:campaign/op07/op07_818.mp3" + } + } + "19" + { + "quest_index" "819" + "->" "20" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_819" + "content_file" "type:audio,file:campaign/op07/op07_819.mp3" + } + } + "20" + { + "quest_index" "820" + "->" "21" + "->" "22" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_820" + "content_file" "type:audio,file:campaign/op07/op07_820.mp3" + } + } + "21" + { + "quest_index" "821" + "story_block" + { + "character_name" "CocienaroIzaki" + "description" "op07_subtitle_821" + "content_file" "type:audio,file:campaign/op07/op07_821.mp3" + } + } + "22" + { + "quest_index" "822" + "->" "23" + "story_block" + { + "character_name" "Riley" + "description" "op07_subtitle_822" + "content_file" "type:audio,file:campaign/op07/op07_822.mp3" + } + } + "23" + { + "quest_index" "823" + "->" "24" + "->" "25" + "->" "26" + "->" "27" + "->" "31" + "story_block" + { + "character_name" "Booth2" + "description" "op07_subtitle_823" + "content_file" "type:audio,file:campaign/op07/op07_823.mp3" + } + } + "24" + { + "quest_index" "824" + "story_block" + { + "character_name" "Imogen" + "description" "op07_subtitle_824" + "content_file" "type:audio,file:campaign/op07/op07_824.mp3" + } + } + "25" + { + "quest_index" "825" + "story_block" + { + "character_name" "Imogen" + "description" "op07_subtitle_825" + "content_file" "type:audio,file:campaign/op07/op07_825.mp3" + } + } + "26" + { + "quest_index" "826" + "story_block" + { + "character_name" "Imogen" + "description" "op07_subtitle_826" + "content_file" "type:audio,file:campaign/op07/op07_826.mp3" + } + } + "27" + { + "quest_index" "827" + "story_block" + { + "character_name" "Imogen" + "description" "op07_subtitle_827" + "content_file" "type:audio,file:campaign/op07/op07_827.mp3" + } + } + "28" + { + "story_block" + { + "description" "op07_comic_part_1_desc" + "content_file" "type:comic,file:images/journal/campaign/comic/icon_8_0.png,section:0,numpages:27" + } + } + "29" + { + "story_block" + { + "description" "op07_comic_part_2_desc" + "content_file" "type:comic,file:images/journal/campaign/comic/icon_8_1.png,section:1,numpages:29" + } + } + "30" + { + "story_block" + { + "description" "op07_comic_part_3_desc" + "content_file" "type:comic,file:images/journal/campaign/comic/icon_8_2.png,section:2,numpages:21" + } + } + "31" + { + "story_block" + { + "description" "op07_comic_part_4_desc" + "content_file" "type:comic,file:images/journal/campaign/comic/icon_8_3.png,section:3,numpages:31" + } + } + } + "9" + { + "loc_name" "#csgo_campaign_9" + "loc_description" "#csgo_campaign_9_desc" + "season_number" "7" + "1" + { + "quest_index" "901" + "->" "2" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_901" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_901.mp3" + } + } + "2" + { + "quest_index" "902" + "->" "3" + "->" "13" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_902" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_902.mp3" + } + } + "3" + { + "quest_index" "903" + "->" "4" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_903" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_903.mp3" + } + } + "4" + { + "quest_index" "904" + "->" "5" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_904" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_904.mp3" + } + } + "5" + { + "quest_index" "905" + "->" "6" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_905" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_905.mp3" + } + } + "6" + { + "quest_index" "906" + "->" "7" + "->" "17" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_906" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_906.mp3" + } + } + "7" + { + "quest_index" "907" + "->" "8" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_907" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_907.mp3" + } + } + "8" + { + "quest_index" "908" + "->" "9" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_908" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_908.mp3" + } + } + "9" + { + "quest_index" "909" + "->" "10" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_909" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_909.mp3" + } + } + "10" + { + "quest_index" "910" + "->" "11" + "->" "21" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_910" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_910.mp3" + } + } + "11" + { + "quest_index" "911" + "->" "12" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_911" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_911.mp3" + } + } + "12" + { + "quest_index" "912" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_912" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_912.mp3" + } + } + "13" + { + "quest_index" "913" + "->" "14" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_913" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_913.mp3" + } + } + "14" + { + "quest_index" "914" + "->" "15" + "->" "23" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_914" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_914.mp3" + } + } + "15" + { + "quest_index" "915" + "->" "16" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_915" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_915.mp3" + } + } + "16" + { + "quest_index" "916" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_916" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_916.mp3" + } + } + "17" + { + "quest_index" "917" + "->" "18" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_917" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_917.mp3" + } + } + "18" + { + "quest_index" "918" + "->" "19" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_918" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_918.mp3" + } + } + "19" + { + "quest_index" "919" + "->" "20" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_919" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_919.mp3" + } + } + "20" + { + "quest_index" "920" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_920" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_920.mp3" + } + } + "21" + { + "quest_index" "921" + "->" "22" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_921" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_921.mp3" + } + } + "22" + { + "quest_index" "922" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_922" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_922.mp3" + } + } + "23" + { + "quest_index" "923" + "->" "24" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_923" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_923.mp3" + } + } + "24" + { + "quest_index" "924" + "->" "25" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_924" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_924.mp3" + } + } + "25" + { + "quest_index" "925" + "->" "26" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_925" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_925.mp3" + } + } + "26" + { + "quest_index" "926" + "->" "21" + "->" "27" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_926" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_926.mp3" + } + } + "27" + { + "quest_index" "927" + "->" "28" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_927" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_927.mp3" + } + } + "28" + { + "quest_index" "928" + "->" "29" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_928" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_928.mp3" + } + } + "29" + { + "quest_index" "929" + "->" "30" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_929" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_929.mp3" + } + } + "30" + { + "quest_index" "930" + "story_block" + { + "character_name" "Rona" + "description" "op08_subtitle_930" + "content_file" "type:audio,file:campaign/hydra/hydra_mission_intro_930.mp3" + } + } + } + } + "quest_schedule" + { + "start" "1632254400" + "length" "P9W" + "slack" "P3W" + } + "skirmish_modes" + { + "1" + { + "name" "stabstabzap" + "loc_name" "Skirmish_CC_SSZ_name" + "loc_rules" "Skirmish_CC_SSZ_rules" + "loc_description" "Skirmish_CC_SSZ_desc" + "loc_details" "Skirmish_CC_SSZ_details" + "icon" "icon-skirmish-ssz" + "gamemode" "casual" + "server_exec" "execwithwhitelist op08_stab_stab_zap.cfg" + } + "2" + { + "name" "dm_freeforall" + "loc_name" "Skirmish_DM_FFA_name" + "loc_rules" "Skirmish_DM_FFA_rules" + "loc_description" "Skirmish_DM_FFA_desc" + "loc_details" "Skirmish_DM_FFA_details" + "icon" "icon-skirmish-ffa" + "gamemode" "deathmatch" + "server_exec" "execwithwhitelist gamemode_dm_freeforall.cfg" + } + "3" + { + "name" "flyingscoutsman" + "loc_name" "Skirmish_CC_FS_name" + "loc_rules" "Skirmish_CC_FS_rules" + "loc_description" "Skirmish_CC_FS_desc" + "loc_details" "Skirmish_CC_FS_details" + "icon" "icon-skirmish-fs" + "gamemode" "casual" + "server_exec" "execwithwhitelist op08_flying_scoutsman.cfg" + } + "4" + { + "name" "triggerdiscipline" + "loc_name" "Skirmish_CC_TD_name" + "loc_rules" "Skirmish_CC_TD_rules" + "loc_description" "Skirmish_CC_TD_desc" + "loc_details" "Skirmish_CC_TD_details" + "icon" "icon-skirmish-td" + "gamemode" "casual" + "server_exec" "execwithwhitelist op08_trigger_discipline.cfg" + } + "6" + { + "name" "headshots" + "loc_name" "Skirmish_DM_HS_name" + "loc_rules" "Skirmish_DM_HS_rules" + "loc_description" "Skirmish_DM_HS_desc" + "loc_details" "Skirmish_DM_HS_details" + "icon" "icon-skirmish-hs" + "gamemode" "deathmatch" + "server_exec" "execwithwhitelist op08_headshots.cfg" + } + "7" + { + "name" "huntergatherers" + "loc_name" "Skirmish_TDM_HG_name" + "loc_rules" "Skirmish_TDM_HG_rules" + "loc_description" "Skirmish_TDM_HG_desc" + "loc_details" "Skirmish_TDM_HG_details" + "icon" "icon-skirmish-hg" + "gamemode" "deathmatch" + "server_exec" "execwithwhitelist op08_hunter_gatherers.cfg" + } + "8" + { + "name" "heavyassaultsuit" + "loc_name" "Skirmish_CC_HAS_name" + "loc_rules" "Skirmish_CC_HAS_rules" + "loc_description" "Skirmish_CC_HAS_desc" + "loc_details" "Skirmish_CC_HAS_details" + "icon" "icon-skirmish-has" + "gamemode" "casual" + "server_exec" "execwithwhitelist op08_heavy_assault_suit.cfg" + } + "10" + { + "name" "armsrace" + "loc_name" "Skirmish_AR_name" + "loc_rules" "Skirmish_AR_rules" + "loc_description" "Skirmish_AR_desc" + "loc_details" "Skirmish_AR_details" + "icon" "icon-gungameprogressive" + "gamemode" "gungameprogressive" + } + "11" + { + "name" "demolition" + "loc_name" "Skirmish_DEM_name" + "loc_rules" "Skirmish_DEM_rules" + "loc_description" "Skirmish_DEM_desc" + "loc_details" "Skirmish_DEM_details" + "icon" "icon-gungametrbomb" + "gamemode" "gungametrbomb" + } + "12" + { + "name" "retakes" + "loc_name" "Skirmish_CC_RT_name" + "loc_rules" "Skirmish_CC_RT_rules" + "loc_description" "Skirmish_CC_RT_desc" + "loc_details" "Skirmish_CC_RT_details" + "icon" "retakes" + "gamemode" "casual" + "server_exec" "execwithwhitelist gamemode_retakecasual.cfg" + } + } + "skirmish_rank_info" + { + "1" + { + "pips" "2" + "winstreak" "3" + "loss" "0" + } + "3" + { + "pips" "3" + } + "5" + { + "loss" "1" + } + "7" + { + "pips" "4" + } + "11" + { + "pips" "5" + } + "15" + { + "pips" "6" + "winstreak" "-1" + } + "16" + { + "pips" "7" + } + "17" + { + "pips" "8" + } + "18" + { + "pips" "9" + } + "19" + { + "pips" "10" + } + "20" + { + "pips" "11" + } + "21" + { + "pips" "12" + } + "22" + { + "pips" "13" + } + "23" + { + "pips" "14" + } + "24" + { + "pips" "15" + } + } + "recipes" + { + "0" + { + "name" "#RT_MP_A" + "n_A" "#RI_R1p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R1p" + "do_A" "1" + "do_B" "#RI_R2" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "common" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "unique" + "required" "1" + } + "2" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "uncommon" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + } + "1" + { + "name" "#RT_MP_A" + "n_A" "#RI_R2p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R2p" + "do_A" "1" + "do_B" "#RI_R3" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "uncommon" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "unique" + "required" "1" + } + "2" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "rare" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + } + "2" + { + "name" "#RT_MP_A" + "n_A" "#RI_R3p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R3p" + "do_A" "1" + "do_B" "#RI_R4" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "rare" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "unique" + "required" "1" + } + "2" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "mythical" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + } + "3" + { + "name" "#RT_MP_A" + "n_A" "#RI_R4p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R4p" + "do_A" "1" + "do_B" "#RI_R5" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "mythical" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "unique" + "required" "1" + } + "2" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "legendary" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + } + "4" + { + "name" "#RT_MP_A" + "n_A" "#RI_R5p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R5p" + "do_A" "1" + "do_B" "#RI_R6" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "legendary" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "unique" + "required" "1" + } + "2" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "ancient" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + } + "10" + { + "name" "#RT_MP_A" + "n_A" "#RI_R1p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R1p" + "do_A" "1" + "do_B" "#RI_R2" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "common" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "strange" + "required" "1" + } + "2" + { + "field" "*kill_eater_score_type" + "operator" "string==" + "value" "0" + "required" "1" + } + "3" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "uncommon" + "required" "1" + } + "1" + { + "field" "*stattrak_recipe" + "operator" "string==" + "value" "yes" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + "requires_tool" "0" + } + "11" + { + "name" "#RT_MP_A" + "n_A" "#RI_R2p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R2p" + "do_A" "1" + "do_B" "#RI_R3" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "uncommon" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "strange" + "required" "1" + } + "2" + { + "field" "*kill_eater_score_type" + "operator" "string==" + "value" "0" + "required" "1" + } + "3" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "rare" + "required" "1" + } + "1" + { + "field" "*stattrak_recipe" + "operator" "string==" + "value" "yes" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + "requires_tool" "0" + } + "12" + { + "name" "#RT_MP_A" + "n_A" "#RI_R3p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R3p" + "do_A" "1" + "do_B" "#RI_R4" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "rare" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "strange" + "required" "1" + } + "2" + { + "field" "*kill_eater_score_type" + "operator" "string==" + "value" "0" + "required" "1" + } + "3" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "mythical" + "required" "1" + } + "1" + { + "field" "*stattrak_recipe" + "operator" "string==" + "value" "yes" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + "requires_tool" "0" + } + "13" + { + "name" "#RT_MP_A" + "n_A" "#RI_R4p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R4p" + "do_A" "1" + "do_B" "#RI_R5" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "mythical" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "strange" + "required" "1" + } + "2" + { + "field" "*kill_eater_score_type" + "operator" "string==" + "value" "0" + "required" "1" + } + "3" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "legendary" + "required" "1" + } + "1" + { + "field" "*stattrak_recipe" + "operator" "string==" + "value" "yes" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + "requires_tool" "0" + } + "14" + { + "name" "#RT_MP_A" + "n_A" "#RI_R5p" + "desc_inputs" "#RDI_AB" + "desc_outputs" "#RDO_AB" + "di_A" "10" + "di_B" "#RI_R5p" + "do_A" "1" + "do_B" "#RI_R6" + "all_same_class" "0" + "always_known" "1" + "premium_only" "0" + "disabled" "0" + "input_items" + { + "10" + { + "conditions" + { + "0" + { + "field" "*rarity" + "operator" "string==" + "value" "legendary" + "required" "1" + } + "1" + { + "field" "*quality" + "operator" "string==" + "value" "strange" + "required" "1" + } + "2" + { + "field" "*kill_eater_score_type" + "operator" "string==" + "value" "0" + "required" "1" + } + "3" + { + "field" "craft_class" + "operator" "string==" + "value" "weapon" + "required" "1" + } + } + } + } + "output_items" + { + "item1" + { + "conditions" + { + "0" + { + "field" "*match_set_rarity" + "operator" "string==" + "value" "ancient" + "required" "1" + } + "1" + { + "field" "*stattrak_recipe" + "operator" "string==" + "value" "yes" + "required" "1" + } + } + } + } + "category" "crafting" + "filter" "-3" + "requires_tool" "0" + } + } + "prefabs" + { + "columbus2016_sticker_capsule_prefab" + { + "first_sale_date" "2016-03-10" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + } + "columbus2016_signature_capsule_prefab" + { + "first_sale_date" "2016-03-10" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_columbus2016_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_columbus2016_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "113" "crate_sticker_pack_columbus2016_legends" + "114" "crate_sticker_pack_columbus2016_challengers" + "115" "crate_signature_pack_columbus2016_group_1_legendary" + "116" "crate_signature_pack_columbus2016_group_2_legendary" + "117" "columbus2016_signatures_nip" + "118" "columbus2016_signatures_splc" + "119" "columbus2016_signatures_clg" + "120" "columbus2016_signatures_gamb" + "121" "columbus2016_signatures_flip" + "122" "columbus2016_signatures_liq" + "123" "columbus2016_signatures_mss" + "124" "columbus2016_signatures_navi" + "125" "columbus2016_signatures_vp" + "126" "columbus2016_signatures_c9" + "127" "columbus2016_signatures_g2" + "128" "columbus2016_signatures_faze" + "129" "columbus2016_signatures_astr" + "130" "columbus2016_signatures_nv" + "131" "columbus2016_signatures_fntc" + "132" "columbus2016_signatures_lumi" + "133" "crate_columbus2016_promo_de_dust2" + "134" "crate_columbus2016_promo_de_mirage" + "135" "crate_columbus2016_promo_de_inferno" + "136" "crate_columbus2016_promo_de_cbble" + "137" "crate_columbus2016_promo_de_overpass" + "138" "crate_columbus2016_promo_de_cache" + "139" "crate_columbus2016_promo_de_train" + "140" "crate_columbus2016_promo_de_nuke" + } + "client_loot_lists" + { + "columbus2016_rare_nip" + { + "[columbus2016_team_nip]sticker" "1" + } + "columbus2016_rare_splc" + { + "[columbus2016_team_splc]sticker" "1" + } + "columbus2016_rare_clg" + { + "[columbus2016_team_clg]sticker" "1" + } + "columbus2016_rare_gamb" + { + "[columbus2016_team_gamb]sticker" "1" + } + "columbus2016_rare_flip" + { + "[columbus2016_team_flip]sticker" "1" + } + "columbus2016_rare_liq" + { + "[columbus2016_team_liq]sticker" "1" + } + "columbus2016_rare_mss" + { + "[columbus2016_team_mss]sticker" "1" + } + "columbus2016_rare_navi" + { + "[columbus2016_team_navi]sticker" "1" + } + "columbus2016_rare_vp" + { + "[columbus2016_team_vp]sticker" "1" + } + "columbus2016_rare_c9" + { + "[columbus2016_team_c9]sticker" "1" + } + "columbus2016_rare_g2" + { + "[columbus2016_team_g2]sticker" "1" + } + "columbus2016_rare_faze" + { + "[columbus2016_team_faze]sticker" "1" + } + "columbus2016_rare_astr" + { + "[columbus2016_team_astr]sticker" "1" + } + "columbus2016_rare_nv" + { + "[columbus2016_team_nv]sticker" "1" + } + "columbus2016_rare_fntc" + { + "[columbus2016_team_fntc]sticker" "1" + } + "columbus2016_rare_lumi" + { + "[columbus2016_team_lumi]sticker" "1" + } + "columbus2016_rare_mlg" + { + "[columbus2016_team_mlg]sticker" "1" + } + "crate_sticker_pack_columbus2016_legends_rare" + { + "[columbus2016_team_nip]sticker" "1" + "[columbus2016_team_navi]sticker" "1" + "[columbus2016_team_vp]sticker" "1" + "[columbus2016_team_faze]sticker" "1" + "[columbus2016_team_astr]sticker" "1" + "[columbus2016_team_nv]sticker" "1" + "[columbus2016_team_fntc]sticker" "1" + "[columbus2016_team_lumi]sticker" "1" + "[columbus2016_team_mlg]sticker" "1" + } + "crate_sticker_pack_columbus2016_legends_mythical" + { + "[columbus2016_team_nip_holo]sticker" "1" + "[columbus2016_team_navi_holo]sticker" "1" + "[columbus2016_team_vp_holo]sticker" "1" + "[columbus2016_team_faze_holo]sticker" "1" + "[columbus2016_team_astr_holo]sticker" "1" + "[columbus2016_team_nv_holo]sticker" "1" + "[columbus2016_team_fntc_holo]sticker" "1" + "[columbus2016_team_lumi_holo]sticker" "1" + "[columbus2016_team_mlg_holo]sticker" "1" + } + "crate_sticker_pack_columbus2016_legends_legendary" + { + "[columbus2016_team_nip_foil]sticker" "1" + "[columbus2016_team_navi_foil]sticker" "1" + "[columbus2016_team_vp_foil]sticker" "1" + "[columbus2016_team_faze_foil]sticker" "1" + "[columbus2016_team_astr_foil]sticker" "1" + "[columbus2016_team_nv_foil]sticker" "1" + "[columbus2016_team_fntc_foil]sticker" "1" + "[columbus2016_team_lumi_foil]sticker" "1" + "[columbus2016_team_mlg_foil]sticker" "1" + } + "crate_sticker_pack_columbus2016_legends" + { + "crate_sticker_pack_columbus2016_legends_mythical" "1" + "crate_sticker_pack_columbus2016_legends_legendary" "1" + } + "crate_sticker_pack_columbus2016_challengers_rare" + { + "[columbus2016_team_splc]sticker" "1" + "[columbus2016_team_clg]sticker" "1" + "[columbus2016_team_gamb]sticker" "1" + "[columbus2016_team_flip]sticker" "1" + "[columbus2016_team_liq]sticker" "1" + "[columbus2016_team_mss]sticker" "1" + "[columbus2016_team_c9]sticker" "1" + "[columbus2016_team_g2]sticker" "1" + } + "crate_sticker_pack_columbus2016_challengers_mythical" + { + "[columbus2016_team_splc_holo]sticker" "1" + "[columbus2016_team_clg_holo]sticker" "1" + "[columbus2016_team_gamb_holo]sticker" "1" + "[columbus2016_team_flip_holo]sticker" "1" + "[columbus2016_team_liq_holo]sticker" "1" + "[columbus2016_team_mss_holo]sticker" "1" + "[columbus2016_team_c9_holo]sticker" "1" + "[columbus2016_team_g2_holo]sticker" "1" + "[columbus2016_team_mlg_holo]sticker" "1" + } + "crate_sticker_pack_columbus2016_challengers_legendary" + { + "[columbus2016_team_splc_foil]sticker" "1" + "[columbus2016_team_clg_foil]sticker" "1" + "[columbus2016_team_gamb_foil]sticker" "1" + "[columbus2016_team_flip_foil]sticker" "1" + "[columbus2016_team_liq_foil]sticker" "1" + "[columbus2016_team_mss_foil]sticker" "1" + "[columbus2016_team_c9_foil]sticker" "1" + "[columbus2016_team_g2_foil]sticker" "1" + "[columbus2016_team_mlg_foil]sticker" "1" + } + "crate_sticker_pack_columbus2016_challengers" + { + "crate_sticker_pack_columbus2016_challengers_mythical" "1" + "crate_sticker_pack_columbus2016_challengers_legendary" "1" + } + "columbus2016_signatures_nip" + { + "[columbus2016_signature_pyth]sticker" "1" + "[columbus2016_signature_forest]sticker" "1" + "[columbus2016_signature_friberg]sticker" "1" + "[columbus2016_signature_getright]sticker" "1" + "[columbus2016_signature_xizt]sticker" "1" + } + "columbus2016_signatures_splc" + { + "[columbus2016_signature_jasonr]sticker" "1" + "[columbus2016_signature_arya]sticker" "1" + "[columbus2016_signature_professorchaos]sticker" "1" + "[columbus2016_signature_davey]sticker" "1" + "[columbus2016_signature_abe]sticker" "1" + } + "columbus2016_signatures_clg" + { + "[columbus2016_signature_reltuc]sticker" "1" + "[columbus2016_signature_fugly]sticker" "1" + "[columbus2016_signature_hazed]sticker" "1" + "[columbus2016_signature_jdm64]sticker" "1" + "[columbus2016_signature_tarik]sticker" "1" + } + "columbus2016_signatures_gamb" + { + "[columbus2016_signature_waylander]sticker" "1" + "[columbus2016_signature_dosia]sticker" "1" + "[columbus2016_signature_hooch]sticker" "1" + "[columbus2016_signature_mou]sticker" "1" + "[columbus2016_signature_adrenkz]sticker" "1" + } + "columbus2016_signatures_flip" + { + "[columbus2016_signature_b1ad3]sticker" "1" + "[columbus2016_signature_bondik]sticker" "1" + "[columbus2016_signature_shara]sticker" "1" + "[columbus2016_signature_markeloff]sticker" "1" + "[columbus2016_signature_worldedit]sticker" "1" + } + "columbus2016_signatures_liq" + { + "[columbus2016_signature_adren]sticker" "1" + "[columbus2016_signature_elige]sticker" "1" + "[columbus2016_signature_s1mple]sticker" "1" + "[columbus2016_signature_hiko]sticker" "1" + "[columbus2016_signature_nitro]sticker" "1" + } + "columbus2016_signatures_mss" + { + "[columbus2016_signature_chrisj]sticker" "1" + "[columbus2016_signature_denis]sticker" "1" + "[columbus2016_signature_spiidi]sticker" "1" + "[columbus2016_signature_nex]sticker" "1" + "[columbus2016_signature_niko]sticker" "1" + } + "columbus2016_signatures_navi" + { + "[columbus2016_signature_edward]sticker" "1" + "[columbus2016_signature_flamie]sticker" "1" + "[columbus2016_signature_guardian]sticker" "1" + "[columbus2016_signature_seized]sticker" "1" + "[columbus2016_signature_zeus]sticker" "1" + } + "columbus2016_signatures_vp" + { + "[columbus2016_signature_byali]sticker" "1" + "[columbus2016_signature_neo]sticker" "1" + "[columbus2016_signature_pasha]sticker" "1" + "[columbus2016_signature_snax]sticker" "1" + "[columbus2016_signature_taz]sticker" "1" + } + "columbus2016_signatures_c9" + { + "[columbus2016_signature_freakazoid]sticker" "1" + "[columbus2016_signature_stewie2k]sticker" "1" + "[columbus2016_signature_shroud]sticker" "1" + "[columbus2016_signature_skadoodle]sticker" "1" + "[columbus2016_signature_nothing]sticker" "1" + } + "columbus2016_signatures_g2" + { + "[columbus2016_signature_ex6tenz]sticker" "1" + "[columbus2016_signature_rpk]sticker" "1" + "[columbus2016_signature_scream]sticker" "1" + "[columbus2016_signature_shox]sticker" "1" + "[columbus2016_signature_smithzz]sticker" "1" + } + "columbus2016_signatures_faze" + { + "[columbus2016_signature_aizy]sticker" "1" + "[columbus2016_signature_fox]sticker" "1" + "[columbus2016_signature_maikelele]sticker" "1" + "[columbus2016_signature_rain]sticker" "1" + "[columbus2016_signature_jkaem]sticker" "1" + } + "columbus2016_signatures_astr" + { + "[columbus2016_signature_cajunb]sticker" "1" + "[columbus2016_signature_device]sticker" "1" + "[columbus2016_signature_dupreeh]sticker" "1" + "[columbus2016_signature_karrigan]sticker" "1" + "[columbus2016_signature_xyp9x]sticker" "1" + } + "columbus2016_signatures_nv" + { + "[columbus2016_signature_apex]sticker" "1" + "[columbus2016_signature_happy]sticker" "1" + "[columbus2016_signature_devil]sticker" "1" + "[columbus2016_signature_kennys]sticker" "1" + "[columbus2016_signature_nbk]sticker" "1" + } + "columbus2016_signatures_fntc" + { + "[columbus2016_signature_flusha]sticker" "1" + "[columbus2016_signature_jw]sticker" "1" + "[columbus2016_signature_krimz]sticker" "1" + "[columbus2016_signature_olofmeister]sticker" "1" + "[columbus2016_signature_dennis]sticker" "1" + } + "columbus2016_signatures_lumi" + { + "[columbus2016_signature_fnx]sticker" "1" + "[columbus2016_signature_coldzera]sticker" "1" + "[columbus2016_signature_fallen]sticker" "1" + "[columbus2016_signature_fer]sticker" "1" + "[columbus2016_signature_taco]sticker" "1" + } + "crate_signature_pack_columbus2016_group_1_rare" + { + "[columbus2016_signature_jasonr]sticker" "1" + "[columbus2016_signature_arya]sticker" "1" + "[columbus2016_signature_professorchaos]sticker" "1" + "[columbus2016_signature_davey]sticker" "1" + "[columbus2016_signature_abe]sticker" "1" + "[columbus2016_signature_reltuc]sticker" "1" + "[columbus2016_signature_fugly]sticker" "1" + "[columbus2016_signature_hazed]sticker" "1" + "[columbus2016_signature_jdm64]sticker" "1" + "[columbus2016_signature_tarik]sticker" "1" + "[columbus2016_signature_waylander]sticker" "1" + "[columbus2016_signature_dosia]sticker" "1" + "[columbus2016_signature_hooch]sticker" "1" + "[columbus2016_signature_mou]sticker" "1" + "[columbus2016_signature_adrenkz]sticker" "1" + "[columbus2016_signature_b1ad3]sticker" "1" + "[columbus2016_signature_bondik]sticker" "1" + "[columbus2016_signature_shara]sticker" "1" + "[columbus2016_signature_markeloff]sticker" "1" + "[columbus2016_signature_worldedit]sticker" "1" + "[columbus2016_signature_adren]sticker" "1" + "[columbus2016_signature_elige]sticker" "1" + "[columbus2016_signature_s1mple]sticker" "1" + "[columbus2016_signature_hiko]sticker" "1" + "[columbus2016_signature_nitro]sticker" "1" + "[columbus2016_signature_chrisj]sticker" "1" + "[columbus2016_signature_denis]sticker" "1" + "[columbus2016_signature_spiidi]sticker" "1" + "[columbus2016_signature_nex]sticker" "1" + "[columbus2016_signature_niko]sticker" "1" + "[columbus2016_signature_freakazoid]sticker" "1" + "[columbus2016_signature_stewie2k]sticker" "1" + "[columbus2016_signature_shroud]sticker" "1" + "[columbus2016_signature_skadoodle]sticker" "1" + "[columbus2016_signature_nothing]sticker" "1" + "[columbus2016_signature_ex6tenz]sticker" "1" + "[columbus2016_signature_rpk]sticker" "1" + "[columbus2016_signature_scream]sticker" "1" + "[columbus2016_signature_shox]sticker" "1" + "[columbus2016_signature_smithzz]sticker" "1" + } + "crate_signature_pack_columbus2016_group_1_legendary" + { + "[columbus2016_signature_jasonr_foil]sticker" "1" + "[columbus2016_signature_arya_foil]sticker" "1" + "[columbus2016_signature_professorchaos_foil]sticker" "1" + "[columbus2016_signature_davey_foil]sticker" "1" + "[columbus2016_signature_abe_foil]sticker" "1" + "[columbus2016_signature_reltuc_foil]sticker" "1" + "[columbus2016_signature_fugly_foil]sticker" "1" + "[columbus2016_signature_hazed_foil]sticker" "1" + "[columbus2016_signature_jdm64_foil]sticker" "1" + "[columbus2016_signature_tarik_foil]sticker" "1" + "[columbus2016_signature_waylander_foil]sticker" "1" + "[columbus2016_signature_dosia_foil]sticker" "1" + "[columbus2016_signature_hooch_foil]sticker" "1" + "[columbus2016_signature_mou_foil]sticker" "1" + "[columbus2016_signature_adrenkz_foil]sticker" "1" + "[columbus2016_signature_b1ad3_foil]sticker" "1" + "[columbus2016_signature_bondik_foil]sticker" "1" + "[columbus2016_signature_shara_foil]sticker" "1" + "[columbus2016_signature_markeloff_foil]sticker" "1" + "[columbus2016_signature_worldedit_foil]sticker" "1" + "[columbus2016_signature_adren_foil]sticker" "1" + "[columbus2016_signature_elige_foil]sticker" "1" + "[columbus2016_signature_s1mple_foil]sticker" "1" + "[columbus2016_signature_hiko_foil]sticker" "1" + "[columbus2016_signature_nitro_foil]sticker" "1" + "[columbus2016_signature_chrisj_foil]sticker" "1" + "[columbus2016_signature_denis_foil]sticker" "1" + "[columbus2016_signature_spiidi_foil]sticker" "1" + "[columbus2016_signature_nex_foil]sticker" "1" + "[columbus2016_signature_niko_foil]sticker" "1" + "[columbus2016_signature_freakazoid_foil]sticker" "1" + "[columbus2016_signature_stewie2k_foil]sticker" "1" + "[columbus2016_signature_shroud_foil]sticker" "1" + "[columbus2016_signature_skadoodle_foil]sticker" "1" + "[columbus2016_signature_nothing_foil]sticker" "1" + "[columbus2016_signature_ex6tenz_foil]sticker" "1" + "[columbus2016_signature_rpk_foil]sticker" "1" + "[columbus2016_signature_scream_foil]sticker" "1" + "[columbus2016_signature_shox_foil]sticker" "1" + "[columbus2016_signature_smithzz_foil]sticker" "1" + } + "crate_signature_pack_columbus2016_group_2_rare" + { + "[columbus2016_signature_pyth]sticker" "1" + "[columbus2016_signature_forest]sticker" "1" + "[columbus2016_signature_friberg]sticker" "1" + "[columbus2016_signature_getright]sticker" "1" + "[columbus2016_signature_xizt]sticker" "1" + "[columbus2016_signature_edward]sticker" "1" + "[columbus2016_signature_flamie]sticker" "1" + "[columbus2016_signature_guardian]sticker" "1" + "[columbus2016_signature_seized]sticker" "1" + "[columbus2016_signature_zeus]sticker" "1" + "[columbus2016_signature_byali]sticker" "1" + "[columbus2016_signature_neo]sticker" "1" + "[columbus2016_signature_pasha]sticker" "1" + "[columbus2016_signature_snax]sticker" "1" + "[columbus2016_signature_taz]sticker" "1" + "[columbus2016_signature_aizy]sticker" "1" + "[columbus2016_signature_fox]sticker" "1" + "[columbus2016_signature_maikelele]sticker" "1" + "[columbus2016_signature_rain]sticker" "1" + "[columbus2016_signature_jkaem]sticker" "1" + "[columbus2016_signature_cajunb]sticker" "1" + "[columbus2016_signature_device]sticker" "1" + "[columbus2016_signature_dupreeh]sticker" "1" + "[columbus2016_signature_karrigan]sticker" "1" + "[columbus2016_signature_xyp9x]sticker" "1" + "[columbus2016_signature_apex]sticker" "1" + "[columbus2016_signature_happy]sticker" "1" + "[columbus2016_signature_devil]sticker" "1" + "[columbus2016_signature_kennys]sticker" "1" + "[columbus2016_signature_nbk]sticker" "1" + "[columbus2016_signature_flusha]sticker" "1" + "[columbus2016_signature_jw]sticker" "1" + "[columbus2016_signature_krimz]sticker" "1" + "[columbus2016_signature_olofmeister]sticker" "1" + "[columbus2016_signature_dennis]sticker" "1" + "[columbus2016_signature_fnx]sticker" "1" + "[columbus2016_signature_coldzera]sticker" "1" + "[columbus2016_signature_fallen]sticker" "1" + "[columbus2016_signature_fer]sticker" "1" + "[columbus2016_signature_taco]sticker" "1" + } + "crate_signature_pack_columbus2016_group_2_legendary" + { + "[columbus2016_signature_pyth_foil]sticker" "1" + "[columbus2016_signature_forest_foil]sticker" "1" + "[columbus2016_signature_friberg_foil]sticker" "1" + "[columbus2016_signature_getright_foil]sticker" "1" + "[columbus2016_signature_xizt_foil]sticker" "1" + "[columbus2016_signature_edward_foil]sticker" "1" + "[columbus2016_signature_flamie_foil]sticker" "1" + "[columbus2016_signature_guardian_foil]sticker" "1" + "[columbus2016_signature_seized_foil]sticker" "1" + "[columbus2016_signature_zeus_foil]sticker" "1" + "[columbus2016_signature_byali_foil]sticker" "1" + "[columbus2016_signature_neo_foil]sticker" "1" + "[columbus2016_signature_pasha_foil]sticker" "1" + "[columbus2016_signature_snax_foil]sticker" "1" + "[columbus2016_signature_taz_foil]sticker" "1" + "[columbus2016_signature_aizy_foil]sticker" "1" + "[columbus2016_signature_fox_foil]sticker" "1" + "[columbus2016_signature_maikelele_foil]sticker" "1" + "[columbus2016_signature_rain_foil]sticker" "1" + "[columbus2016_signature_jkaem_foil]sticker" "1" + "[columbus2016_signature_cajunb_foil]sticker" "1" + "[columbus2016_signature_device_foil]sticker" "1" + "[columbus2016_signature_dupreeh_foil]sticker" "1" + "[columbus2016_signature_karrigan_foil]sticker" "1" + "[columbus2016_signature_xyp9x_foil]sticker" "1" + "[columbus2016_signature_apex_foil]sticker" "1" + "[columbus2016_signature_happy_foil]sticker" "1" + "[columbus2016_signature_devil_foil]sticker" "1" + "[columbus2016_signature_kennys_foil]sticker" "1" + "[columbus2016_signature_nbk_foil]sticker" "1" + "[columbus2016_signature_flusha_foil]sticker" "1" + "[columbus2016_signature_jw_foil]sticker" "1" + "[columbus2016_signature_krimz_foil]sticker" "1" + "[columbus2016_signature_olofmeister_foil]sticker" "1" + "[columbus2016_signature_dennis_foil]sticker" "1" + "[columbus2016_signature_fnx_foil]sticker" "1" + "[columbus2016_signature_coldzera_foil]sticker" "1" + "[columbus2016_signature_fallen_foil]sticker" "1" + "[columbus2016_signature_fer_foil]sticker" "1" + "[columbus2016_signature_taco_foil]sticker" "1" + } + "crate_columbus2016_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_columbus2016_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_columbus2016_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_columbus2016_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_columbus2016_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_columbus2016_promo_de_cache" + { + "set_cache" "1" + } + "crate_columbus2016_promo_de_train" + { + "set_train" "1" + } + "crate_columbus2016_promo_de_nuke" + { + "set_nuke" "1" + } + } + "items" + { + "4188" + { + "item_name" "#StickerKit_columbus2016_team_nip" + "name" "crate_sticker_pack_columbus2016_nip" + "item_description" "#StickerKit_desc_columbus2016_team_nip" + "image_inventory" "econ/stickers/columbus2016/nip" + "loot_list_name" "columbus2016_rare_nip" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4189" + { + "item_name" "#StickerKit_columbus2016_team_splc" + "name" "crate_sticker_pack_columbus2016_splc" + "item_description" "#StickerKit_desc_columbus2016_team_splc" + "image_inventory" "econ/stickers/columbus2016/splc" + "loot_list_name" "columbus2016_rare_splc" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4190" + { + "item_name" "#StickerKit_columbus2016_team_clg" + "name" "crate_sticker_pack_columbus2016_clg" + "item_description" "#StickerKit_desc_columbus2016_team_clg" + "image_inventory" "econ/stickers/columbus2016/clg" + "loot_list_name" "columbus2016_rare_clg" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4191" + { + "item_name" "#StickerKit_columbus2016_team_gamb" + "name" "crate_sticker_pack_columbus2016_gamb" + "item_description" "#StickerKit_desc_columbus2016_team_gamb" + "image_inventory" "econ/stickers/columbus2016/gamb" + "loot_list_name" "columbus2016_rare_gamb" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4192" + { + "item_name" "#StickerKit_columbus2016_team_flip" + "name" "crate_sticker_pack_columbus2016_flip" + "item_description" "#StickerKit_desc_columbus2016_team_flip" + "image_inventory" "econ/stickers/columbus2016/flip" + "loot_list_name" "columbus2016_rare_flip" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4193" + { + "item_name" "#StickerKit_columbus2016_team_liq" + "name" "crate_sticker_pack_columbus2016_liq" + "item_description" "#StickerKit_desc_columbus2016_team_liq" + "image_inventory" "econ/stickers/columbus2016/liq" + "loot_list_name" "columbus2016_rare_liq" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4194" + { + "item_name" "#StickerKit_columbus2016_team_mss" + "name" "crate_sticker_pack_columbus2016_mss" + "item_description" "#StickerKit_desc_columbus2016_team_mss" + "image_inventory" "econ/stickers/columbus2016/mss" + "loot_list_name" "columbus2016_rare_mss" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4195" + { + "item_name" "#StickerKit_columbus2016_team_navi" + "name" "crate_sticker_pack_columbus2016_navi" + "item_description" "#StickerKit_desc_columbus2016_team_navi" + "image_inventory" "econ/stickers/columbus2016/navi" + "loot_list_name" "columbus2016_rare_navi" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4196" + { + "item_name" "#StickerKit_columbus2016_team_vp" + "name" "crate_sticker_pack_columbus2016_vp" + "item_description" "#StickerKit_desc_columbus2016_team_vp" + "image_inventory" "econ/stickers/columbus2016/vp" + "loot_list_name" "columbus2016_rare_vp" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4197" + { + "item_name" "#StickerKit_columbus2016_team_c9" + "name" "crate_sticker_pack_columbus2016_c9" + "item_description" "#StickerKit_desc_columbus2016_team_c9" + "image_inventory" "econ/stickers/columbus2016/c9" + "loot_list_name" "columbus2016_rare_c9" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4198" + { + "item_name" "#StickerKit_columbus2016_team_g2" + "name" "crate_sticker_pack_columbus2016_g2" + "item_description" "#StickerKit_desc_columbus2016_team_g2" + "image_inventory" "econ/stickers/columbus2016/g2" + "loot_list_name" "columbus2016_rare_g2" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4199" + { + "item_name" "#StickerKit_columbus2016_team_faze" + "name" "crate_sticker_pack_columbus2016_faze" + "item_description" "#StickerKit_desc_columbus2016_team_faze" + "image_inventory" "econ/stickers/columbus2016/faze" + "loot_list_name" "columbus2016_rare_faze" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4200" + { + "item_name" "#StickerKit_columbus2016_team_astr" + "name" "crate_sticker_pack_columbus2016_astr" + "item_description" "#StickerKit_desc_columbus2016_team_astr" + "image_inventory" "econ/stickers/columbus2016/astr" + "loot_list_name" "columbus2016_rare_astr" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4201" + { + "item_name" "#StickerKit_columbus2016_team_nv" + "name" "crate_sticker_pack_columbus2016_nv" + "item_description" "#StickerKit_desc_columbus2016_team_nv" + "image_inventory" "econ/stickers/columbus2016/nv" + "loot_list_name" "columbus2016_rare_nv" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4202" + { + "item_name" "#StickerKit_columbus2016_team_fntc" + "name" "crate_sticker_pack_columbus2016_fntc" + "item_description" "#StickerKit_desc_columbus2016_team_fntc" + "image_inventory" "econ/stickers/columbus2016/fntc" + "loot_list_name" "columbus2016_rare_fntc" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4203" + { + "item_name" "#StickerKit_columbus2016_team_lumi" + "name" "crate_sticker_pack_columbus2016_lumi" + "item_description" "#StickerKit_desc_columbus2016_team_lumi" + "image_inventory" "econ/stickers/columbus2016/lumi" + "loot_list_name" "columbus2016_rare_lumi" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4204" + { + "item_name" "#StickerKit_columbus2016_team_mlg" + "name" "crate_sticker_pack_columbus2016_mlg" + "item_description" "#StickerKit_desc_columbus2016_team_mlg" + "image_inventory" "econ/stickers/columbus2016/mlg" + "loot_list_name" "columbus2016_rare_mlg" + "prefab" "columbus2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4205" + { + "item_name" "#CSGO_crate_sticker_pack_columbus2016_legends" + "name" "crate_sticker_pack_columbus2016_legends" + "item_description" "#CSGO_crate_sticker_pack_columbus2016_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_columbus2016_01" + "prefab" "columbus2016_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "113" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_columbus2016_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_columbus2016_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4206" + { + "item_name" "#CSGO_crate_sticker_pack_columbus2016_challengers" + "name" "crate_sticker_pack_columbus2016_challengers" + "item_description" "#CSGO_crate_sticker_pack_columbus2016_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_columbus2016_02" + "prefab" "columbus2016_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "114" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_columbus2016_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_columbus2016_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4207" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_group_1" + "name" "crate_signature_pack_columbus2016_group_1" + "item_description" "#CSGO_crate_signature_pack_columbus2016_group_1_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_columbus2016_group_1" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "115" + } + } + } + "4208" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_group_2" + "name" "crate_signature_pack_columbus2016_group_2" + "item_description" "#CSGO_crate_signature_pack_columbus2016_group_2_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_columbus2016_group_2" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "116" + } + } + } + "4209" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_nip" + "name" "crate_signature_pack_columbus2016_nip" + "item_description" "#CSGO_crate_signature_pack_columbus2016_nip_desc" + "image_inventory" "econ/weapon_cases/columbus2016_nip" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "117" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "1" + } + } + } + "4210" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_splc" + "name" "crate_signature_pack_columbus2016_splc" + "item_description" "#CSGO_crate_signature_pack_columbus2016_splc_desc" + "image_inventory" "econ/weapon_cases/columbus2016_splc" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "118" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "62" + } + } + } + "4211" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_clg" + "name" "crate_signature_pack_columbus2016_clg" + "item_description" "#CSGO_crate_signature_pack_columbus2016_clg_desc" + "image_inventory" "econ/weapon_cases/columbus2016_clg" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "119" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "49" + } + } + } + "4212" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_gamb" + "name" "crate_signature_pack_columbus2016_gamb" + "item_description" "#CSGO_crate_signature_pack_columbus2016_gamb_desc" + "image_inventory" "econ/weapon_cases/columbus2016_gamb" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "120" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "63" + } + } + } + "4213" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_flip" + "name" "crate_signature_pack_columbus2016_flip" + "item_description" "#CSGO_crate_signature_pack_columbus2016_flip_desc" + "image_inventory" "econ/weapon_cases/columbus2016_flip" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "121" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "43" + } + } + } + "4214" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_liq" + "name" "crate_signature_pack_columbus2016_liq" + "item_description" "#CSGO_crate_signature_pack_columbus2016_liq_desc" + "image_inventory" "econ/weapon_cases/columbus2016_liq" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "122" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "48" + } + } + } + "4215" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_mss" + "name" "crate_signature_pack_columbus2016_mss" + "item_description" "#CSGO_crate_signature_pack_columbus2016_mss_desc" + "image_inventory" "econ/weapon_cases/columbus2016_mss" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "123" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "29" + } + } + } + "4216" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_navi" + "name" "crate_signature_pack_columbus2016_navi" + "item_description" "#CSGO_crate_signature_pack_columbus2016_navi_desc" + "image_inventory" "econ/weapon_cases/columbus2016_navi" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "124" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "12" + } + } + } + "4217" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_vp" + "name" "crate_signature_pack_columbus2016_vp" + "item_description" "#CSGO_crate_signature_pack_columbus2016_vp_desc" + "image_inventory" "econ/weapon_cases/columbus2016_vp" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "125" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "31" + } + } + } + "4218" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_c9" + "name" "crate_signature_pack_columbus2016_c9" + "item_description" "#CSGO_crate_signature_pack_columbus2016_c9_desc" + "image_inventory" "econ/weapon_cases/columbus2016_c9" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "126" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "33" + } + } + } + "4219" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_g2" + "name" "crate_signature_pack_columbus2016_g2" + "item_description" "#CSGO_crate_signature_pack_columbus2016_g2_desc" + "image_inventory" "econ/weapon_cases/columbus2016_g2" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "127" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "59" + } + } + } + "4220" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_faze" + "name" "crate_signature_pack_columbus2016_faze" + "item_description" "#CSGO_crate_signature_pack_columbus2016_faze_desc" + "image_inventory" "econ/weapon_cases/columbus2016_faze" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "128" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "61" + } + } + } + "4221" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_astr" + "name" "crate_signature_pack_columbus2016_astr" + "item_description" "#CSGO_crate_signature_pack_columbus2016_astr_desc" + "image_inventory" "econ/weapon_cases/columbus2016_astr" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "129" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "60" + } + } + } + "4222" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_nv" + "name" "crate_signature_pack_columbus2016_nv" + "item_description" "#CSGO_crate_signature_pack_columbus2016_nv_desc" + "image_inventory" "econ/weapon_cases/columbus2016_nv" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "130" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "46" + } + } + } + "4223" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_fntc" + "name" "crate_signature_pack_columbus2016_fntc" + "item_description" "#CSGO_crate_signature_pack_columbus2016_fntc_desc" + "image_inventory" "econ/weapon_cases/columbus2016_fntc" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "131" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "6" + } + } + } + "4224" + { + "item_name" "#CSGO_crate_signature_pack_columbus2016_lumi" + "name" "crate_signature_pack_columbus2016_lumi" + "item_description" "#CSGO_crate_signature_pack_columbus2016_lumi_desc" + "image_inventory" "econ/weapon_cases/columbus2016_lumi" + "prefab" "columbus2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "132" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "57" + } + } + } + "4225" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_dust2" + "name" "crate_columbus2016_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "133" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4226" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_mirage" + "name" "crate_columbus2016_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "134" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4227" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_inferno" + "name" "crate_columbus2016_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "135" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4228" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_cbble" + "name" "crate_columbus2016_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "136" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4229" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_overpass" + "name" "crate_columbus2016_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "137" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4230" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_cache" + "name" "crate_columbus2016_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "138" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4231" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_train" + "name" "crate_columbus2016_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "139" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4232" + { + "item_name" "#CSGO_crate_columbus2016_promo_de_nuke" + "name" "crate_columbus2016_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_columbus2016_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "140" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "9" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "1007" + { + "name" "columbus2016_team_nip" + "item_name" "#StickerKit_columbus2016_team_nip" + "description_string" "#StickerKit_desc_columbus2016_team_nip" + "sticker_material" "columbus2016/nip" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "1" + } + "1008" + { + "name" "columbus2016_team_nip_holo" + "item_name" "#StickerKit_columbus2016_team_nip_holo" + "description_string" "#StickerKit_desc_columbus2016_team_nip_holo" + "sticker_material" "columbus2016/nip_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "1" + } + "1009" + { + "name" "columbus2016_team_nip_foil" + "item_name" "#StickerKit_columbus2016_team_nip_foil" + "description_string" "#StickerKit_desc_columbus2016_team_nip_foil" + "sticker_material" "columbus2016/nip_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + } + "1010" + { + "name" "columbus2016_team_nip_gold" + "item_name" "#StickerKit_columbus2016_team_nip_gold" + "description_string" "#StickerKit_desc_columbus2016_team_nip_gold" + "sticker_material" "columbus2016/nip_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + } + "1011" + { + "name" "columbus2016_team_splc" + "item_name" "#StickerKit_columbus2016_team_splc" + "description_string" "#StickerKit_desc_columbus2016_team_splc" + "sticker_material" "columbus2016/splc" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "62" + } + "1012" + { + "name" "columbus2016_team_splc_holo" + "item_name" "#StickerKit_columbus2016_team_splc_holo" + "description_string" "#StickerKit_desc_columbus2016_team_splc_holo" + "sticker_material" "columbus2016/splc_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "62" + } + "1013" + { + "name" "columbus2016_team_splc_foil" + "item_name" "#StickerKit_columbus2016_team_splc_foil" + "description_string" "#StickerKit_desc_columbus2016_team_splc_foil" + "sticker_material" "columbus2016/splc_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + } + "1014" + { + "name" "columbus2016_team_splc_gold" + "item_name" "#StickerKit_columbus2016_team_splc_gold" + "description_string" "#StickerKit_desc_columbus2016_team_splc_gold" + "sticker_material" "columbus2016/splc_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + } + "1015" + { + "name" "columbus2016_team_clg" + "item_name" "#StickerKit_columbus2016_team_clg" + "description_string" "#StickerKit_desc_columbus2016_team_clg" + "sticker_material" "columbus2016/clg" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "49" + } + "1016" + { + "name" "columbus2016_team_clg_holo" + "item_name" "#StickerKit_columbus2016_team_clg_holo" + "description_string" "#StickerKit_desc_columbus2016_team_clg_holo" + "sticker_material" "columbus2016/clg_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "49" + } + "1017" + { + "name" "columbus2016_team_clg_foil" + "item_name" "#StickerKit_columbus2016_team_clg_foil" + "description_string" "#StickerKit_desc_columbus2016_team_clg_foil" + "sticker_material" "columbus2016/clg_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + } + "1018" + { + "name" "columbus2016_team_clg_gold" + "item_name" "#StickerKit_columbus2016_team_clg_gold" + "description_string" "#StickerKit_desc_columbus2016_team_clg_gold" + "sticker_material" "columbus2016/clg_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + } + "1019" + { + "name" "columbus2016_team_gamb" + "item_name" "#StickerKit_columbus2016_team_gamb" + "description_string" "#StickerKit_desc_columbus2016_team_gamb" + "sticker_material" "columbus2016/gamb" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "63" + } + "1020" + { + "name" "columbus2016_team_gamb_holo" + "item_name" "#StickerKit_columbus2016_team_gamb_holo" + "description_string" "#StickerKit_desc_columbus2016_team_gamb_holo" + "sticker_material" "columbus2016/gamb_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "63" + } + "1021" + { + "name" "columbus2016_team_gamb_foil" + "item_name" "#StickerKit_columbus2016_team_gamb_foil" + "description_string" "#StickerKit_desc_columbus2016_team_gamb_foil" + "sticker_material" "columbus2016/gamb_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + } + "1022" + { + "name" "columbus2016_team_gamb_gold" + "item_name" "#StickerKit_columbus2016_team_gamb_gold" + "description_string" "#StickerKit_desc_columbus2016_team_gamb_gold" + "sticker_material" "columbus2016/gamb_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + } + "1023" + { + "name" "columbus2016_team_flip" + "item_name" "#StickerKit_columbus2016_team_flip" + "description_string" "#StickerKit_desc_columbus2016_team_flip" + "sticker_material" "columbus2016/flip" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "43" + } + "1024" + { + "name" "columbus2016_team_flip_holo" + "item_name" "#StickerKit_columbus2016_team_flip_holo" + "description_string" "#StickerKit_desc_columbus2016_team_flip_holo" + "sticker_material" "columbus2016/flip_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "43" + } + "1025" + { + "name" "columbus2016_team_flip_foil" + "item_name" "#StickerKit_columbus2016_team_flip_foil" + "description_string" "#StickerKit_desc_columbus2016_team_flip_foil" + "sticker_material" "columbus2016/flip_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + } + "1026" + { + "name" "columbus2016_team_flip_gold" + "item_name" "#StickerKit_columbus2016_team_flip_gold" + "description_string" "#StickerKit_desc_columbus2016_team_flip_gold" + "sticker_material" "columbus2016/flip_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + } + "1027" + { + "name" "columbus2016_team_liq" + "item_name" "#StickerKit_columbus2016_team_liq" + "description_string" "#StickerKit_desc_columbus2016_team_liq" + "sticker_material" "columbus2016/liq" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "48" + } + "1028" + { + "name" "columbus2016_team_liq_holo" + "item_name" "#StickerKit_columbus2016_team_liq_holo" + "description_string" "#StickerKit_desc_columbus2016_team_liq_holo" + "sticker_material" "columbus2016/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "48" + } + "1029" + { + "name" "columbus2016_team_liq_foil" + "item_name" "#StickerKit_columbus2016_team_liq_foil" + "description_string" "#StickerKit_desc_columbus2016_team_liq_foil" + "sticker_material" "columbus2016/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + } + "1030" + { + "name" "columbus2016_team_liq_gold" + "item_name" "#StickerKit_columbus2016_team_liq_gold" + "description_string" "#StickerKit_desc_columbus2016_team_liq_gold" + "sticker_material" "columbus2016/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + } + "1031" + { + "name" "columbus2016_team_mss" + "item_name" "#StickerKit_columbus2016_team_mss" + "description_string" "#StickerKit_desc_columbus2016_team_mss" + "sticker_material" "columbus2016/mss" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "29" + } + "1032" + { + "name" "columbus2016_team_mss_holo" + "item_name" "#StickerKit_columbus2016_team_mss_holo" + "description_string" "#StickerKit_desc_columbus2016_team_mss_holo" + "sticker_material" "columbus2016/mss_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "29" + } + "1033" + { + "name" "columbus2016_team_mss_foil" + "item_name" "#StickerKit_columbus2016_team_mss_foil" + "description_string" "#StickerKit_desc_columbus2016_team_mss_foil" + "sticker_material" "columbus2016/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + } + "1034" + { + "name" "columbus2016_team_mss_gold" + "item_name" "#StickerKit_columbus2016_team_mss_gold" + "description_string" "#StickerKit_desc_columbus2016_team_mss_gold" + "sticker_material" "columbus2016/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + } + "1035" + { + "name" "columbus2016_team_navi" + "item_name" "#StickerKit_columbus2016_team_navi" + "description_string" "#StickerKit_desc_columbus2016_team_navi" + "sticker_material" "columbus2016/navi" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "12" + } + "1036" + { + "name" "columbus2016_team_navi_holo" + "item_name" "#StickerKit_columbus2016_team_navi_holo" + "description_string" "#StickerKit_desc_columbus2016_team_navi_holo" + "sticker_material" "columbus2016/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "12" + } + "1037" + { + "name" "columbus2016_team_navi_foil" + "item_name" "#StickerKit_columbus2016_team_navi_foil" + "description_string" "#StickerKit_desc_columbus2016_team_navi_foil" + "sticker_material" "columbus2016/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + } + "1038" + { + "name" "columbus2016_team_navi_gold" + "item_name" "#StickerKit_columbus2016_team_navi_gold" + "description_string" "#StickerKit_desc_columbus2016_team_navi_gold" + "sticker_material" "columbus2016/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + } + "1039" + { + "name" "columbus2016_team_vp" + "item_name" "#StickerKit_columbus2016_team_vp" + "description_string" "#StickerKit_desc_columbus2016_team_vp" + "sticker_material" "columbus2016/vp" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "31" + } + "1040" + { + "name" "columbus2016_team_vp_holo" + "item_name" "#StickerKit_columbus2016_team_vp_holo" + "description_string" "#StickerKit_desc_columbus2016_team_vp_holo" + "sticker_material" "columbus2016/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "31" + } + "1041" + { + "name" "columbus2016_team_vp_foil" + "item_name" "#StickerKit_columbus2016_team_vp_foil" + "description_string" "#StickerKit_desc_columbus2016_team_vp_foil" + "sticker_material" "columbus2016/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + } + "1042" + { + "name" "columbus2016_team_vp_gold" + "item_name" "#StickerKit_columbus2016_team_vp_gold" + "description_string" "#StickerKit_desc_columbus2016_team_vp_gold" + "sticker_material" "columbus2016/vp_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + } + "1043" + { + "name" "columbus2016_team_c9" + "item_name" "#StickerKit_columbus2016_team_c9" + "description_string" "#StickerKit_desc_columbus2016_team_c9" + "sticker_material" "columbus2016/c9" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "33" + } + "1044" + { + "name" "columbus2016_team_c9_holo" + "item_name" "#StickerKit_columbus2016_team_c9_holo" + "description_string" "#StickerKit_desc_columbus2016_team_c9_holo" + "sticker_material" "columbus2016/c9_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "33" + } + "1045" + { + "name" "columbus2016_team_c9_foil" + "item_name" "#StickerKit_columbus2016_team_c9_foil" + "description_string" "#StickerKit_desc_columbus2016_team_c9_foil" + "sticker_material" "columbus2016/c9_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + } + "1046" + { + "name" "columbus2016_team_c9_gold" + "item_name" "#StickerKit_columbus2016_team_c9_gold" + "description_string" "#StickerKit_desc_columbus2016_team_c9_gold" + "sticker_material" "columbus2016/c9_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + } + "1047" + { + "name" "columbus2016_team_g2" + "item_name" "#StickerKit_columbus2016_team_g2" + "description_string" "#StickerKit_desc_columbus2016_team_g2" + "sticker_material" "columbus2016/g2" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "59" + } + "1048" + { + "name" "columbus2016_team_g2_holo" + "item_name" "#StickerKit_columbus2016_team_g2_holo" + "description_string" "#StickerKit_desc_columbus2016_team_g2_holo" + "sticker_material" "columbus2016/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "59" + } + "1049" + { + "name" "columbus2016_team_g2_foil" + "item_name" "#StickerKit_columbus2016_team_g2_foil" + "description_string" "#StickerKit_desc_columbus2016_team_g2_foil" + "sticker_material" "columbus2016/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + } + "1050" + { + "name" "columbus2016_team_g2_gold" + "item_name" "#StickerKit_columbus2016_team_g2_gold" + "description_string" "#StickerKit_desc_columbus2016_team_g2_gold" + "sticker_material" "columbus2016/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + } + "1051" + { + "name" "columbus2016_team_faze" + "item_name" "#StickerKit_columbus2016_team_faze" + "description_string" "#StickerKit_desc_columbus2016_team_faze" + "sticker_material" "columbus2016/faze" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "61" + } + "1052" + { + "name" "columbus2016_team_faze_holo" + "item_name" "#StickerKit_columbus2016_team_faze_holo" + "description_string" "#StickerKit_desc_columbus2016_team_faze_holo" + "sticker_material" "columbus2016/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "61" + } + "1053" + { + "name" "columbus2016_team_faze_foil" + "item_name" "#StickerKit_columbus2016_team_faze_foil" + "description_string" "#StickerKit_desc_columbus2016_team_faze_foil" + "sticker_material" "columbus2016/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + } + "1054" + { + "name" "columbus2016_team_faze_gold" + "item_name" "#StickerKit_columbus2016_team_faze_gold" + "description_string" "#StickerKit_desc_columbus2016_team_faze_gold" + "sticker_material" "columbus2016/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + } + "1055" + { + "name" "columbus2016_team_astr" + "item_name" "#StickerKit_columbus2016_team_astr" + "description_string" "#StickerKit_desc_columbus2016_team_astr" + "sticker_material" "columbus2016/astr" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "60" + } + "1056" + { + "name" "columbus2016_team_astr_holo" + "item_name" "#StickerKit_columbus2016_team_astr_holo" + "description_string" "#StickerKit_desc_columbus2016_team_astr_holo" + "sticker_material" "columbus2016/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "60" + } + "1057" + { + "name" "columbus2016_team_astr_foil" + "item_name" "#StickerKit_columbus2016_team_astr_foil" + "description_string" "#StickerKit_desc_columbus2016_team_astr_foil" + "sticker_material" "columbus2016/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + } + "1058" + { + "name" "columbus2016_team_astr_gold" + "item_name" "#StickerKit_columbus2016_team_astr_gold" + "description_string" "#StickerKit_desc_columbus2016_team_astr_gold" + "sticker_material" "columbus2016/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + } + "1059" + { + "name" "columbus2016_team_nv" + "item_name" "#StickerKit_columbus2016_team_nv" + "description_string" "#StickerKit_desc_columbus2016_team_nv" + "sticker_material" "columbus2016/nv" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "46" + } + "1060" + { + "name" "columbus2016_team_nv_holo" + "item_name" "#StickerKit_columbus2016_team_nv_holo" + "description_string" "#StickerKit_desc_columbus2016_team_nv_holo" + "sticker_material" "columbus2016/nv_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "46" + } + "1061" + { + "name" "columbus2016_team_nv_foil" + "item_name" "#StickerKit_columbus2016_team_nv_foil" + "description_string" "#StickerKit_desc_columbus2016_team_nv_foil" + "sticker_material" "columbus2016/nv_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + } + "1062" + { + "name" "columbus2016_team_nv_gold" + "item_name" "#StickerKit_columbus2016_team_nv_gold" + "description_string" "#StickerKit_desc_columbus2016_team_nv_gold" + "sticker_material" "columbus2016/nv_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + } + "1063" + { + "name" "columbus2016_team_fntc" + "item_name" "#StickerKit_columbus2016_team_fntc" + "description_string" "#StickerKit_desc_columbus2016_team_fntc" + "sticker_material" "columbus2016/fntc" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "6" + } + "1064" + { + "name" "columbus2016_team_fntc_holo" + "item_name" "#StickerKit_columbus2016_team_fntc_holo" + "description_string" "#StickerKit_desc_columbus2016_team_fntc_holo" + "sticker_material" "columbus2016/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "6" + } + "1065" + { + "name" "columbus2016_team_fntc_foil" + "item_name" "#StickerKit_columbus2016_team_fntc_foil" + "description_string" "#StickerKit_desc_columbus2016_team_fntc_foil" + "sticker_material" "columbus2016/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + } + "1066" + { + "name" "columbus2016_team_fntc_gold" + "item_name" "#StickerKit_columbus2016_team_fntc_gold" + "description_string" "#StickerKit_desc_columbus2016_team_fntc_gold" + "sticker_material" "columbus2016/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + } + "1067" + { + "name" "columbus2016_team_lumi" + "item_name" "#StickerKit_columbus2016_team_lumi" + "description_string" "#StickerKit_desc_columbus2016_team_lumi" + "sticker_material" "columbus2016/lumi" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "57" + } + "1068" + { + "name" "columbus2016_team_lumi_holo" + "item_name" "#StickerKit_columbus2016_team_lumi_holo" + "description_string" "#StickerKit_desc_columbus2016_team_lumi_holo" + "sticker_material" "columbus2016/lumi_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "57" + } + "1069" + { + "name" "columbus2016_team_lumi_foil" + "item_name" "#StickerKit_columbus2016_team_lumi_foil" + "description_string" "#StickerKit_desc_columbus2016_team_lumi_foil" + "sticker_material" "columbus2016/lumi_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + } + "1070" + { + "name" "columbus2016_team_lumi_gold" + "item_name" "#StickerKit_columbus2016_team_lumi_gold" + "description_string" "#StickerKit_desc_columbus2016_team_lumi_gold" + "sticker_material" "columbus2016/lumi_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + } + "1071" + { + "name" "columbus2016_team_mlg" + "item_name" "#StickerKit_columbus2016_team_mlg" + "description_string" "#StickerKit_desc_columbus2016_team_mlg" + "sticker_material" "columbus2016/mlg" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "0" + } + "1072" + { + "name" "columbus2016_team_mlg_holo" + "item_name" "#StickerKit_columbus2016_team_mlg_holo" + "description_string" "#StickerKit_desc_columbus2016_team_mlg_holo" + "sticker_material" "columbus2016/mlg_holo" + "item_rarity" "mythical" + "tournament_event_id" "9" + "tournament_team_id" "0" + } + "1073" + { + "name" "columbus2016_team_mlg_foil" + "item_name" "#StickerKit_columbus2016_team_mlg_foil" + "description_string" "#StickerKit_desc_columbus2016_team_mlg_foil" + "sticker_material" "columbus2016/mlg_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "0" + } + "1074" + { + "name" "columbus2016_team_mlg_gold" + "item_name" "#StickerKit_columbus2016_team_mlg_gold" + "description_string" "#StickerKit_desc_columbus2016_team_mlg_gold" + "sticker_material" "columbus2016/mlg_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "0" + } + "1075" + { + "name" "columbus2016_signature_reltuc" + "item_name" "#StickerKit_columbus2016_signature_reltuc" + "description_string" "#StickerKit_desc_columbus2016_signature_reltuc" + "sticker_material" "columbus2016/sig_reltuc" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "1076" + { + "name" "columbus2016_signature_reltuc_foil" + "item_name" "#StickerKit_columbus2016_signature_reltuc_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_reltuc_foil" + "sticker_material" "columbus2016/sig_reltuc_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "1077" + { + "name" "columbus2016_signature_reltuc_gold" + "item_name" "#StickerKit_columbus2016_signature_reltuc_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_reltuc_gold" + "sticker_material" "columbus2016/sig_reltuc_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "1078" + { + "name" "columbus2016_signature_fugly" + "item_name" "#StickerKit_columbus2016_signature_fugly" + "description_string" "#StickerKit_desc_columbus2016_signature_fugly" + "sticker_material" "columbus2016/sig_fugly" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "108760082" + } + "1079" + { + "name" "columbus2016_signature_fugly_foil" + "item_name" "#StickerKit_columbus2016_signature_fugly_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_fugly_foil" + "sticker_material" "columbus2016/sig_fugly_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "108760082" + } + "1080" + { + "name" "columbus2016_signature_fugly_gold" + "item_name" "#StickerKit_columbus2016_signature_fugly_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_fugly_gold" + "sticker_material" "columbus2016/sig_fugly_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "108760082" + } + "1081" + { + "name" "columbus2016_signature_hazed" + "item_name" "#StickerKit_columbus2016_signature_hazed" + "description_string" "#StickerKit_desc_columbus2016_signature_hazed" + "sticker_material" "columbus2016/sig_hazed" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "1082" + { + "name" "columbus2016_signature_hazed_foil" + "item_name" "#StickerKit_columbus2016_signature_hazed_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_hazed_foil" + "sticker_material" "columbus2016/sig_hazed_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "1083" + { + "name" "columbus2016_signature_hazed_gold" + "item_name" "#StickerKit_columbus2016_signature_hazed_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_hazed_gold" + "sticker_material" "columbus2016/sig_hazed_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "1084" + { + "name" "columbus2016_signature_jdm64" + "item_name" "#StickerKit_columbus2016_signature_jdm64" + "description_string" "#StickerKit_desc_columbus2016_signature_jdm64" + "sticker_material" "columbus2016/sig_jdm64" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "1085" + { + "name" "columbus2016_signature_jdm64_foil" + "item_name" "#StickerKit_columbus2016_signature_jdm64_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_jdm64_foil" + "sticker_material" "columbus2016/sig_jdm64_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "1086" + { + "name" "columbus2016_signature_jdm64_gold" + "item_name" "#StickerKit_columbus2016_signature_jdm64_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_jdm64_gold" + "sticker_material" "columbus2016/sig_jdm64_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "7223652" + } + "1087" + { + "name" "columbus2016_signature_tarik" + "item_name" "#StickerKit_columbus2016_signature_tarik" + "description_string" "#StickerKit_desc_columbus2016_signature_tarik" + "sticker_material" "columbus2016/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "1088" + { + "name" "columbus2016_signature_tarik_foil" + "item_name" "#StickerKit_columbus2016_signature_tarik_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_tarik_foil" + "sticker_material" "columbus2016/sig_tarik_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "1089" + { + "name" "columbus2016_signature_tarik_gold" + "item_name" "#StickerKit_columbus2016_signature_tarik_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_tarik_gold" + "sticker_material" "columbus2016/sig_tarik_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "1090" + { + "name" "columbus2016_signature_freakazoid" + "item_name" "#StickerKit_columbus2016_signature_freakazoid" + "description_string" "#StickerKit_desc_columbus2016_signature_freakazoid" + "sticker_material" "columbus2016/sig_freakazoid" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "16883071" + } + "1091" + { + "name" "columbus2016_signature_freakazoid_foil" + "item_name" "#StickerKit_columbus2016_signature_freakazoid_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_freakazoid_foil" + "sticker_material" "columbus2016/sig_freakazoid_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "16883071" + } + "1092" + { + "name" "columbus2016_signature_freakazoid_gold" + "item_name" "#StickerKit_columbus2016_signature_freakazoid_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_freakazoid_gold" + "sticker_material" "columbus2016/sig_freakazoid_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "16883071" + } + "1093" + { + "name" "columbus2016_signature_stewie2k" + "item_name" "#StickerKit_columbus2016_signature_stewie2k" + "description_string" "#StickerKit_desc_columbus2016_signature_stewie2k" + "sticker_material" "columbus2016/sig_stewie2k" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "1094" + { + "name" "columbus2016_signature_stewie2k_foil" + "item_name" "#StickerKit_columbus2016_signature_stewie2k_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_stewie2k_foil" + "sticker_material" "columbus2016/sig_stewie2k_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "1095" + { + "name" "columbus2016_signature_stewie2k_gold" + "item_name" "#StickerKit_columbus2016_signature_stewie2k_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_stewie2k_gold" + "sticker_material" "columbus2016/sig_stewie2k_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "1096" + { + "name" "columbus2016_signature_shroud" + "item_name" "#StickerKit_columbus2016_signature_shroud" + "description_string" "#StickerKit_desc_columbus2016_signature_shroud" + "sticker_material" "columbus2016/sig_shroud" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "1097" + { + "name" "columbus2016_signature_shroud_foil" + "item_name" "#StickerKit_columbus2016_signature_shroud_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_shroud_foil" + "sticker_material" "columbus2016/sig_shroud_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "1098" + { + "name" "columbus2016_signature_shroud_gold" + "item_name" "#StickerKit_columbus2016_signature_shroud_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_shroud_gold" + "sticker_material" "columbus2016/sig_shroud_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "1099" + { + "name" "columbus2016_signature_skadoodle" + "item_name" "#StickerKit_columbus2016_signature_skadoodle" + "description_string" "#StickerKit_desc_columbus2016_signature_skadoodle" + "sticker_material" "columbus2016/sig_skadoodle" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "1100" + { + "name" "columbus2016_signature_skadoodle_foil" + "item_name" "#StickerKit_columbus2016_signature_skadoodle_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_skadoodle_foil" + "sticker_material" "columbus2016/sig_skadoodle_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "1101" + { + "name" "columbus2016_signature_skadoodle_gold" + "item_name" "#StickerKit_columbus2016_signature_skadoodle_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_skadoodle_gold" + "sticker_material" "columbus2016/sig_skadoodle_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "1102" + { + "name" "columbus2016_signature_nothing" + "item_name" "#StickerKit_columbus2016_signature_nothing" + "description_string" "#StickerKit_desc_columbus2016_signature_nothing" + "sticker_material" "columbus2016/sig_nothing" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "1103" + { + "name" "columbus2016_signature_nothing_foil" + "item_name" "#StickerKit_columbus2016_signature_nothing_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_nothing_foil" + "sticker_material" "columbus2016/sig_nothing_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "1104" + { + "name" "columbus2016_signature_nothing_gold" + "item_name" "#StickerKit_columbus2016_signature_nothing_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_nothing_gold" + "sticker_material" "columbus2016/sig_nothing_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "1105" + { + "name" "columbus2016_signature_apex" + "item_name" "#StickerKit_columbus2016_signature_apex" + "description_string" "#StickerKit_desc_columbus2016_signature_apex" + "sticker_material" "columbus2016/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1106" + { + "name" "columbus2016_signature_apex_foil" + "item_name" "#StickerKit_columbus2016_signature_apex_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_apex_foil" + "sticker_material" "columbus2016/sig_apex_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1107" + { + "name" "columbus2016_signature_apex_gold" + "item_name" "#StickerKit_columbus2016_signature_apex_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_apex_gold" + "sticker_material" "columbus2016/sig_apex_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1108" + { + "name" "columbus2016_signature_happy" + "item_name" "#StickerKit_columbus2016_signature_happy" + "description_string" "#StickerKit_desc_columbus2016_signature_happy" + "sticker_material" "columbus2016/sig_happy" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1109" + { + "name" "columbus2016_signature_happy_foil" + "item_name" "#StickerKit_columbus2016_signature_happy_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_happy_foil" + "sticker_material" "columbus2016/sig_happy_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1110" + { + "name" "columbus2016_signature_happy_gold" + "item_name" "#StickerKit_columbus2016_signature_happy_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_happy_gold" + "sticker_material" "columbus2016/sig_happy_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1111" + { + "name" "columbus2016_signature_devil" + "item_name" "#StickerKit_columbus2016_signature_devil" + "description_string" "#StickerKit_desc_columbus2016_signature_devil" + "sticker_material" "columbus2016/sig_devil" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "44238623" + } + "1112" + { + "name" "columbus2016_signature_devil_foil" + "item_name" "#StickerKit_columbus2016_signature_devil_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_devil_foil" + "sticker_material" "columbus2016/sig_devil_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "44238623" + } + "1113" + { + "name" "columbus2016_signature_devil_gold" + "item_name" "#StickerKit_columbus2016_signature_devil_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_devil_gold" + "sticker_material" "columbus2016/sig_devil_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "44238623" + } + "1114" + { + "name" "columbus2016_signature_kennys" + "item_name" "#StickerKit_columbus2016_signature_kennys" + "description_string" "#StickerKit_desc_columbus2016_signature_kennys" + "sticker_material" "columbus2016/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1115" + { + "name" "columbus2016_signature_kennys_foil" + "item_name" "#StickerKit_columbus2016_signature_kennys_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_kennys_foil" + "sticker_material" "columbus2016/sig_kennys_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1116" + { + "name" "columbus2016_signature_kennys_gold" + "item_name" "#StickerKit_columbus2016_signature_kennys_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_kennys_gold" + "sticker_material" "columbus2016/sig_kennys_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1117" + { + "name" "columbus2016_signature_nbk" + "item_name" "#StickerKit_columbus2016_signature_nbk" + "description_string" "#StickerKit_desc_columbus2016_signature_nbk" + "sticker_material" "columbus2016/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1118" + { + "name" "columbus2016_signature_nbk_foil" + "item_name" "#StickerKit_columbus2016_signature_nbk_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_nbk_foil" + "sticker_material" "columbus2016/sig_nbk_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1119" + { + "name" "columbus2016_signature_nbk_gold" + "item_name" "#StickerKit_columbus2016_signature_nbk_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_nbk_gold" + "sticker_material" "columbus2016/sig_nbk_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1120" + { + "name" "columbus2016_signature_b1ad3" + "item_name" "#StickerKit_columbus2016_signature_b1ad3" + "description_string" "#StickerKit_desc_columbus2016_signature_b1ad3" + "sticker_material" "columbus2016/sig_b1ad3" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1121" + { + "name" "columbus2016_signature_b1ad3_foil" + "item_name" "#StickerKit_columbus2016_signature_b1ad3_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_b1ad3_foil" + "sticker_material" "columbus2016/sig_b1ad3_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1122" + { + "name" "columbus2016_signature_b1ad3_gold" + "item_name" "#StickerKit_columbus2016_signature_b1ad3_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_b1ad3_gold" + "sticker_material" "columbus2016/sig_b1ad3_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1123" + { + "name" "columbus2016_signature_bondik" + "item_name" "#StickerKit_columbus2016_signature_bondik" + "description_string" "#StickerKit_desc_columbus2016_signature_bondik" + "sticker_material" "columbus2016/sig_bondik" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "1124" + { + "name" "columbus2016_signature_bondik_foil" + "item_name" "#StickerKit_columbus2016_signature_bondik_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_bondik_foil" + "sticker_material" "columbus2016/sig_bondik_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "1125" + { + "name" "columbus2016_signature_bondik_gold" + "item_name" "#StickerKit_columbus2016_signature_bondik_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_bondik_gold" + "sticker_material" "columbus2016/sig_bondik_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "46918643" + } + "1126" + { + "name" "columbus2016_signature_shara" + "item_name" "#StickerKit_columbus2016_signature_shara" + "description_string" "#StickerKit_desc_columbus2016_signature_shara" + "sticker_material" "columbus2016/sig_shara" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "53330928" + } + "1127" + { + "name" "columbus2016_signature_shara_foil" + "item_name" "#StickerKit_columbus2016_signature_shara_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_shara_foil" + "sticker_material" "columbus2016/sig_shara_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "53330928" + } + "1128" + { + "name" "columbus2016_signature_shara_gold" + "item_name" "#StickerKit_columbus2016_signature_shara_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_shara_gold" + "sticker_material" "columbus2016/sig_shara_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "53330928" + } + "1129" + { + "name" "columbus2016_signature_markeloff" + "item_name" "#StickerKit_columbus2016_signature_markeloff" + "description_string" "#StickerKit_desc_columbus2016_signature_markeloff" + "sticker_material" "columbus2016/sig_markeloff" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1130" + { + "name" "columbus2016_signature_markeloff_foil" + "item_name" "#StickerKit_columbus2016_signature_markeloff_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_markeloff_foil" + "sticker_material" "columbus2016/sig_markeloff_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1131" + { + "name" "columbus2016_signature_markeloff_gold" + "item_name" "#StickerKit_columbus2016_signature_markeloff_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_markeloff_gold" + "sticker_material" "columbus2016/sig_markeloff_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1132" + { + "name" "columbus2016_signature_worldedit" + "item_name" "#StickerKit_columbus2016_signature_worldedit" + "description_string" "#StickerKit_desc_columbus2016_signature_worldedit" + "sticker_material" "columbus2016/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1133" + { + "name" "columbus2016_signature_worldedit_foil" + "item_name" "#StickerKit_columbus2016_signature_worldedit_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_worldedit_foil" + "sticker_material" "columbus2016/sig_worldedit_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1134" + { + "name" "columbus2016_signature_worldedit_gold" + "item_name" "#StickerKit_columbus2016_signature_worldedit_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_worldedit_gold" + "sticker_material" "columbus2016/sig_worldedit_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1135" + { + "name" "columbus2016_signature_flusha" + "item_name" "#StickerKit_columbus2016_signature_flusha" + "description_string" "#StickerKit_desc_columbus2016_signature_flusha" + "sticker_material" "columbus2016/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "1136" + { + "name" "columbus2016_signature_flusha_foil" + "item_name" "#StickerKit_columbus2016_signature_flusha_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_flusha_foil" + "sticker_material" "columbus2016/sig_flusha_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "1137" + { + "name" "columbus2016_signature_flusha_gold" + "item_name" "#StickerKit_columbus2016_signature_flusha_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_flusha_gold" + "sticker_material" "columbus2016/sig_flusha_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "1138" + { + "name" "columbus2016_signature_jw" + "item_name" "#StickerKit_columbus2016_signature_jw" + "description_string" "#StickerKit_desc_columbus2016_signature_jw" + "sticker_material" "columbus2016/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "1139" + { + "name" "columbus2016_signature_jw_foil" + "item_name" "#StickerKit_columbus2016_signature_jw_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_jw_foil" + "sticker_material" "columbus2016/sig_jw_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "1140" + { + "name" "columbus2016_signature_jw_gold" + "item_name" "#StickerKit_columbus2016_signature_jw_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_jw_gold" + "sticker_material" "columbus2016/sig_jw_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "1141" + { + "name" "columbus2016_signature_krimz" + "item_name" "#StickerKit_columbus2016_signature_krimz" + "description_string" "#StickerKit_desc_columbus2016_signature_krimz" + "sticker_material" "columbus2016/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1142" + { + "name" "columbus2016_signature_krimz_foil" + "item_name" "#StickerKit_columbus2016_signature_krimz_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_krimz_foil" + "sticker_material" "columbus2016/sig_krimz_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1143" + { + "name" "columbus2016_signature_krimz_gold" + "item_name" "#StickerKit_columbus2016_signature_krimz_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_krimz_gold" + "sticker_material" "columbus2016/sig_krimz_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1144" + { + "name" "columbus2016_signature_olofmeister" + "item_name" "#StickerKit_columbus2016_signature_olofmeister" + "description_string" "#StickerKit_desc_columbus2016_signature_olofmeister" + "sticker_material" "columbus2016/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1145" + { + "name" "columbus2016_signature_olofmeister_foil" + "item_name" "#StickerKit_columbus2016_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_olofmeister_foil" + "sticker_material" "columbus2016/sig_olofmeister_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1146" + { + "name" "columbus2016_signature_olofmeister_gold" + "item_name" "#StickerKit_columbus2016_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_olofmeister_gold" + "sticker_material" "columbus2016/sig_olofmeister_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1147" + { + "name" "columbus2016_signature_dennis" + "item_name" "#StickerKit_columbus2016_signature_dennis" + "description_string" "#StickerKit_desc_columbus2016_signature_dennis" + "sticker_material" "columbus2016/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1148" + { + "name" "columbus2016_signature_dennis_foil" + "item_name" "#StickerKit_columbus2016_signature_dennis_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_dennis_foil" + "sticker_material" "columbus2016/sig_dennis_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1149" + { + "name" "columbus2016_signature_dennis_gold" + "item_name" "#StickerKit_columbus2016_signature_dennis_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_dennis_gold" + "sticker_material" "columbus2016/sig_dennis_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1150" + { + "name" "columbus2016_signature_aizy" + "item_name" "#StickerKit_columbus2016_signature_aizy" + "description_string" "#StickerKit_desc_columbus2016_signature_aizy" + "sticker_material" "columbus2016/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1151" + { + "name" "columbus2016_signature_aizy_foil" + "item_name" "#StickerKit_columbus2016_signature_aizy_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_aizy_foil" + "sticker_material" "columbus2016/sig_aizy_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1152" + { + "name" "columbus2016_signature_aizy_gold" + "item_name" "#StickerKit_columbus2016_signature_aizy_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_aizy_gold" + "sticker_material" "columbus2016/sig_aizy_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1153" + { + "name" "columbus2016_signature_fox" + "item_name" "#StickerKit_columbus2016_signature_fox" + "description_string" "#StickerKit_desc_columbus2016_signature_fox" + "sticker_material" "columbus2016/sig_fox" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "1939536" + } + "1154" + { + "name" "columbus2016_signature_fox_foil" + "item_name" "#StickerKit_columbus2016_signature_fox_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_fox_foil" + "sticker_material" "columbus2016/sig_fox_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "1939536" + } + "1155" + { + "name" "columbus2016_signature_fox_gold" + "item_name" "#StickerKit_columbus2016_signature_fox_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_fox_gold" + "sticker_material" "columbus2016/sig_fox_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "1939536" + } + "1156" + { + "name" "columbus2016_signature_maikelele" + "item_name" "#StickerKit_columbus2016_signature_maikelele" + "description_string" "#StickerKit_desc_columbus2016_signature_maikelele" + "sticker_material" "columbus2016/sig_maikelele" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "925972" + } + "1157" + { + "name" "columbus2016_signature_maikelele_foil" + "item_name" "#StickerKit_columbus2016_signature_maikelele_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_maikelele_foil" + "sticker_material" "columbus2016/sig_maikelele_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "925972" + } + "1158" + { + "name" "columbus2016_signature_maikelele_gold" + "item_name" "#StickerKit_columbus2016_signature_maikelele_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_maikelele_gold" + "sticker_material" "columbus2016/sig_maikelele_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "925972" + } + "1159" + { + "name" "columbus2016_signature_rain" + "item_name" "#StickerKit_columbus2016_signature_rain" + "description_string" "#StickerKit_desc_columbus2016_signature_rain" + "sticker_material" "columbus2016/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1160" + { + "name" "columbus2016_signature_rain_foil" + "item_name" "#StickerKit_columbus2016_signature_rain_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_rain_foil" + "sticker_material" "columbus2016/sig_rain_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1161" + { + "name" "columbus2016_signature_rain_gold" + "item_name" "#StickerKit_columbus2016_signature_rain_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_rain_gold" + "sticker_material" "columbus2016/sig_rain_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1162" + { + "name" "columbus2016_signature_jkaem" + "item_name" "#StickerKit_columbus2016_signature_jkaem" + "description_string" "#StickerKit_desc_columbus2016_signature_jkaem" + "sticker_material" "columbus2016/sig_jkaem" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "42442914" + } + "1163" + { + "name" "columbus2016_signature_jkaem_foil" + "item_name" "#StickerKit_columbus2016_signature_jkaem_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_jkaem_foil" + "sticker_material" "columbus2016/sig_jkaem_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "42442914" + } + "1164" + { + "name" "columbus2016_signature_jkaem_gold" + "item_name" "#StickerKit_columbus2016_signature_jkaem_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_jkaem_gold" + "sticker_material" "columbus2016/sig_jkaem_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "61" + "tournament_player_id" "42442914" + } + "1165" + { + "name" "columbus2016_signature_fnx" + "item_name" "#StickerKit_columbus2016_signature_fnx" + "description_string" "#StickerKit_desc_columbus2016_signature_fnx" + "sticker_material" "columbus2016/sig_fnx" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "170178574" + } + "1166" + { + "name" "columbus2016_signature_fnx_foil" + "item_name" "#StickerKit_columbus2016_signature_fnx_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_fnx_foil" + "sticker_material" "columbus2016/sig_fnx_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "170178574" + } + "1167" + { + "name" "columbus2016_signature_fnx_gold" + "item_name" "#StickerKit_columbus2016_signature_fnx_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_fnx_gold" + "sticker_material" "columbus2016/sig_fnx_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "170178574" + } + "1168" + { + "name" "columbus2016_signature_coldzera" + "item_name" "#StickerKit_columbus2016_signature_coldzera" + "description_string" "#StickerKit_desc_columbus2016_signature_coldzera" + "sticker_material" "columbus2016/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "1169" + { + "name" "columbus2016_signature_coldzera_foil" + "item_name" "#StickerKit_columbus2016_signature_coldzera_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_coldzera_foil" + "sticker_material" "columbus2016/sig_coldzera_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "1170" + { + "name" "columbus2016_signature_coldzera_gold" + "item_name" "#StickerKit_columbus2016_signature_coldzera_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_coldzera_gold" + "sticker_material" "columbus2016/sig_coldzera_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "79720871" + } + "1171" + { + "name" "columbus2016_signature_fallen" + "item_name" "#StickerKit_columbus2016_signature_fallen" + "description_string" "#StickerKit_desc_columbus2016_signature_fallen" + "sticker_material" "columbus2016/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "1172" + { + "name" "columbus2016_signature_fallen_foil" + "item_name" "#StickerKit_columbus2016_signature_fallen_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_fallen_foil" + "sticker_material" "columbus2016/sig_fallen_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "1173" + { + "name" "columbus2016_signature_fallen_gold" + "item_name" "#StickerKit_columbus2016_signature_fallen_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_fallen_gold" + "sticker_material" "columbus2016/sig_fallen_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "424467" + } + "1174" + { + "name" "columbus2016_signature_fer" + "item_name" "#StickerKit_columbus2016_signature_fer" + "description_string" "#StickerKit_desc_columbus2016_signature_fer" + "sticker_material" "columbus2016/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "1175" + { + "name" "columbus2016_signature_fer_foil" + "item_name" "#StickerKit_columbus2016_signature_fer_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_fer_foil" + "sticker_material" "columbus2016/sig_fer_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "1176" + { + "name" "columbus2016_signature_fer_gold" + "item_name" "#StickerKit_columbus2016_signature_fer_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_fer_gold" + "sticker_material" "columbus2016/sig_fer_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "38921219" + } + "1177" + { + "name" "columbus2016_signature_taco" + "item_name" "#StickerKit_columbus2016_signature_taco" + "description_string" "#StickerKit_desc_columbus2016_signature_taco" + "sticker_material" "columbus2016/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "52876568" + } + "1178" + { + "name" "columbus2016_signature_taco_foil" + "item_name" "#StickerKit_columbus2016_signature_taco_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_taco_foil" + "sticker_material" "columbus2016/sig_taco_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "52876568" + } + "1179" + { + "name" "columbus2016_signature_taco_gold" + "item_name" "#StickerKit_columbus2016_signature_taco_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_taco_gold" + "sticker_material" "columbus2016/sig_taco_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "57" + "tournament_player_id" "52876568" + } + "1180" + { + "name" "columbus2016_signature_chrisj" + "item_name" "#StickerKit_columbus2016_signature_chrisj" + "description_string" "#StickerKit_desc_columbus2016_signature_chrisj" + "sticker_material" "columbus2016/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1181" + { + "name" "columbus2016_signature_chrisj_foil" + "item_name" "#StickerKit_columbus2016_signature_chrisj_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_chrisj_foil" + "sticker_material" "columbus2016/sig_chrisj_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1182" + { + "name" "columbus2016_signature_chrisj_gold" + "item_name" "#StickerKit_columbus2016_signature_chrisj_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_chrisj_gold" + "sticker_material" "columbus2016/sig_chrisj_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1183" + { + "name" "columbus2016_signature_denis" + "item_name" "#StickerKit_columbus2016_signature_denis" + "description_string" "#StickerKit_desc_columbus2016_signature_denis" + "sticker_material" "columbus2016/sig_denis" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1184" + { + "name" "columbus2016_signature_denis_foil" + "item_name" "#StickerKit_columbus2016_signature_denis_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_denis_foil" + "sticker_material" "columbus2016/sig_denis_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1185" + { + "name" "columbus2016_signature_denis_gold" + "item_name" "#StickerKit_columbus2016_signature_denis_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_denis_gold" + "sticker_material" "columbus2016/sig_denis_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1186" + { + "name" "columbus2016_signature_spiidi" + "item_name" "#StickerKit_columbus2016_signature_spiidi" + "description_string" "#StickerKit_desc_columbus2016_signature_spiidi" + "sticker_material" "columbus2016/sig_spiidi" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1187" + { + "name" "columbus2016_signature_spiidi_foil" + "item_name" "#StickerKit_columbus2016_signature_spiidi_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_spiidi_foil" + "sticker_material" "columbus2016/sig_spiidi_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1188" + { + "name" "columbus2016_signature_spiidi_gold" + "item_name" "#StickerKit_columbus2016_signature_spiidi_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_spiidi_gold" + "sticker_material" "columbus2016/sig_spiidi_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1189" + { + "name" "columbus2016_signature_nex" + "item_name" "#StickerKit_columbus2016_signature_nex" + "description_string" "#StickerKit_desc_columbus2016_signature_nex" + "sticker_material" "columbus2016/sig_nex" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "1190" + { + "name" "columbus2016_signature_nex_foil" + "item_name" "#StickerKit_columbus2016_signature_nex_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_nex_foil" + "sticker_material" "columbus2016/sig_nex_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "1191" + { + "name" "columbus2016_signature_nex_gold" + "item_name" "#StickerKit_columbus2016_signature_nex_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_nex_gold" + "sticker_material" "columbus2016/sig_nex_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "1192" + { + "name" "columbus2016_signature_niko" + "item_name" "#StickerKit_columbus2016_signature_niko" + "description_string" "#StickerKit_desc_columbus2016_signature_niko" + "sticker_material" "columbus2016/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1193" + { + "name" "columbus2016_signature_niko_foil" + "item_name" "#StickerKit_columbus2016_signature_niko_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_niko_foil" + "sticker_material" "columbus2016/sig_niko_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1194" + { + "name" "columbus2016_signature_niko_gold" + "item_name" "#StickerKit_columbus2016_signature_niko_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_niko_gold" + "sticker_material" "columbus2016/sig_niko_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1195" + { + "name" "columbus2016_signature_edward" + "item_name" "#StickerKit_columbus2016_signature_edward" + "description_string" "#StickerKit_desc_columbus2016_signature_edward" + "sticker_material" "columbus2016/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1196" + { + "name" "columbus2016_signature_edward_foil" + "item_name" "#StickerKit_columbus2016_signature_edward_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_edward_foil" + "sticker_material" "columbus2016/sig_edward_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1197" + { + "name" "columbus2016_signature_edward_gold" + "item_name" "#StickerKit_columbus2016_signature_edward_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_edward_gold" + "sticker_material" "columbus2016/sig_edward_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1198" + { + "name" "columbus2016_signature_flamie" + "item_name" "#StickerKit_columbus2016_signature_flamie" + "description_string" "#StickerKit_desc_columbus2016_signature_flamie" + "sticker_material" "columbus2016/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1199" + { + "name" "columbus2016_signature_flamie_foil" + "item_name" "#StickerKit_columbus2016_signature_flamie_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_flamie_foil" + "sticker_material" "columbus2016/sig_flamie_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1200" + { + "name" "columbus2016_signature_flamie_gold" + "item_name" "#StickerKit_columbus2016_signature_flamie_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_flamie_gold" + "sticker_material" "columbus2016/sig_flamie_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1201" + { + "name" "columbus2016_signature_guardian" + "item_name" "#StickerKit_columbus2016_signature_guardian" + "description_string" "#StickerKit_desc_columbus2016_signature_guardian" + "sticker_material" "columbus2016/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1202" + { + "name" "columbus2016_signature_guardian_foil" + "item_name" "#StickerKit_columbus2016_signature_guardian_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_guardian_foil" + "sticker_material" "columbus2016/sig_guardian_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1203" + { + "name" "columbus2016_signature_guardian_gold" + "item_name" "#StickerKit_columbus2016_signature_guardian_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_guardian_gold" + "sticker_material" "columbus2016/sig_guardian_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1204" + { + "name" "columbus2016_signature_seized" + "item_name" "#StickerKit_columbus2016_signature_seized" + "description_string" "#StickerKit_desc_columbus2016_signature_seized" + "sticker_material" "columbus2016/sig_seized" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1205" + { + "name" "columbus2016_signature_seized_foil" + "item_name" "#StickerKit_columbus2016_signature_seized_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_seized_foil" + "sticker_material" "columbus2016/sig_seized_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1206" + { + "name" "columbus2016_signature_seized_gold" + "item_name" "#StickerKit_columbus2016_signature_seized_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_seized_gold" + "sticker_material" "columbus2016/sig_seized_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1207" + { + "name" "columbus2016_signature_zeus" + "item_name" "#StickerKit_columbus2016_signature_zeus" + "description_string" "#StickerKit_desc_columbus2016_signature_zeus" + "sticker_material" "columbus2016/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "1208" + { + "name" "columbus2016_signature_zeus_foil" + "item_name" "#StickerKit_columbus2016_signature_zeus_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_zeus_foil" + "sticker_material" "columbus2016/sig_zeus_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "1209" + { + "name" "columbus2016_signature_zeus_gold" + "item_name" "#StickerKit_columbus2016_signature_zeus_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_zeus_gold" + "sticker_material" "columbus2016/sig_zeus_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "1210" + { + "name" "columbus2016_signature_pyth" + "item_name" "#StickerKit_columbus2016_signature_pyth" + "description_string" "#StickerKit_desc_columbus2016_signature_pyth" + "sticker_material" "columbus2016/sig_pyth" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "57312567" + } + "1211" + { + "name" "columbus2016_signature_pyth_foil" + "item_name" "#StickerKit_columbus2016_signature_pyth_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_pyth_foil" + "sticker_material" "columbus2016/sig_pyth_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "57312567" + } + "1212" + { + "name" "columbus2016_signature_pyth_gold" + "item_name" "#StickerKit_columbus2016_signature_pyth_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_pyth_gold" + "sticker_material" "columbus2016/sig_pyth_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "57312567" + } + "1213" + { + "name" "columbus2016_signature_forest" + "item_name" "#StickerKit_columbus2016_signature_forest" + "description_string" "#StickerKit_desc_columbus2016_signature_forest" + "sticker_material" "columbus2016/sig_forest" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "1214" + { + "name" "columbus2016_signature_forest_foil" + "item_name" "#StickerKit_columbus2016_signature_forest_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_forest_foil" + "sticker_material" "columbus2016/sig_forest_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "1215" + { + "name" "columbus2016_signature_forest_gold" + "item_name" "#StickerKit_columbus2016_signature_forest_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_forest_gold" + "sticker_material" "columbus2016/sig_forest_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "1216" + { + "name" "columbus2016_signature_friberg" + "item_name" "#StickerKit_columbus2016_signature_friberg" + "description_string" "#StickerKit_desc_columbus2016_signature_friberg" + "sticker_material" "columbus2016/sig_friberg" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "1217" + { + "name" "columbus2016_signature_friberg_foil" + "item_name" "#StickerKit_columbus2016_signature_friberg_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_friberg_foil" + "sticker_material" "columbus2016/sig_friberg_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "1218" + { + "name" "columbus2016_signature_friberg_gold" + "item_name" "#StickerKit_columbus2016_signature_friberg_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_friberg_gold" + "sticker_material" "columbus2016/sig_friberg_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "1219" + { + "name" "columbus2016_signature_getright" + "item_name" "#StickerKit_columbus2016_signature_getright" + "description_string" "#StickerKit_desc_columbus2016_signature_getright" + "sticker_material" "columbus2016/sig_getright" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "1220" + { + "name" "columbus2016_signature_getright_foil" + "item_name" "#StickerKit_columbus2016_signature_getright_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_getright_foil" + "sticker_material" "columbus2016/sig_getright_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "1221" + { + "name" "columbus2016_signature_getright_gold" + "item_name" "#StickerKit_columbus2016_signature_getright_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_getright_gold" + "sticker_material" "columbus2016/sig_getright_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "1222" + { + "name" "columbus2016_signature_xizt" + "item_name" "#StickerKit_columbus2016_signature_xizt" + "description_string" "#StickerKit_desc_columbus2016_signature_xizt" + "sticker_material" "columbus2016/sig_xizt" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "1223" + { + "name" "columbus2016_signature_xizt_foil" + "item_name" "#StickerKit_columbus2016_signature_xizt_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_xizt_foil" + "sticker_material" "columbus2016/sig_xizt_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "1224" + { + "name" "columbus2016_signature_xizt_gold" + "item_name" "#StickerKit_columbus2016_signature_xizt_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_xizt_gold" + "sticker_material" "columbus2016/sig_xizt_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "1225" + { + "name" "columbus2016_signature_jasonr" + "item_name" "#StickerKit_columbus2016_signature_jasonr" + "description_string" "#StickerKit_desc_columbus2016_signature_jasonr" + "sticker_material" "columbus2016/sig_jasonr" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "24868593" + } + "1226" + { + "name" "columbus2016_signature_jasonr_foil" + "item_name" "#StickerKit_columbus2016_signature_jasonr_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_jasonr_foil" + "sticker_material" "columbus2016/sig_jasonr_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "24868593" + } + "1227" + { + "name" "columbus2016_signature_jasonr_gold" + "item_name" "#StickerKit_columbus2016_signature_jasonr_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_jasonr_gold" + "sticker_material" "columbus2016/sig_jasonr_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "24868593" + } + "1228" + { + "name" "columbus2016_signature_arya" + "item_name" "#StickerKit_columbus2016_signature_arya" + "description_string" "#StickerKit_desc_columbus2016_signature_arya" + "sticker_material" "columbus2016/sig_arya" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "411777" + } + "1229" + { + "name" "columbus2016_signature_arya_foil" + "item_name" "#StickerKit_columbus2016_signature_arya_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_arya_foil" + "sticker_material" "columbus2016/sig_arya_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "411777" + } + "1230" + { + "name" "columbus2016_signature_arya_gold" + "item_name" "#StickerKit_columbus2016_signature_arya_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_arya_gold" + "sticker_material" "columbus2016/sig_arya_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "411777" + } + "1231" + { + "name" "columbus2016_signature_professorchaos" + "item_name" "#StickerKit_columbus2016_signature_professorchaos" + "description_string" "#StickerKit_desc_columbus2016_signature_professorchaos" + "sticker_material" "columbus2016/sig_professorchaos" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "2029235" + } + "1232" + { + "name" "columbus2016_signature_professorchaos_foil" + "item_name" "#StickerKit_columbus2016_signature_professorchaos_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_professorchaos_foil" + "sticker_material" "columbus2016/sig_professorchaos_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "2029235" + } + "1233" + { + "name" "columbus2016_signature_professorchaos_gold" + "item_name" "#StickerKit_columbus2016_signature_professorchaos_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_professorchaos_gold" + "sticker_material" "columbus2016/sig_professorchaos_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "2029235" + } + "1234" + { + "name" "columbus2016_signature_davey" + "item_name" "#StickerKit_columbus2016_signature_davey" + "description_string" "#StickerKit_desc_columbus2016_signature_davey" + "sticker_material" "columbus2016/sig_davey" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "100534297" + } + "1235" + { + "name" "columbus2016_signature_davey_foil" + "item_name" "#StickerKit_columbus2016_signature_davey_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_davey_foil" + "sticker_material" "columbus2016/sig_davey_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "100534297" + } + "1236" + { + "name" "columbus2016_signature_davey_gold" + "item_name" "#StickerKit_columbus2016_signature_davey_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_davey_gold" + "sticker_material" "columbus2016/sig_davey_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "100534297" + } + "1237" + { + "name" "columbus2016_signature_abe" + "item_name" "#StickerKit_columbus2016_signature_abe" + "description_string" "#StickerKit_desc_columbus2016_signature_abe" + "sticker_material" "columbus2016/sig_abe" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "25060851" + } + "1238" + { + "name" "columbus2016_signature_abe_foil" + "item_name" "#StickerKit_columbus2016_signature_abe_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_abe_foil" + "sticker_material" "columbus2016/sig_abe_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "25060851" + } + "1239" + { + "name" "columbus2016_signature_abe_gold" + "item_name" "#StickerKit_columbus2016_signature_abe_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_abe_gold" + "sticker_material" "columbus2016/sig_abe_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "62" + "tournament_player_id" "25060851" + } + "1240" + { + "name" "columbus2016_signature_adren" + "item_name" "#StickerKit_columbus2016_signature_adren" + "description_string" "#StickerKit_desc_columbus2016_signature_adren" + "sticker_material" "columbus2016/sig_adren" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "1366033" + } + "1241" + { + "name" "columbus2016_signature_adren_foil" + "item_name" "#StickerKit_columbus2016_signature_adren_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_adren_foil" + "sticker_material" "columbus2016/sig_adren_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "1366033" + } + "1242" + { + "name" "columbus2016_signature_adren_gold" + "item_name" "#StickerKit_columbus2016_signature_adren_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_adren_gold" + "sticker_material" "columbus2016/sig_adren_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "1366033" + } + "1243" + { + "name" "columbus2016_signature_elige" + "item_name" "#StickerKit_columbus2016_signature_elige" + "description_string" "#StickerKit_desc_columbus2016_signature_elige" + "sticker_material" "columbus2016/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1244" + { + "name" "columbus2016_signature_elige_foil" + "item_name" "#StickerKit_columbus2016_signature_elige_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_elige_foil" + "sticker_material" "columbus2016/sig_elige_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1245" + { + "name" "columbus2016_signature_elige_gold" + "item_name" "#StickerKit_columbus2016_signature_elige_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_elige_gold" + "sticker_material" "columbus2016/sig_elige_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1246" + { + "name" "columbus2016_signature_s1mple" + "item_name" "#StickerKit_columbus2016_signature_s1mple" + "description_string" "#StickerKit_desc_columbus2016_signature_s1mple" + "sticker_material" "columbus2016/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "73936547" + } + "1247" + { + "name" "columbus2016_signature_s1mple_foil" + "item_name" "#StickerKit_columbus2016_signature_s1mple_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_s1mple_foil" + "sticker_material" "columbus2016/sig_s1mple_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "73936547" + } + "1248" + { + "name" "columbus2016_signature_s1mple_gold" + "item_name" "#StickerKit_columbus2016_signature_s1mple_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_s1mple_gold" + "sticker_material" "columbus2016/sig_s1mple_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "73936547" + } + "1249" + { + "name" "columbus2016_signature_hiko" + "item_name" "#StickerKit_columbus2016_signature_hiko" + "description_string" "#StickerKit_desc_columbus2016_signature_hiko" + "sticker_material" "columbus2016/sig_hiko" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1250" + { + "name" "columbus2016_signature_hiko_foil" + "item_name" "#StickerKit_columbus2016_signature_hiko_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_hiko_foil" + "sticker_material" "columbus2016/sig_hiko_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1251" + { + "name" "columbus2016_signature_hiko_gold" + "item_name" "#StickerKit_columbus2016_signature_hiko_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_hiko_gold" + "sticker_material" "columbus2016/sig_hiko_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1252" + { + "name" "columbus2016_signature_nitro" + "item_name" "#StickerKit_columbus2016_signature_nitro" + "description_string" "#StickerKit_desc_columbus2016_signature_nitro" + "sticker_material" "columbus2016/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "1253" + { + "name" "columbus2016_signature_nitro_foil" + "item_name" "#StickerKit_columbus2016_signature_nitro_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_nitro_foil" + "sticker_material" "columbus2016/sig_nitro_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "1254" + { + "name" "columbus2016_signature_nitro_gold" + "item_name" "#StickerKit_columbus2016_signature_nitro_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_nitro_gold" + "sticker_material" "columbus2016/sig_nitro_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "1255" + { + "name" "columbus2016_signature_ex6tenz" + "item_name" "#StickerKit_columbus2016_signature_ex6tenz" + "description_string" "#StickerKit_desc_columbus2016_signature_ex6tenz" + "sticker_material" "columbus2016/sig_ex6tenz" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "11737333" + } + "1256" + { + "name" "columbus2016_signature_ex6tenz_foil" + "item_name" "#StickerKit_columbus2016_signature_ex6tenz_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_ex6tenz_foil" + "sticker_material" "columbus2016/sig_ex6tenz_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "11737333" + } + "1257" + { + "name" "columbus2016_signature_ex6tenz_gold" + "item_name" "#StickerKit_columbus2016_signature_ex6tenz_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_ex6tenz_gold" + "sticker_material" "columbus2016/sig_ex6tenz_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "11737333" + } + "1258" + { + "name" "columbus2016_signature_rpk" + "item_name" "#StickerKit_columbus2016_signature_rpk" + "description_string" "#StickerKit_desc_columbus2016_signature_rpk" + "sticker_material" "columbus2016/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "1259" + { + "name" "columbus2016_signature_rpk_foil" + "item_name" "#StickerKit_columbus2016_signature_rpk_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_rpk_foil" + "sticker_material" "columbus2016/sig_rpk_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "1260" + { + "name" "columbus2016_signature_rpk_gold" + "item_name" "#StickerKit_columbus2016_signature_rpk_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_rpk_gold" + "sticker_material" "columbus2016/sig_rpk_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "1261" + { + "name" "columbus2016_signature_scream" + "item_name" "#StickerKit_columbus2016_signature_scream" + "description_string" "#StickerKit_desc_columbus2016_signature_scream" + "sticker_material" "columbus2016/sig_scream" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "1262" + { + "name" "columbus2016_signature_scream_foil" + "item_name" "#StickerKit_columbus2016_signature_scream_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_scream_foil" + "sticker_material" "columbus2016/sig_scream_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "1263" + { + "name" "columbus2016_signature_scream_gold" + "item_name" "#StickerKit_columbus2016_signature_scream_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_scream_gold" + "sticker_material" "columbus2016/sig_scream_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "1264" + { + "name" "columbus2016_signature_shox" + "item_name" "#StickerKit_columbus2016_signature_shox" + "description_string" "#StickerKit_desc_columbus2016_signature_shox" + "sticker_material" "columbus2016/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "1265" + { + "name" "columbus2016_signature_shox_foil" + "item_name" "#StickerKit_columbus2016_signature_shox_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_shox_foil" + "sticker_material" "columbus2016/sig_shox_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "1266" + { + "name" "columbus2016_signature_shox_gold" + "item_name" "#StickerKit_columbus2016_signature_shox_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_shox_gold" + "sticker_material" "columbus2016/sig_shox_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "1267" + { + "name" "columbus2016_signature_smithzz" + "item_name" "#StickerKit_columbus2016_signature_smithzz" + "description_string" "#StickerKit_desc_columbus2016_signature_smithzz" + "sticker_material" "columbus2016/sig_smithzz" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "1268" + { + "name" "columbus2016_signature_smithzz_foil" + "item_name" "#StickerKit_columbus2016_signature_smithzz_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_smithzz_foil" + "sticker_material" "columbus2016/sig_smithzz_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "1269" + { + "name" "columbus2016_signature_smithzz_gold" + "item_name" "#StickerKit_columbus2016_signature_smithzz_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_smithzz_gold" + "sticker_material" "columbus2016/sig_smithzz_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "1270" + { + "name" "columbus2016_signature_cajunb" + "item_name" "#StickerKit_columbus2016_signature_cajunb" + "description_string" "#StickerKit_desc_columbus2016_signature_cajunb" + "sticker_material" "columbus2016/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "18062315" + } + "1271" + { + "name" "columbus2016_signature_cajunb_foil" + "item_name" "#StickerKit_columbus2016_signature_cajunb_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_cajunb_foil" + "sticker_material" "columbus2016/sig_cajunb_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "18062315" + } + "1272" + { + "name" "columbus2016_signature_cajunb_gold" + "item_name" "#StickerKit_columbus2016_signature_cajunb_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_cajunb_gold" + "sticker_material" "columbus2016/sig_cajunb_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "18062315" + } + "1273" + { + "name" "columbus2016_signature_device" + "item_name" "#StickerKit_columbus2016_signature_device" + "description_string" "#StickerKit_desc_columbus2016_signature_device" + "sticker_material" "columbus2016/sig_device" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "1274" + { + "name" "columbus2016_signature_device_foil" + "item_name" "#StickerKit_columbus2016_signature_device_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_device_foil" + "sticker_material" "columbus2016/sig_device_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "1275" + { + "name" "columbus2016_signature_device_gold" + "item_name" "#StickerKit_columbus2016_signature_device_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_device_gold" + "sticker_material" "columbus2016/sig_device_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "1276" + { + "name" "columbus2016_signature_dupreeh" + "item_name" "#StickerKit_columbus2016_signature_dupreeh" + "description_string" "#StickerKit_desc_columbus2016_signature_dupreeh" + "sticker_material" "columbus2016/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "1277" + { + "name" "columbus2016_signature_dupreeh_foil" + "item_name" "#StickerKit_columbus2016_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_dupreeh_foil" + "sticker_material" "columbus2016/sig_dupreeh_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "1278" + { + "name" "columbus2016_signature_dupreeh_gold" + "item_name" "#StickerKit_columbus2016_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_dupreeh_gold" + "sticker_material" "columbus2016/sig_dupreeh_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "1279" + { + "name" "columbus2016_signature_karrigan" + "item_name" "#StickerKit_columbus2016_signature_karrigan" + "description_string" "#StickerKit_desc_columbus2016_signature_karrigan" + "sticker_material" "columbus2016/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "29164525" + } + "1280" + { + "name" "columbus2016_signature_karrigan_foil" + "item_name" "#StickerKit_columbus2016_signature_karrigan_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_karrigan_foil" + "sticker_material" "columbus2016/sig_karrigan_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "29164525" + } + "1281" + { + "name" "columbus2016_signature_karrigan_gold" + "item_name" "#StickerKit_columbus2016_signature_karrigan_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_karrigan_gold" + "sticker_material" "columbus2016/sig_karrigan_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "29164525" + } + "1282" + { + "name" "columbus2016_signature_xyp9x" + "item_name" "#StickerKit_columbus2016_signature_xyp9x" + "description_string" "#StickerKit_desc_columbus2016_signature_xyp9x" + "sticker_material" "columbus2016/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "1283" + { + "name" "columbus2016_signature_xyp9x_foil" + "item_name" "#StickerKit_columbus2016_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_xyp9x_foil" + "sticker_material" "columbus2016/sig_xyp9x_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "1284" + { + "name" "columbus2016_signature_xyp9x_gold" + "item_name" "#StickerKit_columbus2016_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_xyp9x_gold" + "sticker_material" "columbus2016/sig_xyp9x_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "1285" + { + "name" "columbus2016_signature_waylander" + "item_name" "#StickerKit_columbus2016_signature_waylander" + "description_string" "#StickerKit_desc_columbus2016_signature_waylander" + "sticker_material" "columbus2016/sig_waylander" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "38340970" + } + "1286" + { + "name" "columbus2016_signature_waylander_foil" + "item_name" "#StickerKit_columbus2016_signature_waylander_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_waylander_foil" + "sticker_material" "columbus2016/sig_waylander_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "38340970" + } + "1287" + { + "name" "columbus2016_signature_waylander_gold" + "item_name" "#StickerKit_columbus2016_signature_waylander_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_waylander_gold" + "sticker_material" "columbus2016/sig_waylander_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "38340970" + } + "1288" + { + "name" "columbus2016_signature_dosia" + "item_name" "#StickerKit_columbus2016_signature_dosia" + "description_string" "#StickerKit_desc_columbus2016_signature_dosia" + "sticker_material" "columbus2016/sig_dosia" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "1289" + { + "name" "columbus2016_signature_dosia_foil" + "item_name" "#StickerKit_columbus2016_signature_dosia_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_dosia_foil" + "sticker_material" "columbus2016/sig_dosia_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "1290" + { + "name" "columbus2016_signature_dosia_gold" + "item_name" "#StickerKit_columbus2016_signature_dosia_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_dosia_gold" + "sticker_material" "columbus2016/sig_dosia_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "1291" + { + "name" "columbus2016_signature_hooch" + "item_name" "#StickerKit_columbus2016_signature_hooch" + "description_string" "#StickerKit_desc_columbus2016_signature_hooch" + "sticker_material" "columbus2016/sig_hooch" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "5809933" + } + "1292" + { + "name" "columbus2016_signature_hooch_foil" + "item_name" "#StickerKit_columbus2016_signature_hooch_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_hooch_foil" + "sticker_material" "columbus2016/sig_hooch_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "5809933" + } + "1293" + { + "name" "columbus2016_signature_hooch_gold" + "item_name" "#StickerKit_columbus2016_signature_hooch_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_hooch_gold" + "sticker_material" "columbus2016/sig_hooch_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "5809933" + } + "1294" + { + "name" "columbus2016_signature_mou" + "item_name" "#StickerKit_columbus2016_signature_mou" + "description_string" "#StickerKit_desc_columbus2016_signature_mou" + "sticker_material" "columbus2016/sig_mou" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "1295" + { + "name" "columbus2016_signature_mou_foil" + "item_name" "#StickerKit_columbus2016_signature_mou_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_mou_foil" + "sticker_material" "columbus2016/sig_mou_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "1296" + { + "name" "columbus2016_signature_mou_gold" + "item_name" "#StickerKit_columbus2016_signature_mou_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_mou_gold" + "sticker_material" "columbus2016/sig_mou_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "1297" + { + "name" "columbus2016_signature_adrenkz" + "item_name" "#StickerKit_columbus2016_signature_adrenkz" + "description_string" "#StickerKit_desc_columbus2016_signature_adrenkz" + "sticker_material" "columbus2016/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "1298" + { + "name" "columbus2016_signature_adrenkz_foil" + "item_name" "#StickerKit_columbus2016_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_adrenkz_foil" + "sticker_material" "columbus2016/sig_adrenkz_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "1299" + { + "name" "columbus2016_signature_adrenkz_gold" + "item_name" "#StickerKit_columbus2016_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_adrenkz_gold" + "sticker_material" "columbus2016/sig_adrenkz_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "1300" + { + "name" "columbus2016_signature_byali" + "item_name" "#StickerKit_columbus2016_signature_byali" + "description_string" "#StickerKit_desc_columbus2016_signature_byali" + "sticker_material" "columbus2016/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "1301" + { + "name" "columbus2016_signature_byali_foil" + "item_name" "#StickerKit_columbus2016_signature_byali_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_byali_foil" + "sticker_material" "columbus2016/sig_byali_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "1302" + { + "name" "columbus2016_signature_byali_gold" + "item_name" "#StickerKit_columbus2016_signature_byali_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_byali_gold" + "sticker_material" "columbus2016/sig_byali_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "1303" + { + "name" "columbus2016_signature_neo" + "item_name" "#StickerKit_columbus2016_signature_neo" + "description_string" "#StickerKit_desc_columbus2016_signature_neo" + "sticker_material" "columbus2016/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "1304" + { + "name" "columbus2016_signature_neo_foil" + "item_name" "#StickerKit_columbus2016_signature_neo_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_neo_foil" + "sticker_material" "columbus2016/sig_neo_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "1305" + { + "name" "columbus2016_signature_neo_gold" + "item_name" "#StickerKit_columbus2016_signature_neo_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_neo_gold" + "sticker_material" "columbus2016/sig_neo_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "1306" + { + "name" "columbus2016_signature_pasha" + "item_name" "#StickerKit_columbus2016_signature_pasha" + "description_string" "#StickerKit_desc_columbus2016_signature_pasha" + "sticker_material" "columbus2016/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "1307" + { + "name" "columbus2016_signature_pasha_foil" + "item_name" "#StickerKit_columbus2016_signature_pasha_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_pasha_foil" + "sticker_material" "columbus2016/sig_pasha_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "1308" + { + "name" "columbus2016_signature_pasha_gold" + "item_name" "#StickerKit_columbus2016_signature_pasha_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_pasha_gold" + "sticker_material" "columbus2016/sig_pasha_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "1309" + { + "name" "columbus2016_signature_snax" + "item_name" "#StickerKit_columbus2016_signature_snax" + "description_string" "#StickerKit_desc_columbus2016_signature_snax" + "sticker_material" "columbus2016/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "1310" + { + "name" "columbus2016_signature_snax_foil" + "item_name" "#StickerKit_columbus2016_signature_snax_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_snax_foil" + "sticker_material" "columbus2016/sig_snax_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "1311" + { + "name" "columbus2016_signature_snax_gold" + "item_name" "#StickerKit_columbus2016_signature_snax_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_snax_gold" + "sticker_material" "columbus2016/sig_snax_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "1312" + { + "name" "columbus2016_signature_taz" + "item_name" "#StickerKit_columbus2016_signature_taz" + "description_string" "#StickerKit_desc_columbus2016_signature_taz" + "sticker_material" "columbus2016/sig_taz" + "item_rarity" "rare" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "1313" + { + "name" "columbus2016_signature_taz_foil" + "item_name" "#StickerKit_columbus2016_signature_taz_foil" + "description_string" "#StickerKit_desc_columbus2016_signature_taz_foil" + "sticker_material" "columbus2016/sig_taz_foil" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "1314" + { + "name" "columbus2016_signature_taz_gold" + "item_name" "#StickerKit_columbus2016_signature_taz_gold" + "description_string" "#StickerKit_desc_columbus2016_signature_taz_gold" + "sticker_material" "columbus2016/sig_taz_gold" + "item_rarity" "legendary" + "tournament_event_id" "9" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + } + "prefabs" + { + "cologne2016_sticker_capsule_prefab" + { + "first_sale_date" "2016-06-24" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + } + "cologne2016_signature_capsule_prefab" + { + "first_sale_date" "2016-06-24" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_cologne2016_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_cologne2016_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "145" "crate_sticker_pack_cologne2016_legends" + "146" "crate_sticker_pack_cologne2016_challengers" + "147" "crate_signature_pack_cologne2016_group_1_legendary" + "148" "crate_signature_pack_cologne2016_group_2_legendary" + "149" "cologne2016_signatures_nip" + "150" "cologne2016_signatures_optc" + "151" "cologne2016_signatures_clg" + "152" "cologne2016_signatures_gamb" + "153" "cologne2016_signatures_flip" + "154" "cologne2016_signatures_liq" + "155" "cologne2016_signatures_mss" + "156" "cologne2016_signatures_navi" + "157" "cologne2016_signatures_vp" + "158" "cologne2016_signatures_sk" + "159" "cologne2016_signatures_g2" + "160" "cologne2016_signatures_faze" + "161" "cologne2016_signatures_astr" + "162" "cologne2016_signatures_nv" + "163" "cologne2016_signatures_fntc" + "164" "cologne2016_signatures_dig" + "165" "crate_cologne2016_promo_de_dust2" + "166" "crate_cologne2016_promo_de_mirage" + "167" "crate_cologne2016_promo_de_cbble" + "168" "crate_cologne2016_promo_de_overpass" + "169" "crate_cologne2016_promo_de_cache" + "170" "crate_cologne2016_promo_de_train" + "171" "crate_cologne2016_promo_de_nuke" + } + "client_loot_lists" + { + "cologne2016_rare_nip" + { + "[cologne2016_team_nip]sticker" "1" + } + "cologne2016_rare_optc" + { + "[cologne2016_team_optc]sticker" "1" + } + "cologne2016_rare_clg" + { + "[cologne2016_team_clg]sticker" "1" + } + "cologne2016_rare_gamb" + { + "[cologne2016_team_gamb]sticker" "1" + } + "cologne2016_rare_flip" + { + "[cologne2016_team_flip]sticker" "1" + } + "cologne2016_rare_liq" + { + "[cologne2016_team_liq]sticker" "1" + } + "cologne2016_rare_mss" + { + "[cologne2016_team_mss]sticker" "1" + } + "cologne2016_rare_navi" + { + "[cologne2016_team_navi]sticker" "1" + } + "cologne2016_rare_vp" + { + "[cologne2016_team_vp]sticker" "1" + } + "cologne2016_rare_sk" + { + "[cologne2016_team_sk]sticker" "1" + } + "cologne2016_rare_g2" + { + "[cologne2016_team_g2]sticker" "1" + } + "cologne2016_rare_faze" + { + "[cologne2016_team_faze]sticker" "1" + } + "cologne2016_rare_astr" + { + "[cologne2016_team_astr]sticker" "1" + } + "cologne2016_rare_nv" + { + "[cologne2016_team_nv]sticker" "1" + } + "cologne2016_rare_fntc" + { + "[cologne2016_team_fntc]sticker" "1" + } + "cologne2016_rare_dig" + { + "[cologne2016_team_dig]sticker" "1" + } + "cologne2016_rare_esl" + { + "[cologne2016_team_esl]sticker" "1" + } + "crate_sticker_pack_cologne2016_legends_rare" + { + "[cologne2016_team_nip]sticker" "1" + "[cologne2016_team_clg]sticker" "1" + "[cologne2016_team_liq]sticker" "1" + "[cologne2016_team_navi]sticker" "1" + "[cologne2016_team_vp]sticker" "1" + "[cologne2016_team_sk]sticker" "1" + "[cologne2016_team_astr]sticker" "1" + "[cologne2016_team_fntc]sticker" "1" + "[cologne2016_team_esl]sticker" "1" + } + "crate_sticker_pack_cologne2016_legends_mythical" + { + "[cologne2016_team_nip_holo]sticker" "1" + "[cologne2016_team_clg_holo]sticker" "1" + "[cologne2016_team_liq_holo]sticker" "1" + "[cologne2016_team_navi_holo]sticker" "1" + "[cologne2016_team_vp_holo]sticker" "1" + "[cologne2016_team_sk_holo]sticker" "1" + "[cologne2016_team_astr_holo]sticker" "1" + "[cologne2016_team_fntc_holo]sticker" "1" + "[cologne2016_team_esl_holo]sticker" "1" + } + "crate_sticker_pack_cologne2016_legends_legendary" + { + "[cologne2016_team_nip_foil]sticker" "1" + "[cologne2016_team_clg_foil]sticker" "1" + "[cologne2016_team_liq_foil]sticker" "1" + "[cologne2016_team_navi_foil]sticker" "1" + "[cologne2016_team_vp_foil]sticker" "1" + "[cologne2016_team_sk_foil]sticker" "1" + "[cologne2016_team_astr_foil]sticker" "1" + "[cologne2016_team_fntc_foil]sticker" "1" + "[cologne2016_team_esl_foil]sticker" "1" + } + "crate_sticker_pack_cologne2016_legends" + { + "crate_sticker_pack_cologne2016_legends_mythical" "1" + "crate_sticker_pack_cologne2016_legends_legendary" "1" + } + "crate_sticker_pack_cologne2016_challengers_rare" + { + "[cologne2016_team_optc]sticker" "1" + "[cologne2016_team_gamb]sticker" "1" + "[cologne2016_team_flip]sticker" "1" + "[cologne2016_team_mss]sticker" "1" + "[cologne2016_team_g2]sticker" "1" + "[cologne2016_team_faze]sticker" "1" + "[cologne2016_team_nv]sticker" "1" + "[cologne2016_team_dig]sticker" "1" + } + "crate_sticker_pack_cologne2016_challengers_mythical" + { + "[cologne2016_team_optc_holo]sticker" "1" + "[cologne2016_team_gamb_holo]sticker" "1" + "[cologne2016_team_flip_holo]sticker" "1" + "[cologne2016_team_mss_holo]sticker" "1" + "[cologne2016_team_g2_holo]sticker" "1" + "[cologne2016_team_faze_holo]sticker" "1" + "[cologne2016_team_nv_holo]sticker" "1" + "[cologne2016_team_dig_holo]sticker" "1" + "[cologne2016_team_esl_holo]sticker" "1" + } + "crate_sticker_pack_cologne2016_challengers_legendary" + { + "[cologne2016_team_optc_foil]sticker" "1" + "[cologne2016_team_gamb_foil]sticker" "1" + "[cologne2016_team_flip_foil]sticker" "1" + "[cologne2016_team_mss_foil]sticker" "1" + "[cologne2016_team_g2_foil]sticker" "1" + "[cologne2016_team_faze_foil]sticker" "1" + "[cologne2016_team_nv_foil]sticker" "1" + "[cologne2016_team_dig_foil]sticker" "1" + "[cologne2016_team_esl_foil]sticker" "1" + } + "crate_sticker_pack_cologne2016_challengers" + { + "crate_sticker_pack_cologne2016_challengers_mythical" "1" + "crate_sticker_pack_cologne2016_challengers_legendary" "1" + } + "cologne2016_signatures_nip" + { + "[cologne2016_signature_pyth]sticker" "1" + "[cologne2016_signature_forest]sticker" "1" + "[cologne2016_signature_friberg]sticker" "1" + "[cologne2016_signature_getright]sticker" "1" + "[cologne2016_signature_xizt]sticker" "1" + } + "cologne2016_signatures_optc" + { + "[cologne2016_signature_daps]sticker" "1" + "[cologne2016_signature_mixwell]sticker" "1" + "[cologne2016_signature_naf]sticker" "1" + "[cologne2016_signature_rush]sticker" "1" + "[cologne2016_signature_stanislaw]sticker" "1" + } + "cologne2016_signatures_clg" + { + "[cologne2016_signature_reltuc]sticker" "1" + "[cologne2016_signature_koosta]sticker" "1" + "[cologne2016_signature_hazed]sticker" "1" + "[cologne2016_signature_pita]sticker" "1" + "[cologne2016_signature_tarik]sticker" "1" + } + "cologne2016_signatures_gamb" + { + "[cologne2016_signature_spaze]sticker" "1" + "[cologne2016_signature_dosia]sticker" "1" + "[cologne2016_signature_hooch]sticker" "1" + "[cologne2016_signature_mou]sticker" "1" + "[cologne2016_signature_adrenkz]sticker" "1" + } + "cologne2016_signatures_flip" + { + "[cologne2016_signature_b1ad3]sticker" "1" + "[cologne2016_signature_waylander]sticker" "1" + "[cologne2016_signature_shara]sticker" "1" + "[cologne2016_signature_markeloff]sticker" "1" + "[cologne2016_signature_worldedit]sticker" "1" + } + "cologne2016_signatures_liq" + { + "[cologne2016_signature_jdm64]sticker" "1" + "[cologne2016_signature_elige]sticker" "1" + "[cologne2016_signature_s1mple]sticker" "1" + "[cologne2016_signature_hiko]sticker" "1" + "[cologne2016_signature_nitro]sticker" "1" + } + "cologne2016_signatures_mss" + { + "[cologne2016_signature_chrisj]sticker" "1" + "[cologne2016_signature_denis]sticker" "1" + "[cologne2016_signature_spiidi]sticker" "1" + "[cologne2016_signature_nex]sticker" "1" + "[cologne2016_signature_niko]sticker" "1" + } + "cologne2016_signatures_navi" + { + "[cologne2016_signature_edward]sticker" "1" + "[cologne2016_signature_flamie]sticker" "1" + "[cologne2016_signature_guardian]sticker" "1" + "[cologne2016_signature_seized]sticker" "1" + "[cologne2016_signature_zeus]sticker" "1" + } + "cologne2016_signatures_vp" + { + "[cologne2016_signature_byali]sticker" "1" + "[cologne2016_signature_neo]sticker" "1" + "[cologne2016_signature_pasha]sticker" "1" + "[cologne2016_signature_snax]sticker" "1" + "[cologne2016_signature_taz]sticker" "1" + } + "cologne2016_signatures_sk" + { + "[cologne2016_signature_coldzera]sticker" "1" + "[cologne2016_signature_fallen]sticker" "1" + "[cologne2016_signature_fer]sticker" "1" + "[cologne2016_signature_fnx]sticker" "1" + "[cologne2016_signature_taco]sticker" "1" + } + "cologne2016_signatures_g2" + { + "[cologne2016_signature_bodyy]sticker" "1" + "[cologne2016_signature_rpk]sticker" "1" + "[cologne2016_signature_scream]sticker" "1" + "[cologne2016_signature_shox]sticker" "1" + "[cologne2016_signature_smithzz]sticker" "1" + } + "cologne2016_signatures_faze" + { + "[cologne2016_signature_aizy]sticker" "1" + "[cologne2016_signature_fox]sticker" "1" + "[cologne2016_signature_kioshima]sticker" "1" + "[cologne2016_signature_rain]sticker" "1" + "[cologne2016_signature_jkaem]sticker" "1" + } + "cologne2016_signatures_astr" + { + "[cologne2016_signature_gla1ve]sticker" "1" + "[cologne2016_signature_device]sticker" "1" + "[cologne2016_signature_dupreeh]sticker" "1" + "[cologne2016_signature_karrigan]sticker" "1" + "[cologne2016_signature_xyp9x]sticker" "1" + } + "cologne2016_signatures_nv" + { + "[cologne2016_signature_apex]sticker" "1" + "[cologne2016_signature_happy]sticker" "1" + "[cologne2016_signature_devil]sticker" "1" + "[cologne2016_signature_kennys]sticker" "1" + "[cologne2016_signature_nbk]sticker" "1" + } + "cologne2016_signatures_fntc" + { + "[cologne2016_signature_flusha]sticker" "1" + "[cologne2016_signature_jw]sticker" "1" + "[cologne2016_signature_krimz]sticker" "1" + "[cologne2016_signature_olofmeister]sticker" "1" + "[cologne2016_signature_dennis]sticker" "1" + } + "cologne2016_signatures_dig" + { + "[cologne2016_signature_cajunb]sticker" "1" + "[cologne2016_signature_msl]sticker" "1" + "[cologne2016_signature_tenzki]sticker" "1" + "[cologne2016_signature_rubino]sticker" "1" + "[cologne2016_signature_k0nfig]sticker" "1" + } + "crate_signature_pack_cologne2016_group_1_rare" + { + "[cologne2016_signature_daps]sticker" "1" + "[cologne2016_signature_mixwell]sticker" "1" + "[cologne2016_signature_naf]sticker" "1" + "[cologne2016_signature_rush]sticker" "1" + "[cologne2016_signature_stanislaw]sticker" "1" + "[cologne2016_signature_spaze]sticker" "1" + "[cologne2016_signature_dosia]sticker" "1" + "[cologne2016_signature_hooch]sticker" "1" + "[cologne2016_signature_mou]sticker" "1" + "[cologne2016_signature_adrenkz]sticker" "1" + "[cologne2016_signature_b1ad3]sticker" "1" + "[cologne2016_signature_waylander]sticker" "1" + "[cologne2016_signature_shara]sticker" "1" + "[cologne2016_signature_markeloff]sticker" "1" + "[cologne2016_signature_worldedit]sticker" "1" + "[cologne2016_signature_chrisj]sticker" "1" + "[cologne2016_signature_denis]sticker" "1" + "[cologne2016_signature_spiidi]sticker" "1" + "[cologne2016_signature_nex]sticker" "1" + "[cologne2016_signature_niko]sticker" "1" + "[cologne2016_signature_bodyy]sticker" "1" + "[cologne2016_signature_rpk]sticker" "1" + "[cologne2016_signature_scream]sticker" "1" + "[cologne2016_signature_shox]sticker" "1" + "[cologne2016_signature_smithzz]sticker" "1" + "[cologne2016_signature_aizy]sticker" "1" + "[cologne2016_signature_fox]sticker" "1" + "[cologne2016_signature_kioshima]sticker" "1" + "[cologne2016_signature_rain]sticker" "1" + "[cologne2016_signature_jkaem]sticker" "1" + "[cologne2016_signature_apex]sticker" "1" + "[cologne2016_signature_happy]sticker" "1" + "[cologne2016_signature_devil]sticker" "1" + "[cologne2016_signature_kennys]sticker" "1" + "[cologne2016_signature_nbk]sticker" "1" + "[cologne2016_signature_cajunb]sticker" "1" + "[cologne2016_signature_msl]sticker" "1" + "[cologne2016_signature_tenzki]sticker" "1" + "[cologne2016_signature_rubino]sticker" "1" + "[cologne2016_signature_k0nfig]sticker" "1" + } + "crate_signature_pack_cologne2016_group_1_legendary" + { + "[cologne2016_signature_daps_foil]sticker" "1" + "[cologne2016_signature_mixwell_foil]sticker" "1" + "[cologne2016_signature_naf_foil]sticker" "1" + "[cologne2016_signature_rush_foil]sticker" "1" + "[cologne2016_signature_stanislaw_foil]sticker" "1" + "[cologne2016_signature_spaze_foil]sticker" "1" + "[cologne2016_signature_dosia_foil]sticker" "1" + "[cologne2016_signature_hooch_foil]sticker" "1" + "[cologne2016_signature_mou_foil]sticker" "1" + "[cologne2016_signature_adrenkz_foil]sticker" "1" + "[cologne2016_signature_b1ad3_foil]sticker" "1" + "[cologne2016_signature_waylander_foil]sticker" "1" + "[cologne2016_signature_shara_foil]sticker" "1" + "[cologne2016_signature_markeloff_foil]sticker" "1" + "[cologne2016_signature_worldedit_foil]sticker" "1" + "[cologne2016_signature_chrisj_foil]sticker" "1" + "[cologne2016_signature_denis_foil]sticker" "1" + "[cologne2016_signature_spiidi_foil]sticker" "1" + "[cologne2016_signature_nex_foil]sticker" "1" + "[cologne2016_signature_niko_foil]sticker" "1" + "[cologne2016_signature_bodyy_foil]sticker" "1" + "[cologne2016_signature_rpk_foil]sticker" "1" + "[cologne2016_signature_scream_foil]sticker" "1" + "[cologne2016_signature_shox_foil]sticker" "1" + "[cologne2016_signature_smithzz_foil]sticker" "1" + "[cologne2016_signature_aizy_foil]sticker" "1" + "[cologne2016_signature_fox_foil]sticker" "1" + "[cologne2016_signature_kioshima_foil]sticker" "1" + "[cologne2016_signature_rain_foil]sticker" "1" + "[cologne2016_signature_jkaem_foil]sticker" "1" + "[cologne2016_signature_apex_foil]sticker" "1" + "[cologne2016_signature_happy_foil]sticker" "1" + "[cologne2016_signature_devil_foil]sticker" "1" + "[cologne2016_signature_kennys_foil]sticker" "1" + "[cologne2016_signature_nbk_foil]sticker" "1" + "[cologne2016_signature_cajunb_foil]sticker" "1" + "[cologne2016_signature_msl_foil]sticker" "1" + "[cologne2016_signature_tenzki_foil]sticker" "1" + "[cologne2016_signature_rubino_foil]sticker" "1" + "[cologne2016_signature_k0nfig_foil]sticker" "1" + } + "crate_signature_pack_cologne2016_group_2_rare" + { + "[cologne2016_signature_pyth]sticker" "1" + "[cologne2016_signature_forest]sticker" "1" + "[cologne2016_signature_friberg]sticker" "1" + "[cologne2016_signature_getright]sticker" "1" + "[cologne2016_signature_xizt]sticker" "1" + "[cologne2016_signature_reltuc]sticker" "1" + "[cologne2016_signature_koosta]sticker" "1" + "[cologne2016_signature_hazed]sticker" "1" + "[cologne2016_signature_pita]sticker" "1" + "[cologne2016_signature_tarik]sticker" "1" + "[cologne2016_signature_jdm64]sticker" "1" + "[cologne2016_signature_elige]sticker" "1" + "[cologne2016_signature_s1mple]sticker" "1" + "[cologne2016_signature_hiko]sticker" "1" + "[cologne2016_signature_nitro]sticker" "1" + "[cologne2016_signature_edward]sticker" "1" + "[cologne2016_signature_flamie]sticker" "1" + "[cologne2016_signature_guardian]sticker" "1" + "[cologne2016_signature_seized]sticker" "1" + "[cologne2016_signature_zeus]sticker" "1" + "[cologne2016_signature_byali]sticker" "1" + "[cologne2016_signature_neo]sticker" "1" + "[cologne2016_signature_pasha]sticker" "1" + "[cologne2016_signature_snax]sticker" "1" + "[cologne2016_signature_taz]sticker" "1" + "[cologne2016_signature_coldzera]sticker" "1" + "[cologne2016_signature_fallen]sticker" "1" + "[cologne2016_signature_fer]sticker" "1" + "[cologne2016_signature_fnx]sticker" "1" + "[cologne2016_signature_taco]sticker" "1" + "[cologne2016_signature_gla1ve]sticker" "1" + "[cologne2016_signature_device]sticker" "1" + "[cologne2016_signature_dupreeh]sticker" "1" + "[cologne2016_signature_karrigan]sticker" "1" + "[cologne2016_signature_xyp9x]sticker" "1" + "[cologne2016_signature_flusha]sticker" "1" + "[cologne2016_signature_jw]sticker" "1" + "[cologne2016_signature_krimz]sticker" "1" + "[cologne2016_signature_olofmeister]sticker" "1" + "[cologne2016_signature_dennis]sticker" "1" + } + "crate_signature_pack_cologne2016_group_2_legendary" + { + "[cologne2016_signature_pyth_foil]sticker" "1" + "[cologne2016_signature_forest_foil]sticker" "1" + "[cologne2016_signature_friberg_foil]sticker" "1" + "[cologne2016_signature_getright_foil]sticker" "1" + "[cologne2016_signature_xizt_foil]sticker" "1" + "[cologne2016_signature_reltuc_foil]sticker" "1" + "[cologne2016_signature_koosta_foil]sticker" "1" + "[cologne2016_signature_hazed_foil]sticker" "1" + "[cologne2016_signature_pita_foil]sticker" "1" + "[cologne2016_signature_tarik_foil]sticker" "1" + "[cologne2016_signature_jdm64_foil]sticker" "1" + "[cologne2016_signature_elige_foil]sticker" "1" + "[cologne2016_signature_s1mple_foil]sticker" "1" + "[cologne2016_signature_hiko_foil]sticker" "1" + "[cologne2016_signature_nitro_foil]sticker" "1" + "[cologne2016_signature_edward_foil]sticker" "1" + "[cologne2016_signature_flamie_foil]sticker" "1" + "[cologne2016_signature_guardian_foil]sticker" "1" + "[cologne2016_signature_seized_foil]sticker" "1" + "[cologne2016_signature_zeus_foil]sticker" "1" + "[cologne2016_signature_byali_foil]sticker" "1" + "[cologne2016_signature_neo_foil]sticker" "1" + "[cologne2016_signature_pasha_foil]sticker" "1" + "[cologne2016_signature_snax_foil]sticker" "1" + "[cologne2016_signature_taz_foil]sticker" "1" + "[cologne2016_signature_coldzera_foil]sticker" "1" + "[cologne2016_signature_fallen_foil]sticker" "1" + "[cologne2016_signature_fer_foil]sticker" "1" + "[cologne2016_signature_fnx_foil]sticker" "1" + "[cologne2016_signature_taco_foil]sticker" "1" + "[cologne2016_signature_gla1ve_foil]sticker" "1" + "[cologne2016_signature_device_foil]sticker" "1" + "[cologne2016_signature_dupreeh_foil]sticker" "1" + "[cologne2016_signature_karrigan_foil]sticker" "1" + "[cologne2016_signature_xyp9x_foil]sticker" "1" + "[cologne2016_signature_flusha_foil]sticker" "1" + "[cologne2016_signature_jw_foil]sticker" "1" + "[cologne2016_signature_krimz_foil]sticker" "1" + "[cologne2016_signature_olofmeister_foil]sticker" "1" + "[cologne2016_signature_dennis_foil]sticker" "1" + } + "crate_cologne2016_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_cologne2016_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_cologne2016_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_cologne2016_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_cologne2016_promo_de_cache" + { + "set_cache" "1" + } + "crate_cologne2016_promo_de_train" + { + "set_train" "1" + } + "crate_cologne2016_promo_de_nuke" + { + "set_nuke" "1" + } + } + "items" + { + "4237" + { + "item_name" "#StickerKit_cologne2016_team_nip" + "name" "crate_sticker_pack_cologne2016_nip" + "item_description" "#StickerKit_desc_cologne2016_team_nip" + "image_inventory" "econ/stickers/cologne2016/nip" + "loot_list_name" "cologne2016_rare_nip" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4238" + { + "item_name" "#StickerKit_cologne2016_team_optc" + "name" "crate_sticker_pack_cologne2016_optc" + "item_description" "#StickerKit_desc_cologne2016_team_optc" + "image_inventory" "econ/stickers/cologne2016/optc" + "loot_list_name" "cologne2016_rare_optc" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4239" + { + "item_name" "#StickerKit_cologne2016_team_clg" + "name" "crate_sticker_pack_cologne2016_clg" + "item_description" "#StickerKit_desc_cologne2016_team_clg" + "image_inventory" "econ/stickers/cologne2016/clg" + "loot_list_name" "cologne2016_rare_clg" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4240" + { + "item_name" "#StickerKit_cologne2016_team_gamb" + "name" "crate_sticker_pack_cologne2016_gamb" + "item_description" "#StickerKit_desc_cologne2016_team_gamb" + "image_inventory" "econ/stickers/cologne2016/gamb" + "loot_list_name" "cologne2016_rare_gamb" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4241" + { + "item_name" "#StickerKit_cologne2016_team_flip" + "name" "crate_sticker_pack_cologne2016_flip" + "item_description" "#StickerKit_desc_cologne2016_team_flip" + "image_inventory" "econ/stickers/cologne2016/flip" + "loot_list_name" "cologne2016_rare_flip" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4242" + { + "item_name" "#StickerKit_cologne2016_team_liq" + "name" "crate_sticker_pack_cologne2016_liq" + "item_description" "#StickerKit_desc_cologne2016_team_liq" + "image_inventory" "econ/stickers/cologne2016/liq" + "loot_list_name" "cologne2016_rare_liq" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4243" + { + "item_name" "#StickerKit_cologne2016_team_mss" + "name" "crate_sticker_pack_cologne2016_mss" + "item_description" "#StickerKit_desc_cologne2016_team_mss" + "image_inventory" "econ/stickers/cologne2016/mss" + "loot_list_name" "cologne2016_rare_mss" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4244" + { + "item_name" "#StickerKit_cologne2016_team_navi" + "name" "crate_sticker_pack_cologne2016_navi" + "item_description" "#StickerKit_desc_cologne2016_team_navi" + "image_inventory" "econ/stickers/cologne2016/navi" + "loot_list_name" "cologne2016_rare_navi" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4245" + { + "item_name" "#StickerKit_cologne2016_team_vp" + "name" "crate_sticker_pack_cologne2016_vp" + "item_description" "#StickerKit_desc_cologne2016_team_vp" + "image_inventory" "econ/stickers/cologne2016/vp" + "loot_list_name" "cologne2016_rare_vp" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4246" + { + "item_name" "#StickerKit_cologne2016_team_sk" + "name" "crate_sticker_pack_cologne2016_sk" + "item_description" "#StickerKit_desc_cologne2016_team_sk" + "image_inventory" "econ/stickers/cologne2016/sk" + "loot_list_name" "cologne2016_rare_sk" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4247" + { + "item_name" "#StickerKit_cologne2016_team_g2" + "name" "crate_sticker_pack_cologne2016_g2" + "item_description" "#StickerKit_desc_cologne2016_team_g2" + "image_inventory" "econ/stickers/cologne2016/g2" + "loot_list_name" "cologne2016_rare_g2" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4248" + { + "item_name" "#StickerKit_cologne2016_team_faze" + "name" "crate_sticker_pack_cologne2016_faze" + "item_description" "#StickerKit_desc_cologne2016_team_faze" + "image_inventory" "econ/stickers/cologne2016/faze" + "loot_list_name" "cologne2016_rare_faze" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4249" + { + "item_name" "#StickerKit_cologne2016_team_astr" + "name" "crate_sticker_pack_cologne2016_astr" + "item_description" "#StickerKit_desc_cologne2016_team_astr" + "image_inventory" "econ/stickers/cologne2016/astr" + "loot_list_name" "cologne2016_rare_astr" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4250" + { + "item_name" "#StickerKit_cologne2016_team_nv" + "name" "crate_sticker_pack_cologne2016_nv" + "item_description" "#StickerKit_desc_cologne2016_team_nv" + "image_inventory" "econ/stickers/cologne2016/nv" + "loot_list_name" "cologne2016_rare_nv" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4251" + { + "item_name" "#StickerKit_cologne2016_team_fntc" + "name" "crate_sticker_pack_cologne2016_fntc" + "item_description" "#StickerKit_desc_cologne2016_team_fntc" + "image_inventory" "econ/stickers/cologne2016/fntc" + "loot_list_name" "cologne2016_rare_fntc" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4252" + { + "item_name" "#StickerKit_cologne2016_team_dig" + "name" "crate_sticker_pack_cologne2016_dig" + "item_description" "#StickerKit_desc_cologne2016_team_dig" + "image_inventory" "econ/stickers/cologne2016/dig" + "loot_list_name" "cologne2016_rare_dig" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4253" + { + "item_name" "#StickerKit_cologne2016_team_esl" + "name" "crate_sticker_pack_cologne2016_esl" + "item_description" "#StickerKit_desc_cologne2016_team_esl" + "image_inventory" "econ/stickers/cologne2016/esl" + "loot_list_name" "cologne2016_rare_esl" + "prefab" "cologne2016_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4254" + { + "item_name" "#CSGO_crate_sticker_pack_cologne2016_legends" + "name" "crate_sticker_pack_cologne2016_legends" + "item_description" "#CSGO_crate_sticker_pack_cologne2016_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2016_01" + "prefab" "cologne2016_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "145" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_cologne2016_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_cologne2016_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4255" + { + "item_name" "#CSGO_crate_sticker_pack_cologne2016_challengers" + "name" "crate_sticker_pack_cologne2016_challengers" + "item_description" "#CSGO_crate_sticker_pack_cologne2016_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2016_02" + "prefab" "cologne2016_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "146" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_cologne2016_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_cologne2016_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4256" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_group_1" + "name" "crate_signature_pack_cologne2016_group_1" + "item_description" "#CSGO_crate_signature_pack_cologne2016_group_1_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2016_group_1" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "147" + } + } + } + "4257" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_group_2" + "name" "crate_signature_pack_cologne2016_group_2" + "item_description" "#CSGO_crate_signature_pack_cologne2016_group_2_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2016_group_2" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "148" + } + } + } + "4258" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_nip" + "name" "crate_signature_pack_cologne2016_nip" + "item_description" "#CSGO_crate_signature_pack_cologne2016_nip_desc" + "image_inventory" "econ/weapon_cases/cologne2016_nip" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "149" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "1" + } + } + } + "4259" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_optc" + "name" "crate_signature_pack_cologne2016_optc" + "item_description" "#CSGO_crate_signature_pack_cologne2016_optc_desc" + "image_inventory" "econ/weapon_cases/cologne2016_optc" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "150" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "66" + } + } + } + "4260" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_clg" + "name" "crate_signature_pack_cologne2016_clg" + "item_description" "#CSGO_crate_signature_pack_cologne2016_clg_desc" + "image_inventory" "econ/weapon_cases/cologne2016_clg" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "151" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "49" + } + } + } + "4261" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_gamb" + "name" "crate_signature_pack_cologne2016_gamb" + "item_description" "#CSGO_crate_signature_pack_cologne2016_gamb_desc" + "image_inventory" "econ/weapon_cases/cologne2016_gamb" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "152" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "63" + } + } + } + "4262" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_flip" + "name" "crate_signature_pack_cologne2016_flip" + "item_description" "#CSGO_crate_signature_pack_cologne2016_flip_desc" + "image_inventory" "econ/weapon_cases/cologne2016_flip" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "153" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "43" + } + } + } + "4263" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_liq" + "name" "crate_signature_pack_cologne2016_liq" + "item_description" "#CSGO_crate_signature_pack_cologne2016_liq_desc" + "image_inventory" "econ/weapon_cases/cologne2016_liq" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "154" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "48" + } + } + } + "4264" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_mss" + "name" "crate_signature_pack_cologne2016_mss" + "item_description" "#CSGO_crate_signature_pack_cologne2016_mss_desc" + "image_inventory" "econ/weapon_cases/cologne2016_mss" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "155" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "29" + } + } + } + "4265" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_navi" + "name" "crate_signature_pack_cologne2016_navi" + "item_description" "#CSGO_crate_signature_pack_cologne2016_navi_desc" + "image_inventory" "econ/weapon_cases/cologne2016_navi" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "156" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "12" + } + } + } + "4266" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_vp" + "name" "crate_signature_pack_cologne2016_vp" + "item_description" "#CSGO_crate_signature_pack_cologne2016_vp_desc" + "image_inventory" "econ/weapon_cases/cologne2016_vp" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "157" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "31" + } + } + } + "4267" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_sk" + "name" "crate_signature_pack_cologne2016_sk" + "item_description" "#CSGO_crate_signature_pack_cologne2016_sk_desc" + "image_inventory" "econ/weapon_cases/cologne2016_sk" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "158" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "14" + } + } + } + "4268" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_g2" + "name" "crate_signature_pack_cologne2016_g2" + "item_description" "#CSGO_crate_signature_pack_cologne2016_g2_desc" + "image_inventory" "econ/weapon_cases/cologne2016_g2" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "159" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "59" + } + } + } + "4269" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_faze" + "name" "crate_signature_pack_cologne2016_faze" + "item_description" "#CSGO_crate_signature_pack_cologne2016_faze_desc" + "image_inventory" "econ/weapon_cases/cologne2016_faze" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "160" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "61" + } + } + } + "4270" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_astr" + "name" "crate_signature_pack_cologne2016_astr" + "item_description" "#CSGO_crate_signature_pack_cologne2016_astr_desc" + "image_inventory" "econ/weapon_cases/cologne2016_astr" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "161" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "60" + } + } + } + "4271" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_nv" + "name" "crate_signature_pack_cologne2016_nv" + "item_description" "#CSGO_crate_signature_pack_cologne2016_nv_desc" + "image_inventory" "econ/weapon_cases/cologne2016_nv" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "162" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "46" + } + } + } + "4272" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_fntc" + "name" "crate_signature_pack_cologne2016_fntc" + "item_description" "#CSGO_crate_signature_pack_cologne2016_fntc_desc" + "image_inventory" "econ/weapon_cases/cologne2016_fntc" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "163" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "6" + } + } + } + "4273" + { + "item_name" "#CSGO_crate_signature_pack_cologne2016_dig" + "name" "crate_signature_pack_cologne2016_dig" + "item_description" "#CSGO_crate_signature_pack_cologne2016_dig_desc" + "image_inventory" "econ/weapon_cases/cologne2016_dig" + "prefab" "cologne2016_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "164" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "24" + } + } + } + "4274" + { + "item_name" "#CSGO_crate_cologne2016_promo_de_dust2" + "name" "crate_cologne2016_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_cologne2016_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "165" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4275" + { + "item_name" "#CSGO_crate_cologne2016_promo_de_mirage" + "name" "crate_cologne2016_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_cologne2016_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "166" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4276" + { + "item_name" "#CSGO_crate_cologne2016_promo_de_cbble" + "name" "crate_cologne2016_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_cologne2016_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "167" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4277" + { + "item_name" "#CSGO_crate_cologne2016_promo_de_overpass" + "name" "crate_cologne2016_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_cologne2016_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "168" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4278" + { + "item_name" "#CSGO_crate_cologne2016_promo_de_cache" + "name" "crate_cologne2016_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_cologne2016_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "169" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4279" + { + "item_name" "#CSGO_crate_cologne2016_promo_de_train" + "name" "crate_cologne2016_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_cologne2016_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "170" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4280" + { + "item_name" "#CSGO_crate_cologne2016_promo_de_nuke" + "name" "crate_cologne2016_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_cologne2016_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "171" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "10" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "1317" + { + "name" "cologne2016_team_nip" + "item_name" "#StickerKit_cologne2016_team_nip" + "description_string" "#StickerKit_desc_cologne2016_team_nip" + "sticker_material" "cologne2016/nip" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "1" + } + "1318" + { + "name" "cologne2016_team_nip_holo" + "item_name" "#StickerKit_cologne2016_team_nip_holo" + "description_string" "#StickerKit_desc_cologne2016_team_nip_holo" + "sticker_material" "cologne2016/nip_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "1" + } + "1319" + { + "name" "cologne2016_team_nip_foil" + "item_name" "#StickerKit_cologne2016_team_nip_foil" + "description_string" "#StickerKit_desc_cologne2016_team_nip_foil" + "sticker_material" "cologne2016/nip_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + } + "1320" + { + "name" "cologne2016_team_nip_gold" + "item_name" "#StickerKit_cologne2016_team_nip_gold" + "description_string" "#StickerKit_desc_cologne2016_team_nip_gold" + "sticker_material" "cologne2016/nip_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + } + "1321" + { + "name" "cologne2016_team_optc" + "item_name" "#StickerKit_cologne2016_team_optc" + "description_string" "#StickerKit_desc_cologne2016_team_optc" + "sticker_material" "cologne2016/optc" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "66" + } + "1322" + { + "name" "cologne2016_team_optc_holo" + "item_name" "#StickerKit_cologne2016_team_optc_holo" + "description_string" "#StickerKit_desc_cologne2016_team_optc_holo" + "sticker_material" "cologne2016/optc_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "66" + } + "1323" + { + "name" "cologne2016_team_optc_foil" + "item_name" "#StickerKit_cologne2016_team_optc_foil" + "description_string" "#StickerKit_desc_cologne2016_team_optc_foil" + "sticker_material" "cologne2016/optc_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + } + "1324" + { + "name" "cologne2016_team_optc_gold" + "item_name" "#StickerKit_cologne2016_team_optc_gold" + "description_string" "#StickerKit_desc_cologne2016_team_optc_gold" + "sticker_material" "cologne2016/optc_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + } + "1325" + { + "name" "cologne2016_team_clg" + "item_name" "#StickerKit_cologne2016_team_clg" + "description_string" "#StickerKit_desc_cologne2016_team_clg" + "sticker_material" "cologne2016/clg" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "49" + } + "1326" + { + "name" "cologne2016_team_clg_holo" + "item_name" "#StickerKit_cologne2016_team_clg_holo" + "description_string" "#StickerKit_desc_cologne2016_team_clg_holo" + "sticker_material" "cologne2016/clg_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "49" + } + "1327" + { + "name" "cologne2016_team_clg_foil" + "item_name" "#StickerKit_cologne2016_team_clg_foil" + "description_string" "#StickerKit_desc_cologne2016_team_clg_foil" + "sticker_material" "cologne2016/clg_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + } + "1328" + { + "name" "cologne2016_team_clg_gold" + "item_name" "#StickerKit_cologne2016_team_clg_gold" + "description_string" "#StickerKit_desc_cologne2016_team_clg_gold" + "sticker_material" "cologne2016/clg_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + } + "1329" + { + "name" "cologne2016_team_gamb" + "item_name" "#StickerKit_cologne2016_team_gamb" + "description_string" "#StickerKit_desc_cologne2016_team_gamb" + "sticker_material" "cologne2016/gamb" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "63" + } + "1330" + { + "name" "cologne2016_team_gamb_holo" + "item_name" "#StickerKit_cologne2016_team_gamb_holo" + "description_string" "#StickerKit_desc_cologne2016_team_gamb_holo" + "sticker_material" "cologne2016/gamb_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "63" + } + "1331" + { + "name" "cologne2016_team_gamb_foil" + "item_name" "#StickerKit_cologne2016_team_gamb_foil" + "description_string" "#StickerKit_desc_cologne2016_team_gamb_foil" + "sticker_material" "cologne2016/gamb_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + } + "1332" + { + "name" "cologne2016_team_gamb_gold" + "item_name" "#StickerKit_cologne2016_team_gamb_gold" + "description_string" "#StickerKit_desc_cologne2016_team_gamb_gold" + "sticker_material" "cologne2016/gamb_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + } + "1333" + { + "name" "cologne2016_team_flip" + "item_name" "#StickerKit_cologne2016_team_flip" + "description_string" "#StickerKit_desc_cologne2016_team_flip" + "sticker_material" "cologne2016/flip" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "43" + } + "1334" + { + "name" "cologne2016_team_flip_holo" + "item_name" "#StickerKit_cologne2016_team_flip_holo" + "description_string" "#StickerKit_desc_cologne2016_team_flip_holo" + "sticker_material" "cologne2016/flip_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "43" + } + "1335" + { + "name" "cologne2016_team_flip_foil" + "item_name" "#StickerKit_cologne2016_team_flip_foil" + "description_string" "#StickerKit_desc_cologne2016_team_flip_foil" + "sticker_material" "cologne2016/flip_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + } + "1336" + { + "name" "cologne2016_team_flip_gold" + "item_name" "#StickerKit_cologne2016_team_flip_gold" + "description_string" "#StickerKit_desc_cologne2016_team_flip_gold" + "sticker_material" "cologne2016/flip_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + } + "1337" + { + "name" "cologne2016_team_liq" + "item_name" "#StickerKit_cologne2016_team_liq" + "description_string" "#StickerKit_desc_cologne2016_team_liq" + "sticker_material" "cologne2016/liq" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "48" + } + "1338" + { + "name" "cologne2016_team_liq_holo" + "item_name" "#StickerKit_cologne2016_team_liq_holo" + "description_string" "#StickerKit_desc_cologne2016_team_liq_holo" + "sticker_material" "cologne2016/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "48" + } + "1339" + { + "name" "cologne2016_team_liq_foil" + "item_name" "#StickerKit_cologne2016_team_liq_foil" + "description_string" "#StickerKit_desc_cologne2016_team_liq_foil" + "sticker_material" "cologne2016/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + } + "1340" + { + "name" "cologne2016_team_liq_gold" + "item_name" "#StickerKit_cologne2016_team_liq_gold" + "description_string" "#StickerKit_desc_cologne2016_team_liq_gold" + "sticker_material" "cologne2016/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + } + "1341" + { + "name" "cologne2016_team_mss" + "item_name" "#StickerKit_cologne2016_team_mss" + "description_string" "#StickerKit_desc_cologne2016_team_mss" + "sticker_material" "cologne2016/mss" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "29" + } + "1342" + { + "name" "cologne2016_team_mss_holo" + "item_name" "#StickerKit_cologne2016_team_mss_holo" + "description_string" "#StickerKit_desc_cologne2016_team_mss_holo" + "sticker_material" "cologne2016/mss_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "29" + } + "1343" + { + "name" "cologne2016_team_mss_foil" + "item_name" "#StickerKit_cologne2016_team_mss_foil" + "description_string" "#StickerKit_desc_cologne2016_team_mss_foil" + "sticker_material" "cologne2016/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + } + "1344" + { + "name" "cologne2016_team_mss_gold" + "item_name" "#StickerKit_cologne2016_team_mss_gold" + "description_string" "#StickerKit_desc_cologne2016_team_mss_gold" + "sticker_material" "cologne2016/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + } + "1345" + { + "name" "cologne2016_team_navi" + "item_name" "#StickerKit_cologne2016_team_navi" + "description_string" "#StickerKit_desc_cologne2016_team_navi" + "sticker_material" "cologne2016/navi" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "12" + } + "1346" + { + "name" "cologne2016_team_navi_holo" + "item_name" "#StickerKit_cologne2016_team_navi_holo" + "description_string" "#StickerKit_desc_cologne2016_team_navi_holo" + "sticker_material" "cologne2016/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "12" + } + "1347" + { + "name" "cologne2016_team_navi_foil" + "item_name" "#StickerKit_cologne2016_team_navi_foil" + "description_string" "#StickerKit_desc_cologne2016_team_navi_foil" + "sticker_material" "cologne2016/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + } + "1348" + { + "name" "cologne2016_team_navi_gold" + "item_name" "#StickerKit_cologne2016_team_navi_gold" + "description_string" "#StickerKit_desc_cologne2016_team_navi_gold" + "sticker_material" "cologne2016/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + } + "1349" + { + "name" "cologne2016_team_vp" + "item_name" "#StickerKit_cologne2016_team_vp" + "description_string" "#StickerKit_desc_cologne2016_team_vp" + "sticker_material" "cologne2016/vp" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "31" + } + "1350" + { + "name" "cologne2016_team_vp_holo" + "item_name" "#StickerKit_cologne2016_team_vp_holo" + "description_string" "#StickerKit_desc_cologne2016_team_vp_holo" + "sticker_material" "cologne2016/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "31" + } + "1351" + { + "name" "cologne2016_team_vp_foil" + "item_name" "#StickerKit_cologne2016_team_vp_foil" + "description_string" "#StickerKit_desc_cologne2016_team_vp_foil" + "sticker_material" "cologne2016/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + } + "1352" + { + "name" "cologne2016_team_vp_gold" + "item_name" "#StickerKit_cologne2016_team_vp_gold" + "description_string" "#StickerKit_desc_cologne2016_team_vp_gold" + "sticker_material" "cologne2016/vp_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + } + "1353" + { + "name" "cologne2016_team_sk" + "item_name" "#StickerKit_cologne2016_team_sk" + "description_string" "#StickerKit_desc_cologne2016_team_sk" + "sticker_material" "cologne2016/sk" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "14" + } + "1354" + { + "name" "cologne2016_team_sk_holo" + "item_name" "#StickerKit_cologne2016_team_sk_holo" + "description_string" "#StickerKit_desc_cologne2016_team_sk_holo" + "sticker_material" "cologne2016/sk_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "14" + } + "1355" + { + "name" "cologne2016_team_sk_foil" + "item_name" "#StickerKit_cologne2016_team_sk_foil" + "description_string" "#StickerKit_desc_cologne2016_team_sk_foil" + "sticker_material" "cologne2016/sk_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + } + "1356" + { + "name" "cologne2016_team_sk_gold" + "item_name" "#StickerKit_cologne2016_team_sk_gold" + "description_string" "#StickerKit_desc_cologne2016_team_sk_gold" + "sticker_material" "cologne2016/sk_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + } + "1357" + { + "name" "cologne2016_team_g2" + "item_name" "#StickerKit_cologne2016_team_g2" + "description_string" "#StickerKit_desc_cologne2016_team_g2" + "sticker_material" "cologne2016/g2" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "59" + } + "1358" + { + "name" "cologne2016_team_g2_holo" + "item_name" "#StickerKit_cologne2016_team_g2_holo" + "description_string" "#StickerKit_desc_cologne2016_team_g2_holo" + "sticker_material" "cologne2016/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "59" + } + "1359" + { + "name" "cologne2016_team_g2_foil" + "item_name" "#StickerKit_cologne2016_team_g2_foil" + "description_string" "#StickerKit_desc_cologne2016_team_g2_foil" + "sticker_material" "cologne2016/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + } + "1360" + { + "name" "cologne2016_team_g2_gold" + "item_name" "#StickerKit_cologne2016_team_g2_gold" + "description_string" "#StickerKit_desc_cologne2016_team_g2_gold" + "sticker_material" "cologne2016/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + } + "1361" + { + "name" "cologne2016_team_faze" + "item_name" "#StickerKit_cologne2016_team_faze" + "description_string" "#StickerKit_desc_cologne2016_team_faze" + "sticker_material" "cologne2016/faze" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "61" + } + "1362" + { + "name" "cologne2016_team_faze_holo" + "item_name" "#StickerKit_cologne2016_team_faze_holo" + "description_string" "#StickerKit_desc_cologne2016_team_faze_holo" + "sticker_material" "cologne2016/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "61" + } + "1363" + { + "name" "cologne2016_team_faze_foil" + "item_name" "#StickerKit_cologne2016_team_faze_foil" + "description_string" "#StickerKit_desc_cologne2016_team_faze_foil" + "sticker_material" "cologne2016/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + } + "1364" + { + "name" "cologne2016_team_faze_gold" + "item_name" "#StickerKit_cologne2016_team_faze_gold" + "description_string" "#StickerKit_desc_cologne2016_team_faze_gold" + "sticker_material" "cologne2016/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + } + "1365" + { + "name" "cologne2016_team_astr" + "item_name" "#StickerKit_cologne2016_team_astr" + "description_string" "#StickerKit_desc_cologne2016_team_astr" + "sticker_material" "cologne2016/astr" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "60" + } + "1366" + { + "name" "cologne2016_team_astr_holo" + "item_name" "#StickerKit_cologne2016_team_astr_holo" + "description_string" "#StickerKit_desc_cologne2016_team_astr_holo" + "sticker_material" "cologne2016/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "60" + } + "1367" + { + "name" "cologne2016_team_astr_foil" + "item_name" "#StickerKit_cologne2016_team_astr_foil" + "description_string" "#StickerKit_desc_cologne2016_team_astr_foil" + "sticker_material" "cologne2016/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + } + "1368" + { + "name" "cologne2016_team_astr_gold" + "item_name" "#StickerKit_cologne2016_team_astr_gold" + "description_string" "#StickerKit_desc_cologne2016_team_astr_gold" + "sticker_material" "cologne2016/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + } + "1369" + { + "name" "cologne2016_team_nv" + "item_name" "#StickerKit_cologne2016_team_nv" + "description_string" "#StickerKit_desc_cologne2016_team_nv" + "sticker_material" "cologne2016/nv" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "46" + } + "1370" + { + "name" "cologne2016_team_nv_holo" + "item_name" "#StickerKit_cologne2016_team_nv_holo" + "description_string" "#StickerKit_desc_cologne2016_team_nv_holo" + "sticker_material" "cologne2016/nv_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "46" + } + "1371" + { + "name" "cologne2016_team_nv_foil" + "item_name" "#StickerKit_cologne2016_team_nv_foil" + "description_string" "#StickerKit_desc_cologne2016_team_nv_foil" + "sticker_material" "cologne2016/nv_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + } + "1372" + { + "name" "cologne2016_team_nv_gold" + "item_name" "#StickerKit_cologne2016_team_nv_gold" + "description_string" "#StickerKit_desc_cologne2016_team_nv_gold" + "sticker_material" "cologne2016/nv_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + } + "1373" + { + "name" "cologne2016_team_fntc" + "item_name" "#StickerKit_cologne2016_team_fntc" + "description_string" "#StickerKit_desc_cologne2016_team_fntc" + "sticker_material" "cologne2016/fntc" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "6" + } + "1374" + { + "name" "cologne2016_team_fntc_holo" + "item_name" "#StickerKit_cologne2016_team_fntc_holo" + "description_string" "#StickerKit_desc_cologne2016_team_fntc_holo" + "sticker_material" "cologne2016/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "6" + } + "1375" + { + "name" "cologne2016_team_fntc_foil" + "item_name" "#StickerKit_cologne2016_team_fntc_foil" + "description_string" "#StickerKit_desc_cologne2016_team_fntc_foil" + "sticker_material" "cologne2016/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + } + "1376" + { + "name" "cologne2016_team_fntc_gold" + "item_name" "#StickerKit_cologne2016_team_fntc_gold" + "description_string" "#StickerKit_desc_cologne2016_team_fntc_gold" + "sticker_material" "cologne2016/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + } + "1377" + { + "name" "cologne2016_team_dig" + "item_name" "#StickerKit_cologne2016_team_dig" + "description_string" "#StickerKit_desc_cologne2016_team_dig" + "sticker_material" "cologne2016/dig" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "24" + } + "1378" + { + "name" "cologne2016_team_dig_holo" + "item_name" "#StickerKit_cologne2016_team_dig_holo" + "description_string" "#StickerKit_desc_cologne2016_team_dig_holo" + "sticker_material" "cologne2016/dig_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "24" + } + "1379" + { + "name" "cologne2016_team_dig_foil" + "item_name" "#StickerKit_cologne2016_team_dig_foil" + "description_string" "#StickerKit_desc_cologne2016_team_dig_foil" + "sticker_material" "cologne2016/dig_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + } + "1380" + { + "name" "cologne2016_team_dig_gold" + "item_name" "#StickerKit_cologne2016_team_dig_gold" + "description_string" "#StickerKit_desc_cologne2016_team_dig_gold" + "sticker_material" "cologne2016/dig_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + } + "1381" + { + "name" "cologne2016_team_esl" + "item_name" "#StickerKit_cologne2016_team_esl" + "description_string" "#StickerKit_desc_cologne2016_team_esl" + "sticker_material" "cologne2016/esl" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "0" + } + "1382" + { + "name" "cologne2016_team_esl_holo" + "item_name" "#StickerKit_cologne2016_team_esl_holo" + "description_string" "#StickerKit_desc_cologne2016_team_esl_holo" + "sticker_material" "cologne2016/esl_holo" + "item_rarity" "mythical" + "tournament_event_id" "10" + "tournament_team_id" "0" + } + "1383" + { + "name" "cologne2016_team_esl_foil" + "item_name" "#StickerKit_cologne2016_team_esl_foil" + "description_string" "#StickerKit_desc_cologne2016_team_esl_foil" + "sticker_material" "cologne2016/esl_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "0" + } + "1384" + { + "name" "cologne2016_team_esl_gold" + "item_name" "#StickerKit_cologne2016_team_esl_gold" + "description_string" "#StickerKit_desc_cologne2016_team_esl_gold" + "sticker_material" "cologne2016/esl_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "0" + } + "1385" + { + "name" "cologne2016_signature_reltuc" + "item_name" "#StickerKit_cologne2016_signature_reltuc" + "description_string" "#StickerKit_desc_cologne2016_signature_reltuc" + "sticker_material" "cologne2016/sig_reltuc" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "1386" + { + "name" "cologne2016_signature_reltuc_foil" + "item_name" "#StickerKit_cologne2016_signature_reltuc_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_reltuc_foil" + "sticker_material" "cologne2016/sig_reltuc_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "1387" + { + "name" "cologne2016_signature_reltuc_gold" + "item_name" "#StickerKit_cologne2016_signature_reltuc_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_reltuc_gold" + "sticker_material" "cologne2016/sig_reltuc_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "518760" + } + "1388" + { + "name" "cologne2016_signature_koosta" + "item_name" "#StickerKit_cologne2016_signature_koosta" + "description_string" "#StickerKit_desc_cologne2016_signature_koosta" + "sticker_material" "cologne2016/sig_koosta" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "161590" + } + "1389" + { + "name" "cologne2016_signature_koosta_foil" + "item_name" "#StickerKit_cologne2016_signature_koosta_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_koosta_foil" + "sticker_material" "cologne2016/sig_koosta_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "161590" + } + "1390" + { + "name" "cologne2016_signature_koosta_gold" + "item_name" "#StickerKit_cologne2016_signature_koosta_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_koosta_gold" + "sticker_material" "cologne2016/sig_koosta_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "161590" + } + "1391" + { + "name" "cologne2016_signature_hazed" + "item_name" "#StickerKit_cologne2016_signature_hazed" + "description_string" "#StickerKit_desc_cologne2016_signature_hazed" + "sticker_material" "cologne2016/sig_hazed" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "1392" + { + "name" "cologne2016_signature_hazed_foil" + "item_name" "#StickerKit_cologne2016_signature_hazed_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_hazed_foil" + "sticker_material" "cologne2016/sig_hazed_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "1393" + { + "name" "cologne2016_signature_hazed_gold" + "item_name" "#StickerKit_cologne2016_signature_hazed_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_hazed_gold" + "sticker_material" "cologne2016/sig_hazed_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "30305781" + } + "1394" + { + "name" "cologne2016_signature_pita" + "item_name" "#StickerKit_cologne2016_signature_pita" + "description_string" "#StickerKit_desc_cologne2016_signature_pita" + "sticker_material" "cologne2016/sig_pita" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "26459" + } + "1395" + { + "name" "cologne2016_signature_pita_foil" + "item_name" "#StickerKit_cologne2016_signature_pita_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_pita_foil" + "sticker_material" "cologne2016/sig_pita_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "26459" + } + "1396" + { + "name" "cologne2016_signature_pita_gold" + "item_name" "#StickerKit_cologne2016_signature_pita_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_pita_gold" + "sticker_material" "cologne2016/sig_pita_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "26459" + } + "1397" + { + "name" "cologne2016_signature_tarik" + "item_name" "#StickerKit_cologne2016_signature_tarik" + "description_string" "#StickerKit_desc_cologne2016_signature_tarik" + "sticker_material" "cologne2016/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "1398" + { + "name" "cologne2016_signature_tarik_foil" + "item_name" "#StickerKit_cologne2016_signature_tarik_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_tarik_foil" + "sticker_material" "cologne2016/sig_tarik_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "1399" + { + "name" "cologne2016_signature_tarik_gold" + "item_name" "#StickerKit_cologne2016_signature_tarik_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_tarik_gold" + "sticker_material" "cologne2016/sig_tarik_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "49" + "tournament_player_id" "18216247" + } + "1400" + { + "name" "cologne2016_signature_daps" + "item_name" "#StickerKit_cologne2016_signature_daps" + "description_string" "#StickerKit_desc_cologne2016_signature_daps" + "sticker_material" "cologne2016/sig_daps" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "19892353" + } + "1401" + { + "name" "cologne2016_signature_daps_foil" + "item_name" "#StickerKit_cologne2016_signature_daps_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_daps_foil" + "sticker_material" "cologne2016/sig_daps_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "19892353" + } + "1402" + { + "name" "cologne2016_signature_daps_gold" + "item_name" "#StickerKit_cologne2016_signature_daps_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_daps_gold" + "sticker_material" "cologne2016/sig_daps_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "19892353" + } + "1403" + { + "name" "cologne2016_signature_mixwell" + "item_name" "#StickerKit_cologne2016_signature_mixwell" + "description_string" "#StickerKit_desc_cologne2016_signature_mixwell" + "sticker_material" "cologne2016/sig_mixwell" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "27224124" + } + "1404" + { + "name" "cologne2016_signature_mixwell_foil" + "item_name" "#StickerKit_cologne2016_signature_mixwell_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_mixwell_foil" + "sticker_material" "cologne2016/sig_mixwell_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "27224124" + } + "1405" + { + "name" "cologne2016_signature_mixwell_gold" + "item_name" "#StickerKit_cologne2016_signature_mixwell_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_mixwell_gold" + "sticker_material" "cologne2016/sig_mixwell_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "27224124" + } + "1406" + { + "name" "cologne2016_signature_naf" + "item_name" "#StickerKit_cologne2016_signature_naf" + "description_string" "#StickerKit_desc_cologne2016_signature_naf" + "sticker_material" "cologne2016/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "40885967" + } + "1407" + { + "name" "cologne2016_signature_naf_foil" + "item_name" "#StickerKit_cologne2016_signature_naf_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_naf_foil" + "sticker_material" "cologne2016/sig_naf_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "40885967" + } + "1408" + { + "name" "cologne2016_signature_naf_gold" + "item_name" "#StickerKit_cologne2016_signature_naf_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_naf_gold" + "sticker_material" "cologne2016/sig_naf_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "40885967" + } + "1409" + { + "name" "cologne2016_signature_rush" + "item_name" "#StickerKit_cologne2016_signature_rush" + "description_string" "#StickerKit_desc_cologne2016_signature_rush" + "sticker_material" "cologne2016/sig_rush" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "63326592" + } + "1410" + { + "name" "cologne2016_signature_rush_foil" + "item_name" "#StickerKit_cologne2016_signature_rush_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_rush_foil" + "sticker_material" "cologne2016/sig_rush_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "63326592" + } + "1411" + { + "name" "cologne2016_signature_rush_gold" + "item_name" "#StickerKit_cologne2016_signature_rush_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_rush_gold" + "sticker_material" "cologne2016/sig_rush_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "63326592" + } + "1412" + { + "name" "cologne2016_signature_stanislaw" + "item_name" "#StickerKit_cologne2016_signature_stanislaw" + "description_string" "#StickerKit_desc_cologne2016_signature_stanislaw" + "sticker_material" "cologne2016/sig_stanislaw" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "21583315" + } + "1413" + { + "name" "cologne2016_signature_stanislaw_foil" + "item_name" "#StickerKit_cologne2016_signature_stanislaw_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_stanislaw_foil" + "sticker_material" "cologne2016/sig_stanislaw_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "21583315" + } + "1414" + { + "name" "cologne2016_signature_stanislaw_gold" + "item_name" "#StickerKit_cologne2016_signature_stanislaw_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_stanislaw_gold" + "sticker_material" "cologne2016/sig_stanislaw_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "66" + "tournament_player_id" "21583315" + } + "1415" + { + "name" "cologne2016_signature_apex" + "item_name" "#StickerKit_cologne2016_signature_apex" + "description_string" "#StickerKit_desc_cologne2016_signature_apex" + "sticker_material" "cologne2016/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1416" + { + "name" "cologne2016_signature_apex_foil" + "item_name" "#StickerKit_cologne2016_signature_apex_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_apex_foil" + "sticker_material" "cologne2016/sig_apex_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1417" + { + "name" "cologne2016_signature_apex_gold" + "item_name" "#StickerKit_cologne2016_signature_apex_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_apex_gold" + "sticker_material" "cologne2016/sig_apex_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1418" + { + "name" "cologne2016_signature_happy" + "item_name" "#StickerKit_cologne2016_signature_happy" + "description_string" "#StickerKit_desc_cologne2016_signature_happy" + "sticker_material" "cologne2016/sig_happy" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1419" + { + "name" "cologne2016_signature_happy_foil" + "item_name" "#StickerKit_cologne2016_signature_happy_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_happy_foil" + "sticker_material" "cologne2016/sig_happy_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1420" + { + "name" "cologne2016_signature_happy_gold" + "item_name" "#StickerKit_cologne2016_signature_happy_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_happy_gold" + "sticker_material" "cologne2016/sig_happy_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1421" + { + "name" "cologne2016_signature_devil" + "item_name" "#StickerKit_cologne2016_signature_devil" + "description_string" "#StickerKit_desc_cologne2016_signature_devil" + "sticker_material" "cologne2016/sig_devil" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "44238623" + } + "1422" + { + "name" "cologne2016_signature_devil_foil" + "item_name" "#StickerKit_cologne2016_signature_devil_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_devil_foil" + "sticker_material" "cologne2016/sig_devil_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "44238623" + } + "1423" + { + "name" "cologne2016_signature_devil_gold" + "item_name" "#StickerKit_cologne2016_signature_devil_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_devil_gold" + "sticker_material" "cologne2016/sig_devil_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "44238623" + } + "1424" + { + "name" "cologne2016_signature_kennys" + "item_name" "#StickerKit_cologne2016_signature_kennys" + "description_string" "#StickerKit_desc_cologne2016_signature_kennys" + "sticker_material" "cologne2016/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1425" + { + "name" "cologne2016_signature_kennys_foil" + "item_name" "#StickerKit_cologne2016_signature_kennys_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_kennys_foil" + "sticker_material" "cologne2016/sig_kennys_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1426" + { + "name" "cologne2016_signature_kennys_gold" + "item_name" "#StickerKit_cologne2016_signature_kennys_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_kennys_gold" + "sticker_material" "cologne2016/sig_kennys_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1427" + { + "name" "cologne2016_signature_nbk" + "item_name" "#StickerKit_cologne2016_signature_nbk" + "description_string" "#StickerKit_desc_cologne2016_signature_nbk" + "sticker_material" "cologne2016/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1428" + { + "name" "cologne2016_signature_nbk_foil" + "item_name" "#StickerKit_cologne2016_signature_nbk_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_nbk_foil" + "sticker_material" "cologne2016/sig_nbk_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1429" + { + "name" "cologne2016_signature_nbk_gold" + "item_name" "#StickerKit_cologne2016_signature_nbk_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_nbk_gold" + "sticker_material" "cologne2016/sig_nbk_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1430" + { + "name" "cologne2016_signature_b1ad3" + "item_name" "#StickerKit_cologne2016_signature_b1ad3" + "description_string" "#StickerKit_desc_cologne2016_signature_b1ad3" + "sticker_material" "cologne2016/sig_b1ad3" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1431" + { + "name" "cologne2016_signature_b1ad3_foil" + "item_name" "#StickerKit_cologne2016_signature_b1ad3_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_b1ad3_foil" + "sticker_material" "cologne2016/sig_b1ad3_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1432" + { + "name" "cologne2016_signature_b1ad3_gold" + "item_name" "#StickerKit_cologne2016_signature_b1ad3_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_b1ad3_gold" + "sticker_material" "cologne2016/sig_b1ad3_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1433" + { + "name" "cologne2016_signature_waylander" + "item_name" "#StickerKit_cologne2016_signature_waylander" + "description_string" "#StickerKit_desc_cologne2016_signature_waylander" + "sticker_material" "cologne2016/sig_waylander" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "1434" + { + "name" "cologne2016_signature_waylander_foil" + "item_name" "#StickerKit_cologne2016_signature_waylander_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_waylander_foil" + "sticker_material" "cologne2016/sig_waylander_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "1435" + { + "name" "cologne2016_signature_waylander_gold" + "item_name" "#StickerKit_cologne2016_signature_waylander_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_waylander_gold" + "sticker_material" "cologne2016/sig_waylander_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "1436" + { + "name" "cologne2016_signature_shara" + "item_name" "#StickerKit_cologne2016_signature_shara" + "description_string" "#StickerKit_desc_cologne2016_signature_shara" + "sticker_material" "cologne2016/sig_shara" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "53330928" + } + "1437" + { + "name" "cologne2016_signature_shara_foil" + "item_name" "#StickerKit_cologne2016_signature_shara_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_shara_foil" + "sticker_material" "cologne2016/sig_shara_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "53330928" + } + "1438" + { + "name" "cologne2016_signature_shara_gold" + "item_name" "#StickerKit_cologne2016_signature_shara_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_shara_gold" + "sticker_material" "cologne2016/sig_shara_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "53330928" + } + "1439" + { + "name" "cologne2016_signature_markeloff" + "item_name" "#StickerKit_cologne2016_signature_markeloff" + "description_string" "#StickerKit_desc_cologne2016_signature_markeloff" + "sticker_material" "cologne2016/sig_markeloff" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1440" + { + "name" "cologne2016_signature_markeloff_foil" + "item_name" "#StickerKit_cologne2016_signature_markeloff_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_markeloff_foil" + "sticker_material" "cologne2016/sig_markeloff_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1441" + { + "name" "cologne2016_signature_markeloff_gold" + "item_name" "#StickerKit_cologne2016_signature_markeloff_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_markeloff_gold" + "sticker_material" "cologne2016/sig_markeloff_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1442" + { + "name" "cologne2016_signature_worldedit" + "item_name" "#StickerKit_cologne2016_signature_worldedit" + "description_string" "#StickerKit_desc_cologne2016_signature_worldedit" + "sticker_material" "cologne2016/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1443" + { + "name" "cologne2016_signature_worldedit_foil" + "item_name" "#StickerKit_cologne2016_signature_worldedit_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_worldedit_foil" + "sticker_material" "cologne2016/sig_worldedit_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1444" + { + "name" "cologne2016_signature_worldedit_gold" + "item_name" "#StickerKit_cologne2016_signature_worldedit_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_worldedit_gold" + "sticker_material" "cologne2016/sig_worldedit_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1445" + { + "name" "cologne2016_signature_flusha" + "item_name" "#StickerKit_cologne2016_signature_flusha" + "description_string" "#StickerKit_desc_cologne2016_signature_flusha" + "sticker_material" "cologne2016/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "1446" + { + "name" "cologne2016_signature_flusha_foil" + "item_name" "#StickerKit_cologne2016_signature_flusha_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_flusha_foil" + "sticker_material" "cologne2016/sig_flusha_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "1447" + { + "name" "cologne2016_signature_flusha_gold" + "item_name" "#StickerKit_cologne2016_signature_flusha_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_flusha_gold" + "sticker_material" "cologne2016/sig_flusha_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "1448" + { + "name" "cologne2016_signature_jw" + "item_name" "#StickerKit_cologne2016_signature_jw" + "description_string" "#StickerKit_desc_cologne2016_signature_jw" + "sticker_material" "cologne2016/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "1449" + { + "name" "cologne2016_signature_jw_foil" + "item_name" "#StickerKit_cologne2016_signature_jw_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_jw_foil" + "sticker_material" "cologne2016/sig_jw_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "1450" + { + "name" "cologne2016_signature_jw_gold" + "item_name" "#StickerKit_cologne2016_signature_jw_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_jw_gold" + "sticker_material" "cologne2016/sig_jw_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "1451" + { + "name" "cologne2016_signature_krimz" + "item_name" "#StickerKit_cologne2016_signature_krimz" + "description_string" "#StickerKit_desc_cologne2016_signature_krimz" + "sticker_material" "cologne2016/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1452" + { + "name" "cologne2016_signature_krimz_foil" + "item_name" "#StickerKit_cologne2016_signature_krimz_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_krimz_foil" + "sticker_material" "cologne2016/sig_krimz_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1453" + { + "name" "cologne2016_signature_krimz_gold" + "item_name" "#StickerKit_cologne2016_signature_krimz_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_krimz_gold" + "sticker_material" "cologne2016/sig_krimz_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1454" + { + "name" "cologne2016_signature_olofmeister" + "item_name" "#StickerKit_cologne2016_signature_olofmeister" + "description_string" "#StickerKit_desc_cologne2016_signature_olofmeister" + "sticker_material" "cologne2016/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1455" + { + "name" "cologne2016_signature_olofmeister_foil" + "item_name" "#StickerKit_cologne2016_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_olofmeister_foil" + "sticker_material" "cologne2016/sig_olofmeister_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1456" + { + "name" "cologne2016_signature_olofmeister_gold" + "item_name" "#StickerKit_cologne2016_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_olofmeister_gold" + "sticker_material" "cologne2016/sig_olofmeister_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1457" + { + "name" "cologne2016_signature_dennis" + "item_name" "#StickerKit_cologne2016_signature_dennis" + "description_string" "#StickerKit_desc_cologne2016_signature_dennis" + "sticker_material" "cologne2016/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1458" + { + "name" "cologne2016_signature_dennis_foil" + "item_name" "#StickerKit_cologne2016_signature_dennis_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_dennis_foil" + "sticker_material" "cologne2016/sig_dennis_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1459" + { + "name" "cologne2016_signature_dennis_gold" + "item_name" "#StickerKit_cologne2016_signature_dennis_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_dennis_gold" + "sticker_material" "cologne2016/sig_dennis_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1460" + { + "name" "cologne2016_signature_aizy" + "item_name" "#StickerKit_cologne2016_signature_aizy" + "description_string" "#StickerKit_desc_cologne2016_signature_aizy" + "sticker_material" "cologne2016/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1461" + { + "name" "cologne2016_signature_aizy_foil" + "item_name" "#StickerKit_cologne2016_signature_aizy_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_aizy_foil" + "sticker_material" "cologne2016/sig_aizy_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1462" + { + "name" "cologne2016_signature_aizy_gold" + "item_name" "#StickerKit_cologne2016_signature_aizy_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_aizy_gold" + "sticker_material" "cologne2016/sig_aizy_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1463" + { + "name" "cologne2016_signature_fox" + "item_name" "#StickerKit_cologne2016_signature_fox" + "description_string" "#StickerKit_desc_cologne2016_signature_fox" + "sticker_material" "cologne2016/sig_fox" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "1939536" + } + "1464" + { + "name" "cologne2016_signature_fox_foil" + "item_name" "#StickerKit_cologne2016_signature_fox_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_fox_foil" + "sticker_material" "cologne2016/sig_fox_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "1939536" + } + "1465" + { + "name" "cologne2016_signature_fox_gold" + "item_name" "#StickerKit_cologne2016_signature_fox_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_fox_gold" + "sticker_material" "cologne2016/sig_fox_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "1939536" + } + "1466" + { + "name" "cologne2016_signature_kioshima" + "item_name" "#StickerKit_cologne2016_signature_kioshima" + "description_string" "#StickerKit_desc_cologne2016_signature_kioshima" + "sticker_material" "cologne2016/sig_kioshima" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "1467" + { + "name" "cologne2016_signature_kioshima_foil" + "item_name" "#StickerKit_cologne2016_signature_kioshima_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_kioshima_foil" + "sticker_material" "cologne2016/sig_kioshima_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "1468" + { + "name" "cologne2016_signature_kioshima_gold" + "item_name" "#StickerKit_cologne2016_signature_kioshima_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_kioshima_gold" + "sticker_material" "cologne2016/sig_kioshima_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "1469" + { + "name" "cologne2016_signature_rain" + "item_name" "#StickerKit_cologne2016_signature_rain" + "description_string" "#StickerKit_desc_cologne2016_signature_rain" + "sticker_material" "cologne2016/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1470" + { + "name" "cologne2016_signature_rain_foil" + "item_name" "#StickerKit_cologne2016_signature_rain_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_rain_foil" + "sticker_material" "cologne2016/sig_rain_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1471" + { + "name" "cologne2016_signature_rain_gold" + "item_name" "#StickerKit_cologne2016_signature_rain_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_rain_gold" + "sticker_material" "cologne2016/sig_rain_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1472" + { + "name" "cologne2016_signature_jkaem" + "item_name" "#StickerKit_cologne2016_signature_jkaem" + "description_string" "#StickerKit_desc_cologne2016_signature_jkaem" + "sticker_material" "cologne2016/sig_jkaem" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "42442914" + } + "1473" + { + "name" "cologne2016_signature_jkaem_foil" + "item_name" "#StickerKit_cologne2016_signature_jkaem_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_jkaem_foil" + "sticker_material" "cologne2016/sig_jkaem_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "42442914" + } + "1474" + { + "name" "cologne2016_signature_jkaem_gold" + "item_name" "#StickerKit_cologne2016_signature_jkaem_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_jkaem_gold" + "sticker_material" "cologne2016/sig_jkaem_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "61" + "tournament_player_id" "42442914" + } + "1475" + { + "name" "cologne2016_signature_coldzera" + "item_name" "#StickerKit_cologne2016_signature_coldzera" + "description_string" "#StickerKit_desc_cologne2016_signature_coldzera" + "sticker_material" "cologne2016/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "1476" + { + "name" "cologne2016_signature_coldzera_foil" + "item_name" "#StickerKit_cologne2016_signature_coldzera_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_coldzera_foil" + "sticker_material" "cologne2016/sig_coldzera_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "1477" + { + "name" "cologne2016_signature_coldzera_gold" + "item_name" "#StickerKit_cologne2016_signature_coldzera_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_coldzera_gold" + "sticker_material" "cologne2016/sig_coldzera_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "1478" + { + "name" "cologne2016_signature_fallen" + "item_name" "#StickerKit_cologne2016_signature_fallen" + "description_string" "#StickerKit_desc_cologne2016_signature_fallen" + "sticker_material" "cologne2016/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "1479" + { + "name" "cologne2016_signature_fallen_foil" + "item_name" "#StickerKit_cologne2016_signature_fallen_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_fallen_foil" + "sticker_material" "cologne2016/sig_fallen_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "1480" + { + "name" "cologne2016_signature_fallen_gold" + "item_name" "#StickerKit_cologne2016_signature_fallen_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_fallen_gold" + "sticker_material" "cologne2016/sig_fallen_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "1481" + { + "name" "cologne2016_signature_fer" + "item_name" "#StickerKit_cologne2016_signature_fer" + "description_string" "#StickerKit_desc_cologne2016_signature_fer" + "sticker_material" "cologne2016/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "1482" + { + "name" "cologne2016_signature_fer_foil" + "item_name" "#StickerKit_cologne2016_signature_fer_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_fer_foil" + "sticker_material" "cologne2016/sig_fer_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "1483" + { + "name" "cologne2016_signature_fer_gold" + "item_name" "#StickerKit_cologne2016_signature_fer_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_fer_gold" + "sticker_material" "cologne2016/sig_fer_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "1484" + { + "name" "cologne2016_signature_fnx" + "item_name" "#StickerKit_cologne2016_signature_fnx" + "description_string" "#StickerKit_desc_cologne2016_signature_fnx" + "sticker_material" "cologne2016/sig_fnx" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "170178574" + } + "1485" + { + "name" "cologne2016_signature_fnx_foil" + "item_name" "#StickerKit_cologne2016_signature_fnx_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_fnx_foil" + "sticker_material" "cologne2016/sig_fnx_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "170178574" + } + "1486" + { + "name" "cologne2016_signature_fnx_gold" + "item_name" "#StickerKit_cologne2016_signature_fnx_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_fnx_gold" + "sticker_material" "cologne2016/sig_fnx_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "170178574" + } + "1487" + { + "name" "cologne2016_signature_taco" + "item_name" "#StickerKit_cologne2016_signature_taco" + "description_string" "#StickerKit_desc_cologne2016_signature_taco" + "sticker_material" "cologne2016/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "1488" + { + "name" "cologne2016_signature_taco_foil" + "item_name" "#StickerKit_cologne2016_signature_taco_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_taco_foil" + "sticker_material" "cologne2016/sig_taco_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "1489" + { + "name" "cologne2016_signature_taco_gold" + "item_name" "#StickerKit_cologne2016_signature_taco_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_taco_gold" + "sticker_material" "cologne2016/sig_taco_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "1490" + { + "name" "cologne2016_signature_chrisj" + "item_name" "#StickerKit_cologne2016_signature_chrisj" + "description_string" "#StickerKit_desc_cologne2016_signature_chrisj" + "sticker_material" "cologne2016/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1491" + { + "name" "cologne2016_signature_chrisj_foil" + "item_name" "#StickerKit_cologne2016_signature_chrisj_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_chrisj_foil" + "sticker_material" "cologne2016/sig_chrisj_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1492" + { + "name" "cologne2016_signature_chrisj_gold" + "item_name" "#StickerKit_cologne2016_signature_chrisj_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_chrisj_gold" + "sticker_material" "cologne2016/sig_chrisj_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1493" + { + "name" "cologne2016_signature_denis" + "item_name" "#StickerKit_cologne2016_signature_denis" + "description_string" "#StickerKit_desc_cologne2016_signature_denis" + "sticker_material" "cologne2016/sig_denis" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1494" + { + "name" "cologne2016_signature_denis_foil" + "item_name" "#StickerKit_cologne2016_signature_denis_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_denis_foil" + "sticker_material" "cologne2016/sig_denis_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1495" + { + "name" "cologne2016_signature_denis_gold" + "item_name" "#StickerKit_cologne2016_signature_denis_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_denis_gold" + "sticker_material" "cologne2016/sig_denis_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1496" + { + "name" "cologne2016_signature_spiidi" + "item_name" "#StickerKit_cologne2016_signature_spiidi" + "description_string" "#StickerKit_desc_cologne2016_signature_spiidi" + "sticker_material" "cologne2016/sig_spiidi" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1497" + { + "name" "cologne2016_signature_spiidi_foil" + "item_name" "#StickerKit_cologne2016_signature_spiidi_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_spiidi_foil" + "sticker_material" "cologne2016/sig_spiidi_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1498" + { + "name" "cologne2016_signature_spiidi_gold" + "item_name" "#StickerKit_cologne2016_signature_spiidi_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_spiidi_gold" + "sticker_material" "cologne2016/sig_spiidi_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1499" + { + "name" "cologne2016_signature_nex" + "item_name" "#StickerKit_cologne2016_signature_nex" + "description_string" "#StickerKit_desc_cologne2016_signature_nex" + "sticker_material" "cologne2016/sig_nex" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "1500" + { + "name" "cologne2016_signature_nex_foil" + "item_name" "#StickerKit_cologne2016_signature_nex_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_nex_foil" + "sticker_material" "cologne2016/sig_nex_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "1501" + { + "name" "cologne2016_signature_nex_gold" + "item_name" "#StickerKit_cologne2016_signature_nex_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_nex_gold" + "sticker_material" "cologne2016/sig_nex_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "90378773" + } + "1502" + { + "name" "cologne2016_signature_niko" + "item_name" "#StickerKit_cologne2016_signature_niko" + "description_string" "#StickerKit_desc_cologne2016_signature_niko" + "sticker_material" "cologne2016/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1503" + { + "name" "cologne2016_signature_niko_foil" + "item_name" "#StickerKit_cologne2016_signature_niko_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_niko_foil" + "sticker_material" "cologne2016/sig_niko_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1504" + { + "name" "cologne2016_signature_niko_gold" + "item_name" "#StickerKit_cologne2016_signature_niko_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_niko_gold" + "sticker_material" "cologne2016/sig_niko_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1505" + { + "name" "cologne2016_signature_edward" + "item_name" "#StickerKit_cologne2016_signature_edward" + "description_string" "#StickerKit_desc_cologne2016_signature_edward" + "sticker_material" "cologne2016/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1506" + { + "name" "cologne2016_signature_edward_foil" + "item_name" "#StickerKit_cologne2016_signature_edward_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_edward_foil" + "sticker_material" "cologne2016/sig_edward_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1507" + { + "name" "cologne2016_signature_edward_gold" + "item_name" "#StickerKit_cologne2016_signature_edward_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_edward_gold" + "sticker_material" "cologne2016/sig_edward_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1508" + { + "name" "cologne2016_signature_flamie" + "item_name" "#StickerKit_cologne2016_signature_flamie" + "description_string" "#StickerKit_desc_cologne2016_signature_flamie" + "sticker_material" "cologne2016/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1509" + { + "name" "cologne2016_signature_flamie_foil" + "item_name" "#StickerKit_cologne2016_signature_flamie_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_flamie_foil" + "sticker_material" "cologne2016/sig_flamie_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1510" + { + "name" "cologne2016_signature_flamie_gold" + "item_name" "#StickerKit_cologne2016_signature_flamie_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_flamie_gold" + "sticker_material" "cologne2016/sig_flamie_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1511" + { + "name" "cologne2016_signature_guardian" + "item_name" "#StickerKit_cologne2016_signature_guardian" + "description_string" "#StickerKit_desc_cologne2016_signature_guardian" + "sticker_material" "cologne2016/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1512" + { + "name" "cologne2016_signature_guardian_foil" + "item_name" "#StickerKit_cologne2016_signature_guardian_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_guardian_foil" + "sticker_material" "cologne2016/sig_guardian_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1513" + { + "name" "cologne2016_signature_guardian_gold" + "item_name" "#StickerKit_cologne2016_signature_guardian_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_guardian_gold" + "sticker_material" "cologne2016/sig_guardian_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1514" + { + "name" "cologne2016_signature_seized" + "item_name" "#StickerKit_cologne2016_signature_seized" + "description_string" "#StickerKit_desc_cologne2016_signature_seized" + "sticker_material" "cologne2016/sig_seized" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1515" + { + "name" "cologne2016_signature_seized_foil" + "item_name" "#StickerKit_cologne2016_signature_seized_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_seized_foil" + "sticker_material" "cologne2016/sig_seized_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1516" + { + "name" "cologne2016_signature_seized_gold" + "item_name" "#StickerKit_cologne2016_signature_seized_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_seized_gold" + "sticker_material" "cologne2016/sig_seized_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1517" + { + "name" "cologne2016_signature_zeus" + "item_name" "#StickerKit_cologne2016_signature_zeus" + "description_string" "#StickerKit_desc_cologne2016_signature_zeus" + "sticker_material" "cologne2016/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "1518" + { + "name" "cologne2016_signature_zeus_foil" + "item_name" "#StickerKit_cologne2016_signature_zeus_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_zeus_foil" + "sticker_material" "cologne2016/sig_zeus_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "1519" + { + "name" "cologne2016_signature_zeus_gold" + "item_name" "#StickerKit_cologne2016_signature_zeus_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_zeus_gold" + "sticker_material" "cologne2016/sig_zeus_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "1520" + { + "name" "cologne2016_signature_pyth" + "item_name" "#StickerKit_cologne2016_signature_pyth" + "description_string" "#StickerKit_desc_cologne2016_signature_pyth" + "sticker_material" "cologne2016/sig_pyth" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "57312567" + } + "1521" + { + "name" "cologne2016_signature_pyth_foil" + "item_name" "#StickerKit_cologne2016_signature_pyth_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_pyth_foil" + "sticker_material" "cologne2016/sig_pyth_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "57312567" + } + "1522" + { + "name" "cologne2016_signature_pyth_gold" + "item_name" "#StickerKit_cologne2016_signature_pyth_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_pyth_gold" + "sticker_material" "cologne2016/sig_pyth_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "57312567" + } + "1523" + { + "name" "cologne2016_signature_forest" + "item_name" "#StickerKit_cologne2016_signature_forest" + "description_string" "#StickerKit_desc_cologne2016_signature_forest" + "sticker_material" "cologne2016/sig_forest" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "1524" + { + "name" "cologne2016_signature_forest_foil" + "item_name" "#StickerKit_cologne2016_signature_forest_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_forest_foil" + "sticker_material" "cologne2016/sig_forest_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "1525" + { + "name" "cologne2016_signature_forest_gold" + "item_name" "#StickerKit_cologne2016_signature_forest_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_forest_gold" + "sticker_material" "cologne2016/sig_forest_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "1526" + { + "name" "cologne2016_signature_friberg" + "item_name" "#StickerKit_cologne2016_signature_friberg" + "description_string" "#StickerKit_desc_cologne2016_signature_friberg" + "sticker_material" "cologne2016/sig_friberg" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "1527" + { + "name" "cologne2016_signature_friberg_foil" + "item_name" "#StickerKit_cologne2016_signature_friberg_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_friberg_foil" + "sticker_material" "cologne2016/sig_friberg_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "1528" + { + "name" "cologne2016_signature_friberg_gold" + "item_name" "#StickerKit_cologne2016_signature_friberg_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_friberg_gold" + "sticker_material" "cologne2016/sig_friberg_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "24295201" + } + "1529" + { + "name" "cologne2016_signature_getright" + "item_name" "#StickerKit_cologne2016_signature_getright" + "description_string" "#StickerKit_desc_cologne2016_signature_getright" + "sticker_material" "cologne2016/sig_getright" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "1530" + { + "name" "cologne2016_signature_getright_foil" + "item_name" "#StickerKit_cologne2016_signature_getright_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_getright_foil" + "sticker_material" "cologne2016/sig_getright_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "1531" + { + "name" "cologne2016_signature_getright_gold" + "item_name" "#StickerKit_cologne2016_signature_getright_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_getright_gold" + "sticker_material" "cologne2016/sig_getright_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "1532" + { + "name" "cologne2016_signature_xizt" + "item_name" "#StickerKit_cologne2016_signature_xizt" + "description_string" "#StickerKit_desc_cologne2016_signature_xizt" + "sticker_material" "cologne2016/sig_xizt" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "1533" + { + "name" "cologne2016_signature_xizt_foil" + "item_name" "#StickerKit_cologne2016_signature_xizt_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_xizt_foil" + "sticker_material" "cologne2016/sig_xizt_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "1534" + { + "name" "cologne2016_signature_xizt_gold" + "item_name" "#StickerKit_cologne2016_signature_xizt_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_xizt_gold" + "sticker_material" "cologne2016/sig_xizt_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "1" + "tournament_player_id" "26224992" + } + "1535" + { + "name" "cologne2016_signature_cajunb" + "item_name" "#StickerKit_cologne2016_signature_cajunb" + "description_string" "#StickerKit_desc_cologne2016_signature_cajunb" + "sticker_material" "cologne2016/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "18062315" + } + "1536" + { + "name" "cologne2016_signature_cajunb_foil" + "item_name" "#StickerKit_cologne2016_signature_cajunb_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_cajunb_foil" + "sticker_material" "cologne2016/sig_cajunb_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "18062315" + } + "1537" + { + "name" "cologne2016_signature_cajunb_gold" + "item_name" "#StickerKit_cologne2016_signature_cajunb_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_cajunb_gold" + "sticker_material" "cologne2016/sig_cajunb_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "18062315" + } + "1538" + { + "name" "cologne2016_signature_msl" + "item_name" "#StickerKit_cologne2016_signature_msl" + "description_string" "#StickerKit_desc_cologne2016_signature_msl" + "sticker_material" "cologne2016/sig_msl" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "24134891" + } + "1539" + { + "name" "cologne2016_signature_msl_foil" + "item_name" "#StickerKit_cologne2016_signature_msl_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_msl_foil" + "sticker_material" "cologne2016/sig_msl_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "24134891" + } + "1540" + { + "name" "cologne2016_signature_msl_gold" + "item_name" "#StickerKit_cologne2016_signature_msl_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_msl_gold" + "sticker_material" "cologne2016/sig_msl_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "24134891" + } + "1541" + { + "name" "cologne2016_signature_tenzki" + "item_name" "#StickerKit_cologne2016_signature_tenzki" + "description_string" "#StickerKit_desc_cologne2016_signature_tenzki" + "sticker_material" "cologne2016/sig_tenzki" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "37214922" + } + "1542" + { + "name" "cologne2016_signature_tenzki_foil" + "item_name" "#StickerKit_cologne2016_signature_tenzki_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_tenzki_foil" + "sticker_material" "cologne2016/sig_tenzki_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "37214922" + } + "1543" + { + "name" "cologne2016_signature_tenzki_gold" + "item_name" "#StickerKit_cologne2016_signature_tenzki_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_tenzki_gold" + "sticker_material" "cologne2016/sig_tenzki_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "37214922" + } + "1544" + { + "name" "cologne2016_signature_rubino" + "item_name" "#StickerKit_cologne2016_signature_rubino" + "description_string" "#StickerKit_desc_cologne2016_signature_rubino" + "sticker_material" "cologne2016/sig_rubino" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "35103983" + } + "1545" + { + "name" "cologne2016_signature_rubino_foil" + "item_name" "#StickerKit_cologne2016_signature_rubino_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_rubino_foil" + "sticker_material" "cologne2016/sig_rubino_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "35103983" + } + "1546" + { + "name" "cologne2016_signature_rubino_gold" + "item_name" "#StickerKit_cologne2016_signature_rubino_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_rubino_gold" + "sticker_material" "cologne2016/sig_rubino_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "35103983" + } + "1547" + { + "name" "cologne2016_signature_k0nfig" + "item_name" "#StickerKit_cologne2016_signature_k0nfig" + "description_string" "#StickerKit_desc_cologne2016_signature_k0nfig" + "sticker_material" "cologne2016/sig_k0nfig" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "19403447" + } + "1548" + { + "name" "cologne2016_signature_k0nfig_foil" + "item_name" "#StickerKit_cologne2016_signature_k0nfig_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_k0nfig_foil" + "sticker_material" "cologne2016/sig_k0nfig_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "19403447" + } + "1549" + { + "name" "cologne2016_signature_k0nfig_gold" + "item_name" "#StickerKit_cologne2016_signature_k0nfig_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_k0nfig_gold" + "sticker_material" "cologne2016/sig_k0nfig_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "24" + "tournament_player_id" "19403447" + } + "1550" + { + "name" "cologne2016_signature_jdm64" + "item_name" "#StickerKit_cologne2016_signature_jdm64" + "description_string" "#StickerKit_desc_cologne2016_signature_jdm64" + "sticker_material" "cologne2016/sig_jdm64" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "1551" + { + "name" "cologne2016_signature_jdm64_foil" + "item_name" "#StickerKit_cologne2016_signature_jdm64_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_jdm64_foil" + "sticker_material" "cologne2016/sig_jdm64_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "1552" + { + "name" "cologne2016_signature_jdm64_gold" + "item_name" "#StickerKit_cologne2016_signature_jdm64_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_jdm64_gold" + "sticker_material" "cologne2016/sig_jdm64_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "1553" + { + "name" "cologne2016_signature_elige" + "item_name" "#StickerKit_cologne2016_signature_elige" + "description_string" "#StickerKit_desc_cologne2016_signature_elige" + "sticker_material" "cologne2016/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1554" + { + "name" "cologne2016_signature_elige_foil" + "item_name" "#StickerKit_cologne2016_signature_elige_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_elige_foil" + "sticker_material" "cologne2016/sig_elige_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1555" + { + "name" "cologne2016_signature_elige_gold" + "item_name" "#StickerKit_cologne2016_signature_elige_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_elige_gold" + "sticker_material" "cologne2016/sig_elige_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1556" + { + "name" "cologne2016_signature_s1mple" + "item_name" "#StickerKit_cologne2016_signature_s1mple" + "description_string" "#StickerKit_desc_cologne2016_signature_s1mple" + "sticker_material" "cologne2016/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "73936547" + } + "1557" + { + "name" "cologne2016_signature_s1mple_foil" + "item_name" "#StickerKit_cologne2016_signature_s1mple_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_s1mple_foil" + "sticker_material" "cologne2016/sig_s1mple_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "73936547" + } + "1558" + { + "name" "cologne2016_signature_s1mple_gold" + "item_name" "#StickerKit_cologne2016_signature_s1mple_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_s1mple_gold" + "sticker_material" "cologne2016/sig_s1mple_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "73936547" + } + "1559" + { + "name" "cologne2016_signature_hiko" + "item_name" "#StickerKit_cologne2016_signature_hiko" + "description_string" "#StickerKit_desc_cologne2016_signature_hiko" + "sticker_material" "cologne2016/sig_hiko" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1560" + { + "name" "cologne2016_signature_hiko_foil" + "item_name" "#StickerKit_cologne2016_signature_hiko_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_hiko_foil" + "sticker_material" "cologne2016/sig_hiko_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1561" + { + "name" "cologne2016_signature_hiko_gold" + "item_name" "#StickerKit_cologne2016_signature_hiko_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_hiko_gold" + "sticker_material" "cologne2016/sig_hiko_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1562" + { + "name" "cologne2016_signature_nitro" + "item_name" "#StickerKit_cologne2016_signature_nitro" + "description_string" "#StickerKit_desc_cologne2016_signature_nitro" + "sticker_material" "cologne2016/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "1563" + { + "name" "cologne2016_signature_nitro_foil" + "item_name" "#StickerKit_cologne2016_signature_nitro_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_nitro_foil" + "sticker_material" "cologne2016/sig_nitro_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "1564" + { + "name" "cologne2016_signature_nitro_gold" + "item_name" "#StickerKit_cologne2016_signature_nitro_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_nitro_gold" + "sticker_material" "cologne2016/sig_nitro_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "1565" + { + "name" "cologne2016_signature_bodyy" + "item_name" "#StickerKit_cologne2016_signature_bodyy" + "description_string" "#StickerKit_desc_cologne2016_signature_bodyy" + "sticker_material" "cologne2016/sig_bodyy" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "1566" + { + "name" "cologne2016_signature_bodyy_foil" + "item_name" "#StickerKit_cologne2016_signature_bodyy_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_bodyy_foil" + "sticker_material" "cologne2016/sig_bodyy_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "1567" + { + "name" "cologne2016_signature_bodyy_gold" + "item_name" "#StickerKit_cologne2016_signature_bodyy_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_bodyy_gold" + "sticker_material" "cologne2016/sig_bodyy_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "1568" + { + "name" "cologne2016_signature_rpk" + "item_name" "#StickerKit_cologne2016_signature_rpk" + "description_string" "#StickerKit_desc_cologne2016_signature_rpk" + "sticker_material" "cologne2016/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "1569" + { + "name" "cologne2016_signature_rpk_foil" + "item_name" "#StickerKit_cologne2016_signature_rpk_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_rpk_foil" + "sticker_material" "cologne2016/sig_rpk_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "1570" + { + "name" "cologne2016_signature_rpk_gold" + "item_name" "#StickerKit_cologne2016_signature_rpk_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_rpk_gold" + "sticker_material" "cologne2016/sig_rpk_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "1571" + { + "name" "cologne2016_signature_scream" + "item_name" "#StickerKit_cologne2016_signature_scream" + "description_string" "#StickerKit_desc_cologne2016_signature_scream" + "sticker_material" "cologne2016/sig_scream" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "1572" + { + "name" "cologne2016_signature_scream_foil" + "item_name" "#StickerKit_cologne2016_signature_scream_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_scream_foil" + "sticker_material" "cologne2016/sig_scream_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "1573" + { + "name" "cologne2016_signature_scream_gold" + "item_name" "#StickerKit_cologne2016_signature_scream_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_scream_gold" + "sticker_material" "cologne2016/sig_scream_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "1574" + { + "name" "cologne2016_signature_shox" + "item_name" "#StickerKit_cologne2016_signature_shox" + "description_string" "#StickerKit_desc_cologne2016_signature_shox" + "sticker_material" "cologne2016/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "1575" + { + "name" "cologne2016_signature_shox_foil" + "item_name" "#StickerKit_cologne2016_signature_shox_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_shox_foil" + "sticker_material" "cologne2016/sig_shox_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "1576" + { + "name" "cologne2016_signature_shox_gold" + "item_name" "#StickerKit_cologne2016_signature_shox_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_shox_gold" + "sticker_material" "cologne2016/sig_shox_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "1577" + { + "name" "cologne2016_signature_smithzz" + "item_name" "#StickerKit_cologne2016_signature_smithzz" + "description_string" "#StickerKit_desc_cologne2016_signature_smithzz" + "sticker_material" "cologne2016/sig_smithzz" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "1578" + { + "name" "cologne2016_signature_smithzz_foil" + "item_name" "#StickerKit_cologne2016_signature_smithzz_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_smithzz_foil" + "sticker_material" "cologne2016/sig_smithzz_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "1579" + { + "name" "cologne2016_signature_smithzz_gold" + "item_name" "#StickerKit_cologne2016_signature_smithzz_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_smithzz_gold" + "sticker_material" "cologne2016/sig_smithzz_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "1580" + { + "name" "cologne2016_signature_gla1ve" + "item_name" "#StickerKit_cologne2016_signature_gla1ve" + "description_string" "#StickerKit_desc_cologne2016_signature_gla1ve" + "sticker_material" "cologne2016/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "1581" + { + "name" "cologne2016_signature_gla1ve_foil" + "item_name" "#StickerKit_cologne2016_signature_gla1ve_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_gla1ve_foil" + "sticker_material" "cologne2016/sig_gla1ve_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "1582" + { + "name" "cologne2016_signature_gla1ve_gold" + "item_name" "#StickerKit_cologne2016_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_gla1ve_gold" + "sticker_material" "cologne2016/sig_gla1ve_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "1583" + { + "name" "cologne2016_signature_device" + "item_name" "#StickerKit_cologne2016_signature_device" + "description_string" "#StickerKit_desc_cologne2016_signature_device" + "sticker_material" "cologne2016/sig_device" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "1584" + { + "name" "cologne2016_signature_device_foil" + "item_name" "#StickerKit_cologne2016_signature_device_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_device_foil" + "sticker_material" "cologne2016/sig_device_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "1585" + { + "name" "cologne2016_signature_device_gold" + "item_name" "#StickerKit_cologne2016_signature_device_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_device_gold" + "sticker_material" "cologne2016/sig_device_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "1586" + { + "name" "cologne2016_signature_dupreeh" + "item_name" "#StickerKit_cologne2016_signature_dupreeh" + "description_string" "#StickerKit_desc_cologne2016_signature_dupreeh" + "sticker_material" "cologne2016/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "1587" + { + "name" "cologne2016_signature_dupreeh_foil" + "item_name" "#StickerKit_cologne2016_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_dupreeh_foil" + "sticker_material" "cologne2016/sig_dupreeh_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "1588" + { + "name" "cologne2016_signature_dupreeh_gold" + "item_name" "#StickerKit_cologne2016_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_dupreeh_gold" + "sticker_material" "cologne2016/sig_dupreeh_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "1589" + { + "name" "cologne2016_signature_karrigan" + "item_name" "#StickerKit_cologne2016_signature_karrigan" + "description_string" "#StickerKit_desc_cologne2016_signature_karrigan" + "sticker_material" "cologne2016/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "29164525" + } + "1590" + { + "name" "cologne2016_signature_karrigan_foil" + "item_name" "#StickerKit_cologne2016_signature_karrigan_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_karrigan_foil" + "sticker_material" "cologne2016/sig_karrigan_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "29164525" + } + "1591" + { + "name" "cologne2016_signature_karrigan_gold" + "item_name" "#StickerKit_cologne2016_signature_karrigan_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_karrigan_gold" + "sticker_material" "cologne2016/sig_karrigan_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "29164525" + } + "1592" + { + "name" "cologne2016_signature_xyp9x" + "item_name" "#StickerKit_cologne2016_signature_xyp9x" + "description_string" "#StickerKit_desc_cologne2016_signature_xyp9x" + "sticker_material" "cologne2016/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "1593" + { + "name" "cologne2016_signature_xyp9x_foil" + "item_name" "#StickerKit_cologne2016_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_xyp9x_foil" + "sticker_material" "cologne2016/sig_xyp9x_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "1594" + { + "name" "cologne2016_signature_xyp9x_gold" + "item_name" "#StickerKit_cologne2016_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_xyp9x_gold" + "sticker_material" "cologne2016/sig_xyp9x_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "1595" + { + "name" "cologne2016_signature_spaze" + "item_name" "#StickerKit_cologne2016_signature_spaze" + "description_string" "#StickerKit_desc_cologne2016_signature_spaze" + "sticker_material" "cologne2016/sig_spaze" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "109497526" + } + "1596" + { + "name" "cologne2016_signature_spaze_foil" + "item_name" "#StickerKit_cologne2016_signature_spaze_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_spaze_foil" + "sticker_material" "cologne2016/sig_spaze_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "109497526" + } + "1597" + { + "name" "cologne2016_signature_spaze_gold" + "item_name" "#StickerKit_cologne2016_signature_spaze_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_spaze_gold" + "sticker_material" "cologne2016/sig_spaze_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "109497526" + } + "1598" + { + "name" "cologne2016_signature_dosia" + "item_name" "#StickerKit_cologne2016_signature_dosia" + "description_string" "#StickerKit_desc_cologne2016_signature_dosia" + "sticker_material" "cologne2016/sig_dosia" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "1599" + { + "name" "cologne2016_signature_dosia_foil" + "item_name" "#StickerKit_cologne2016_signature_dosia_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_dosia_foil" + "sticker_material" "cologne2016/sig_dosia_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "1600" + { + "name" "cologne2016_signature_dosia_gold" + "item_name" "#StickerKit_cologne2016_signature_dosia_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_dosia_gold" + "sticker_material" "cologne2016/sig_dosia_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "1601" + { + "name" "cologne2016_signature_hooch" + "item_name" "#StickerKit_cologne2016_signature_hooch" + "description_string" "#StickerKit_desc_cologne2016_signature_hooch" + "sticker_material" "cologne2016/sig_hooch" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "5809933" + } + "1602" + { + "name" "cologne2016_signature_hooch_foil" + "item_name" "#StickerKit_cologne2016_signature_hooch_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_hooch_foil" + "sticker_material" "cologne2016/sig_hooch_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "5809933" + } + "1603" + { + "name" "cologne2016_signature_hooch_gold" + "item_name" "#StickerKit_cologne2016_signature_hooch_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_hooch_gold" + "sticker_material" "cologne2016/sig_hooch_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "5809933" + } + "1604" + { + "name" "cologne2016_signature_mou" + "item_name" "#StickerKit_cologne2016_signature_mou" + "description_string" "#StickerKit_desc_cologne2016_signature_mou" + "sticker_material" "cologne2016/sig_mou" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "1605" + { + "name" "cologne2016_signature_mou_foil" + "item_name" "#StickerKit_cologne2016_signature_mou_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_mou_foil" + "sticker_material" "cologne2016/sig_mou_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "1606" + { + "name" "cologne2016_signature_mou_gold" + "item_name" "#StickerKit_cologne2016_signature_mou_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_mou_gold" + "sticker_material" "cologne2016/sig_mou_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "1607" + { + "name" "cologne2016_signature_adrenkz" + "item_name" "#StickerKit_cologne2016_signature_adrenkz" + "description_string" "#StickerKit_desc_cologne2016_signature_adrenkz" + "sticker_material" "cologne2016/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "1608" + { + "name" "cologne2016_signature_adrenkz_foil" + "item_name" "#StickerKit_cologne2016_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_adrenkz_foil" + "sticker_material" "cologne2016/sig_adrenkz_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "1609" + { + "name" "cologne2016_signature_adrenkz_gold" + "item_name" "#StickerKit_cologne2016_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_adrenkz_gold" + "sticker_material" "cologne2016/sig_adrenkz_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "1610" + { + "name" "cologne2016_signature_byali" + "item_name" "#StickerKit_cologne2016_signature_byali" + "description_string" "#StickerKit_desc_cologne2016_signature_byali" + "sticker_material" "cologne2016/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "1611" + { + "name" "cologne2016_signature_byali_foil" + "item_name" "#StickerKit_cologne2016_signature_byali_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_byali_foil" + "sticker_material" "cologne2016/sig_byali_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "1612" + { + "name" "cologne2016_signature_byali_gold" + "item_name" "#StickerKit_cologne2016_signature_byali_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_byali_gold" + "sticker_material" "cologne2016/sig_byali_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "1613" + { + "name" "cologne2016_signature_neo" + "item_name" "#StickerKit_cologne2016_signature_neo" + "description_string" "#StickerKit_desc_cologne2016_signature_neo" + "sticker_material" "cologne2016/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "1614" + { + "name" "cologne2016_signature_neo_foil" + "item_name" "#StickerKit_cologne2016_signature_neo_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_neo_foil" + "sticker_material" "cologne2016/sig_neo_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "1615" + { + "name" "cologne2016_signature_neo_gold" + "item_name" "#StickerKit_cologne2016_signature_neo_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_neo_gold" + "sticker_material" "cologne2016/sig_neo_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "1616" + { + "name" "cologne2016_signature_pasha" + "item_name" "#StickerKit_cologne2016_signature_pasha" + "description_string" "#StickerKit_desc_cologne2016_signature_pasha" + "sticker_material" "cologne2016/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "1617" + { + "name" "cologne2016_signature_pasha_foil" + "item_name" "#StickerKit_cologne2016_signature_pasha_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_pasha_foil" + "sticker_material" "cologne2016/sig_pasha_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "1618" + { + "name" "cologne2016_signature_pasha_gold" + "item_name" "#StickerKit_cologne2016_signature_pasha_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_pasha_gold" + "sticker_material" "cologne2016/sig_pasha_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "1619" + { + "name" "cologne2016_signature_snax" + "item_name" "#StickerKit_cologne2016_signature_snax" + "description_string" "#StickerKit_desc_cologne2016_signature_snax" + "sticker_material" "cologne2016/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "1620" + { + "name" "cologne2016_signature_snax_foil" + "item_name" "#StickerKit_cologne2016_signature_snax_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_snax_foil" + "sticker_material" "cologne2016/sig_snax_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "1621" + { + "name" "cologne2016_signature_snax_gold" + "item_name" "#StickerKit_cologne2016_signature_snax_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_snax_gold" + "sticker_material" "cologne2016/sig_snax_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "1622" + { + "name" "cologne2016_signature_taz" + "item_name" "#StickerKit_cologne2016_signature_taz" + "description_string" "#StickerKit_desc_cologne2016_signature_taz" + "sticker_material" "cologne2016/sig_taz" + "item_rarity" "rare" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "1623" + { + "name" "cologne2016_signature_taz_foil" + "item_name" "#StickerKit_cologne2016_signature_taz_foil" + "description_string" "#StickerKit_desc_cologne2016_signature_taz_foil" + "sticker_material" "cologne2016/sig_taz_foil" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "1624" + { + "name" "cologne2016_signature_taz_gold" + "item_name" "#StickerKit_cologne2016_signature_taz_gold" + "description_string" "#StickerKit_desc_cologne2016_signature_taz_gold" + "sticker_material" "cologne2016/sig_taz_gold" + "item_rarity" "legendary" + "tournament_event_id" "10" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + } + "prefabs" + { + "atlanta2017_sticker_capsule_prefab" + { + "first_sale_date" "2017-01-10" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + } + "atlanta2017_signature_capsule_prefab" + { + "first_sale_date" "2017-01-10" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_atlanta2017_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_atlanta2017_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "180" "crate_sticker_pack_atlanta2017_legends" + "181" "crate_sticker_pack_atlanta2017_challengers" + "182" "crate_signature_pack_atlanta2017_group_1_legendary" + "183" "crate_signature_pack_atlanta2017_group_2_legendary" + "184" "atlanta2017_signatures_astr" + "185" "atlanta2017_signatures_nv" + "186" "atlanta2017_signatures_faze" + "187" "atlanta2017_signatures_flip" + "188" "atlanta2017_signatures_fntc" + "189" "atlanta2017_signatures_g2" + "190" "atlanta2017_signatures_gamb" + "191" "atlanta2017_signatures_god" + "192" "atlanta2017_signatures_hlr" + "193" "atlanta2017_signatures_mss" + "194" "atlanta2017_signatures_navi" + "195" "atlanta2017_signatures_nor" + "196" "atlanta2017_signatures_optc" + "197" "atlanta2017_signatures_sk" + "198" "atlanta2017_signatures_liq" + "199" "atlanta2017_signatures_vp" + "200" "crate_atlanta2017_promo_de_dust2" + "201" "crate_atlanta2017_promo_de_mirage" + "202" "crate_atlanta2017_promo_de_cbble" + "203" "crate_atlanta2017_promo_de_overpass" + "204" "crate_atlanta2017_promo_de_cache" + "205" "crate_atlanta2017_promo_de_train" + "206" "crate_atlanta2017_promo_de_nuke" + } + "client_loot_lists" + { + "atlanta2017_rare_astr" + { + "[atlanta2017_team_astr]sticker" "1" + } + "atlanta2017_rare_nv" + { + "[atlanta2017_team_nv]sticker" "1" + } + "atlanta2017_rare_faze" + { + "[atlanta2017_team_faze]sticker" "1" + } + "atlanta2017_rare_flip" + { + "[atlanta2017_team_flip]sticker" "1" + } + "atlanta2017_rare_fntc" + { + "[atlanta2017_team_fntc]sticker" "1" + } + "atlanta2017_rare_g2" + { + "[atlanta2017_team_g2]sticker" "1" + } + "atlanta2017_rare_gamb" + { + "[atlanta2017_team_gamb]sticker" "1" + } + "atlanta2017_rare_god" + { + "[atlanta2017_team_god]sticker" "1" + } + "atlanta2017_rare_hlr" + { + "[atlanta2017_team_hlr]sticker" "1" + } + "atlanta2017_rare_mss" + { + "[atlanta2017_team_mss]sticker" "1" + } + "atlanta2017_rare_navi" + { + "[atlanta2017_team_navi]sticker" "1" + } + "atlanta2017_rare_nor" + { + "[atlanta2017_team_nor]sticker" "1" + } + "atlanta2017_rare_optc" + { + "[atlanta2017_team_optc]sticker" "1" + } + "atlanta2017_rare_sk" + { + "[atlanta2017_team_sk]sticker" "1" + } + "atlanta2017_rare_liq" + { + "[atlanta2017_team_liq]sticker" "1" + } + "atlanta2017_rare_vp" + { + "[atlanta2017_team_vp]sticker" "1" + } + "atlanta2017_rare_eleague" + { + "[atlanta2017_team_eleague]sticker" "1" + } + "atlanta2017_graffiti_astr" + { + "[atlanta2017_team_astr_graffiti]spray" "1" + } + "atlanta2017_graffiti_nv" + { + "[atlanta2017_team_nv_graffiti]spray" "1" + } + "atlanta2017_graffiti_faze" + { + "[atlanta2017_team_faze_graffiti]spray" "1" + } + "atlanta2017_graffiti_flip" + { + "[atlanta2017_team_flip_graffiti]spray" "1" + } + "atlanta2017_graffiti_fntc" + { + "[atlanta2017_team_fntc_graffiti]spray" "1" + } + "atlanta2017_graffiti_g2" + { + "[atlanta2017_team_g2_graffiti]spray" "1" + } + "atlanta2017_graffiti_gamb" + { + "[atlanta2017_team_gamb_graffiti]spray" "1" + } + "atlanta2017_graffiti_god" + { + "[atlanta2017_team_god_graffiti]spray" "1" + } + "atlanta2017_graffiti_hlr" + { + "[atlanta2017_team_hlr_graffiti]spray" "1" + } + "atlanta2017_graffiti_mss" + { + "[atlanta2017_team_mss_graffiti]spray" "1" + } + "atlanta2017_graffiti_navi" + { + "[atlanta2017_team_navi_graffiti]spray" "1" + } + "atlanta2017_graffiti_nor" + { + "[atlanta2017_team_nor_graffiti]spray" "1" + } + "atlanta2017_graffiti_optc" + { + "[atlanta2017_team_optc_graffiti]spray" "1" + } + "atlanta2017_graffiti_sk" + { + "[atlanta2017_team_sk_graffiti]spray" "1" + } + "atlanta2017_graffiti_liq" + { + "[atlanta2017_team_liq_graffiti]spray" "1" + } + "atlanta2017_graffiti_vp" + { + "[atlanta2017_team_vp_graffiti]spray" "1" + } + "atlanta2017_graffiti_eleague" + { + "[atlanta2017_team_eleague_graffiti]spray" "1" + } + "crate_sticker_pack_atlanta2017_legends_rare" + { + "[atlanta2017_team_astr]sticker" "1" + "[atlanta2017_team_flip]sticker" "1" + "[atlanta2017_team_fntc]sticker" "1" + "[atlanta2017_team_gamb]sticker" "1" + "[atlanta2017_team_navi]sticker" "1" + "[atlanta2017_team_sk]sticker" "1" + "[atlanta2017_team_liq]sticker" "1" + "[atlanta2017_team_vp]sticker" "1" + "[atlanta2017_team_eleague]sticker" "1" + } + "crate_sticker_pack_atlanta2017_legends_mythical" + { + "[atlanta2017_team_astr_holo]sticker" "1" + "[atlanta2017_team_flip_holo]sticker" "1" + "[atlanta2017_team_fntc_holo]sticker" "1" + "[atlanta2017_team_gamb_holo]sticker" "1" + "[atlanta2017_team_navi_holo]sticker" "1" + "[atlanta2017_team_sk_holo]sticker" "1" + "[atlanta2017_team_liq_holo]sticker" "1" + "[atlanta2017_team_vp_holo]sticker" "1" + "[atlanta2017_team_eleague_holo]sticker" "1" + } + "crate_sticker_pack_atlanta2017_legends_legendary" + { + "[atlanta2017_team_astr_foil]sticker" "1" + "[atlanta2017_team_flip_foil]sticker" "1" + "[atlanta2017_team_fntc_foil]sticker" "1" + "[atlanta2017_team_gamb_foil]sticker" "1" + "[atlanta2017_team_navi_foil]sticker" "1" + "[atlanta2017_team_sk_foil]sticker" "1" + "[atlanta2017_team_liq_foil]sticker" "1" + "[atlanta2017_team_vp_foil]sticker" "1" + "[atlanta2017_team_eleague_foil]sticker" "1" + } + "crate_sticker_pack_atlanta2017_legends" + { + "crate_sticker_pack_atlanta2017_legends_mythical" "1" + "crate_sticker_pack_atlanta2017_legends_legendary" "1" + } + "crate_sticker_pack_atlanta2017_challengers_rare" + { + "[atlanta2017_team_nv]sticker" "1" + "[atlanta2017_team_faze]sticker" "1" + "[atlanta2017_team_g2]sticker" "1" + "[atlanta2017_team_god]sticker" "1" + "[atlanta2017_team_hlr]sticker" "1" + "[atlanta2017_team_mss]sticker" "1" + "[atlanta2017_team_nor]sticker" "1" + "[atlanta2017_team_optc]sticker" "1" + } + "crate_sticker_pack_atlanta2017_challengers_mythical" + { + "[atlanta2017_team_nv_holo]sticker" "1" + "[atlanta2017_team_faze_holo]sticker" "1" + "[atlanta2017_team_g2_holo]sticker" "1" + "[atlanta2017_team_god_holo]sticker" "1" + "[atlanta2017_team_hlr_holo]sticker" "1" + "[atlanta2017_team_mss_holo]sticker" "1" + "[atlanta2017_team_nor_holo]sticker" "1" + "[atlanta2017_team_optc_holo]sticker" "1" + "[atlanta2017_team_eleague_holo]sticker" "1" + } + "crate_sticker_pack_atlanta2017_challengers_legendary" + { + "[atlanta2017_team_nv_foil]sticker" "1" + "[atlanta2017_team_faze_foil]sticker" "1" + "[atlanta2017_team_g2_foil]sticker" "1" + "[atlanta2017_team_god_foil]sticker" "1" + "[atlanta2017_team_hlr_foil]sticker" "1" + "[atlanta2017_team_mss_foil]sticker" "1" + "[atlanta2017_team_nor_foil]sticker" "1" + "[atlanta2017_team_optc_foil]sticker" "1" + "[atlanta2017_team_eleague_foil]sticker" "1" + } + "crate_sticker_pack_atlanta2017_challengers" + { + "crate_sticker_pack_atlanta2017_challengers_mythical" "1" + "crate_sticker_pack_atlanta2017_challengers_legendary" "1" + } + "atlanta2017_signatures_astr" + { + "[atlanta2017_signature_gla1ve]sticker" "1" + "[atlanta2017_signature_device]sticker" "1" + "[atlanta2017_signature_dupreeh]sticker" "1" + "[atlanta2017_signature_kjaerbye]sticker" "1" + "[atlanta2017_signature_xyp9x]sticker" "1" + } + "atlanta2017_signatures_nv" + { + "[atlanta2017_signature_apex]sticker" "1" + "[atlanta2017_signature_happy]sticker" "1" + "[atlanta2017_signature_sixer]sticker" "1" + "[atlanta2017_signature_kennys]sticker" "1" + "[atlanta2017_signature_nbk]sticker" "1" + } + "atlanta2017_signatures_faze" + { + "[atlanta2017_signature_aizy]sticker" "1" + "[atlanta2017_signature_allu]sticker" "1" + "[atlanta2017_signature_kioshima]sticker" "1" + "[atlanta2017_signature_rain]sticker" "1" + "[atlanta2017_signature_karrigan]sticker" "1" + } + "atlanta2017_signatures_flip" + { + "[atlanta2017_signature_b1ad3]sticker" "1" + "[atlanta2017_signature_waylander]sticker" "1" + "[atlanta2017_signature_electronic]sticker" "1" + "[atlanta2017_signature_markeloff]sticker" "1" + "[atlanta2017_signature_worldedit]sticker" "1" + } + "atlanta2017_signatures_fntc" + { + "[atlanta2017_signature_twist]sticker" "1" + "[atlanta2017_signature_discodoplan]sticker" "1" + "[atlanta2017_signature_krimz]sticker" "1" + "[atlanta2017_signature_olofmeister]sticker" "1" + "[atlanta2017_signature_dennis]sticker" "1" + } + "atlanta2017_signatures_g2" + { + "[atlanta2017_signature_bodyy]sticker" "1" + "[atlanta2017_signature_rpk]sticker" "1" + "[atlanta2017_signature_scream]sticker" "1" + "[atlanta2017_signature_shox]sticker" "1" + "[atlanta2017_signature_smithzz]sticker" "1" + } + "atlanta2017_signatures_gamb" + { + "[atlanta2017_signature_zeus]sticker" "1" + "[atlanta2017_signature_dosia]sticker" "1" + "[atlanta2017_signature_hobbit]sticker" "1" + "[atlanta2017_signature_mou]sticker" "1" + "[atlanta2017_signature_adrenkz]sticker" "1" + } + "atlanta2017_signatures_god" + { + "[atlanta2017_signature_znajder]sticker" "1" + "[atlanta2017_signature_lekro]sticker" "1" + "[atlanta2017_signature_pronax]sticker" "1" + "[atlanta2017_signature_jw]sticker" "1" + "[atlanta2017_signature_flusha]sticker" "1" + } + "atlanta2017_signatures_hlr" + { + "[atlanta2017_signature_styko]sticker" "1" + "[atlanta2017_signature_zero]sticker" "1" + "[atlanta2017_signature_deadfox]sticker" "1" + "[atlanta2017_signature_bondik]sticker" "1" + "[atlanta2017_signature_angel]sticker" "1" + } + "atlanta2017_signatures_mss" + { + "[atlanta2017_signature_chrisj]sticker" "1" + "[atlanta2017_signature_denis]sticker" "1" + "[atlanta2017_signature_spiidi]sticker" "1" + "[atlanta2017_signature_lowel]sticker" "1" + "[atlanta2017_signature_niko]sticker" "1" + } + "atlanta2017_signatures_navi" + { + "[atlanta2017_signature_edward]sticker" "1" + "[atlanta2017_signature_flamie]sticker" "1" + "[atlanta2017_signature_guardian]sticker" "1" + "[atlanta2017_signature_seized]sticker" "1" + "[atlanta2017_signature_s1mple]sticker" "1" + } + "atlanta2017_signatures_nor" + { + "[atlanta2017_signature_cajunb]sticker" "1" + "[atlanta2017_signature_msl]sticker" "1" + "[atlanta2017_signature_magisk]sticker" "1" + "[atlanta2017_signature_rubino]sticker" "1" + "[atlanta2017_signature_k0nfig]sticker" "1" + } + "atlanta2017_signatures_optc" + { + "[atlanta2017_signature_tarik]sticker" "1" + "[atlanta2017_signature_mixwell]sticker" "1" + "[atlanta2017_signature_naf]sticker" "1" + "[atlanta2017_signature_rush]sticker" "1" + "[atlanta2017_signature_stanislaw]sticker" "1" + } + "atlanta2017_signatures_sk" + { + "[atlanta2017_signature_coldzera]sticker" "1" + "[atlanta2017_signature_fallen]sticker" "1" + "[atlanta2017_signature_fer]sticker" "1" + "[atlanta2017_signature_fox]sticker" "1" + "[atlanta2017_signature_taco]sticker" "1" + } + "atlanta2017_signatures_liq" + { + "[atlanta2017_signature_jdm64]sticker" "1" + "[atlanta2017_signature_elige]sticker" "1" + "[atlanta2017_signature_pimp]sticker" "1" + "[atlanta2017_signature_hiko]sticker" "1" + "[atlanta2017_signature_nitro]sticker" "1" + } + "atlanta2017_signatures_vp" + { + "[atlanta2017_signature_byali]sticker" "1" + "[atlanta2017_signature_neo]sticker" "1" + "[atlanta2017_signature_pasha]sticker" "1" + "[atlanta2017_signature_snax]sticker" "1" + "[atlanta2017_signature_taz]sticker" "1" + } + "crate_signature_pack_atlanta2017_group_1_rare" + { + "[atlanta2017_signature_apex]sticker" "1" + "[atlanta2017_signature_happy]sticker" "1" + "[atlanta2017_signature_sixer]sticker" "1" + "[atlanta2017_signature_kennys]sticker" "1" + "[atlanta2017_signature_nbk]sticker" "1" + "[atlanta2017_signature_aizy]sticker" "1" + "[atlanta2017_signature_allu]sticker" "1" + "[atlanta2017_signature_kioshima]sticker" "1" + "[atlanta2017_signature_rain]sticker" "1" + "[atlanta2017_signature_karrigan]sticker" "1" + "[atlanta2017_signature_bodyy]sticker" "1" + "[atlanta2017_signature_rpk]sticker" "1" + "[atlanta2017_signature_scream]sticker" "1" + "[atlanta2017_signature_shox]sticker" "1" + "[atlanta2017_signature_smithzz]sticker" "1" + "[atlanta2017_signature_znajder]sticker" "1" + "[atlanta2017_signature_lekro]sticker" "1" + "[atlanta2017_signature_pronax]sticker" "1" + "[atlanta2017_signature_jw]sticker" "1" + "[atlanta2017_signature_flusha]sticker" "1" + "[atlanta2017_signature_styko]sticker" "1" + "[atlanta2017_signature_zero]sticker" "1" + "[atlanta2017_signature_deadfox]sticker" "1" + "[atlanta2017_signature_bondik]sticker" "1" + "[atlanta2017_signature_angel]sticker" "1" + "[atlanta2017_signature_chrisj]sticker" "1" + "[atlanta2017_signature_denis]sticker" "1" + "[atlanta2017_signature_spiidi]sticker" "1" + "[atlanta2017_signature_lowel]sticker" "1" + "[atlanta2017_signature_niko]sticker" "1" + "[atlanta2017_signature_cajunb]sticker" "1" + "[atlanta2017_signature_msl]sticker" "1" + "[atlanta2017_signature_magisk]sticker" "1" + "[atlanta2017_signature_rubino]sticker" "1" + "[atlanta2017_signature_k0nfig]sticker" "1" + "[atlanta2017_signature_tarik]sticker" "1" + "[atlanta2017_signature_mixwell]sticker" "1" + "[atlanta2017_signature_naf]sticker" "1" + "[atlanta2017_signature_rush]sticker" "1" + "[atlanta2017_signature_stanislaw]sticker" "1" + } + "crate_signature_pack_atlanta2017_group_1_legendary" + { + "[atlanta2017_signature_apex_foil]sticker" "1" + "[atlanta2017_signature_happy_foil]sticker" "1" + "[atlanta2017_signature_sixer_foil]sticker" "1" + "[atlanta2017_signature_kennys_foil]sticker" "1" + "[atlanta2017_signature_nbk_foil]sticker" "1" + "[atlanta2017_signature_aizy_foil]sticker" "1" + "[atlanta2017_signature_allu_foil]sticker" "1" + "[atlanta2017_signature_kioshima_foil]sticker" "1" + "[atlanta2017_signature_rain_foil]sticker" "1" + "[atlanta2017_signature_karrigan_foil]sticker" "1" + "[atlanta2017_signature_bodyy_foil]sticker" "1" + "[atlanta2017_signature_rpk_foil]sticker" "1" + "[atlanta2017_signature_scream_foil]sticker" "1" + "[atlanta2017_signature_shox_foil]sticker" "1" + "[atlanta2017_signature_smithzz_foil]sticker" "1" + "[atlanta2017_signature_znajder_foil]sticker" "1" + "[atlanta2017_signature_lekro_foil]sticker" "1" + "[atlanta2017_signature_pronax_foil]sticker" "1" + "[atlanta2017_signature_jw_foil]sticker" "1" + "[atlanta2017_signature_flusha_foil]sticker" "1" + "[atlanta2017_signature_styko_foil]sticker" "1" + "[atlanta2017_signature_zero_foil]sticker" "1" + "[atlanta2017_signature_deadfox_foil]sticker" "1" + "[atlanta2017_signature_bondik_foil]sticker" "1" + "[atlanta2017_signature_angel_foil]sticker" "1" + "[atlanta2017_signature_chrisj_foil]sticker" "1" + "[atlanta2017_signature_denis_foil]sticker" "1" + "[atlanta2017_signature_spiidi_foil]sticker" "1" + "[atlanta2017_signature_lowel_foil]sticker" "1" + "[atlanta2017_signature_niko_foil]sticker" "1" + "[atlanta2017_signature_cajunb_foil]sticker" "1" + "[atlanta2017_signature_msl_foil]sticker" "1" + "[atlanta2017_signature_magisk_foil]sticker" "1" + "[atlanta2017_signature_rubino_foil]sticker" "1" + "[atlanta2017_signature_k0nfig_foil]sticker" "1" + "[atlanta2017_signature_tarik_foil]sticker" "1" + "[atlanta2017_signature_mixwell_foil]sticker" "1" + "[atlanta2017_signature_naf_foil]sticker" "1" + "[atlanta2017_signature_rush_foil]sticker" "1" + "[atlanta2017_signature_stanislaw_foil]sticker" "1" + } + "crate_signature_pack_atlanta2017_group_2_rare" + { + "[atlanta2017_signature_gla1ve]sticker" "1" + "[atlanta2017_signature_device]sticker" "1" + "[atlanta2017_signature_dupreeh]sticker" "1" + "[atlanta2017_signature_kjaerbye]sticker" "1" + "[atlanta2017_signature_xyp9x]sticker" "1" + "[atlanta2017_signature_b1ad3]sticker" "1" + "[atlanta2017_signature_waylander]sticker" "1" + "[atlanta2017_signature_electronic]sticker" "1" + "[atlanta2017_signature_markeloff]sticker" "1" + "[atlanta2017_signature_worldedit]sticker" "1" + "[atlanta2017_signature_twist]sticker" "1" + "[atlanta2017_signature_discodoplan]sticker" "1" + "[atlanta2017_signature_krimz]sticker" "1" + "[atlanta2017_signature_olofmeister]sticker" "1" + "[atlanta2017_signature_dennis]sticker" "1" + "[atlanta2017_signature_zeus]sticker" "1" + "[atlanta2017_signature_dosia]sticker" "1" + "[atlanta2017_signature_hobbit]sticker" "1" + "[atlanta2017_signature_mou]sticker" "1" + "[atlanta2017_signature_adrenkz]sticker" "1" + "[atlanta2017_signature_edward]sticker" "1" + "[atlanta2017_signature_flamie]sticker" "1" + "[atlanta2017_signature_guardian]sticker" "1" + "[atlanta2017_signature_seized]sticker" "1" + "[atlanta2017_signature_s1mple]sticker" "1" + "[atlanta2017_signature_coldzera]sticker" "1" + "[atlanta2017_signature_fallen]sticker" "1" + "[atlanta2017_signature_fer]sticker" "1" + "[atlanta2017_signature_fox]sticker" "1" + "[atlanta2017_signature_taco]sticker" "1" + "[atlanta2017_signature_jdm64]sticker" "1" + "[atlanta2017_signature_elige]sticker" "1" + "[atlanta2017_signature_pimp]sticker" "1" + "[atlanta2017_signature_hiko]sticker" "1" + "[atlanta2017_signature_nitro]sticker" "1" + "[atlanta2017_signature_byali]sticker" "1" + "[atlanta2017_signature_neo]sticker" "1" + "[atlanta2017_signature_pasha]sticker" "1" + "[atlanta2017_signature_snax]sticker" "1" + "[atlanta2017_signature_taz]sticker" "1" + } + "crate_signature_pack_atlanta2017_group_2_legendary" + { + "[atlanta2017_signature_gla1ve_foil]sticker" "1" + "[atlanta2017_signature_device_foil]sticker" "1" + "[atlanta2017_signature_dupreeh_foil]sticker" "1" + "[atlanta2017_signature_kjaerbye_foil]sticker" "1" + "[atlanta2017_signature_xyp9x_foil]sticker" "1" + "[atlanta2017_signature_b1ad3_foil]sticker" "1" + "[atlanta2017_signature_waylander_foil]sticker" "1" + "[atlanta2017_signature_electronic_foil]sticker" "1" + "[atlanta2017_signature_markeloff_foil]sticker" "1" + "[atlanta2017_signature_worldedit_foil]sticker" "1" + "[atlanta2017_signature_twist_foil]sticker" "1" + "[atlanta2017_signature_discodoplan_foil]sticker" "1" + "[atlanta2017_signature_krimz_foil]sticker" "1" + "[atlanta2017_signature_olofmeister_foil]sticker" "1" + "[atlanta2017_signature_dennis_foil]sticker" "1" + "[atlanta2017_signature_zeus_foil]sticker" "1" + "[atlanta2017_signature_dosia_foil]sticker" "1" + "[atlanta2017_signature_hobbit_foil]sticker" "1" + "[atlanta2017_signature_mou_foil]sticker" "1" + "[atlanta2017_signature_adrenkz_foil]sticker" "1" + "[atlanta2017_signature_edward_foil]sticker" "1" + "[atlanta2017_signature_flamie_foil]sticker" "1" + "[atlanta2017_signature_guardian_foil]sticker" "1" + "[atlanta2017_signature_seized_foil]sticker" "1" + "[atlanta2017_signature_s1mple_foil]sticker" "1" + "[atlanta2017_signature_coldzera_foil]sticker" "1" + "[atlanta2017_signature_fallen_foil]sticker" "1" + "[atlanta2017_signature_fer_foil]sticker" "1" + "[atlanta2017_signature_fox_foil]sticker" "1" + "[atlanta2017_signature_taco_foil]sticker" "1" + "[atlanta2017_signature_jdm64_foil]sticker" "1" + "[atlanta2017_signature_elige_foil]sticker" "1" + "[atlanta2017_signature_pimp_foil]sticker" "1" + "[atlanta2017_signature_hiko_foil]sticker" "1" + "[atlanta2017_signature_nitro_foil]sticker" "1" + "[atlanta2017_signature_byali_foil]sticker" "1" + "[atlanta2017_signature_neo_foil]sticker" "1" + "[atlanta2017_signature_pasha_foil]sticker" "1" + "[atlanta2017_signature_snax_foil]sticker" "1" + "[atlanta2017_signature_taz_foil]sticker" "1" + } + "crate_atlanta2017_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_atlanta2017_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_atlanta2017_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_atlanta2017_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_atlanta2017_promo_de_cache" + { + "set_cache" "1" + } + "crate_atlanta2017_promo_de_train" + { + "set_train" "1" + } + "crate_atlanta2017_promo_de_nuke" + { + "set_nuke" "1" + } + } + "items" + { + "4289" + { + "item_name" "#StoreItem_atlanta2017_team_astr_sticker" + "name" "crate_sticker_pack_atlanta2017_astr" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/astr" + "loot_list_name" "atlanta2017_rare_astr" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4290" + { + "item_name" "#StoreItem_atlanta2017_team_nv_sticker" + "name" "crate_sticker_pack_atlanta2017_nv" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/nv" + "loot_list_name" "atlanta2017_rare_nv" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4291" + { + "item_name" "#StoreItem_atlanta2017_team_faze_sticker" + "name" "crate_sticker_pack_atlanta2017_faze" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/faze" + "loot_list_name" "atlanta2017_rare_faze" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4292" + { + "item_name" "#StoreItem_atlanta2017_team_flip_sticker" + "name" "crate_sticker_pack_atlanta2017_flip" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/flip" + "loot_list_name" "atlanta2017_rare_flip" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4293" + { + "item_name" "#StoreItem_atlanta2017_team_fntc_sticker" + "name" "crate_sticker_pack_atlanta2017_fntc" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/fntc" + "loot_list_name" "atlanta2017_rare_fntc" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4294" + { + "item_name" "#StoreItem_atlanta2017_team_g2_sticker" + "name" "crate_sticker_pack_atlanta2017_g2" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/g2" + "loot_list_name" "atlanta2017_rare_g2" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4295" + { + "item_name" "#StoreItem_atlanta2017_team_gamb_sticker" + "name" "crate_sticker_pack_atlanta2017_gamb" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/gamb" + "loot_list_name" "atlanta2017_rare_gamb" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4296" + { + "item_name" "#StoreItem_atlanta2017_team_god_sticker" + "name" "crate_sticker_pack_atlanta2017_god" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/god" + "loot_list_name" "atlanta2017_rare_god" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4297" + { + "item_name" "#StoreItem_atlanta2017_team_hlr_sticker" + "name" "crate_sticker_pack_atlanta2017_hlr" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/hlr" + "loot_list_name" "atlanta2017_rare_hlr" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4298" + { + "item_name" "#StoreItem_atlanta2017_team_mss_sticker" + "name" "crate_sticker_pack_atlanta2017_mss" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/mss" + "loot_list_name" "atlanta2017_rare_mss" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4299" + { + "item_name" "#StoreItem_atlanta2017_team_navi_sticker" + "name" "crate_sticker_pack_atlanta2017_navi" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/navi" + "loot_list_name" "atlanta2017_rare_navi" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4300" + { + "item_name" "#StoreItem_atlanta2017_team_nor_sticker" + "name" "crate_sticker_pack_atlanta2017_nor" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/nor" + "loot_list_name" "atlanta2017_rare_nor" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4301" + { + "item_name" "#StoreItem_atlanta2017_team_optc_sticker" + "name" "crate_sticker_pack_atlanta2017_optc" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/optc" + "loot_list_name" "atlanta2017_rare_optc" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4302" + { + "item_name" "#StoreItem_atlanta2017_team_sk_sticker" + "name" "crate_sticker_pack_atlanta2017_sk" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/sk" + "loot_list_name" "atlanta2017_rare_sk" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4303" + { + "item_name" "#StoreItem_atlanta2017_team_liq_sticker" + "name" "crate_sticker_pack_atlanta2017_liq" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/liq" + "loot_list_name" "atlanta2017_rare_liq" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4304" + { + "item_name" "#StoreItem_atlanta2017_team_vp_sticker" + "name" "crate_sticker_pack_atlanta2017_vp" + "item_description" "#EventItemDesc_atlanta2017_sticker_team" + "image_inventory" "econ/stickers/atlanta2017/vp" + "loot_list_name" "atlanta2017_rare_vp" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4305" + { + "item_name" "#StoreItem_atlanta2017_team_eleague_sticker" + "name" "crate_sticker_pack_atlanta2017_eleague" + "item_description" "#EventItemDesc_atlanta2017_sticker_org" + "image_inventory" "econ/stickers/atlanta2017/eleague" + "loot_list_name" "atlanta2017_rare_eleague" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4306" + { + "item_name" "#StoreItem_atlanta2017_team_astr_graffiti" + "name" "crate_graffiti_pack_atlanta2017_astr" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/astr_graffiti" + "loot_list_name" "atlanta2017_graffiti_astr" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4307" + { + "item_name" "#StoreItem_atlanta2017_team_nv_graffiti" + "name" "crate_graffiti_pack_atlanta2017_nv" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/nv_graffiti" + "loot_list_name" "atlanta2017_graffiti_nv" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4308" + { + "item_name" "#StoreItem_atlanta2017_team_faze_graffiti" + "name" "crate_graffiti_pack_atlanta2017_faze" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/faze_graffiti" + "loot_list_name" "atlanta2017_graffiti_faze" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4309" + { + "item_name" "#StoreItem_atlanta2017_team_flip_graffiti" + "name" "crate_graffiti_pack_atlanta2017_flip" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/flip_graffiti" + "loot_list_name" "atlanta2017_graffiti_flip" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4310" + { + "item_name" "#StoreItem_atlanta2017_team_fntc_graffiti" + "name" "crate_graffiti_pack_atlanta2017_fntc" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/fntc_graffiti" + "loot_list_name" "atlanta2017_graffiti_fntc" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4311" + { + "item_name" "#StoreItem_atlanta2017_team_g2_graffiti" + "name" "crate_graffiti_pack_atlanta2017_g2" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/g2_graffiti" + "loot_list_name" "atlanta2017_graffiti_g2" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4312" + { + "item_name" "#StoreItem_atlanta2017_team_gamb_graffiti" + "name" "crate_graffiti_pack_atlanta2017_gamb" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/gamb_graffiti" + "loot_list_name" "atlanta2017_graffiti_gamb" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4313" + { + "item_name" "#StoreItem_atlanta2017_team_god_graffiti" + "name" "crate_graffiti_pack_atlanta2017_god" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/god_graffiti" + "loot_list_name" "atlanta2017_graffiti_god" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4314" + { + "item_name" "#StoreItem_atlanta2017_team_hlr_graffiti" + "name" "crate_graffiti_pack_atlanta2017_hlr" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/hlr_graffiti" + "loot_list_name" "atlanta2017_graffiti_hlr" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4315" + { + "item_name" "#StoreItem_atlanta2017_team_mss_graffiti" + "name" "crate_graffiti_pack_atlanta2017_mss" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/mss_graffiti" + "loot_list_name" "atlanta2017_graffiti_mss" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4316" + { + "item_name" "#StoreItem_atlanta2017_team_navi_graffiti" + "name" "crate_graffiti_pack_atlanta2017_navi" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/navi_graffiti" + "loot_list_name" "atlanta2017_graffiti_navi" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4317" + { + "item_name" "#StoreItem_atlanta2017_team_nor_graffiti" + "name" "crate_graffiti_pack_atlanta2017_nor" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/nor_graffiti" + "loot_list_name" "atlanta2017_graffiti_nor" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4318" + { + "item_name" "#StoreItem_atlanta2017_team_optc_graffiti" + "name" "crate_graffiti_pack_atlanta2017_optc" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/optc_graffiti" + "loot_list_name" "atlanta2017_graffiti_optc" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4319" + { + "item_name" "#StoreItem_atlanta2017_team_sk_graffiti" + "name" "crate_graffiti_pack_atlanta2017_sk" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/sk_graffiti" + "loot_list_name" "atlanta2017_graffiti_sk" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4320" + { + "item_name" "#StoreItem_atlanta2017_team_liq_graffiti" + "name" "crate_graffiti_pack_atlanta2017_liq" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/liq_graffiti" + "loot_list_name" "atlanta2017_graffiti_liq" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4321" + { + "item_name" "#StoreItem_atlanta2017_team_vp_graffiti" + "name" "crate_graffiti_pack_atlanta2017_vp" + "item_description" "#EventItemDesc_atlanta2017_graffiti_team" + "image_inventory" "econ/stickers/atlanta2017/vp_graffiti" + "loot_list_name" "atlanta2017_graffiti_vp" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4322" + { + "item_name" "#StoreItem_atlanta2017_team_eleague_graffiti" + "name" "crate_graffiti_pack_atlanta2017_eleague" + "item_description" "#EventItemDesc_atlanta2017_graffiti_org" + "image_inventory" "econ/stickers/atlanta2017/eleague_graffiti" + "loot_list_name" "atlanta2017_graffiti_eleague" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4323" + { + "item_name" "#CSGO_crate_sticker_pack_atlanta2017_legends" + "name" "crate_sticker_pack_atlanta2017_legends" + "item_description" "#CSGO_crate_sticker_pack_atlanta2017_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_atlanta2017_01" + "prefab" "atlanta2017_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "180" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_atlanta2017_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_atlanta2017_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4324" + { + "item_name" "#CSGO_crate_sticker_pack_atlanta2017_challengers" + "name" "crate_sticker_pack_atlanta2017_challengers" + "item_description" "#CSGO_crate_sticker_pack_atlanta2017_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_atlanta2017_02" + "prefab" "atlanta2017_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "181" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_atlanta2017_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_atlanta2017_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4325" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_group_1" + "name" "crate_signature_pack_atlanta2017_group_1" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_group_1_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_atlanta2017_group_1" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "182" + } + } + } + "4326" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_group_2" + "name" "crate_signature_pack_atlanta2017_group_2" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_group_2_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_atlanta2017_group_2" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "183" + } + } + } + "4327" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_astr" + "name" "crate_signature_pack_atlanta2017_astr" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_astr_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_astr" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "184" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "60" + } + } + } + "4328" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_nv" + "name" "crate_signature_pack_atlanta2017_nv" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_nv_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_nv" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "185" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "46" + } + } + } + "4329" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_faze" + "name" "crate_signature_pack_atlanta2017_faze" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_faze_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_faze" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "186" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "61" + } + } + } + "4330" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_flip" + "name" "crate_signature_pack_atlanta2017_flip" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_flip_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_flip" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "187" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "43" + } + } + } + "4331" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_fntc" + "name" "crate_signature_pack_atlanta2017_fntc" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_fntc_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_fntc" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "188" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "6" + } + } + } + "4332" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_g2" + "name" "crate_signature_pack_atlanta2017_g2" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_g2_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_g2" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "189" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "59" + } + } + } + "4333" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_gamb" + "name" "crate_signature_pack_atlanta2017_gamb" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_gamb_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_gamb" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "190" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "63" + } + } + } + "4334" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_god" + "name" "crate_signature_pack_atlanta2017_god" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_god_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_god" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "191" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "67" + } + } + } + "4335" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_hlr" + "name" "crate_signature_pack_atlanta2017_hlr" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_hlr_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_hlr" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "192" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "25" + } + } + } + "4336" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_mss" + "name" "crate_signature_pack_atlanta2017_mss" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_mss_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_mss" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "193" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "29" + } + } + } + "4337" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_navi" + "name" "crate_signature_pack_atlanta2017_navi" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_navi_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_navi" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "194" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "12" + } + } + } + "4338" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_nor" + "name" "crate_signature_pack_atlanta2017_nor" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_nor_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_nor" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "195" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "68" + } + } + } + "4339" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_optc" + "name" "crate_signature_pack_atlanta2017_optc" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_optc_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_optc" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "196" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "66" + } + } + } + "4340" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_sk" + "name" "crate_signature_pack_atlanta2017_sk" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_sk_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_sk" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "197" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "14" + } + } + } + "4341" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_liq" + "name" "crate_signature_pack_atlanta2017_liq" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_liq_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_liq" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "198" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "48" + } + } + } + "4342" + { + "item_name" "#CSGO_crate_signature_pack_atlanta2017_vp" + "name" "crate_signature_pack_atlanta2017_vp" + "item_description" "#CSGO_crate_signature_pack_atlanta2017_vp_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_vp" + "prefab" "atlanta2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "199" + } + "tournament event team0 id" + { + "attribute_class" "tournament_event_team_id" + "value" "31" + } + } + } + "4343" + { + "item_name" "#CSGO_crate_atlanta2017_bundle_of_all" + "name" "crate_atlanta2017_bundle_of_all" + "item_description" "#CSGO_crate_atlanta2017_bundle_of_all_desc" + "image_inventory" "econ/weapon_cases/atlanta2017_bundleofall" + "loot_list_name" "atlanta2017_bundle_of_all" + "prefab" "atlanta2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4344" + { + "item_name" "#CSGO_crate_atlanta2017_promo_de_dust2" + "name" "crate_atlanta2017_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_atlanta2017_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "200" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4345" + { + "item_name" "#CSGO_crate_atlanta2017_promo_de_mirage" + "name" "crate_atlanta2017_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_atlanta2017_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "201" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4346" + { + "item_name" "#CSGO_crate_atlanta2017_promo_de_cbble" + "name" "crate_atlanta2017_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_atlanta2017_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "202" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4347" + { + "item_name" "#CSGO_crate_atlanta2017_promo_de_overpass" + "name" "crate_atlanta2017_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_atlanta2017_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "203" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4348" + { + "item_name" "#CSGO_crate_atlanta2017_promo_de_cache" + "name" "crate_atlanta2017_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_atlanta2017_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "204" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4349" + { + "item_name" "#CSGO_crate_atlanta2017_promo_de_train" + "name" "crate_atlanta2017_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_atlanta2017_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "205" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4350" + { + "item_name" "#CSGO_crate_atlanta2017_promo_de_nuke" + "name" "crate_atlanta2017_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_atlanta2017_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "206" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "11" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "1738" + { + "name" "atlanta2017_team_astr" + "item_name" "#StickerKit_atlanta2017_team_astr" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/astr" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "60" + } + "1739" + { + "name" "atlanta2017_team_astr_holo" + "item_name" "#StickerKit_atlanta2017_team_astr_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "60" + } + "1740" + { + "name" "atlanta2017_team_astr_foil" + "item_name" "#StickerKit_atlanta2017_team_astr_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + } + "1741" + { + "name" "atlanta2017_team_astr_gold" + "item_name" "#StickerKit_atlanta2017_team_astr_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + } + "1742" + { + "name" "atlanta2017_team_nv" + "item_name" "#StickerKit_atlanta2017_team_nv" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nv" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "46" + } + "1743" + { + "name" "atlanta2017_team_nv_holo" + "item_name" "#StickerKit_atlanta2017_team_nv_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nv_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "46" + } + "1744" + { + "name" "atlanta2017_team_nv_foil" + "item_name" "#StickerKit_atlanta2017_team_nv_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nv_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + } + "1745" + { + "name" "atlanta2017_team_nv_gold" + "item_name" "#StickerKit_atlanta2017_team_nv_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nv_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + } + "1746" + { + "name" "atlanta2017_team_faze" + "item_name" "#StickerKit_atlanta2017_team_faze" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/faze" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "61" + } + "1747" + { + "name" "atlanta2017_team_faze_holo" + "item_name" "#StickerKit_atlanta2017_team_faze_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "61" + } + "1748" + { + "name" "atlanta2017_team_faze_foil" + "item_name" "#StickerKit_atlanta2017_team_faze_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + } + "1749" + { + "name" "atlanta2017_team_faze_gold" + "item_name" "#StickerKit_atlanta2017_team_faze_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + } + "1750" + { + "name" "atlanta2017_team_flip" + "item_name" "#StickerKit_atlanta2017_team_flip" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/flip" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "43" + } + "1751" + { + "name" "atlanta2017_team_flip_holo" + "item_name" "#StickerKit_atlanta2017_team_flip_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/flip_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "43" + } + "1752" + { + "name" "atlanta2017_team_flip_foil" + "item_name" "#StickerKit_atlanta2017_team_flip_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/flip_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + } + "1753" + { + "name" "atlanta2017_team_flip_gold" + "item_name" "#StickerKit_atlanta2017_team_flip_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/flip_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + } + "1754" + { + "name" "atlanta2017_team_fntc" + "item_name" "#StickerKit_atlanta2017_team_fntc" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/fntc" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "6" + } + "1755" + { + "name" "atlanta2017_team_fntc_holo" + "item_name" "#StickerKit_atlanta2017_team_fntc_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "6" + } + "1756" + { + "name" "atlanta2017_team_fntc_foil" + "item_name" "#StickerKit_atlanta2017_team_fntc_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + } + "1757" + { + "name" "atlanta2017_team_fntc_gold" + "item_name" "#StickerKit_atlanta2017_team_fntc_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + } + "1758" + { + "name" "atlanta2017_team_g2" + "item_name" "#StickerKit_atlanta2017_team_g2" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/g2" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "59" + } + "1759" + { + "name" "atlanta2017_team_g2_holo" + "item_name" "#StickerKit_atlanta2017_team_g2_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "59" + } + "1760" + { + "name" "atlanta2017_team_g2_foil" + "item_name" "#StickerKit_atlanta2017_team_g2_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + } + "1761" + { + "name" "atlanta2017_team_g2_gold" + "item_name" "#StickerKit_atlanta2017_team_g2_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + } + "1762" + { + "name" "atlanta2017_team_gamb" + "item_name" "#StickerKit_atlanta2017_team_gamb" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/gamb" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "63" + } + "1763" + { + "name" "atlanta2017_team_gamb_holo" + "item_name" "#StickerKit_atlanta2017_team_gamb_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/gamb_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "63" + } + "1764" + { + "name" "atlanta2017_team_gamb_foil" + "item_name" "#StickerKit_atlanta2017_team_gamb_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/gamb_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + } + "1765" + { + "name" "atlanta2017_team_gamb_gold" + "item_name" "#StickerKit_atlanta2017_team_gamb_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/gamb_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + } + "1766" + { + "name" "atlanta2017_team_god" + "item_name" "#StickerKit_atlanta2017_team_god" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/god" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "67" + } + "1767" + { + "name" "atlanta2017_team_god_holo" + "item_name" "#StickerKit_atlanta2017_team_god_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/god_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "67" + } + "1768" + { + "name" "atlanta2017_team_god_foil" + "item_name" "#StickerKit_atlanta2017_team_god_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/god_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + } + "1769" + { + "name" "atlanta2017_team_god_gold" + "item_name" "#StickerKit_atlanta2017_team_god_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/god_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + } + "1770" + { + "name" "atlanta2017_team_hlr" + "item_name" "#StickerKit_atlanta2017_team_hlr" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/hlr" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "25" + } + "1771" + { + "name" "atlanta2017_team_hlr_holo" + "item_name" "#StickerKit_atlanta2017_team_hlr_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/hlr_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "25" + } + "1772" + { + "name" "atlanta2017_team_hlr_foil" + "item_name" "#StickerKit_atlanta2017_team_hlr_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/hlr_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + } + "1773" + { + "name" "atlanta2017_team_hlr_gold" + "item_name" "#StickerKit_atlanta2017_team_hlr_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/hlr_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + } + "1774" + { + "name" "atlanta2017_team_mss" + "item_name" "#StickerKit_atlanta2017_team_mss" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/mss" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "29" + } + "1775" + { + "name" "atlanta2017_team_mss_holo" + "item_name" "#StickerKit_atlanta2017_team_mss_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/mss_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "29" + } + "1776" + { + "name" "atlanta2017_team_mss_foil" + "item_name" "#StickerKit_atlanta2017_team_mss_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + } + "1777" + { + "name" "atlanta2017_team_mss_gold" + "item_name" "#StickerKit_atlanta2017_team_mss_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + } + "1778" + { + "name" "atlanta2017_team_navi" + "item_name" "#StickerKit_atlanta2017_team_navi" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/navi" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "12" + } + "1779" + { + "name" "atlanta2017_team_navi_holo" + "item_name" "#StickerKit_atlanta2017_team_navi_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "12" + } + "1780" + { + "name" "atlanta2017_team_navi_foil" + "item_name" "#StickerKit_atlanta2017_team_navi_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + } + "1781" + { + "name" "atlanta2017_team_navi_gold" + "item_name" "#StickerKit_atlanta2017_team_navi_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + } + "1782" + { + "name" "atlanta2017_team_nor" + "item_name" "#StickerKit_atlanta2017_team_nor" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nor" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "68" + } + "1783" + { + "name" "atlanta2017_team_nor_holo" + "item_name" "#StickerKit_atlanta2017_team_nor_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nor_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "68" + } + "1784" + { + "name" "atlanta2017_team_nor_foil" + "item_name" "#StickerKit_atlanta2017_team_nor_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nor_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + } + "1785" + { + "name" "atlanta2017_team_nor_gold" + "item_name" "#StickerKit_atlanta2017_team_nor_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/nor_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + } + "1786" + { + "name" "atlanta2017_team_optc" + "item_name" "#StickerKit_atlanta2017_team_optc" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/optc" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "66" + } + "1787" + { + "name" "atlanta2017_team_optc_holo" + "item_name" "#StickerKit_atlanta2017_team_optc_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/optc_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "66" + } + "1788" + { + "name" "atlanta2017_team_optc_foil" + "item_name" "#StickerKit_atlanta2017_team_optc_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/optc_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + } + "1789" + { + "name" "atlanta2017_team_optc_gold" + "item_name" "#StickerKit_atlanta2017_team_optc_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/optc_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + } + "1790" + { + "name" "atlanta2017_team_sk" + "item_name" "#StickerKit_atlanta2017_team_sk" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/sk" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "14" + } + "1791" + { + "name" "atlanta2017_team_sk_holo" + "item_name" "#StickerKit_atlanta2017_team_sk_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/sk_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "14" + } + "1792" + { + "name" "atlanta2017_team_sk_foil" + "item_name" "#StickerKit_atlanta2017_team_sk_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/sk_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + } + "1793" + { + "name" "atlanta2017_team_sk_gold" + "item_name" "#StickerKit_atlanta2017_team_sk_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/sk_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + } + "1794" + { + "name" "atlanta2017_team_liq" + "item_name" "#StickerKit_atlanta2017_team_liq" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/liq" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "48" + } + "1795" + { + "name" "atlanta2017_team_liq_holo" + "item_name" "#StickerKit_atlanta2017_team_liq_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "48" + } + "1796" + { + "name" "atlanta2017_team_liq_foil" + "item_name" "#StickerKit_atlanta2017_team_liq_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + } + "1797" + { + "name" "atlanta2017_team_liq_gold" + "item_name" "#StickerKit_atlanta2017_team_liq_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + } + "1798" + { + "name" "atlanta2017_team_vp" + "item_name" "#StickerKit_atlanta2017_team_vp" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/vp" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "31" + } + "1799" + { + "name" "atlanta2017_team_vp_holo" + "item_name" "#StickerKit_atlanta2017_team_vp_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "31" + } + "1800" + { + "name" "atlanta2017_team_vp_foil" + "item_name" "#StickerKit_atlanta2017_team_vp_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + } + "1801" + { + "name" "atlanta2017_team_vp_gold" + "item_name" "#StickerKit_atlanta2017_team_vp_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_team" + "sticker_material" "atlanta2017/vp_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + } + "1802" + { + "name" "atlanta2017_team_eleague" + "item_name" "#StickerKit_atlanta2017_team_eleague" + "description_string" "#EventItemDesc_atlanta2017_sticker_org" + "sticker_material" "atlanta2017/eleague" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "0" + } + "1803" + { + "name" "atlanta2017_team_eleague_holo" + "item_name" "#StickerKit_atlanta2017_team_eleague_holo" + "description_string" "#EventItemDesc_atlanta2017_sticker_org" + "sticker_material" "atlanta2017/eleague_holo" + "item_rarity" "mythical" + "tournament_event_id" "11" + "tournament_team_id" "0" + } + "1804" + { + "name" "atlanta2017_team_eleague_foil" + "item_name" "#StickerKit_atlanta2017_team_eleague_foil" + "description_string" "#EventItemDesc_atlanta2017_sticker_org" + "sticker_material" "atlanta2017/eleague_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "0" + } + "1805" + { + "name" "atlanta2017_team_eleague_gold" + "item_name" "#StickerKit_atlanta2017_team_eleague_gold" + "description_string" "#EventItemDesc_atlanta2017_sticker_org" + "sticker_material" "atlanta2017/eleague_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "0" + } + "1806" + { + "name" "atlanta2017_team_astr_graffiti" + "item_name" "#StickerKit_atlanta2017_team_astr" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/astr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "60" + } + "1807" + { + "name" "atlanta2017_team_nv_graffiti" + "item_name" "#StickerKit_atlanta2017_team_nv" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/nv_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "46" + } + "1808" + { + "name" "atlanta2017_team_faze_graffiti" + "item_name" "#StickerKit_atlanta2017_team_faze" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "61" + } + "1809" + { + "name" "atlanta2017_team_flip_graffiti" + "item_name" "#StickerKit_atlanta2017_team_flip" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/flip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "43" + } + "1810" + { + "name" "atlanta2017_team_fntc_graffiti" + "item_name" "#StickerKit_atlanta2017_team_fntc" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/fntc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "6" + } + "1811" + { + "name" "atlanta2017_team_g2_graffiti" + "item_name" "#StickerKit_atlanta2017_team_g2" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/g2_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "59" + } + "1812" + { + "name" "atlanta2017_team_gamb_graffiti" + "item_name" "#StickerKit_atlanta2017_team_gamb" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/gamb_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "63" + } + "1813" + { + "name" "atlanta2017_team_god_graffiti" + "item_name" "#StickerKit_atlanta2017_team_god" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/god_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "67" + } + "1814" + { + "name" "atlanta2017_team_hlr_graffiti" + "item_name" "#StickerKit_atlanta2017_team_hlr" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/hlr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "25" + } + "1815" + { + "name" "atlanta2017_team_mss_graffiti" + "item_name" "#StickerKit_atlanta2017_team_mss" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/mss_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "29" + } + "1816" + { + "name" "atlanta2017_team_navi_graffiti" + "item_name" "#StickerKit_atlanta2017_team_navi" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "12" + } + "1817" + { + "name" "atlanta2017_team_nor_graffiti" + "item_name" "#StickerKit_atlanta2017_team_nor" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/nor_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "68" + } + "1818" + { + "name" "atlanta2017_team_optc_graffiti" + "item_name" "#StickerKit_atlanta2017_team_optc" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/optc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "66" + } + "1819" + { + "name" "atlanta2017_team_sk_graffiti" + "item_name" "#StickerKit_atlanta2017_team_sk" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/sk_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "14" + } + "1820" + { + "name" "atlanta2017_team_liq_graffiti" + "item_name" "#StickerKit_atlanta2017_team_liq" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "48" + } + "1821" + { + "name" "atlanta2017_team_vp_graffiti" + "item_name" "#StickerKit_atlanta2017_team_vp" + "description_string" "#EventItemDesc_atlanta2017_graffiti_team" + "sticker_material" "atlanta2017/vp_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "31" + } + "1822" + { + "name" "atlanta2017_team_eleague_graffiti" + "item_name" "#StickerKit_atlanta2017_team_eleague" + "description_string" "#EventItemDesc_atlanta2017_graffiti_org" + "sticker_material" "atlanta2017/eleague_graffiti" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "0" + } + "1823" + { + "name" "atlanta2017_signature_styko" + "item_name" "#StickerKit_atlanta2017_signature_styko" + "description_string" "#StickerKit_desc_atlanta2017_signature_styko" + "sticker_material" "atlanta2017/sig_styko" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "55928431" + } + "1824" + { + "name" "atlanta2017_signature_styko_foil" + "item_name" "#StickerKit_atlanta2017_signature_styko_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_styko_foil" + "sticker_material" "atlanta2017/sig_styko_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "55928431" + } + "1825" + { + "name" "atlanta2017_signature_styko_gold" + "item_name" "#StickerKit_atlanta2017_signature_styko_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_styko_gold" + "sticker_material" "atlanta2017/sig_styko_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "55928431" + } + "1826" + { + "name" "atlanta2017_signature_zero" + "item_name" "#StickerKit_atlanta2017_signature_zero" + "description_string" "#StickerKit_desc_atlanta2017_signature_zero" + "sticker_material" "atlanta2017/sig_zero" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "34322135" + } + "1827" + { + "name" "atlanta2017_signature_zero_foil" + "item_name" "#StickerKit_atlanta2017_signature_zero_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_zero_foil" + "sticker_material" "atlanta2017/sig_zero_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "34322135" + } + "1828" + { + "name" "atlanta2017_signature_zero_gold" + "item_name" "#StickerKit_atlanta2017_signature_zero_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_zero_gold" + "sticker_material" "atlanta2017/sig_zero_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "34322135" + } + "1829" + { + "name" "atlanta2017_signature_deadfox" + "item_name" "#StickerKit_atlanta2017_signature_deadfox" + "description_string" "#StickerKit_desc_atlanta2017_signature_deadfox" + "sticker_material" "atlanta2017/sig_deadfox" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "1830" + { + "name" "atlanta2017_signature_deadfox_foil" + "item_name" "#StickerKit_atlanta2017_signature_deadfox_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_deadfox_foil" + "sticker_material" "atlanta2017/sig_deadfox_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "1831" + { + "name" "atlanta2017_signature_deadfox_gold" + "item_name" "#StickerKit_atlanta2017_signature_deadfox_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_deadfox_gold" + "sticker_material" "atlanta2017/sig_deadfox_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "1832" + { + "name" "atlanta2017_signature_bondik" + "item_name" "#StickerKit_atlanta2017_signature_bondik" + "description_string" "#StickerKit_desc_atlanta2017_signature_bondik" + "sticker_material" "atlanta2017/sig_bondik" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "46918643" + } + "1833" + { + "name" "atlanta2017_signature_bondik_foil" + "item_name" "#StickerKit_atlanta2017_signature_bondik_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_bondik_foil" + "sticker_material" "atlanta2017/sig_bondik_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "46918643" + } + "1834" + { + "name" "atlanta2017_signature_bondik_gold" + "item_name" "#StickerKit_atlanta2017_signature_bondik_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_bondik_gold" + "sticker_material" "atlanta2017/sig_bondik_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "46918643" + } + "1835" + { + "name" "atlanta2017_signature_angel" + "item_name" "#StickerKit_atlanta2017_signature_angel" + "description_string" "#StickerKit_desc_atlanta2017_signature_angel" + "sticker_material" "atlanta2017/sig_angel" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "1836" + { + "name" "atlanta2017_signature_angel_foil" + "item_name" "#StickerKit_atlanta2017_signature_angel_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_angel_foil" + "sticker_material" "atlanta2017/sig_angel_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "1837" + { + "name" "atlanta2017_signature_angel_gold" + "item_name" "#StickerKit_atlanta2017_signature_angel_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_angel_gold" + "sticker_material" "atlanta2017/sig_angel_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "1838" + { + "name" "atlanta2017_signature_tarik" + "item_name" "#StickerKit_atlanta2017_signature_tarik" + "description_string" "#StickerKit_desc_atlanta2017_signature_tarik" + "sticker_material" "atlanta2017/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "18216247" + } + "1839" + { + "name" "atlanta2017_signature_tarik_foil" + "item_name" "#StickerKit_atlanta2017_signature_tarik_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_tarik_foil" + "sticker_material" "atlanta2017/sig_tarik_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "18216247" + } + "1840" + { + "name" "atlanta2017_signature_tarik_gold" + "item_name" "#StickerKit_atlanta2017_signature_tarik_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_tarik_gold" + "sticker_material" "atlanta2017/sig_tarik_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "18216247" + } + "1841" + { + "name" "atlanta2017_signature_mixwell" + "item_name" "#StickerKit_atlanta2017_signature_mixwell" + "description_string" "#StickerKit_desc_atlanta2017_signature_mixwell" + "sticker_material" "atlanta2017/sig_mixwell" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "27224124" + } + "1842" + { + "name" "atlanta2017_signature_mixwell_foil" + "item_name" "#StickerKit_atlanta2017_signature_mixwell_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_mixwell_foil" + "sticker_material" "atlanta2017/sig_mixwell_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "27224124" + } + "1843" + { + "name" "atlanta2017_signature_mixwell_gold" + "item_name" "#StickerKit_atlanta2017_signature_mixwell_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_mixwell_gold" + "sticker_material" "atlanta2017/sig_mixwell_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "27224124" + } + "1844" + { + "name" "atlanta2017_signature_naf" + "item_name" "#StickerKit_atlanta2017_signature_naf" + "description_string" "#StickerKit_desc_atlanta2017_signature_naf" + "sticker_material" "atlanta2017/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "40885967" + } + "1845" + { + "name" "atlanta2017_signature_naf_foil" + "item_name" "#StickerKit_atlanta2017_signature_naf_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_naf_foil" + "sticker_material" "atlanta2017/sig_naf_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "40885967" + } + "1846" + { + "name" "atlanta2017_signature_naf_gold" + "item_name" "#StickerKit_atlanta2017_signature_naf_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_naf_gold" + "sticker_material" "atlanta2017/sig_naf_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "40885967" + } + "1847" + { + "name" "atlanta2017_signature_rush" + "item_name" "#StickerKit_atlanta2017_signature_rush" + "description_string" "#StickerKit_desc_atlanta2017_signature_rush" + "sticker_material" "atlanta2017/sig_rush" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "63326592" + } + "1848" + { + "name" "atlanta2017_signature_rush_foil" + "item_name" "#StickerKit_atlanta2017_signature_rush_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_rush_foil" + "sticker_material" "atlanta2017/sig_rush_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "63326592" + } + "1849" + { + "name" "atlanta2017_signature_rush_gold" + "item_name" "#StickerKit_atlanta2017_signature_rush_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_rush_gold" + "sticker_material" "atlanta2017/sig_rush_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "63326592" + } + "1850" + { + "name" "atlanta2017_signature_stanislaw" + "item_name" "#StickerKit_atlanta2017_signature_stanislaw" + "description_string" "#StickerKit_desc_atlanta2017_signature_stanislaw" + "sticker_material" "atlanta2017/sig_stanislaw" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "21583315" + } + "1851" + { + "name" "atlanta2017_signature_stanislaw_foil" + "item_name" "#StickerKit_atlanta2017_signature_stanislaw_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_stanislaw_foil" + "sticker_material" "atlanta2017/sig_stanislaw_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "21583315" + } + "1852" + { + "name" "atlanta2017_signature_stanislaw_gold" + "item_name" "#StickerKit_atlanta2017_signature_stanislaw_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_stanislaw_gold" + "sticker_material" "atlanta2017/sig_stanislaw_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "66" + "tournament_player_id" "21583315" + } + "1853" + { + "name" "atlanta2017_signature_apex" + "item_name" "#StickerKit_atlanta2017_signature_apex" + "description_string" "#StickerKit_desc_atlanta2017_signature_apex" + "sticker_material" "atlanta2017/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1854" + { + "name" "atlanta2017_signature_apex_foil" + "item_name" "#StickerKit_atlanta2017_signature_apex_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_apex_foil" + "sticker_material" "atlanta2017/sig_apex_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1855" + { + "name" "atlanta2017_signature_apex_gold" + "item_name" "#StickerKit_atlanta2017_signature_apex_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_apex_gold" + "sticker_material" "atlanta2017/sig_apex_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "29478439" + } + "1856" + { + "name" "atlanta2017_signature_happy" + "item_name" "#StickerKit_atlanta2017_signature_happy" + "description_string" "#StickerKit_desc_atlanta2017_signature_happy" + "sticker_material" "atlanta2017/sig_happy" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1857" + { + "name" "atlanta2017_signature_happy_foil" + "item_name" "#StickerKit_atlanta2017_signature_happy_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_happy_foil" + "sticker_material" "atlanta2017/sig_happy_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1858" + { + "name" "atlanta2017_signature_happy_gold" + "item_name" "#StickerKit_atlanta2017_signature_happy_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_happy_gold" + "sticker_material" "atlanta2017/sig_happy_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "1859" + { + "name" "atlanta2017_signature_sixer" + "item_name" "#StickerKit_atlanta2017_signature_sixer" + "description_string" "#StickerKit_desc_atlanta2017_signature_sixer" + "sticker_material" "atlanta2017/sig_sixer" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "3429256" + } + "1860" + { + "name" "atlanta2017_signature_sixer_foil" + "item_name" "#StickerKit_atlanta2017_signature_sixer_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_sixer_foil" + "sticker_material" "atlanta2017/sig_sixer_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "3429256" + } + "1861" + { + "name" "atlanta2017_signature_sixer_gold" + "item_name" "#StickerKit_atlanta2017_signature_sixer_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_sixer_gold" + "sticker_material" "atlanta2017/sig_sixer_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "3429256" + } + "1862" + { + "name" "atlanta2017_signature_kennys" + "item_name" "#StickerKit_atlanta2017_signature_kennys" + "description_string" "#StickerKit_desc_atlanta2017_signature_kennys" + "sticker_material" "atlanta2017/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1863" + { + "name" "atlanta2017_signature_kennys_foil" + "item_name" "#StickerKit_atlanta2017_signature_kennys_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_kennys_foil" + "sticker_material" "atlanta2017/sig_kennys_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1864" + { + "name" "atlanta2017_signature_kennys_gold" + "item_name" "#StickerKit_atlanta2017_signature_kennys_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_kennys_gold" + "sticker_material" "atlanta2017/sig_kennys_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "64640068" + } + "1865" + { + "name" "atlanta2017_signature_nbk" + "item_name" "#StickerKit_atlanta2017_signature_nbk" + "description_string" "#StickerKit_desc_atlanta2017_signature_nbk" + "sticker_material" "atlanta2017/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1866" + { + "name" "atlanta2017_signature_nbk_foil" + "item_name" "#StickerKit_atlanta2017_signature_nbk_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_nbk_foil" + "sticker_material" "atlanta2017/sig_nbk_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1867" + { + "name" "atlanta2017_signature_nbk_gold" + "item_name" "#StickerKit_atlanta2017_signature_nbk_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_nbk_gold" + "sticker_material" "atlanta2017/sig_nbk_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "46" + "tournament_player_id" "444845" + } + "1868" + { + "name" "atlanta2017_signature_b1ad3" + "item_name" "#StickerKit_atlanta2017_signature_b1ad3" + "description_string" "#StickerKit_desc_atlanta2017_signature_b1ad3" + "sticker_material" "atlanta2017/sig_b1ad3" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1869" + { + "name" "atlanta2017_signature_b1ad3_foil" + "item_name" "#StickerKit_atlanta2017_signature_b1ad3_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_b1ad3_foil" + "sticker_material" "atlanta2017/sig_b1ad3_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1870" + { + "name" "atlanta2017_signature_b1ad3_gold" + "item_name" "#StickerKit_atlanta2017_signature_b1ad3_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_b1ad3_gold" + "sticker_material" "atlanta2017/sig_b1ad3_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "1871" + { + "name" "atlanta2017_signature_waylander" + "item_name" "#StickerKit_atlanta2017_signature_waylander" + "description_string" "#StickerKit_desc_atlanta2017_signature_waylander" + "sticker_material" "atlanta2017/sig_waylander" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "1872" + { + "name" "atlanta2017_signature_waylander_foil" + "item_name" "#StickerKit_atlanta2017_signature_waylander_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_waylander_foil" + "sticker_material" "atlanta2017/sig_waylander_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "1873" + { + "name" "atlanta2017_signature_waylander_gold" + "item_name" "#StickerKit_atlanta2017_signature_waylander_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_waylander_gold" + "sticker_material" "atlanta2017/sig_waylander_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "1874" + { + "name" "atlanta2017_signature_electronic" + "item_name" "#StickerKit_atlanta2017_signature_electronic" + "description_string" "#StickerKit_desc_atlanta2017_signature_electronic" + "sticker_material" "atlanta2017/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "83779379" + } + "1875" + { + "name" "atlanta2017_signature_electronic_foil" + "item_name" "#StickerKit_atlanta2017_signature_electronic_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_electronic_foil" + "sticker_material" "atlanta2017/sig_electronic_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "83779379" + } + "1876" + { + "name" "atlanta2017_signature_electronic_gold" + "item_name" "#StickerKit_atlanta2017_signature_electronic_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_electronic_gold" + "sticker_material" "atlanta2017/sig_electronic_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "83779379" + } + "1877" + { + "name" "atlanta2017_signature_markeloff" + "item_name" "#StickerKit_atlanta2017_signature_markeloff" + "description_string" "#StickerKit_desc_atlanta2017_signature_markeloff" + "sticker_material" "atlanta2017/sig_markeloff" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1878" + { + "name" "atlanta2017_signature_markeloff_foil" + "item_name" "#StickerKit_atlanta2017_signature_markeloff_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_markeloff_foil" + "sticker_material" "atlanta2017/sig_markeloff_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1879" + { + "name" "atlanta2017_signature_markeloff_gold" + "item_name" "#StickerKit_atlanta2017_signature_markeloff_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_markeloff_gold" + "sticker_material" "atlanta2017/sig_markeloff_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "1880" + { + "name" "atlanta2017_signature_worldedit" + "item_name" "#StickerKit_atlanta2017_signature_worldedit" + "description_string" "#StickerKit_desc_atlanta2017_signature_worldedit" + "sticker_material" "atlanta2017/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1881" + { + "name" "atlanta2017_signature_worldedit_foil" + "item_name" "#StickerKit_atlanta2017_signature_worldedit_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_worldedit_foil" + "sticker_material" "atlanta2017/sig_worldedit_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1882" + { + "name" "atlanta2017_signature_worldedit_gold" + "item_name" "#StickerKit_atlanta2017_signature_worldedit_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_worldedit_gold" + "sticker_material" "atlanta2017/sig_worldedit_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "1883" + { + "name" "atlanta2017_signature_twist" + "item_name" "#StickerKit_atlanta2017_signature_twist" + "description_string" "#StickerKit_desc_atlanta2017_signature_twist" + "sticker_material" "atlanta2017/sig_twist" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "19979131" + } + "1884" + { + "name" "atlanta2017_signature_twist_foil" + "item_name" "#StickerKit_atlanta2017_signature_twist_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_twist_foil" + "sticker_material" "atlanta2017/sig_twist_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "19979131" + } + "1885" + { + "name" "atlanta2017_signature_twist_gold" + "item_name" "#StickerKit_atlanta2017_signature_twist_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_twist_gold" + "sticker_material" "atlanta2017/sig_twist_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "19979131" + } + "1886" + { + "name" "atlanta2017_signature_discodoplan" + "item_name" "#StickerKit_atlanta2017_signature_discodoplan" + "description_string" "#StickerKit_desc_atlanta2017_signature_discodoplan" + "sticker_material" "atlanta2017/sig_discodoplan" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "161262907" + } + "1887" + { + "name" "atlanta2017_signature_discodoplan_foil" + "item_name" "#StickerKit_atlanta2017_signature_discodoplan_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_discodoplan_foil" + "sticker_material" "atlanta2017/sig_discodoplan_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "161262907" + } + "1888" + { + "name" "atlanta2017_signature_discodoplan_gold" + "item_name" "#StickerKit_atlanta2017_signature_discodoplan_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_discodoplan_gold" + "sticker_material" "atlanta2017/sig_discodoplan_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "161262907" + } + "1889" + { + "name" "atlanta2017_signature_krimz" + "item_name" "#StickerKit_atlanta2017_signature_krimz" + "description_string" "#StickerKit_desc_atlanta2017_signature_krimz" + "sticker_material" "atlanta2017/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1890" + { + "name" "atlanta2017_signature_krimz_foil" + "item_name" "#StickerKit_atlanta2017_signature_krimz_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_krimz_foil" + "sticker_material" "atlanta2017/sig_krimz_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1891" + { + "name" "atlanta2017_signature_krimz_gold" + "item_name" "#StickerKit_atlanta2017_signature_krimz_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_krimz_gold" + "sticker_material" "atlanta2017/sig_krimz_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "1892" + { + "name" "atlanta2017_signature_olofmeister" + "item_name" "#StickerKit_atlanta2017_signature_olofmeister" + "description_string" "#StickerKit_desc_atlanta2017_signature_olofmeister" + "sticker_material" "atlanta2017/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1893" + { + "name" "atlanta2017_signature_olofmeister_foil" + "item_name" "#StickerKit_atlanta2017_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_olofmeister_foil" + "sticker_material" "atlanta2017/sig_olofmeister_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1894" + { + "name" "atlanta2017_signature_olofmeister_gold" + "item_name" "#StickerKit_atlanta2017_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_olofmeister_gold" + "sticker_material" "atlanta2017/sig_olofmeister_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "1895" + { + "name" "atlanta2017_signature_dennis" + "item_name" "#StickerKit_atlanta2017_signature_dennis" + "description_string" "#StickerKit_desc_atlanta2017_signature_dennis" + "sticker_material" "atlanta2017/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1896" + { + "name" "atlanta2017_signature_dennis_foil" + "item_name" "#StickerKit_atlanta2017_signature_dennis_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_dennis_foil" + "sticker_material" "atlanta2017/sig_dennis_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1897" + { + "name" "atlanta2017_signature_dennis_gold" + "item_name" "#StickerKit_atlanta2017_signature_dennis_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_dennis_gold" + "sticker_material" "atlanta2017/sig_dennis_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "1898" + { + "name" "atlanta2017_signature_aizy" + "item_name" "#StickerKit_atlanta2017_signature_aizy" + "description_string" "#StickerKit_desc_atlanta2017_signature_aizy" + "sticker_material" "atlanta2017/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1899" + { + "name" "atlanta2017_signature_aizy_foil" + "item_name" "#StickerKit_atlanta2017_signature_aizy_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_aizy_foil" + "sticker_material" "atlanta2017/sig_aizy_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1900" + { + "name" "atlanta2017_signature_aizy_gold" + "item_name" "#StickerKit_atlanta2017_signature_aizy_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_aizy_gold" + "sticker_material" "atlanta2017/sig_aizy_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "90685224" + } + "1901" + { + "name" "atlanta2017_signature_allu" + "item_name" "#StickerKit_atlanta2017_signature_allu" + "description_string" "#StickerKit_desc_atlanta2017_signature_allu" + "sticker_material" "atlanta2017/sig_allu" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "1345246" + } + "1902" + { + "name" "atlanta2017_signature_allu_foil" + "item_name" "#StickerKit_atlanta2017_signature_allu_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_allu_foil" + "sticker_material" "atlanta2017/sig_allu_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "1345246" + } + "1903" + { + "name" "atlanta2017_signature_allu_gold" + "item_name" "#StickerKit_atlanta2017_signature_allu_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_allu_gold" + "sticker_material" "atlanta2017/sig_allu_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "1345246" + } + "1904" + { + "name" "atlanta2017_signature_kioshima" + "item_name" "#StickerKit_atlanta2017_signature_kioshima" + "description_string" "#StickerKit_desc_atlanta2017_signature_kioshima" + "sticker_material" "atlanta2017/sig_kioshima" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "1905" + { + "name" "atlanta2017_signature_kioshima_foil" + "item_name" "#StickerKit_atlanta2017_signature_kioshima_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_kioshima_foil" + "sticker_material" "atlanta2017/sig_kioshima_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "1906" + { + "name" "atlanta2017_signature_kioshima_gold" + "item_name" "#StickerKit_atlanta2017_signature_kioshima_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_kioshima_gold" + "sticker_material" "atlanta2017/sig_kioshima_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "1907" + { + "name" "atlanta2017_signature_rain" + "item_name" "#StickerKit_atlanta2017_signature_rain" + "description_string" "#StickerKit_desc_atlanta2017_signature_rain" + "sticker_material" "atlanta2017/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1908" + { + "name" "atlanta2017_signature_rain_foil" + "item_name" "#StickerKit_atlanta2017_signature_rain_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_rain_foil" + "sticker_material" "atlanta2017/sig_rain_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1909" + { + "name" "atlanta2017_signature_rain_gold" + "item_name" "#StickerKit_atlanta2017_signature_rain_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_rain_gold" + "sticker_material" "atlanta2017/sig_rain_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "1910" + { + "name" "atlanta2017_signature_karrigan" + "item_name" "#StickerKit_atlanta2017_signature_karrigan" + "description_string" "#StickerKit_desc_atlanta2017_signature_karrigan" + "sticker_material" "atlanta2017/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "1911" + { + "name" "atlanta2017_signature_karrigan_foil" + "item_name" "#StickerKit_atlanta2017_signature_karrigan_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_karrigan_foil" + "sticker_material" "atlanta2017/sig_karrigan_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "1912" + { + "name" "atlanta2017_signature_karrigan_gold" + "item_name" "#StickerKit_atlanta2017_signature_karrigan_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_karrigan_gold" + "sticker_material" "atlanta2017/sig_karrigan_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "1913" + { + "name" "atlanta2017_signature_coldzera" + "item_name" "#StickerKit_atlanta2017_signature_coldzera" + "description_string" "#StickerKit_desc_atlanta2017_signature_coldzera" + "sticker_material" "atlanta2017/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "1914" + { + "name" "atlanta2017_signature_coldzera_foil" + "item_name" "#StickerKit_atlanta2017_signature_coldzera_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_coldzera_foil" + "sticker_material" "atlanta2017/sig_coldzera_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "1915" + { + "name" "atlanta2017_signature_coldzera_gold" + "item_name" "#StickerKit_atlanta2017_signature_coldzera_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_coldzera_gold" + "sticker_material" "atlanta2017/sig_coldzera_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "1916" + { + "name" "atlanta2017_signature_fallen" + "item_name" "#StickerKit_atlanta2017_signature_fallen" + "description_string" "#StickerKit_desc_atlanta2017_signature_fallen" + "sticker_material" "atlanta2017/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "1917" + { + "name" "atlanta2017_signature_fallen_foil" + "item_name" "#StickerKit_atlanta2017_signature_fallen_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_fallen_foil" + "sticker_material" "atlanta2017/sig_fallen_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "1918" + { + "name" "atlanta2017_signature_fallen_gold" + "item_name" "#StickerKit_atlanta2017_signature_fallen_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_fallen_gold" + "sticker_material" "atlanta2017/sig_fallen_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "1919" + { + "name" "atlanta2017_signature_fer" + "item_name" "#StickerKit_atlanta2017_signature_fer" + "description_string" "#StickerKit_desc_atlanta2017_signature_fer" + "sticker_material" "atlanta2017/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "1920" + { + "name" "atlanta2017_signature_fer_foil" + "item_name" "#StickerKit_atlanta2017_signature_fer_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_fer_foil" + "sticker_material" "atlanta2017/sig_fer_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "1921" + { + "name" "atlanta2017_signature_fer_gold" + "item_name" "#StickerKit_atlanta2017_signature_fer_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_fer_gold" + "sticker_material" "atlanta2017/sig_fer_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "1922" + { + "name" "atlanta2017_signature_fox" + "item_name" "#StickerKit_atlanta2017_signature_fox" + "description_string" "#StickerKit_desc_atlanta2017_signature_fox" + "sticker_material" "atlanta2017/sig_fox" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "1939536" + } + "1923" + { + "name" "atlanta2017_signature_fox_foil" + "item_name" "#StickerKit_atlanta2017_signature_fox_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_fox_foil" + "sticker_material" "atlanta2017/sig_fox_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "1939536" + } + "1924" + { + "name" "atlanta2017_signature_fox_gold" + "item_name" "#StickerKit_atlanta2017_signature_fox_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_fox_gold" + "sticker_material" "atlanta2017/sig_fox_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "1939536" + } + "1925" + { + "name" "atlanta2017_signature_taco" + "item_name" "#StickerKit_atlanta2017_signature_taco" + "description_string" "#StickerKit_desc_atlanta2017_signature_taco" + "sticker_material" "atlanta2017/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "1926" + { + "name" "atlanta2017_signature_taco_foil" + "item_name" "#StickerKit_atlanta2017_signature_taco_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_taco_foil" + "sticker_material" "atlanta2017/sig_taco_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "1927" + { + "name" "atlanta2017_signature_taco_gold" + "item_name" "#StickerKit_atlanta2017_signature_taco_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_taco_gold" + "sticker_material" "atlanta2017/sig_taco_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "1928" + { + "name" "atlanta2017_signature_chrisj" + "item_name" "#StickerKit_atlanta2017_signature_chrisj" + "description_string" "#StickerKit_desc_atlanta2017_signature_chrisj" + "sticker_material" "atlanta2017/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1929" + { + "name" "atlanta2017_signature_chrisj_foil" + "item_name" "#StickerKit_atlanta2017_signature_chrisj_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_chrisj_foil" + "sticker_material" "atlanta2017/sig_chrisj_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1930" + { + "name" "atlanta2017_signature_chrisj_gold" + "item_name" "#StickerKit_atlanta2017_signature_chrisj_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_chrisj_gold" + "sticker_material" "atlanta2017/sig_chrisj_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "1931" + { + "name" "atlanta2017_signature_denis" + "item_name" "#StickerKit_atlanta2017_signature_denis" + "description_string" "#StickerKit_desc_atlanta2017_signature_denis" + "sticker_material" "atlanta2017/sig_denis" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1932" + { + "name" "atlanta2017_signature_denis_foil" + "item_name" "#StickerKit_atlanta2017_signature_denis_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_denis_foil" + "sticker_material" "atlanta2017/sig_denis_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1933" + { + "name" "atlanta2017_signature_denis_gold" + "item_name" "#StickerKit_atlanta2017_signature_denis_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_denis_gold" + "sticker_material" "atlanta2017/sig_denis_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "1934" + { + "name" "atlanta2017_signature_spiidi" + "item_name" "#StickerKit_atlanta2017_signature_spiidi" + "description_string" "#StickerKit_desc_atlanta2017_signature_spiidi" + "sticker_material" "atlanta2017/sig_spiidi" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1935" + { + "name" "atlanta2017_signature_spiidi_foil" + "item_name" "#StickerKit_atlanta2017_signature_spiidi_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_spiidi_foil" + "sticker_material" "atlanta2017/sig_spiidi_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1936" + { + "name" "atlanta2017_signature_spiidi_gold" + "item_name" "#StickerKit_atlanta2017_signature_spiidi_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_spiidi_gold" + "sticker_material" "atlanta2017/sig_spiidi_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "13465075" + } + "1937" + { + "name" "atlanta2017_signature_lowel" + "item_name" "#StickerKit_atlanta2017_signature_lowel" + "description_string" "#StickerKit_desc_atlanta2017_signature_lowel" + "sticker_material" "atlanta2017/sig_lowel" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "34456844" + } + "1938" + { + "name" "atlanta2017_signature_lowel_foil" + "item_name" "#StickerKit_atlanta2017_signature_lowel_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_lowel_foil" + "sticker_material" "atlanta2017/sig_lowel_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "34456844" + } + "1939" + { + "name" "atlanta2017_signature_lowel_gold" + "item_name" "#StickerKit_atlanta2017_signature_lowel_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_lowel_gold" + "sticker_material" "atlanta2017/sig_lowel_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "34456844" + } + "1940" + { + "name" "atlanta2017_signature_niko" + "item_name" "#StickerKit_atlanta2017_signature_niko" + "description_string" "#StickerKit_desc_atlanta2017_signature_niko" + "sticker_material" "atlanta2017/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1941" + { + "name" "atlanta2017_signature_niko_foil" + "item_name" "#StickerKit_atlanta2017_signature_niko_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_niko_foil" + "sticker_material" "atlanta2017/sig_niko_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1942" + { + "name" "atlanta2017_signature_niko_gold" + "item_name" "#StickerKit_atlanta2017_signature_niko_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_niko_gold" + "sticker_material" "atlanta2017/sig_niko_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "29" + "tournament_player_id" "81417650" + } + "1943" + { + "name" "atlanta2017_signature_edward" + "item_name" "#StickerKit_atlanta2017_signature_edward" + "description_string" "#StickerKit_desc_atlanta2017_signature_edward" + "sticker_material" "atlanta2017/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1944" + { + "name" "atlanta2017_signature_edward_foil" + "item_name" "#StickerKit_atlanta2017_signature_edward_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_edward_foil" + "sticker_material" "atlanta2017/sig_edward_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1945" + { + "name" "atlanta2017_signature_edward_gold" + "item_name" "#StickerKit_atlanta2017_signature_edward_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_edward_gold" + "sticker_material" "atlanta2017/sig_edward_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "1946" + { + "name" "atlanta2017_signature_flamie" + "item_name" "#StickerKit_atlanta2017_signature_flamie" + "description_string" "#StickerKit_desc_atlanta2017_signature_flamie" + "sticker_material" "atlanta2017/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1947" + { + "name" "atlanta2017_signature_flamie_foil" + "item_name" "#StickerKit_atlanta2017_signature_flamie_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_flamie_foil" + "sticker_material" "atlanta2017/sig_flamie_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1948" + { + "name" "atlanta2017_signature_flamie_gold" + "item_name" "#StickerKit_atlanta2017_signature_flamie_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_flamie_gold" + "sticker_material" "atlanta2017/sig_flamie_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "1949" + { + "name" "atlanta2017_signature_guardian" + "item_name" "#StickerKit_atlanta2017_signature_guardian" + "description_string" "#StickerKit_desc_atlanta2017_signature_guardian" + "sticker_material" "atlanta2017/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1950" + { + "name" "atlanta2017_signature_guardian_foil" + "item_name" "#StickerKit_atlanta2017_signature_guardian_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_guardian_foil" + "sticker_material" "atlanta2017/sig_guardian_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1951" + { + "name" "atlanta2017_signature_guardian_gold" + "item_name" "#StickerKit_atlanta2017_signature_guardian_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_guardian_gold" + "sticker_material" "atlanta2017/sig_guardian_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "1952" + { + "name" "atlanta2017_signature_seized" + "item_name" "#StickerKit_atlanta2017_signature_seized" + "description_string" "#StickerKit_desc_atlanta2017_signature_seized" + "sticker_material" "atlanta2017/sig_seized" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1953" + { + "name" "atlanta2017_signature_seized_foil" + "item_name" "#StickerKit_atlanta2017_signature_seized_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_seized_foil" + "sticker_material" "atlanta2017/sig_seized_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1954" + { + "name" "atlanta2017_signature_seized_gold" + "item_name" "#StickerKit_atlanta2017_signature_seized_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_seized_gold" + "sticker_material" "atlanta2017/sig_seized_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "1955" + { + "name" "atlanta2017_signature_s1mple" + "item_name" "#StickerKit_atlanta2017_signature_s1mple" + "description_string" "#StickerKit_desc_atlanta2017_signature_s1mple" + "sticker_material" "atlanta2017/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "1956" + { + "name" "atlanta2017_signature_s1mple_foil" + "item_name" "#StickerKit_atlanta2017_signature_s1mple_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_s1mple_foil" + "sticker_material" "atlanta2017/sig_s1mple_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "1957" + { + "name" "atlanta2017_signature_s1mple_gold" + "item_name" "#StickerKit_atlanta2017_signature_s1mple_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_s1mple_gold" + "sticker_material" "atlanta2017/sig_s1mple_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "1958" + { + "name" "atlanta2017_signature_znajder" + "item_name" "#StickerKit_atlanta2017_signature_znajder" + "description_string" "#StickerKit_desc_atlanta2017_signature_znajder" + "sticker_material" "atlanta2017/sig_znajder" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "97816050" + } + "1959" + { + "name" "atlanta2017_signature_znajder_foil" + "item_name" "#StickerKit_atlanta2017_signature_znajder_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_znajder_foil" + "sticker_material" "atlanta2017/sig_znajder_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "97816050" + } + "1960" + { + "name" "atlanta2017_signature_znajder_gold" + "item_name" "#StickerKit_atlanta2017_signature_znajder_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_znajder_gold" + "sticker_material" "atlanta2017/sig_znajder_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "97816050" + } + "1961" + { + "name" "atlanta2017_signature_lekro" + "item_name" "#StickerKit_atlanta2017_signature_lekro" + "description_string" "#StickerKit_desc_atlanta2017_signature_lekro" + "sticker_material" "atlanta2017/sig_lekro" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "1093135" + } + "1962" + { + "name" "atlanta2017_signature_lekro_foil" + "item_name" "#StickerKit_atlanta2017_signature_lekro_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_lekro_foil" + "sticker_material" "atlanta2017/sig_lekro_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "1093135" + } + "1963" + { + "name" "atlanta2017_signature_lekro_gold" + "item_name" "#StickerKit_atlanta2017_signature_lekro_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_lekro_gold" + "sticker_material" "atlanta2017/sig_lekro_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "1093135" + } + "1964" + { + "name" "atlanta2017_signature_pronax" + "item_name" "#StickerKit_atlanta2017_signature_pronax" + "description_string" "#StickerKit_desc_atlanta2017_signature_pronax" + "sticker_material" "atlanta2017/sig_pronax" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "9419182" + } + "1965" + { + "name" "atlanta2017_signature_pronax_foil" + "item_name" "#StickerKit_atlanta2017_signature_pronax_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_pronax_foil" + "sticker_material" "atlanta2017/sig_pronax_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "9419182" + } + "1966" + { + "name" "atlanta2017_signature_pronax_gold" + "item_name" "#StickerKit_atlanta2017_signature_pronax_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_pronax_gold" + "sticker_material" "atlanta2017/sig_pronax_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "9419182" + } + "1967" + { + "name" "atlanta2017_signature_jw" + "item_name" "#StickerKit_atlanta2017_signature_jw" + "description_string" "#StickerKit_desc_atlanta2017_signature_jw" + "sticker_material" "atlanta2017/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "71288472" + } + "1968" + { + "name" "atlanta2017_signature_jw_foil" + "item_name" "#StickerKit_atlanta2017_signature_jw_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_jw_foil" + "sticker_material" "atlanta2017/sig_jw_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "71288472" + } + "1969" + { + "name" "atlanta2017_signature_jw_gold" + "item_name" "#StickerKit_atlanta2017_signature_jw_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_jw_gold" + "sticker_material" "atlanta2017/sig_jw_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "71288472" + } + "1970" + { + "name" "atlanta2017_signature_flusha" + "item_name" "#StickerKit_atlanta2017_signature_flusha" + "description_string" "#StickerKit_desc_atlanta2017_signature_flusha" + "sticker_material" "atlanta2017/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "31082355" + } + "1971" + { + "name" "atlanta2017_signature_flusha_foil" + "item_name" "#StickerKit_atlanta2017_signature_flusha_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_flusha_foil" + "sticker_material" "atlanta2017/sig_flusha_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "31082355" + } + "1972" + { + "name" "atlanta2017_signature_flusha_gold" + "item_name" "#StickerKit_atlanta2017_signature_flusha_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_flusha_gold" + "sticker_material" "atlanta2017/sig_flusha_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "67" + "tournament_player_id" "31082355" + } + "1973" + { + "name" "atlanta2017_signature_cajunb" + "item_name" "#StickerKit_atlanta2017_signature_cajunb" + "description_string" "#StickerKit_desc_atlanta2017_signature_cajunb" + "sticker_material" "atlanta2017/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "1974" + { + "name" "atlanta2017_signature_cajunb_foil" + "item_name" "#StickerKit_atlanta2017_signature_cajunb_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_cajunb_foil" + "sticker_material" "atlanta2017/sig_cajunb_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "1975" + { + "name" "atlanta2017_signature_cajunb_gold" + "item_name" "#StickerKit_atlanta2017_signature_cajunb_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_cajunb_gold" + "sticker_material" "atlanta2017/sig_cajunb_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "1976" + { + "name" "atlanta2017_signature_msl" + "item_name" "#StickerKit_atlanta2017_signature_msl" + "description_string" "#StickerKit_desc_atlanta2017_signature_msl" + "sticker_material" "atlanta2017/sig_msl" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "1977" + { + "name" "atlanta2017_signature_msl_foil" + "item_name" "#StickerKit_atlanta2017_signature_msl_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_msl_foil" + "sticker_material" "atlanta2017/sig_msl_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "1978" + { + "name" "atlanta2017_signature_msl_gold" + "item_name" "#StickerKit_atlanta2017_signature_msl_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_msl_gold" + "sticker_material" "atlanta2017/sig_msl_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "1979" + { + "name" "atlanta2017_signature_magisk" + "item_name" "#StickerKit_atlanta2017_signature_magisk" + "description_string" "#StickerKit_desc_atlanta2017_signature_magisk" + "sticker_material" "atlanta2017/sig_magisk" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "23690923" + } + "1980" + { + "name" "atlanta2017_signature_magisk_foil" + "item_name" "#StickerKit_atlanta2017_signature_magisk_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_magisk_foil" + "sticker_material" "atlanta2017/sig_magisk_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "23690923" + } + "1981" + { + "name" "atlanta2017_signature_magisk_gold" + "item_name" "#StickerKit_atlanta2017_signature_magisk_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_magisk_gold" + "sticker_material" "atlanta2017/sig_magisk_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "23690923" + } + "1982" + { + "name" "atlanta2017_signature_rubino" + "item_name" "#StickerKit_atlanta2017_signature_rubino" + "description_string" "#StickerKit_desc_atlanta2017_signature_rubino" + "sticker_material" "atlanta2017/sig_rubino" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "35103983" + } + "1983" + { + "name" "atlanta2017_signature_rubino_foil" + "item_name" "#StickerKit_atlanta2017_signature_rubino_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_rubino_foil" + "sticker_material" "atlanta2017/sig_rubino_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "35103983" + } + "1984" + { + "name" "atlanta2017_signature_rubino_gold" + "item_name" "#StickerKit_atlanta2017_signature_rubino_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_rubino_gold" + "sticker_material" "atlanta2017/sig_rubino_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "35103983" + } + "1985" + { + "name" "atlanta2017_signature_k0nfig" + "item_name" "#StickerKit_atlanta2017_signature_k0nfig" + "description_string" "#StickerKit_desc_atlanta2017_signature_k0nfig" + "sticker_material" "atlanta2017/sig_k0nfig" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "1986" + { + "name" "atlanta2017_signature_k0nfig_foil" + "item_name" "#StickerKit_atlanta2017_signature_k0nfig_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_k0nfig_foil" + "sticker_material" "atlanta2017/sig_k0nfig_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "1987" + { + "name" "atlanta2017_signature_k0nfig_gold" + "item_name" "#StickerKit_atlanta2017_signature_k0nfig_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_k0nfig_gold" + "sticker_material" "atlanta2017/sig_k0nfig_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "1988" + { + "name" "atlanta2017_signature_jdm64" + "item_name" "#StickerKit_atlanta2017_signature_jdm64" + "description_string" "#StickerKit_desc_atlanta2017_signature_jdm64" + "sticker_material" "atlanta2017/sig_jdm64" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "1989" + { + "name" "atlanta2017_signature_jdm64_foil" + "item_name" "#StickerKit_atlanta2017_signature_jdm64_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_jdm64_foil" + "sticker_material" "atlanta2017/sig_jdm64_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "1990" + { + "name" "atlanta2017_signature_jdm64_gold" + "item_name" "#StickerKit_atlanta2017_signature_jdm64_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_jdm64_gold" + "sticker_material" "atlanta2017/sig_jdm64_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "1991" + { + "name" "atlanta2017_signature_elige" + "item_name" "#StickerKit_atlanta2017_signature_elige" + "description_string" "#StickerKit_desc_atlanta2017_signature_elige" + "sticker_material" "atlanta2017/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1992" + { + "name" "atlanta2017_signature_elige_foil" + "item_name" "#StickerKit_atlanta2017_signature_elige_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_elige_foil" + "sticker_material" "atlanta2017/sig_elige_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1993" + { + "name" "atlanta2017_signature_elige_gold" + "item_name" "#StickerKit_atlanta2017_signature_elige_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_elige_gold" + "sticker_material" "atlanta2017/sig_elige_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "1994" + { + "name" "atlanta2017_signature_pimp" + "item_name" "#StickerKit_atlanta2017_signature_pimp" + "description_string" "#StickerKit_desc_atlanta2017_signature_pimp" + "sticker_material" "atlanta2017/sig_pimp" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "57742580" + } + "1995" + { + "name" "atlanta2017_signature_pimp_foil" + "item_name" "#StickerKit_atlanta2017_signature_pimp_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_pimp_foil" + "sticker_material" "atlanta2017/sig_pimp_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "57742580" + } + "1996" + { + "name" "atlanta2017_signature_pimp_gold" + "item_name" "#StickerKit_atlanta2017_signature_pimp_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_pimp_gold" + "sticker_material" "atlanta2017/sig_pimp_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "57742580" + } + "1997" + { + "name" "atlanta2017_signature_hiko" + "item_name" "#StickerKit_atlanta2017_signature_hiko" + "description_string" "#StickerKit_desc_atlanta2017_signature_hiko" + "sticker_material" "atlanta2017/sig_hiko" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1998" + { + "name" "atlanta2017_signature_hiko_foil" + "item_name" "#StickerKit_atlanta2017_signature_hiko_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_hiko_foil" + "sticker_material" "atlanta2017/sig_hiko_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "1999" + { + "name" "atlanta2017_signature_hiko_gold" + "item_name" "#StickerKit_atlanta2017_signature_hiko_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_hiko_gold" + "sticker_material" "atlanta2017/sig_hiko_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "2791" + } + "2000" + { + "name" "atlanta2017_signature_nitro" + "item_name" "#StickerKit_atlanta2017_signature_nitro" + "description_string" "#StickerKit_desc_atlanta2017_signature_nitro" + "sticker_material" "atlanta2017/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "2001" + { + "name" "atlanta2017_signature_nitro_foil" + "item_name" "#StickerKit_atlanta2017_signature_nitro_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_nitro_foil" + "sticker_material" "atlanta2017/sig_nitro_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "2002" + { + "name" "atlanta2017_signature_nitro_gold" + "item_name" "#StickerKit_atlanta2017_signature_nitro_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_nitro_gold" + "sticker_material" "atlanta2017/sig_nitro_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "2003" + { + "name" "atlanta2017_signature_bodyy" + "item_name" "#StickerKit_atlanta2017_signature_bodyy" + "description_string" "#StickerKit_desc_atlanta2017_signature_bodyy" + "sticker_material" "atlanta2017/sig_bodyy" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2004" + { + "name" "atlanta2017_signature_bodyy_foil" + "item_name" "#StickerKit_atlanta2017_signature_bodyy_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_bodyy_foil" + "sticker_material" "atlanta2017/sig_bodyy_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2005" + { + "name" "atlanta2017_signature_bodyy_gold" + "item_name" "#StickerKit_atlanta2017_signature_bodyy_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_bodyy_gold" + "sticker_material" "atlanta2017/sig_bodyy_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2006" + { + "name" "atlanta2017_signature_rpk" + "item_name" "#StickerKit_atlanta2017_signature_rpk" + "description_string" "#StickerKit_desc_atlanta2017_signature_rpk" + "sticker_material" "atlanta2017/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "2007" + { + "name" "atlanta2017_signature_rpk_foil" + "item_name" "#StickerKit_atlanta2017_signature_rpk_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_rpk_foil" + "sticker_material" "atlanta2017/sig_rpk_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "2008" + { + "name" "atlanta2017_signature_rpk_gold" + "item_name" "#StickerKit_atlanta2017_signature_rpk_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_rpk_gold" + "sticker_material" "atlanta2017/sig_rpk_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "53985773" + } + "2009" + { + "name" "atlanta2017_signature_scream" + "item_name" "#StickerKit_atlanta2017_signature_scream" + "description_string" "#StickerKit_desc_atlanta2017_signature_scream" + "sticker_material" "atlanta2017/sig_scream" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "2010" + { + "name" "atlanta2017_signature_scream_foil" + "item_name" "#StickerKit_atlanta2017_signature_scream_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_scream_foil" + "sticker_material" "atlanta2017/sig_scream_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "2011" + { + "name" "atlanta2017_signature_scream_gold" + "item_name" "#StickerKit_atlanta2017_signature_scream_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_scream_gold" + "sticker_material" "atlanta2017/sig_scream_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "28502520" + } + "2012" + { + "name" "atlanta2017_signature_shox" + "item_name" "#StickerKit_atlanta2017_signature_shox" + "description_string" "#StickerKit_desc_atlanta2017_signature_shox" + "sticker_material" "atlanta2017/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2013" + { + "name" "atlanta2017_signature_shox_foil" + "item_name" "#StickerKit_atlanta2017_signature_shox_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_shox_foil" + "sticker_material" "atlanta2017/sig_shox_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2014" + { + "name" "atlanta2017_signature_shox_gold" + "item_name" "#StickerKit_atlanta2017_signature_shox_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_shox_gold" + "sticker_material" "atlanta2017/sig_shox_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2015" + { + "name" "atlanta2017_signature_smithzz" + "item_name" "#StickerKit_atlanta2017_signature_smithzz" + "description_string" "#StickerKit_desc_atlanta2017_signature_smithzz" + "sticker_material" "atlanta2017/sig_smithzz" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "2016" + { + "name" "atlanta2017_signature_smithzz_foil" + "item_name" "#StickerKit_atlanta2017_signature_smithzz_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_smithzz_foil" + "sticker_material" "atlanta2017/sig_smithzz_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "2017" + { + "name" "atlanta2017_signature_smithzz_gold" + "item_name" "#StickerKit_atlanta2017_signature_smithzz_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_smithzz_gold" + "sticker_material" "atlanta2017/sig_smithzz_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "2018" + { + "name" "atlanta2017_signature_gla1ve" + "item_name" "#StickerKit_atlanta2017_signature_gla1ve" + "description_string" "#StickerKit_desc_atlanta2017_signature_gla1ve" + "sticker_material" "atlanta2017/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2019" + { + "name" "atlanta2017_signature_gla1ve_foil" + "item_name" "#StickerKit_atlanta2017_signature_gla1ve_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_gla1ve_foil" + "sticker_material" "atlanta2017/sig_gla1ve_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2020" + { + "name" "atlanta2017_signature_gla1ve_gold" + "item_name" "#StickerKit_atlanta2017_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_gla1ve_gold" + "sticker_material" "atlanta2017/sig_gla1ve_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2021" + { + "name" "atlanta2017_signature_device" + "item_name" "#StickerKit_atlanta2017_signature_device" + "description_string" "#StickerKit_desc_atlanta2017_signature_device" + "sticker_material" "atlanta2017/sig_device" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2022" + { + "name" "atlanta2017_signature_device_foil" + "item_name" "#StickerKit_atlanta2017_signature_device_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_device_foil" + "sticker_material" "atlanta2017/sig_device_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2023" + { + "name" "atlanta2017_signature_device_gold" + "item_name" "#StickerKit_atlanta2017_signature_device_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_device_gold" + "sticker_material" "atlanta2017/sig_device_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2024" + { + "name" "atlanta2017_signature_dupreeh" + "item_name" "#StickerKit_atlanta2017_signature_dupreeh" + "description_string" "#StickerKit_desc_atlanta2017_signature_dupreeh" + "sticker_material" "atlanta2017/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2025" + { + "name" "atlanta2017_signature_dupreeh_foil" + "item_name" "#StickerKit_atlanta2017_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_dupreeh_foil" + "sticker_material" "atlanta2017/sig_dupreeh_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2026" + { + "name" "atlanta2017_signature_dupreeh_gold" + "item_name" "#StickerKit_atlanta2017_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_dupreeh_gold" + "sticker_material" "atlanta2017/sig_dupreeh_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2027" + { + "name" "atlanta2017_signature_kjaerbye" + "item_name" "#StickerKit_atlanta2017_signature_kjaerbye" + "description_string" "#StickerKit_desc_atlanta2017_signature_kjaerbye" + "sticker_material" "atlanta2017/sig_kjaerbye" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2028" + { + "name" "atlanta2017_signature_kjaerbye_foil" + "item_name" "#StickerKit_atlanta2017_signature_kjaerbye_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_kjaerbye_foil" + "sticker_material" "atlanta2017/sig_kjaerbye_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2029" + { + "name" "atlanta2017_signature_kjaerbye_gold" + "item_name" "#StickerKit_atlanta2017_signature_kjaerbye_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_kjaerbye_gold" + "sticker_material" "atlanta2017/sig_kjaerbye_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2030" + { + "name" "atlanta2017_signature_xyp9x" + "item_name" "#StickerKit_atlanta2017_signature_xyp9x" + "description_string" "#StickerKit_desc_atlanta2017_signature_xyp9x" + "sticker_material" "atlanta2017/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2031" + { + "name" "atlanta2017_signature_xyp9x_foil" + "item_name" "#StickerKit_atlanta2017_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_xyp9x_foil" + "sticker_material" "atlanta2017/sig_xyp9x_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2032" + { + "name" "atlanta2017_signature_xyp9x_gold" + "item_name" "#StickerKit_atlanta2017_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_xyp9x_gold" + "sticker_material" "atlanta2017/sig_xyp9x_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2033" + { + "name" "atlanta2017_signature_zeus" + "item_name" "#StickerKit_atlanta2017_signature_zeus" + "description_string" "#StickerKit_desc_atlanta2017_signature_zeus" + "sticker_material" "atlanta2017/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "59062744" + } + "2034" + { + "name" "atlanta2017_signature_zeus_foil" + "item_name" "#StickerKit_atlanta2017_signature_zeus_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_zeus_foil" + "sticker_material" "atlanta2017/sig_zeus_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "59062744" + } + "2035" + { + "name" "atlanta2017_signature_zeus_gold" + "item_name" "#StickerKit_atlanta2017_signature_zeus_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_zeus_gold" + "sticker_material" "atlanta2017/sig_zeus_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "59062744" + } + "2036" + { + "name" "atlanta2017_signature_dosia" + "item_name" "#StickerKit_atlanta2017_signature_dosia" + "description_string" "#StickerKit_desc_atlanta2017_signature_dosia" + "sticker_material" "atlanta2017/sig_dosia" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2037" + { + "name" "atlanta2017_signature_dosia_foil" + "item_name" "#StickerKit_atlanta2017_signature_dosia_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_dosia_foil" + "sticker_material" "atlanta2017/sig_dosia_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2038" + { + "name" "atlanta2017_signature_dosia_gold" + "item_name" "#StickerKit_atlanta2017_signature_dosia_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_dosia_gold" + "sticker_material" "atlanta2017/sig_dosia_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2039" + { + "name" "atlanta2017_signature_hobbit" + "item_name" "#StickerKit_atlanta2017_signature_hobbit" + "description_string" "#StickerKit_desc_atlanta2017_signature_hobbit" + "sticker_material" "atlanta2017/sig_hobbit" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2040" + { + "name" "atlanta2017_signature_hobbit_foil" + "item_name" "#StickerKit_atlanta2017_signature_hobbit_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_hobbit_foil" + "sticker_material" "atlanta2017/sig_hobbit_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2041" + { + "name" "atlanta2017_signature_hobbit_gold" + "item_name" "#StickerKit_atlanta2017_signature_hobbit_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_hobbit_gold" + "sticker_material" "atlanta2017/sig_hobbit_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2042" + { + "name" "atlanta2017_signature_mou" + "item_name" "#StickerKit_atlanta2017_signature_mou" + "description_string" "#StickerKit_desc_atlanta2017_signature_mou" + "sticker_material" "atlanta2017/sig_mou" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2043" + { + "name" "atlanta2017_signature_mou_foil" + "item_name" "#StickerKit_atlanta2017_signature_mou_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_mou_foil" + "sticker_material" "atlanta2017/sig_mou_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2044" + { + "name" "atlanta2017_signature_mou_gold" + "item_name" "#StickerKit_atlanta2017_signature_mou_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_mou_gold" + "sticker_material" "atlanta2017/sig_mou_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2045" + { + "name" "atlanta2017_signature_adrenkz" + "item_name" "#StickerKit_atlanta2017_signature_adrenkz" + "description_string" "#StickerKit_desc_atlanta2017_signature_adrenkz" + "sticker_material" "atlanta2017/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2046" + { + "name" "atlanta2017_signature_adrenkz_foil" + "item_name" "#StickerKit_atlanta2017_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_adrenkz_foil" + "sticker_material" "atlanta2017/sig_adrenkz_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2047" + { + "name" "atlanta2017_signature_adrenkz_gold" + "item_name" "#StickerKit_atlanta2017_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_adrenkz_gold" + "sticker_material" "atlanta2017/sig_adrenkz_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2048" + { + "name" "atlanta2017_signature_byali" + "item_name" "#StickerKit_atlanta2017_signature_byali" + "description_string" "#StickerKit_desc_atlanta2017_signature_byali" + "sticker_material" "atlanta2017/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2049" + { + "name" "atlanta2017_signature_byali_foil" + "item_name" "#StickerKit_atlanta2017_signature_byali_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_byali_foil" + "sticker_material" "atlanta2017/sig_byali_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2050" + { + "name" "atlanta2017_signature_byali_gold" + "item_name" "#StickerKit_atlanta2017_signature_byali_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_byali_gold" + "sticker_material" "atlanta2017/sig_byali_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2051" + { + "name" "atlanta2017_signature_neo" + "item_name" "#StickerKit_atlanta2017_signature_neo" + "description_string" "#StickerKit_desc_atlanta2017_signature_neo" + "sticker_material" "atlanta2017/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2052" + { + "name" "atlanta2017_signature_neo_foil" + "item_name" "#StickerKit_atlanta2017_signature_neo_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_neo_foil" + "sticker_material" "atlanta2017/sig_neo_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2053" + { + "name" "atlanta2017_signature_neo_gold" + "item_name" "#StickerKit_atlanta2017_signature_neo_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_neo_gold" + "sticker_material" "atlanta2017/sig_neo_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2054" + { + "name" "atlanta2017_signature_pasha" + "item_name" "#StickerKit_atlanta2017_signature_pasha" + "description_string" "#StickerKit_desc_atlanta2017_signature_pasha" + "sticker_material" "atlanta2017/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2055" + { + "name" "atlanta2017_signature_pasha_foil" + "item_name" "#StickerKit_atlanta2017_signature_pasha_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_pasha_foil" + "sticker_material" "atlanta2017/sig_pasha_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2056" + { + "name" "atlanta2017_signature_pasha_gold" + "item_name" "#StickerKit_atlanta2017_signature_pasha_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_pasha_gold" + "sticker_material" "atlanta2017/sig_pasha_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2057" + { + "name" "atlanta2017_signature_snax" + "item_name" "#StickerKit_atlanta2017_signature_snax" + "description_string" "#StickerKit_desc_atlanta2017_signature_snax" + "sticker_material" "atlanta2017/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2058" + { + "name" "atlanta2017_signature_snax_foil" + "item_name" "#StickerKit_atlanta2017_signature_snax_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_snax_foil" + "sticker_material" "atlanta2017/sig_snax_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2059" + { + "name" "atlanta2017_signature_snax_gold" + "item_name" "#StickerKit_atlanta2017_signature_snax_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_snax_gold" + "sticker_material" "atlanta2017/sig_snax_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2060" + { + "name" "atlanta2017_signature_taz" + "item_name" "#StickerKit_atlanta2017_signature_taz" + "description_string" "#StickerKit_desc_atlanta2017_signature_taz" + "sticker_material" "atlanta2017/sig_taz" + "item_rarity" "rare" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2061" + { + "name" "atlanta2017_signature_taz_foil" + "item_name" "#StickerKit_atlanta2017_signature_taz_foil" + "description_string" "#StickerKit_desc_atlanta2017_signature_taz_foil" + "sticker_material" "atlanta2017/sig_taz_foil" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2062" + { + "name" "atlanta2017_signature_taz_gold" + "item_name" "#StickerKit_atlanta2017_signature_taz_gold" + "description_string" "#StickerKit_desc_atlanta2017_signature_taz_gold" + "sticker_material" "atlanta2017/sig_taz_gold" + "item_rarity" "legendary" + "tournament_event_id" "11" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + } + "prefabs" + { + "krakow2017_sticker_capsule_prefab" + { + "first_sale_date" "2017-07-05" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + } + "krakow2017_signature_capsule_prefab" + { + "first_sale_date" "2017-07-05" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_krakow2017_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_krakow2017_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "209" "crate_sticker_pack_krakow2017_legends" + "210" "crate_sticker_pack_krakow2017_challengers" + "211" "crate_signature_pack_krakow2017_group_players_collection_1" + "212" "crate_signature_pack_krakow2017_group_players_collection_2" + "213" "crate_krakow2017_promo_de_inferno" + "214" "crate_krakow2017_promo_de_mirage" + "215" "crate_krakow2017_promo_de_cbble" + "216" "crate_krakow2017_promo_de_overpass" + "217" "crate_krakow2017_promo_de_cache" + "218" "crate_krakow2017_promo_de_train" + "219" "crate_krakow2017_promo_de_nuke" + } + "client_loot_lists" + { + "krakow2017_rare_astr" + { + "[krakow2017_team_astr]sticker" "1" + } + "krakow2017_rare_vp" + { + "[krakow2017_team_vp]sticker" "1" + } + "krakow2017_rare_fntc" + { + "[krakow2017_team_fntc]sticker" "1" + } + "krakow2017_rare_sk" + { + "[krakow2017_team_sk]sticker" "1" + } + "krakow2017_rare_navi" + { + "[krakow2017_team_navi]sticker" "1" + } + "krakow2017_rare_gamb" + { + "[krakow2017_team_gamb]sticker" "1" + } + "krakow2017_rare_nor" + { + "[krakow2017_team_nor]sticker" "1" + } + "krakow2017_rare_faze" + { + "[krakow2017_team_faze]sticker" "1" + } + "krakow2017_rare_mss" + { + "[krakow2017_team_mss]sticker" "1" + } + "krakow2017_rare_g2" + { + "[krakow2017_team_g2]sticker" "1" + } + "krakow2017_rare_big" + { + "[krakow2017_team_big]sticker" "1" + } + "krakow2017_rare_c9" + { + "[krakow2017_team_c9]sticker" "1" + } + "krakow2017_rare_penta" + { + "[krakow2017_team_penta]sticker" "1" + } + "krakow2017_rare_flip" + { + "[krakow2017_team_flip]sticker" "1" + } + "krakow2017_rare_imt" + { + "[krakow2017_team_imt]sticker" "1" + } + "krakow2017_rare_vega" + { + "[krakow2017_team_vega]sticker" "1" + } + "krakow2017_rare_pgl" + { + "[krakow2017_team_pgl]sticker" "1" + } + "krakow2017_graffiti_astr" + { + "[krakow2017_team_astr_graffiti]spray" "1" + } + "krakow2017_graffiti_vp" + { + "[krakow2017_team_vp_graffiti]spray" "1" + } + "krakow2017_graffiti_fntc" + { + "[krakow2017_team_fntc_graffiti]spray" "1" + } + "krakow2017_graffiti_sk" + { + "[krakow2017_team_sk_graffiti]spray" "1" + } + "krakow2017_graffiti_navi" + { + "[krakow2017_team_navi_graffiti]spray" "1" + } + "krakow2017_graffiti_gamb" + { + "[krakow2017_team_gamb_graffiti]spray" "1" + } + "krakow2017_graffiti_nor" + { + "[krakow2017_team_nor_graffiti]spray" "1" + } + "krakow2017_graffiti_faze" + { + "[krakow2017_team_faze_graffiti]spray" "1" + } + "krakow2017_graffiti_mss" + { + "[krakow2017_team_mss_graffiti]spray" "1" + } + "krakow2017_graffiti_g2" + { + "[krakow2017_team_g2_graffiti]spray" "1" + } + "krakow2017_graffiti_big" + { + "[krakow2017_team_big_graffiti]spray" "1" + } + "krakow2017_graffiti_c9" + { + "[krakow2017_team_c9_graffiti]spray" "1" + } + "krakow2017_graffiti_penta" + { + "[krakow2017_team_penta_graffiti]spray" "1" + } + "krakow2017_graffiti_flip" + { + "[krakow2017_team_flip_graffiti]spray" "1" + } + "krakow2017_graffiti_imt" + { + "[krakow2017_team_imt_graffiti]spray" "1" + } + "krakow2017_graffiti_vega" + { + "[krakow2017_team_vega_graffiti]spray" "1" + } + "krakow2017_graffiti_pgl" + { + "[krakow2017_team_pgl_graffiti]spray" "1" + } + "crate_sticker_pack_krakow2017_legends_rare" + { + "[krakow2017_team_astr]sticker" "1" + "[krakow2017_team_vp]sticker" "1" + "[krakow2017_team_fntc]sticker" "1" + "[krakow2017_team_sk]sticker" "1" + "[krakow2017_team_navi]sticker" "1" + "[krakow2017_team_gamb]sticker" "1" + "[krakow2017_team_nor]sticker" "1" + "[krakow2017_team_faze]sticker" "1" + "[krakow2017_team_pgl]sticker" "1" + } + "crate_sticker_pack_krakow2017_legends_mythical" + { + "[krakow2017_team_astr_holo]sticker" "1" + "[krakow2017_team_vp_holo]sticker" "1" + "[krakow2017_team_fntc_holo]sticker" "1" + "[krakow2017_team_sk_holo]sticker" "1" + "[krakow2017_team_navi_holo]sticker" "1" + "[krakow2017_team_gamb_holo]sticker" "1" + "[krakow2017_team_nor_holo]sticker" "1" + "[krakow2017_team_faze_holo]sticker" "1" + "[krakow2017_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_krakow2017_legends_legendary" + { + "[krakow2017_team_astr_foil]sticker" "1" + "[krakow2017_team_vp_foil]sticker" "1" + "[krakow2017_team_fntc_foil]sticker" "1" + "[krakow2017_team_sk_foil]sticker" "1" + "[krakow2017_team_navi_foil]sticker" "1" + "[krakow2017_team_gamb_foil]sticker" "1" + "[krakow2017_team_nor_foil]sticker" "1" + "[krakow2017_team_faze_foil]sticker" "1" + "[krakow2017_team_pgl_foil]sticker" "1" + } + "crate_sticker_pack_krakow2017_legends" + { + "crate_sticker_pack_krakow2017_legends_mythical" "1" + "crate_sticker_pack_krakow2017_legends_legendary" "1" + } + "crate_sticker_pack_krakow2017_challengers_rare" + { + "[krakow2017_team_mss]sticker" "1" + "[krakow2017_team_g2]sticker" "1" + "[krakow2017_team_big]sticker" "1" + "[krakow2017_team_c9]sticker" "1" + "[krakow2017_team_penta]sticker" "1" + "[krakow2017_team_flip]sticker" "1" + "[krakow2017_team_imt]sticker" "1" + "[krakow2017_team_vega]sticker" "1" + } + "crate_sticker_pack_krakow2017_challengers_mythical" + { + "[krakow2017_team_mss_holo]sticker" "1" + "[krakow2017_team_g2_holo]sticker" "1" + "[krakow2017_team_big_holo]sticker" "1" + "[krakow2017_team_c9_holo]sticker" "1" + "[krakow2017_team_penta_holo]sticker" "1" + "[krakow2017_team_flip_holo]sticker" "1" + "[krakow2017_team_imt_holo]sticker" "1" + "[krakow2017_team_vega_holo]sticker" "1" + "[krakow2017_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_krakow2017_challengers_legendary" + { + "[krakow2017_team_mss_foil]sticker" "1" + "[krakow2017_team_g2_foil]sticker" "1" + "[krakow2017_team_big_foil]sticker" "1" + "[krakow2017_team_c9_foil]sticker" "1" + "[krakow2017_team_penta_foil]sticker" "1" + "[krakow2017_team_flip_foil]sticker" "1" + "[krakow2017_team_imt_foil]sticker" "1" + "[krakow2017_team_vega_foil]sticker" "1" + "[krakow2017_team_pgl_foil]sticker" "1" + } + "crate_sticker_pack_krakow2017_challengers" + { + "crate_sticker_pack_krakow2017_challengers_mythical" "1" + "crate_sticker_pack_krakow2017_challengers_legendary" "1" + } + "krakow2017_signatures_astr" + { + "[krakow2017_signature_device]sticker" "1" + "[krakow2017_signature_device_foil]sticker" "1" + "[krakow2017_signature_device_gold]sticker" "1" + "[krakow2017_signature_dupreeh]sticker" "1" + "[krakow2017_signature_dupreeh_foil]sticker" "1" + "[krakow2017_signature_dupreeh_gold]sticker" "1" + "[krakow2017_signature_gla1ve]sticker" "1" + "[krakow2017_signature_gla1ve_foil]sticker" "1" + "[krakow2017_signature_gla1ve_gold]sticker" "1" + "[krakow2017_signature_kjaerbye]sticker" "1" + "[krakow2017_signature_kjaerbye_foil]sticker" "1" + "[krakow2017_signature_kjaerbye_gold]sticker" "1" + "[krakow2017_signature_xyp9x]sticker" "1" + "[krakow2017_signature_xyp9x_foil]sticker" "1" + "[krakow2017_signature_xyp9x_gold]sticker" "1" + } + "krakow2017_signatures_vp" + { + "[krakow2017_signature_byali]sticker" "1" + "[krakow2017_signature_byali_foil]sticker" "1" + "[krakow2017_signature_byali_gold]sticker" "1" + "[krakow2017_signature_neo]sticker" "1" + "[krakow2017_signature_neo_foil]sticker" "1" + "[krakow2017_signature_neo_gold]sticker" "1" + "[krakow2017_signature_pasha]sticker" "1" + "[krakow2017_signature_pasha_foil]sticker" "1" + "[krakow2017_signature_pasha_gold]sticker" "1" + "[krakow2017_signature_snax]sticker" "1" + "[krakow2017_signature_snax_foil]sticker" "1" + "[krakow2017_signature_snax_gold]sticker" "1" + "[krakow2017_signature_taz]sticker" "1" + "[krakow2017_signature_taz_foil]sticker" "1" + "[krakow2017_signature_taz_gold]sticker" "1" + } + "krakow2017_signatures_fntc" + { + "[krakow2017_signature_dennis]sticker" "1" + "[krakow2017_signature_dennis_foil]sticker" "1" + "[krakow2017_signature_dennis_gold]sticker" "1" + "[krakow2017_signature_flusha]sticker" "1" + "[krakow2017_signature_flusha_foil]sticker" "1" + "[krakow2017_signature_flusha_gold]sticker" "1" + "[krakow2017_signature_jw]sticker" "1" + "[krakow2017_signature_jw_foil]sticker" "1" + "[krakow2017_signature_jw_gold]sticker" "1" + "[krakow2017_signature_krimz]sticker" "1" + "[krakow2017_signature_krimz_foil]sticker" "1" + "[krakow2017_signature_krimz_gold]sticker" "1" + "[krakow2017_signature_olofmeister]sticker" "1" + "[krakow2017_signature_olofmeister_foil]sticker" "1" + "[krakow2017_signature_olofmeister_gold]sticker" "1" + } + "krakow2017_signatures_sk" + { + "[krakow2017_signature_coldzera]sticker" "1" + "[krakow2017_signature_coldzera_foil]sticker" "1" + "[krakow2017_signature_coldzera_gold]sticker" "1" + "[krakow2017_signature_fallen]sticker" "1" + "[krakow2017_signature_fallen_foil]sticker" "1" + "[krakow2017_signature_fallen_gold]sticker" "1" + "[krakow2017_signature_felps]sticker" "1" + "[krakow2017_signature_felps_foil]sticker" "1" + "[krakow2017_signature_felps_gold]sticker" "1" + "[krakow2017_signature_fer]sticker" "1" + "[krakow2017_signature_fer_foil]sticker" "1" + "[krakow2017_signature_fer_gold]sticker" "1" + "[krakow2017_signature_taco]sticker" "1" + "[krakow2017_signature_taco_foil]sticker" "1" + "[krakow2017_signature_taco_gold]sticker" "1" + } + "krakow2017_signatures_navi" + { + "[krakow2017_signature_edward]sticker" "1" + "[krakow2017_signature_edward_foil]sticker" "1" + "[krakow2017_signature_edward_gold]sticker" "1" + "[krakow2017_signature_flamie]sticker" "1" + "[krakow2017_signature_flamie_foil]sticker" "1" + "[krakow2017_signature_flamie_gold]sticker" "1" + "[krakow2017_signature_guardian]sticker" "1" + "[krakow2017_signature_guardian_foil]sticker" "1" + "[krakow2017_signature_guardian_gold]sticker" "1" + "[krakow2017_signature_s1mple]sticker" "1" + "[krakow2017_signature_s1mple_foil]sticker" "1" + "[krakow2017_signature_s1mple_gold]sticker" "1" + "[krakow2017_signature_seized]sticker" "1" + "[krakow2017_signature_seized_foil]sticker" "1" + "[krakow2017_signature_seized_gold]sticker" "1" + } + "krakow2017_signatures_gamb" + { + "[krakow2017_signature_adrenkz]sticker" "1" + "[krakow2017_signature_adrenkz_foil]sticker" "1" + "[krakow2017_signature_adrenkz_gold]sticker" "1" + "[krakow2017_signature_dosia]sticker" "1" + "[krakow2017_signature_dosia_foil]sticker" "1" + "[krakow2017_signature_dosia_gold]sticker" "1" + "[krakow2017_signature_hobbit]sticker" "1" + "[krakow2017_signature_hobbit_foil]sticker" "1" + "[krakow2017_signature_hobbit_gold]sticker" "1" + "[krakow2017_signature_mou]sticker" "1" + "[krakow2017_signature_mou_foil]sticker" "1" + "[krakow2017_signature_mou_gold]sticker" "1" + "[krakow2017_signature_zeus]sticker" "1" + "[krakow2017_signature_zeus_foil]sticker" "1" + "[krakow2017_signature_zeus_gold]sticker" "1" + } + "krakow2017_signatures_nor" + { + "[krakow2017_signature_aizy]sticker" "1" + "[krakow2017_signature_aizy_foil]sticker" "1" + "[krakow2017_signature_aizy_gold]sticker" "1" + "[krakow2017_signature_cajunb]sticker" "1" + "[krakow2017_signature_cajunb_foil]sticker" "1" + "[krakow2017_signature_cajunb_gold]sticker" "1" + "[krakow2017_signature_k0nfig]sticker" "1" + "[krakow2017_signature_k0nfig_foil]sticker" "1" + "[krakow2017_signature_k0nfig_gold]sticker" "1" + "[krakow2017_signature_magisk]sticker" "1" + "[krakow2017_signature_magisk_foil]sticker" "1" + "[krakow2017_signature_magisk_gold]sticker" "1" + "[krakow2017_signature_msl]sticker" "1" + "[krakow2017_signature_msl_foil]sticker" "1" + "[krakow2017_signature_msl_gold]sticker" "1" + } + "krakow2017_signatures_faze" + { + "[krakow2017_signature_allu]sticker" "1" + "[krakow2017_signature_allu_foil]sticker" "1" + "[krakow2017_signature_allu_gold]sticker" "1" + "[krakow2017_signature_karrigan]sticker" "1" + "[krakow2017_signature_karrigan_foil]sticker" "1" + "[krakow2017_signature_karrigan_gold]sticker" "1" + "[krakow2017_signature_kioshima]sticker" "1" + "[krakow2017_signature_kioshima_foil]sticker" "1" + "[krakow2017_signature_kioshima_gold]sticker" "1" + "[krakow2017_signature_niko]sticker" "1" + "[krakow2017_signature_niko_foil]sticker" "1" + "[krakow2017_signature_niko_gold]sticker" "1" + "[krakow2017_signature_rain]sticker" "1" + "[krakow2017_signature_rain_foil]sticker" "1" + "[krakow2017_signature_rain_gold]sticker" "1" + } + "krakow2017_signatures_mss" + { + "[krakow2017_signature_chrisj]sticker" "1" + "[krakow2017_signature_chrisj_foil]sticker" "1" + "[krakow2017_signature_chrisj_gold]sticker" "1" + "[krakow2017_signature_denis]sticker" "1" + "[krakow2017_signature_denis_foil]sticker" "1" + "[krakow2017_signature_denis_gold]sticker" "1" + "[krakow2017_signature_lowel]sticker" "1" + "[krakow2017_signature_lowel_foil]sticker" "1" + "[krakow2017_signature_lowel_gold]sticker" "1" + "[krakow2017_signature_oskar]sticker" "1" + "[krakow2017_signature_oskar_foil]sticker" "1" + "[krakow2017_signature_oskar_gold]sticker" "1" + "[krakow2017_signature_ropz]sticker" "1" + "[krakow2017_signature_ropz_foil]sticker" "1" + "[krakow2017_signature_ropz_gold]sticker" "1" + } + "krakow2017_signatures_g2" + { + "[krakow2017_signature_apex]sticker" "1" + "[krakow2017_signature_apex_foil]sticker" "1" + "[krakow2017_signature_apex_gold]sticker" "1" + "[krakow2017_signature_bodyy]sticker" "1" + "[krakow2017_signature_bodyy_foil]sticker" "1" + "[krakow2017_signature_bodyy_gold]sticker" "1" + "[krakow2017_signature_kennys]sticker" "1" + "[krakow2017_signature_kennys_foil]sticker" "1" + "[krakow2017_signature_kennys_gold]sticker" "1" + "[krakow2017_signature_nbk]sticker" "1" + "[krakow2017_signature_nbk_foil]sticker" "1" + "[krakow2017_signature_nbk_gold]sticker" "1" + "[krakow2017_signature_shox]sticker" "1" + "[krakow2017_signature_shox_foil]sticker" "1" + "[krakow2017_signature_shox_gold]sticker" "1" + } + "krakow2017_signatures_big" + { + "[krakow2017_signature_gobb]sticker" "1" + "[krakow2017_signature_gobb_foil]sticker" "1" + "[krakow2017_signature_gobb_gold]sticker" "1" + "[krakow2017_signature_keev]sticker" "1" + "[krakow2017_signature_keev_foil]sticker" "1" + "[krakow2017_signature_keev_gold]sticker" "1" + "[krakow2017_signature_legija]sticker" "1" + "[krakow2017_signature_legija_foil]sticker" "1" + "[krakow2017_signature_legija_gold]sticker" "1" + "[krakow2017_signature_nex]sticker" "1" + "[krakow2017_signature_nex_foil]sticker" "1" + "[krakow2017_signature_nex_gold]sticker" "1" + "[krakow2017_signature_tabsen]sticker" "1" + "[krakow2017_signature_tabsen_foil]sticker" "1" + "[krakow2017_signature_tabsen_gold]sticker" "1" + } + "krakow2017_signatures_c9" + { + "[krakow2017_signature_autimatic]sticker" "1" + "[krakow2017_signature_autimatic_foil]sticker" "1" + "[krakow2017_signature_autimatic_gold]sticker" "1" + "[krakow2017_signature_nothing]sticker" "1" + "[krakow2017_signature_nothing_foil]sticker" "1" + "[krakow2017_signature_nothing_gold]sticker" "1" + "[krakow2017_signature_shroud]sticker" "1" + "[krakow2017_signature_shroud_foil]sticker" "1" + "[krakow2017_signature_shroud_gold]sticker" "1" + "[krakow2017_signature_skadoodle]sticker" "1" + "[krakow2017_signature_skadoodle_foil]sticker" "1" + "[krakow2017_signature_skadoodle_gold]sticker" "1" + "[krakow2017_signature_stewie2k]sticker" "1" + "[krakow2017_signature_stewie2k_foil]sticker" "1" + "[krakow2017_signature_stewie2k_gold]sticker" "1" + } + "krakow2017_signatures_penta" + { + "[krakow2017_signature_hs]sticker" "1" + "[krakow2017_signature_hs_foil]sticker" "1" + "[krakow2017_signature_hs_gold]sticker" "1" + "[krakow2017_signature_innocent]sticker" "1" + "[krakow2017_signature_innocent_foil]sticker" "1" + "[krakow2017_signature_innocent_gold]sticker" "1" + "[krakow2017_signature_krystal]sticker" "1" + "[krakow2017_signature_krystal_foil]sticker" "1" + "[krakow2017_signature_krystal_gold]sticker" "1" + "[krakow2017_signature_sunny]sticker" "1" + "[krakow2017_signature_sunny_foil]sticker" "1" + "[krakow2017_signature_sunny_gold]sticker" "1" + "[krakow2017_signature_zehn]sticker" "1" + "[krakow2017_signature_zehn_foil]sticker" "1" + "[krakow2017_signature_zehn_gold]sticker" "1" + } + "krakow2017_signatures_flip" + { + "[krakow2017_signature_b1ad3]sticker" "1" + "[krakow2017_signature_b1ad3_foil]sticker" "1" + "[krakow2017_signature_b1ad3_gold]sticker" "1" + "[krakow2017_signature_electronic]sticker" "1" + "[krakow2017_signature_electronic_foil]sticker" "1" + "[krakow2017_signature_electronic_gold]sticker" "1" + "[krakow2017_signature_markeloff]sticker" "1" + "[krakow2017_signature_markeloff_foil]sticker" "1" + "[krakow2017_signature_markeloff_gold]sticker" "1" + "[krakow2017_signature_waylander]sticker" "1" + "[krakow2017_signature_waylander_foil]sticker" "1" + "[krakow2017_signature_waylander_gold]sticker" "1" + "[krakow2017_signature_worldedit]sticker" "1" + "[krakow2017_signature_worldedit_foil]sticker" "1" + "[krakow2017_signature_worldedit_gold]sticker" "1" + } + "krakow2017_signatures_imt" + { + "[krakow2017_signature_boltz]sticker" "1" + "[krakow2017_signature_boltz_foil]sticker" "1" + "[krakow2017_signature_boltz_gold]sticker" "1" + "[krakow2017_signature_hen1]sticker" "1" + "[krakow2017_signature_hen1_foil]sticker" "1" + "[krakow2017_signature_hen1_gold]sticker" "1" + "[krakow2017_signature_kngv]sticker" "1" + "[krakow2017_signature_kngv_foil]sticker" "1" + "[krakow2017_signature_kngv_gold]sticker" "1" + "[krakow2017_signature_lucas1]sticker" "1" + "[krakow2017_signature_lucas1_foil]sticker" "1" + "[krakow2017_signature_lucas1_gold]sticker" "1" + "[krakow2017_signature_steel]sticker" "1" + "[krakow2017_signature_steel_foil]sticker" "1" + "[krakow2017_signature_steel_gold]sticker" "1" + } + "krakow2017_signatures_vega" + { + "[krakow2017_signature_chopper]sticker" "1" + "[krakow2017_signature_chopper_foil]sticker" "1" + "[krakow2017_signature_chopper_gold]sticker" "1" + "[krakow2017_signature_hutji]sticker" "1" + "[krakow2017_signature_hutji_foil]sticker" "1" + "[krakow2017_signature_hutji_gold]sticker" "1" + "[krakow2017_signature_jr]sticker" "1" + "[krakow2017_signature_jr_foil]sticker" "1" + "[krakow2017_signature_jr_gold]sticker" "1" + "[krakow2017_signature_keshandr]sticker" "1" + "[krakow2017_signature_keshandr_foil]sticker" "1" + "[krakow2017_signature_keshandr_gold]sticker" "1" + "[krakow2017_signature_mir]sticker" "1" + "[krakow2017_signature_mir_foil]sticker" "1" + "[krakow2017_signature_mir_gold]sticker" "1" + } + "crate_signature_pack_krakow2017_group_1_rare" + { + "[krakow2017_signature_chrisj]sticker" "1" + "[krakow2017_signature_denis]sticker" "1" + "[krakow2017_signature_lowel]sticker" "1" + "[krakow2017_signature_oskar]sticker" "1" + "[krakow2017_signature_ropz]sticker" "1" + "[krakow2017_signature_apex]sticker" "1" + "[krakow2017_signature_bodyy]sticker" "1" + "[krakow2017_signature_kennys]sticker" "1" + "[krakow2017_signature_nbk]sticker" "1" + "[krakow2017_signature_shox]sticker" "1" + "[krakow2017_signature_gobb]sticker" "1" + "[krakow2017_signature_keev]sticker" "1" + "[krakow2017_signature_legija]sticker" "1" + "[krakow2017_signature_nex]sticker" "1" + "[krakow2017_signature_tabsen]sticker" "1" + "[krakow2017_signature_autimatic]sticker" "1" + "[krakow2017_signature_nothing]sticker" "1" + "[krakow2017_signature_shroud]sticker" "1" + "[krakow2017_signature_skadoodle]sticker" "1" + "[krakow2017_signature_stewie2k]sticker" "1" + "[krakow2017_signature_hs]sticker" "1" + "[krakow2017_signature_innocent]sticker" "1" + "[krakow2017_signature_krystal]sticker" "1" + "[krakow2017_signature_sunny]sticker" "1" + "[krakow2017_signature_zehn]sticker" "1" + "[krakow2017_signature_b1ad3]sticker" "1" + "[krakow2017_signature_electronic]sticker" "1" + "[krakow2017_signature_markeloff]sticker" "1" + "[krakow2017_signature_waylander]sticker" "1" + "[krakow2017_signature_worldedit]sticker" "1" + "[krakow2017_signature_boltz]sticker" "1" + "[krakow2017_signature_hen1]sticker" "1" + "[krakow2017_signature_kngv]sticker" "1" + "[krakow2017_signature_lucas1]sticker" "1" + "[krakow2017_signature_steel]sticker" "1" + "[krakow2017_signature_chopper]sticker" "1" + "[krakow2017_signature_hutji]sticker" "1" + "[krakow2017_signature_jr]sticker" "1" + "[krakow2017_signature_keshandr]sticker" "1" + "[krakow2017_signature_mir]sticker" "1" + } + "crate_signature_pack_krakow2017_group_1_foil" + { + "[krakow2017_signature_chrisj_foil]sticker" "1" + "[krakow2017_signature_denis_foil]sticker" "1" + "[krakow2017_signature_lowel_foil]sticker" "1" + "[krakow2017_signature_oskar_foil]sticker" "1" + "[krakow2017_signature_ropz_foil]sticker" "1" + "[krakow2017_signature_apex_foil]sticker" "1" + "[krakow2017_signature_bodyy_foil]sticker" "1" + "[krakow2017_signature_kennys_foil]sticker" "1" + "[krakow2017_signature_nbk_foil]sticker" "1" + "[krakow2017_signature_shox_foil]sticker" "1" + "[krakow2017_signature_gobb_foil]sticker" "1" + "[krakow2017_signature_keev_foil]sticker" "1" + "[krakow2017_signature_legija_foil]sticker" "1" + "[krakow2017_signature_nex_foil]sticker" "1" + "[krakow2017_signature_tabsen_foil]sticker" "1" + "[krakow2017_signature_autimatic_foil]sticker" "1" + "[krakow2017_signature_nothing_foil]sticker" "1" + "[krakow2017_signature_shroud_foil]sticker" "1" + "[krakow2017_signature_skadoodle_foil]sticker" "1" + "[krakow2017_signature_stewie2k_foil]sticker" "1" + "[krakow2017_signature_hs_foil]sticker" "1" + "[krakow2017_signature_innocent_foil]sticker" "1" + "[krakow2017_signature_krystal_foil]sticker" "1" + "[krakow2017_signature_sunny_foil]sticker" "1" + "[krakow2017_signature_zehn_foil]sticker" "1" + "[krakow2017_signature_b1ad3_foil]sticker" "1" + "[krakow2017_signature_electronic_foil]sticker" "1" + "[krakow2017_signature_markeloff_foil]sticker" "1" + "[krakow2017_signature_waylander_foil]sticker" "1" + "[krakow2017_signature_worldedit_foil]sticker" "1" + "[krakow2017_signature_boltz_foil]sticker" "1" + "[krakow2017_signature_hen1_foil]sticker" "1" + "[krakow2017_signature_kngv_foil]sticker" "1" + "[krakow2017_signature_lucas1_foil]sticker" "1" + "[krakow2017_signature_steel_foil]sticker" "1" + "[krakow2017_signature_chopper_foil]sticker" "1" + "[krakow2017_signature_hutji_foil]sticker" "1" + "[krakow2017_signature_jr_foil]sticker" "1" + "[krakow2017_signature_keshandr_foil]sticker" "1" + "[krakow2017_signature_mir_foil]sticker" "1" + } + "crate_signature_pack_krakow2017_group_1_gold" + { + "[krakow2017_signature_chrisj_gold]sticker" "1" + "[krakow2017_signature_denis_gold]sticker" "1" + "[krakow2017_signature_lowel_gold]sticker" "1" + "[krakow2017_signature_oskar_gold]sticker" "1" + "[krakow2017_signature_ropz_gold]sticker" "1" + "[krakow2017_signature_apex_gold]sticker" "1" + "[krakow2017_signature_bodyy_gold]sticker" "1" + "[krakow2017_signature_kennys_gold]sticker" "1" + "[krakow2017_signature_nbk_gold]sticker" "1" + "[krakow2017_signature_shox_gold]sticker" "1" + "[krakow2017_signature_gobb_gold]sticker" "1" + "[krakow2017_signature_keev_gold]sticker" "1" + "[krakow2017_signature_legija_gold]sticker" "1" + "[krakow2017_signature_nex_gold]sticker" "1" + "[krakow2017_signature_tabsen_gold]sticker" "1" + "[krakow2017_signature_autimatic_gold]sticker" "1" + "[krakow2017_signature_nothing_gold]sticker" "1" + "[krakow2017_signature_shroud_gold]sticker" "1" + "[krakow2017_signature_skadoodle_gold]sticker" "1" + "[krakow2017_signature_stewie2k_gold]sticker" "1" + "[krakow2017_signature_hs_gold]sticker" "1" + "[krakow2017_signature_innocent_gold]sticker" "1" + "[krakow2017_signature_krystal_gold]sticker" "1" + "[krakow2017_signature_sunny_gold]sticker" "1" + "[krakow2017_signature_zehn_gold]sticker" "1" + "[krakow2017_signature_b1ad3_gold]sticker" "1" + "[krakow2017_signature_electronic_gold]sticker" "1" + "[krakow2017_signature_markeloff_gold]sticker" "1" + "[krakow2017_signature_waylander_gold]sticker" "1" + "[krakow2017_signature_worldedit_gold]sticker" "1" + "[krakow2017_signature_boltz_gold]sticker" "1" + "[krakow2017_signature_hen1_gold]sticker" "1" + "[krakow2017_signature_kngv_gold]sticker" "1" + "[krakow2017_signature_lucas1_gold]sticker" "1" + "[krakow2017_signature_steel_gold]sticker" "1" + "[krakow2017_signature_chopper_gold]sticker" "1" + "[krakow2017_signature_hutji_gold]sticker" "1" + "[krakow2017_signature_jr_gold]sticker" "1" + "[krakow2017_signature_keshandr_gold]sticker" "1" + "[krakow2017_signature_mir_gold]sticker" "1" + } + "crate_signature_pack_krakow2017_group_2_rare" + { + "[krakow2017_signature_device]sticker" "1" + "[krakow2017_signature_dupreeh]sticker" "1" + "[krakow2017_signature_gla1ve]sticker" "1" + "[krakow2017_signature_kjaerbye]sticker" "1" + "[krakow2017_signature_xyp9x]sticker" "1" + "[krakow2017_signature_byali]sticker" "1" + "[krakow2017_signature_neo]sticker" "1" + "[krakow2017_signature_pasha]sticker" "1" + "[krakow2017_signature_snax]sticker" "1" + "[krakow2017_signature_taz]sticker" "1" + "[krakow2017_signature_dennis]sticker" "1" + "[krakow2017_signature_flusha]sticker" "1" + "[krakow2017_signature_jw]sticker" "1" + "[krakow2017_signature_krimz]sticker" "1" + "[krakow2017_signature_olofmeister]sticker" "1" + "[krakow2017_signature_coldzera]sticker" "1" + "[krakow2017_signature_fallen]sticker" "1" + "[krakow2017_signature_felps]sticker" "1" + "[krakow2017_signature_fer]sticker" "1" + "[krakow2017_signature_taco]sticker" "1" + "[krakow2017_signature_edward]sticker" "1" + "[krakow2017_signature_flamie]sticker" "1" + "[krakow2017_signature_guardian]sticker" "1" + "[krakow2017_signature_s1mple]sticker" "1" + "[krakow2017_signature_seized]sticker" "1" + "[krakow2017_signature_adrenkz]sticker" "1" + "[krakow2017_signature_dosia]sticker" "1" + "[krakow2017_signature_hobbit]sticker" "1" + "[krakow2017_signature_mou]sticker" "1" + "[krakow2017_signature_zeus]sticker" "1" + "[krakow2017_signature_aizy]sticker" "1" + "[krakow2017_signature_cajunb]sticker" "1" + "[krakow2017_signature_k0nfig]sticker" "1" + "[krakow2017_signature_magisk]sticker" "1" + "[krakow2017_signature_msl]sticker" "1" + "[krakow2017_signature_allu]sticker" "1" + "[krakow2017_signature_karrigan]sticker" "1" + "[krakow2017_signature_kioshima]sticker" "1" + "[krakow2017_signature_niko]sticker" "1" + "[krakow2017_signature_rain]sticker" "1" + } + "crate_signature_pack_krakow2017_group_2_foil" + { + "[krakow2017_signature_device_foil]sticker" "1" + "[krakow2017_signature_dupreeh_foil]sticker" "1" + "[krakow2017_signature_gla1ve_foil]sticker" "1" + "[krakow2017_signature_kjaerbye_foil]sticker" "1" + "[krakow2017_signature_xyp9x_foil]sticker" "1" + "[krakow2017_signature_byali_foil]sticker" "1" + "[krakow2017_signature_neo_foil]sticker" "1" + "[krakow2017_signature_pasha_foil]sticker" "1" + "[krakow2017_signature_snax_foil]sticker" "1" + "[krakow2017_signature_taz_foil]sticker" "1" + "[krakow2017_signature_dennis_foil]sticker" "1" + "[krakow2017_signature_flusha_foil]sticker" "1" + "[krakow2017_signature_jw_foil]sticker" "1" + "[krakow2017_signature_krimz_foil]sticker" "1" + "[krakow2017_signature_olofmeister_foil]sticker" "1" + "[krakow2017_signature_coldzera_foil]sticker" "1" + "[krakow2017_signature_fallen_foil]sticker" "1" + "[krakow2017_signature_felps_foil]sticker" "1" + "[krakow2017_signature_fer_foil]sticker" "1" + "[krakow2017_signature_taco_foil]sticker" "1" + "[krakow2017_signature_edward_foil]sticker" "1" + "[krakow2017_signature_flamie_foil]sticker" "1" + "[krakow2017_signature_guardian_foil]sticker" "1" + "[krakow2017_signature_s1mple_foil]sticker" "1" + "[krakow2017_signature_seized_foil]sticker" "1" + "[krakow2017_signature_adrenkz_foil]sticker" "1" + "[krakow2017_signature_dosia_foil]sticker" "1" + "[krakow2017_signature_hobbit_foil]sticker" "1" + "[krakow2017_signature_mou_foil]sticker" "1" + "[krakow2017_signature_zeus_foil]sticker" "1" + "[krakow2017_signature_aizy_foil]sticker" "1" + "[krakow2017_signature_cajunb_foil]sticker" "1" + "[krakow2017_signature_k0nfig_foil]sticker" "1" + "[krakow2017_signature_magisk_foil]sticker" "1" + "[krakow2017_signature_msl_foil]sticker" "1" + "[krakow2017_signature_allu_foil]sticker" "1" + "[krakow2017_signature_karrigan_foil]sticker" "1" + "[krakow2017_signature_kioshima_foil]sticker" "1" + "[krakow2017_signature_niko_foil]sticker" "1" + "[krakow2017_signature_rain_foil]sticker" "1" + } + "crate_signature_pack_krakow2017_group_2_gold" + { + "[krakow2017_signature_device_gold]sticker" "1" + "[krakow2017_signature_dupreeh_gold]sticker" "1" + "[krakow2017_signature_gla1ve_gold]sticker" "1" + "[krakow2017_signature_kjaerbye_gold]sticker" "1" + "[krakow2017_signature_xyp9x_gold]sticker" "1" + "[krakow2017_signature_byali_gold]sticker" "1" + "[krakow2017_signature_neo_gold]sticker" "1" + "[krakow2017_signature_pasha_gold]sticker" "1" + "[krakow2017_signature_snax_gold]sticker" "1" + "[krakow2017_signature_taz_gold]sticker" "1" + "[krakow2017_signature_dennis_gold]sticker" "1" + "[krakow2017_signature_flusha_gold]sticker" "1" + "[krakow2017_signature_jw_gold]sticker" "1" + "[krakow2017_signature_krimz_gold]sticker" "1" + "[krakow2017_signature_olofmeister_gold]sticker" "1" + "[krakow2017_signature_coldzera_gold]sticker" "1" + "[krakow2017_signature_fallen_gold]sticker" "1" + "[krakow2017_signature_felps_gold]sticker" "1" + "[krakow2017_signature_fer_gold]sticker" "1" + "[krakow2017_signature_taco_gold]sticker" "1" + "[krakow2017_signature_edward_gold]sticker" "1" + "[krakow2017_signature_flamie_gold]sticker" "1" + "[krakow2017_signature_guardian_gold]sticker" "1" + "[krakow2017_signature_s1mple_gold]sticker" "1" + "[krakow2017_signature_seized_gold]sticker" "1" + "[krakow2017_signature_adrenkz_gold]sticker" "1" + "[krakow2017_signature_dosia_gold]sticker" "1" + "[krakow2017_signature_hobbit_gold]sticker" "1" + "[krakow2017_signature_mou_gold]sticker" "1" + "[krakow2017_signature_zeus_gold]sticker" "1" + "[krakow2017_signature_aizy_gold]sticker" "1" + "[krakow2017_signature_cajunb_gold]sticker" "1" + "[krakow2017_signature_k0nfig_gold]sticker" "1" + "[krakow2017_signature_magisk_gold]sticker" "1" + "[krakow2017_signature_msl_gold]sticker" "1" + "[krakow2017_signature_allu_gold]sticker" "1" + "[krakow2017_signature_karrigan_gold]sticker" "1" + "[krakow2017_signature_kioshima_gold]sticker" "1" + "[krakow2017_signature_niko_gold]sticker" "1" + "[krakow2017_signature_rain_gold]sticker" "1" + } + "crate_signature_pack_krakow2017_group_players_collection_1" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_krakow2017_group_1_rare" "1" + "crate_signature_pack_krakow2017_group_1_foil" "1" + "crate_signature_pack_krakow2017_group_1_gold" "1" + } + "crate_signature_pack_krakow2017_group_players_collection_2" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_krakow2017_group_2_rare" "1" + "crate_signature_pack_krakow2017_group_2_foil" "1" + "crate_signature_pack_krakow2017_group_2_gold" "1" + } + "crate_krakow2017_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_krakow2017_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_krakow2017_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_krakow2017_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_krakow2017_promo_de_cache" + { + "set_cache" "1" + } + "crate_krakow2017_promo_de_train" + { + "set_train" "1" + } + "crate_krakow2017_promo_de_nuke" + { + "set_nuke" "1" + } + } + "items" + { + "4357" + { + "item_name" "#StoreItem_krakow2017_team_astr_sticker" + "name" "crate_sticker_pack_krakow2017_astr" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/astr" + "loot_list_name" "krakow2017_rare_astr" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4358" + { + "item_name" "#StoreItem_krakow2017_team_vp_sticker" + "name" "crate_sticker_pack_krakow2017_vp" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/vp" + "loot_list_name" "krakow2017_rare_vp" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4359" + { + "item_name" "#StoreItem_krakow2017_team_fntc_sticker" + "name" "crate_sticker_pack_krakow2017_fntc" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/fntc" + "loot_list_name" "krakow2017_rare_fntc" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4360" + { + "item_name" "#StoreItem_krakow2017_team_sk_sticker" + "name" "crate_sticker_pack_krakow2017_sk" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/sk" + "loot_list_name" "krakow2017_rare_sk" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4361" + { + "item_name" "#StoreItem_krakow2017_team_navi_sticker" + "name" "crate_sticker_pack_krakow2017_navi" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/navi" + "loot_list_name" "krakow2017_rare_navi" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4362" + { + "item_name" "#StoreItem_krakow2017_team_gamb_sticker" + "name" "crate_sticker_pack_krakow2017_gamb" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/gamb" + "loot_list_name" "krakow2017_rare_gamb" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4363" + { + "item_name" "#StoreItem_krakow2017_team_nor_sticker" + "name" "crate_sticker_pack_krakow2017_nor" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/nor" + "loot_list_name" "krakow2017_rare_nor" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4364" + { + "item_name" "#StoreItem_krakow2017_team_faze_sticker" + "name" "crate_sticker_pack_krakow2017_faze" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/faze" + "loot_list_name" "krakow2017_rare_faze" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4365" + { + "item_name" "#StoreItem_krakow2017_team_mss_sticker" + "name" "crate_sticker_pack_krakow2017_mss" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/mss" + "loot_list_name" "krakow2017_rare_mss" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4366" + { + "item_name" "#StoreItem_krakow2017_team_g2_sticker" + "name" "crate_sticker_pack_krakow2017_g2" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/g2" + "loot_list_name" "krakow2017_rare_g2" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4367" + { + "item_name" "#StoreItem_krakow2017_team_big_sticker" + "name" "crate_sticker_pack_krakow2017_big" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/big" + "loot_list_name" "krakow2017_rare_big" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4368" + { + "item_name" "#StoreItem_krakow2017_team_c9_sticker" + "name" "crate_sticker_pack_krakow2017_c9" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/c9" + "loot_list_name" "krakow2017_rare_c9" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4369" + { + "item_name" "#StoreItem_krakow2017_team_penta_sticker" + "name" "crate_sticker_pack_krakow2017_penta" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/penta" + "loot_list_name" "krakow2017_rare_penta" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4370" + { + "item_name" "#StoreItem_krakow2017_team_flip_sticker" + "name" "crate_sticker_pack_krakow2017_flip" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/flip" + "loot_list_name" "krakow2017_rare_flip" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4371" + { + "item_name" "#StoreItem_krakow2017_team_imt_sticker" + "name" "crate_sticker_pack_krakow2017_imt" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/imt" + "loot_list_name" "krakow2017_rare_imt" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4372" + { + "item_name" "#StoreItem_krakow2017_team_vega_sticker" + "name" "crate_sticker_pack_krakow2017_vega" + "item_description" "#EventItemDesc_krakow2017_sticker_team" + "image_inventory" "econ/stickers/krakow2017/vega" + "loot_list_name" "krakow2017_rare_vega" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4373" + { + "item_name" "#StoreItem_krakow2017_team_pgl_sticker" + "name" "crate_sticker_pack_krakow2017_pgl" + "item_description" "#EventItemDesc_krakow2017_sticker_org" + "image_inventory" "econ/stickers/krakow2017/pgl" + "loot_list_name" "krakow2017_rare_pgl" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4374" + { + "item_name" "#StoreItem_krakow2017_team_astr_graffiti" + "name" "crate_graffiti_pack_krakow2017_astr" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/astr_graffiti" + "loot_list_name" "krakow2017_graffiti_astr" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4375" + { + "item_name" "#StoreItem_krakow2017_team_vp_graffiti" + "name" "crate_graffiti_pack_krakow2017_vp" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/vp_graffiti" + "loot_list_name" "krakow2017_graffiti_vp" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4376" + { + "item_name" "#StoreItem_krakow2017_team_fntc_graffiti" + "name" "crate_graffiti_pack_krakow2017_fntc" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/fntc_graffiti" + "loot_list_name" "krakow2017_graffiti_fntc" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4377" + { + "item_name" "#StoreItem_krakow2017_team_sk_graffiti" + "name" "crate_graffiti_pack_krakow2017_sk" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/sk_graffiti" + "loot_list_name" "krakow2017_graffiti_sk" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4378" + { + "item_name" "#StoreItem_krakow2017_team_navi_graffiti" + "name" "crate_graffiti_pack_krakow2017_navi" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/navi_graffiti" + "loot_list_name" "krakow2017_graffiti_navi" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4379" + { + "item_name" "#StoreItem_krakow2017_team_gamb_graffiti" + "name" "crate_graffiti_pack_krakow2017_gamb" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/gamb_graffiti" + "loot_list_name" "krakow2017_graffiti_gamb" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4380" + { + "item_name" "#StoreItem_krakow2017_team_nor_graffiti" + "name" "crate_graffiti_pack_krakow2017_nor" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/nor_graffiti" + "loot_list_name" "krakow2017_graffiti_nor" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4381" + { + "item_name" "#StoreItem_krakow2017_team_faze_graffiti" + "name" "crate_graffiti_pack_krakow2017_faze" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/faze_graffiti" + "loot_list_name" "krakow2017_graffiti_faze" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4382" + { + "item_name" "#StoreItem_krakow2017_team_mss_graffiti" + "name" "crate_graffiti_pack_krakow2017_mss" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/mss_graffiti" + "loot_list_name" "krakow2017_graffiti_mss" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4383" + { + "item_name" "#StoreItem_krakow2017_team_g2_graffiti" + "name" "crate_graffiti_pack_krakow2017_g2" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/g2_graffiti" + "loot_list_name" "krakow2017_graffiti_g2" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4384" + { + "item_name" "#StoreItem_krakow2017_team_big_graffiti" + "name" "crate_graffiti_pack_krakow2017_big" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/big_graffiti" + "loot_list_name" "krakow2017_graffiti_big" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4385" + { + "item_name" "#StoreItem_krakow2017_team_c9_graffiti" + "name" "crate_graffiti_pack_krakow2017_c9" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/c9_graffiti" + "loot_list_name" "krakow2017_graffiti_c9" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4386" + { + "item_name" "#StoreItem_krakow2017_team_penta_graffiti" + "name" "crate_graffiti_pack_krakow2017_penta" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/penta_graffiti" + "loot_list_name" "krakow2017_graffiti_penta" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4387" + { + "item_name" "#StoreItem_krakow2017_team_flip_graffiti" + "name" "crate_graffiti_pack_krakow2017_flip" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/flip_graffiti" + "loot_list_name" "krakow2017_graffiti_flip" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4388" + { + "item_name" "#StoreItem_krakow2017_team_imt_graffiti" + "name" "crate_graffiti_pack_krakow2017_imt" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/imt_graffiti" + "loot_list_name" "krakow2017_graffiti_imt" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4389" + { + "item_name" "#StoreItem_krakow2017_team_vega_graffiti" + "name" "crate_graffiti_pack_krakow2017_vega" + "item_description" "#EventItemDesc_krakow2017_graffiti_team" + "image_inventory" "econ/stickers/krakow2017/vega_graffiti" + "loot_list_name" "krakow2017_graffiti_vega" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4390" + { + "item_name" "#StoreItem_krakow2017_team_pgl_graffiti" + "name" "crate_graffiti_pack_krakow2017_pgl" + "item_description" "#EventItemDesc_krakow2017_graffiti_org" + "image_inventory" "econ/stickers/krakow2017/pgl_graffiti" + "loot_list_name" "krakow2017_graffiti_pgl" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4391" + { + "item_name" "#CSGO_crate_sticker_pack_krakow2017_legends" + "name" "crate_sticker_pack_krakow2017_legends" + "item_description" "#CSGO_crate_sticker_pack_krakow2017_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_krakow2017_01" + "prefab" "krakow2017_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "209" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_krakow2017_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_krakow2017_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4392" + { + "item_name" "#CSGO_crate_sticker_pack_krakow2017_challengers" + "name" "crate_sticker_pack_krakow2017_challengers" + "item_description" "#CSGO_crate_sticker_pack_krakow2017_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_krakow2017_02" + "prefab" "krakow2017_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "210" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_krakow2017_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_krakow2017_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4393" + { + "item_name" "#CSGO_crate_signature_pack_krakow2017_group_1" + "name" "crate_signature_pack_krakow2017_group_1" + "item_description" "#CSGO_crate_signature_pack_krakow2017_group_1_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_krakow2017_group_1" + "prefab" "krakow2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "211" + } + } + } + "4394" + { + "item_name" "#CSGO_crate_signature_pack_krakow2017_group_2" + "name" "crate_signature_pack_krakow2017_group_2" + "item_description" "#CSGO_crate_signature_pack_krakow2017_group_2_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_krakow2017_group_2" + "prefab" "krakow2017_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "212" + } + } + } + "4395" + { + "item_name" "#CSGO_crate_krakow2017_bundle_of_all" + "name" "crate_krakow2017_bundle_of_all" + "item_description" "#CSGO_crate_krakow2017_bundle_of_all_desc" + "image_inventory" "econ/weapon_cases/krakow2017_bundleofall" + "loot_list_name" "krakow2017_bundle_of_all" + "prefab" "krakow2017_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4396" + { + "item_name" "#CSGO_crate_krakow2017_promo_de_inferno" + "name" "crate_krakow2017_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_krakow2017_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "213" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4397" + { + "item_name" "#CSGO_crate_krakow2017_promo_de_mirage" + "name" "crate_krakow2017_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_krakow2017_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "214" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4398" + { + "item_name" "#CSGO_crate_krakow2017_promo_de_cbble" + "name" "crate_krakow2017_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_krakow2017_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "215" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4399" + { + "item_name" "#CSGO_crate_krakow2017_promo_de_overpass" + "name" "crate_krakow2017_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_krakow2017_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "216" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4400" + { + "item_name" "#CSGO_crate_krakow2017_promo_de_cache" + "name" "crate_krakow2017_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_krakow2017_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "217" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4401" + { + "item_name" "#CSGO_crate_krakow2017_promo_de_train" + "name" "crate_krakow2017_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_krakow2017_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "218" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4402" + { + "item_name" "#CSGO_crate_krakow2017_promo_de_nuke" + "name" "crate_krakow2017_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_krakow2017_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "219" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "12" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "2063" + { + "name" "krakow2017_team_astr" + "item_name" "#StickerKit_krakow2017_team_astr" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/astr" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "60" + } + "2064" + { + "name" "krakow2017_team_astr_holo" + "item_name" "#StickerKit_krakow2017_team_astr_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "60" + } + "2065" + { + "name" "krakow2017_team_astr_foil" + "item_name" "#StickerKit_krakow2017_team_astr_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "60" + } + "2066" + { + "name" "krakow2017_team_astr_gold" + "item_name" "#StickerKit_krakow2017_team_astr_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "60" + } + "2067" + { + "name" "krakow2017_team_vp" + "item_name" "#StickerKit_krakow2017_team_vp" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vp" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "31" + } + "2068" + { + "name" "krakow2017_team_vp_holo" + "item_name" "#StickerKit_krakow2017_team_vp_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "31" + } + "2069" + { + "name" "krakow2017_team_vp_foil" + "item_name" "#StickerKit_krakow2017_team_vp_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "31" + } + "2070" + { + "name" "krakow2017_team_vp_gold" + "item_name" "#StickerKit_krakow2017_team_vp_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vp_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "31" + } + "2071" + { + "name" "krakow2017_team_fntc" + "item_name" "#StickerKit_krakow2017_team_fntc" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/fntc" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "6" + } + "2072" + { + "name" "krakow2017_team_fntc_holo" + "item_name" "#StickerKit_krakow2017_team_fntc_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "6" + } + "2073" + { + "name" "krakow2017_team_fntc_foil" + "item_name" "#StickerKit_krakow2017_team_fntc_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "6" + } + "2074" + { + "name" "krakow2017_team_fntc_gold" + "item_name" "#StickerKit_krakow2017_team_fntc_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "6" + } + "2075" + { + "name" "krakow2017_team_sk" + "item_name" "#StickerKit_krakow2017_team_sk" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/sk" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "14" + } + "2076" + { + "name" "krakow2017_team_sk_holo" + "item_name" "#StickerKit_krakow2017_team_sk_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/sk_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "14" + } + "2077" + { + "name" "krakow2017_team_sk_foil" + "item_name" "#StickerKit_krakow2017_team_sk_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/sk_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "14" + } + "2078" + { + "name" "krakow2017_team_sk_gold" + "item_name" "#StickerKit_krakow2017_team_sk_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/sk_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "14" + } + "2079" + { + "name" "krakow2017_team_navi" + "item_name" "#StickerKit_krakow2017_team_navi" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/navi" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "12" + } + "2080" + { + "name" "krakow2017_team_navi_holo" + "item_name" "#StickerKit_krakow2017_team_navi_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "12" + } + "2081" + { + "name" "krakow2017_team_navi_foil" + "item_name" "#StickerKit_krakow2017_team_navi_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "12" + } + "2082" + { + "name" "krakow2017_team_navi_gold" + "item_name" "#StickerKit_krakow2017_team_navi_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "12" + } + "2083" + { + "name" "krakow2017_team_gamb" + "item_name" "#StickerKit_krakow2017_team_gamb" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/gamb" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "63" + } + "2084" + { + "name" "krakow2017_team_gamb_holo" + "item_name" "#StickerKit_krakow2017_team_gamb_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/gamb_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "63" + } + "2085" + { + "name" "krakow2017_team_gamb_foil" + "item_name" "#StickerKit_krakow2017_team_gamb_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/gamb_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "63" + } + "2086" + { + "name" "krakow2017_team_gamb_gold" + "item_name" "#StickerKit_krakow2017_team_gamb_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/gamb_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "63" + } + "2087" + { + "name" "krakow2017_team_nor" + "item_name" "#StickerKit_krakow2017_team_nor" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/nor" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "68" + } + "2088" + { + "name" "krakow2017_team_nor_holo" + "item_name" "#StickerKit_krakow2017_team_nor_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/nor_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "68" + } + "2089" + { + "name" "krakow2017_team_nor_foil" + "item_name" "#StickerKit_krakow2017_team_nor_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/nor_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "68" + } + "2090" + { + "name" "krakow2017_team_nor_gold" + "item_name" "#StickerKit_krakow2017_team_nor_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/nor_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "68" + } + "2091" + { + "name" "krakow2017_team_faze" + "item_name" "#StickerKit_krakow2017_team_faze" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/faze" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "61" + } + "2092" + { + "name" "krakow2017_team_faze_holo" + "item_name" "#StickerKit_krakow2017_team_faze_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "61" + } + "2093" + { + "name" "krakow2017_team_faze_foil" + "item_name" "#StickerKit_krakow2017_team_faze_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "61" + } + "2094" + { + "name" "krakow2017_team_faze_gold" + "item_name" "#StickerKit_krakow2017_team_faze_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "61" + } + "2095" + { + "name" "krakow2017_team_mss" + "item_name" "#StickerKit_krakow2017_team_mss" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/mss" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "29" + } + "2096" + { + "name" "krakow2017_team_mss_holo" + "item_name" "#StickerKit_krakow2017_team_mss_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/mss_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "29" + } + "2097" + { + "name" "krakow2017_team_mss_foil" + "item_name" "#StickerKit_krakow2017_team_mss_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "29" + } + "2098" + { + "name" "krakow2017_team_mss_gold" + "item_name" "#StickerKit_krakow2017_team_mss_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "29" + } + "2099" + { + "name" "krakow2017_team_g2" + "item_name" "#StickerKit_krakow2017_team_g2" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/g2" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "59" + } + "2100" + { + "name" "krakow2017_team_g2_holo" + "item_name" "#StickerKit_krakow2017_team_g2_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "59" + } + "2101" + { + "name" "krakow2017_team_g2_foil" + "item_name" "#StickerKit_krakow2017_team_g2_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "59" + } + "2102" + { + "name" "krakow2017_team_g2_gold" + "item_name" "#StickerKit_krakow2017_team_g2_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "59" + } + "2103" + { + "name" "krakow2017_team_big" + "item_name" "#StickerKit_krakow2017_team_big" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/big" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "69" + } + "2104" + { + "name" "krakow2017_team_big_holo" + "item_name" "#StickerKit_krakow2017_team_big_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/big_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "69" + } + "2105" + { + "name" "krakow2017_team_big_foil" + "item_name" "#StickerKit_krakow2017_team_big_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/big_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "69" + } + "2106" + { + "name" "krakow2017_team_big_gold" + "item_name" "#StickerKit_krakow2017_team_big_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/big_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "69" + } + "2107" + { + "name" "krakow2017_team_c9" + "item_name" "#StickerKit_krakow2017_team_c9" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/c9" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "33" + } + "2108" + { + "name" "krakow2017_team_c9_holo" + "item_name" "#StickerKit_krakow2017_team_c9_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/c9_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "33" + } + "2109" + { + "name" "krakow2017_team_c9_foil" + "item_name" "#StickerKit_krakow2017_team_c9_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/c9_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "33" + } + "2110" + { + "name" "krakow2017_team_c9_gold" + "item_name" "#StickerKit_krakow2017_team_c9_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/c9_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "33" + } + "2111" + { + "name" "krakow2017_team_penta" + "item_name" "#StickerKit_krakow2017_team_penta" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/penta" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "39" + } + "2112" + { + "name" "krakow2017_team_penta_holo" + "item_name" "#StickerKit_krakow2017_team_penta_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/penta_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "39" + } + "2113" + { + "name" "krakow2017_team_penta_foil" + "item_name" "#StickerKit_krakow2017_team_penta_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/penta_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "39" + } + "2114" + { + "name" "krakow2017_team_penta_gold" + "item_name" "#StickerKit_krakow2017_team_penta_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/penta_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "39" + } + "2115" + { + "name" "krakow2017_team_flip" + "item_name" "#StickerKit_krakow2017_team_flip" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/flip" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "43" + } + "2116" + { + "name" "krakow2017_team_flip_holo" + "item_name" "#StickerKit_krakow2017_team_flip_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/flip_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "43" + } + "2117" + { + "name" "krakow2017_team_flip_foil" + "item_name" "#StickerKit_krakow2017_team_flip_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/flip_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "43" + } + "2118" + { + "name" "krakow2017_team_flip_gold" + "item_name" "#StickerKit_krakow2017_team_flip_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/flip_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "43" + } + "2119" + { + "name" "krakow2017_team_imt" + "item_name" "#StickerKit_krakow2017_team_imt" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/imt" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "71" + } + "2120" + { + "name" "krakow2017_team_imt_holo" + "item_name" "#StickerKit_krakow2017_team_imt_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/imt_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "71" + } + "2121" + { + "name" "krakow2017_team_imt_foil" + "item_name" "#StickerKit_krakow2017_team_imt_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/imt_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "71" + } + "2122" + { + "name" "krakow2017_team_imt_gold" + "item_name" "#StickerKit_krakow2017_team_imt_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/imt_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "71" + } + "2123" + { + "name" "krakow2017_team_vega" + "item_name" "#StickerKit_krakow2017_team_vega" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vega" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "70" + } + "2124" + { + "name" "krakow2017_team_vega_holo" + "item_name" "#StickerKit_krakow2017_team_vega_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vega_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "70" + } + "2125" + { + "name" "krakow2017_team_vega_foil" + "item_name" "#StickerKit_krakow2017_team_vega_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vega_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "70" + } + "2126" + { + "name" "krakow2017_team_vega_gold" + "item_name" "#StickerKit_krakow2017_team_vega_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_team" + "sticker_material" "krakow2017/vega_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "70" + } + "2127" + { + "name" "krakow2017_team_pgl" + "item_name" "#StickerKit_krakow2017_team_pgl" + "description_string" "#EventItemDesc_krakow2017_sticker_org" + "sticker_material" "krakow2017/pgl" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "0" + } + "2128" + { + "name" "krakow2017_team_pgl_holo" + "item_name" "#StickerKit_krakow2017_team_pgl_holo" + "description_string" "#EventItemDesc_krakow2017_sticker_org" + "sticker_material" "krakow2017/pgl_holo" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "0" + } + "2129" + { + "name" "krakow2017_team_pgl_foil" + "item_name" "#StickerKit_krakow2017_team_pgl_foil" + "description_string" "#EventItemDesc_krakow2017_sticker_org" + "sticker_material" "krakow2017/pgl_foil" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "0" + } + "2130" + { + "name" "krakow2017_team_pgl_gold" + "item_name" "#StickerKit_krakow2017_team_pgl_gold" + "description_string" "#EventItemDesc_krakow2017_sticker_org" + "sticker_material" "krakow2017/pgl_gold" + "item_rarity" "legendary" + "tournament_event_id" "12" + "tournament_team_id" "0" + } + "2131" + { + "name" "krakow2017_team_astr_graffiti" + "item_name" "#StickerKit_krakow2017_team_astr" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/astr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "60" + } + "2132" + { + "name" "krakow2017_team_vp_graffiti" + "item_name" "#StickerKit_krakow2017_team_vp" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/vp_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "31" + } + "2133" + { + "name" "krakow2017_team_fntc_graffiti" + "item_name" "#StickerKit_krakow2017_team_fntc" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/fntc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "6" + } + "2134" + { + "name" "krakow2017_team_sk_graffiti" + "item_name" "#StickerKit_krakow2017_team_sk" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/sk_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "14" + } + "2135" + { + "name" "krakow2017_team_navi_graffiti" + "item_name" "#StickerKit_krakow2017_team_navi" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "12" + } + "2136" + { + "name" "krakow2017_team_gamb_graffiti" + "item_name" "#StickerKit_krakow2017_team_gamb" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/gamb_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "63" + } + "2137" + { + "name" "krakow2017_team_nor_graffiti" + "item_name" "#StickerKit_krakow2017_team_nor" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/nor_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "68" + } + "2138" + { + "name" "krakow2017_team_faze_graffiti" + "item_name" "#StickerKit_krakow2017_team_faze" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "61" + } + "2139" + { + "name" "krakow2017_team_mss_graffiti" + "item_name" "#StickerKit_krakow2017_team_mss" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/mss_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "29" + } + "2140" + { + "name" "krakow2017_team_g2_graffiti" + "item_name" "#StickerKit_krakow2017_team_g2" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/g2_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "59" + } + "2141" + { + "name" "krakow2017_team_big_graffiti" + "item_name" "#StickerKit_krakow2017_team_big" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/big_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "69" + } + "2142" + { + "name" "krakow2017_team_c9_graffiti" + "item_name" "#StickerKit_krakow2017_team_c9" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/c9_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "33" + } + "2143" + { + "name" "krakow2017_team_penta_graffiti" + "item_name" "#StickerKit_krakow2017_team_penta" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/penta_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "39" + } + "2144" + { + "name" "krakow2017_team_flip_graffiti" + "item_name" "#StickerKit_krakow2017_team_flip" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/flip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "43" + } + "2145" + { + "name" "krakow2017_team_imt_graffiti" + "item_name" "#StickerKit_krakow2017_team_imt" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/imt_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "71" + } + "2146" + { + "name" "krakow2017_team_vega_graffiti" + "item_name" "#StickerKit_krakow2017_team_vega" + "description_string" "#EventItemDesc_krakow2017_graffiti_team" + "sticker_material" "krakow2017/vega_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "70" + } + "2147" + { + "name" "krakow2017_team_pgl_graffiti" + "item_name" "#StickerKit_krakow2017_team_pgl" + "description_string" "#EventItemDesc_krakow2017_graffiti_org" + "sticker_material" "krakow2017/pgl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "0" + } + "2148" + { + "name" "krakow2017_signature_device" + "item_name" "#StickerKit_krakow2017_signature_device" + "description_string" "#StickerKit_desc_krakow2017_signature_device" + "sticker_material" "krakow2017/sig_device" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2149" + { + "name" "krakow2017_signature_device_foil" + "item_name" "#StickerKit_krakow2017_signature_device_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_device_foil" + "sticker_material" "krakow2017/sig_device_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2150" + { + "name" "krakow2017_signature_device_gold" + "item_name" "#StickerKit_krakow2017_signature_device_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_device_gold" + "sticker_material" "krakow2017/sig_device_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2151" + { + "name" "krakow2017_signature_dupreeh" + "item_name" "#StickerKit_krakow2017_signature_dupreeh" + "description_string" "#StickerKit_desc_krakow2017_signature_dupreeh" + "sticker_material" "krakow2017/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2152" + { + "name" "krakow2017_signature_dupreeh_foil" + "item_name" "#StickerKit_krakow2017_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_dupreeh_foil" + "sticker_material" "krakow2017/sig_dupreeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2153" + { + "name" "krakow2017_signature_dupreeh_gold" + "item_name" "#StickerKit_krakow2017_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_dupreeh_gold" + "sticker_material" "krakow2017/sig_dupreeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2154" + { + "name" "krakow2017_signature_gla1ve" + "item_name" "#StickerKit_krakow2017_signature_gla1ve" + "description_string" "#StickerKit_desc_krakow2017_signature_gla1ve" + "sticker_material" "krakow2017/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2155" + { + "name" "krakow2017_signature_gla1ve_foil" + "item_name" "#StickerKit_krakow2017_signature_gla1ve_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_gla1ve_foil" + "sticker_material" "krakow2017/sig_gla1ve_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2156" + { + "name" "krakow2017_signature_gla1ve_gold" + "item_name" "#StickerKit_krakow2017_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_gla1ve_gold" + "sticker_material" "krakow2017/sig_gla1ve_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2157" + { + "name" "krakow2017_signature_kjaerbye" + "item_name" "#StickerKit_krakow2017_signature_kjaerbye" + "description_string" "#StickerKit_desc_krakow2017_signature_kjaerbye" + "sticker_material" "krakow2017/sig_kjaerbye" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2158" + { + "name" "krakow2017_signature_kjaerbye_foil" + "item_name" "#StickerKit_krakow2017_signature_kjaerbye_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_kjaerbye_foil" + "sticker_material" "krakow2017/sig_kjaerbye_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2159" + { + "name" "krakow2017_signature_kjaerbye_gold" + "item_name" "#StickerKit_krakow2017_signature_kjaerbye_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_kjaerbye_gold" + "sticker_material" "krakow2017/sig_kjaerbye_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2160" + { + "name" "krakow2017_signature_xyp9x" + "item_name" "#StickerKit_krakow2017_signature_xyp9x" + "description_string" "#StickerKit_desc_krakow2017_signature_xyp9x" + "sticker_material" "krakow2017/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2161" + { + "name" "krakow2017_signature_xyp9x_foil" + "item_name" "#StickerKit_krakow2017_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_xyp9x_foil" + "sticker_material" "krakow2017/sig_xyp9x_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2162" + { + "name" "krakow2017_signature_xyp9x_gold" + "item_name" "#StickerKit_krakow2017_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_xyp9x_gold" + "sticker_material" "krakow2017/sig_xyp9x_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2163" + { + "name" "krakow2017_signature_byali" + "item_name" "#StickerKit_krakow2017_signature_byali" + "description_string" "#StickerKit_desc_krakow2017_signature_byali" + "sticker_material" "krakow2017/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2164" + { + "name" "krakow2017_signature_byali_foil" + "item_name" "#StickerKit_krakow2017_signature_byali_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_byali_foil" + "sticker_material" "krakow2017/sig_byali_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2165" + { + "name" "krakow2017_signature_byali_gold" + "item_name" "#StickerKit_krakow2017_signature_byali_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_byali_gold" + "sticker_material" "krakow2017/sig_byali_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2166" + { + "name" "krakow2017_signature_neo" + "item_name" "#StickerKit_krakow2017_signature_neo" + "description_string" "#StickerKit_desc_krakow2017_signature_neo" + "sticker_material" "krakow2017/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2167" + { + "name" "krakow2017_signature_neo_foil" + "item_name" "#StickerKit_krakow2017_signature_neo_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_neo_foil" + "sticker_material" "krakow2017/sig_neo_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2168" + { + "name" "krakow2017_signature_neo_gold" + "item_name" "#StickerKit_krakow2017_signature_neo_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_neo_gold" + "sticker_material" "krakow2017/sig_neo_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2169" + { + "name" "krakow2017_signature_pasha" + "item_name" "#StickerKit_krakow2017_signature_pasha" + "description_string" "#StickerKit_desc_krakow2017_signature_pasha" + "sticker_material" "krakow2017/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2170" + { + "name" "krakow2017_signature_pasha_foil" + "item_name" "#StickerKit_krakow2017_signature_pasha_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_pasha_foil" + "sticker_material" "krakow2017/sig_pasha_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2171" + { + "name" "krakow2017_signature_pasha_gold" + "item_name" "#StickerKit_krakow2017_signature_pasha_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_pasha_gold" + "sticker_material" "krakow2017/sig_pasha_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2172" + { + "name" "krakow2017_signature_snax" + "item_name" "#StickerKit_krakow2017_signature_snax" + "description_string" "#StickerKit_desc_krakow2017_signature_snax" + "sticker_material" "krakow2017/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2173" + { + "name" "krakow2017_signature_snax_foil" + "item_name" "#StickerKit_krakow2017_signature_snax_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_snax_foil" + "sticker_material" "krakow2017/sig_snax_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2174" + { + "name" "krakow2017_signature_snax_gold" + "item_name" "#StickerKit_krakow2017_signature_snax_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_snax_gold" + "sticker_material" "krakow2017/sig_snax_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2175" + { + "name" "krakow2017_signature_taz" + "item_name" "#StickerKit_krakow2017_signature_taz" + "description_string" "#StickerKit_desc_krakow2017_signature_taz" + "sticker_material" "krakow2017/sig_taz" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2176" + { + "name" "krakow2017_signature_taz_foil" + "item_name" "#StickerKit_krakow2017_signature_taz_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_taz_foil" + "sticker_material" "krakow2017/sig_taz_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2177" + { + "name" "krakow2017_signature_taz_gold" + "item_name" "#StickerKit_krakow2017_signature_taz_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_taz_gold" + "sticker_material" "krakow2017/sig_taz_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2178" + { + "name" "krakow2017_signature_dennis" + "item_name" "#StickerKit_krakow2017_signature_dennis" + "description_string" "#StickerKit_desc_krakow2017_signature_dennis" + "sticker_material" "krakow2017/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "2179" + { + "name" "krakow2017_signature_dennis_foil" + "item_name" "#StickerKit_krakow2017_signature_dennis_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_dennis_foil" + "sticker_material" "krakow2017/sig_dennis_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "2180" + { + "name" "krakow2017_signature_dennis_gold" + "item_name" "#StickerKit_krakow2017_signature_dennis_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_dennis_gold" + "sticker_material" "krakow2017/sig_dennis_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "108076825" + } + "2181" + { + "name" "krakow2017_signature_flusha" + "item_name" "#StickerKit_krakow2017_signature_flusha" + "description_string" "#StickerKit_desc_krakow2017_signature_flusha" + "sticker_material" "krakow2017/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "2182" + { + "name" "krakow2017_signature_flusha_foil" + "item_name" "#StickerKit_krakow2017_signature_flusha_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_flusha_foil" + "sticker_material" "krakow2017/sig_flusha_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "2183" + { + "name" "krakow2017_signature_flusha_gold" + "item_name" "#StickerKit_krakow2017_signature_flusha_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_flusha_gold" + "sticker_material" "krakow2017/sig_flusha_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "2184" + { + "name" "krakow2017_signature_jw" + "item_name" "#StickerKit_krakow2017_signature_jw" + "description_string" "#StickerKit_desc_krakow2017_signature_jw" + "sticker_material" "krakow2017/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "2185" + { + "name" "krakow2017_signature_jw_foil" + "item_name" "#StickerKit_krakow2017_signature_jw_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_jw_foil" + "sticker_material" "krakow2017/sig_jw_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "2186" + { + "name" "krakow2017_signature_jw_gold" + "item_name" "#StickerKit_krakow2017_signature_jw_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_jw_gold" + "sticker_material" "krakow2017/sig_jw_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "2187" + { + "name" "krakow2017_signature_krimz" + "item_name" "#StickerKit_krakow2017_signature_krimz" + "description_string" "#StickerKit_desc_krakow2017_signature_krimz" + "sticker_material" "krakow2017/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "2188" + { + "name" "krakow2017_signature_krimz_foil" + "item_name" "#StickerKit_krakow2017_signature_krimz_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_krimz_foil" + "sticker_material" "krakow2017/sig_krimz_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "2189" + { + "name" "krakow2017_signature_krimz_gold" + "item_name" "#StickerKit_krakow2017_signature_krimz_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_krimz_gold" + "sticker_material" "krakow2017/sig_krimz_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "2190" + { + "name" "krakow2017_signature_olofmeister" + "item_name" "#StickerKit_krakow2017_signature_olofmeister" + "description_string" "#StickerKit_desc_krakow2017_signature_olofmeister" + "sticker_material" "krakow2017/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "2191" + { + "name" "krakow2017_signature_olofmeister_foil" + "item_name" "#StickerKit_krakow2017_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_olofmeister_foil" + "sticker_material" "krakow2017/sig_olofmeister_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "2192" + { + "name" "krakow2017_signature_olofmeister_gold" + "item_name" "#StickerKit_krakow2017_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_olofmeister_gold" + "sticker_material" "krakow2017/sig_olofmeister_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "6" + "tournament_player_id" "28361465" + } + "2193" + { + "name" "krakow2017_signature_coldzera" + "item_name" "#StickerKit_krakow2017_signature_coldzera" + "description_string" "#StickerKit_desc_krakow2017_signature_coldzera" + "sticker_material" "krakow2017/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "2194" + { + "name" "krakow2017_signature_coldzera_foil" + "item_name" "#StickerKit_krakow2017_signature_coldzera_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_coldzera_foil" + "sticker_material" "krakow2017/sig_coldzera_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "2195" + { + "name" "krakow2017_signature_coldzera_gold" + "item_name" "#StickerKit_krakow2017_signature_coldzera_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_coldzera_gold" + "sticker_material" "krakow2017/sig_coldzera_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "2196" + { + "name" "krakow2017_signature_fallen" + "item_name" "#StickerKit_krakow2017_signature_fallen" + "description_string" "#StickerKit_desc_krakow2017_signature_fallen" + "sticker_material" "krakow2017/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "2197" + { + "name" "krakow2017_signature_fallen_foil" + "item_name" "#StickerKit_krakow2017_signature_fallen_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_fallen_foil" + "sticker_material" "krakow2017/sig_fallen_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "2198" + { + "name" "krakow2017_signature_fallen_gold" + "item_name" "#StickerKit_krakow2017_signature_fallen_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_fallen_gold" + "sticker_material" "krakow2017/sig_fallen_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "2199" + { + "name" "krakow2017_signature_felps" + "item_name" "#StickerKit_krakow2017_signature_felps" + "description_string" "#StickerKit_desc_krakow2017_signature_felps" + "sticker_material" "krakow2017/sig_felps" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "22765766" + } + "2200" + { + "name" "krakow2017_signature_felps_foil" + "item_name" "#StickerKit_krakow2017_signature_felps_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_felps_foil" + "sticker_material" "krakow2017/sig_felps_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "22765766" + } + "2201" + { + "name" "krakow2017_signature_felps_gold" + "item_name" "#StickerKit_krakow2017_signature_felps_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_felps_gold" + "sticker_material" "krakow2017/sig_felps_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "22765766" + } + "2202" + { + "name" "krakow2017_signature_fer" + "item_name" "#StickerKit_krakow2017_signature_fer" + "description_string" "#StickerKit_desc_krakow2017_signature_fer" + "sticker_material" "krakow2017/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "2203" + { + "name" "krakow2017_signature_fer_foil" + "item_name" "#StickerKit_krakow2017_signature_fer_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_fer_foil" + "sticker_material" "krakow2017/sig_fer_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "2204" + { + "name" "krakow2017_signature_fer_gold" + "item_name" "#StickerKit_krakow2017_signature_fer_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_fer_gold" + "sticker_material" "krakow2017/sig_fer_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "2205" + { + "name" "krakow2017_signature_taco" + "item_name" "#StickerKit_krakow2017_signature_taco" + "description_string" "#StickerKit_desc_krakow2017_signature_taco" + "sticker_material" "krakow2017/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "2206" + { + "name" "krakow2017_signature_taco_foil" + "item_name" "#StickerKit_krakow2017_signature_taco_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_taco_foil" + "sticker_material" "krakow2017/sig_taco_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "2207" + { + "name" "krakow2017_signature_taco_gold" + "item_name" "#StickerKit_krakow2017_signature_taco_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_taco_gold" + "sticker_material" "krakow2017/sig_taco_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "2208" + { + "name" "krakow2017_signature_edward" + "item_name" "#StickerKit_krakow2017_signature_edward" + "description_string" "#StickerKit_desc_krakow2017_signature_edward" + "sticker_material" "krakow2017/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "2209" + { + "name" "krakow2017_signature_edward_foil" + "item_name" "#StickerKit_krakow2017_signature_edward_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_edward_foil" + "sticker_material" "krakow2017/sig_edward_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "2210" + { + "name" "krakow2017_signature_edward_gold" + "item_name" "#StickerKit_krakow2017_signature_edward_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_edward_gold" + "sticker_material" "krakow2017/sig_edward_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "2211" + { + "name" "krakow2017_signature_flamie" + "item_name" "#StickerKit_krakow2017_signature_flamie" + "description_string" "#StickerKit_desc_krakow2017_signature_flamie" + "sticker_material" "krakow2017/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "2212" + { + "name" "krakow2017_signature_flamie_foil" + "item_name" "#StickerKit_krakow2017_signature_flamie_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_flamie_foil" + "sticker_material" "krakow2017/sig_flamie_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "2213" + { + "name" "krakow2017_signature_flamie_gold" + "item_name" "#StickerKit_krakow2017_signature_flamie_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_flamie_gold" + "sticker_material" "krakow2017/sig_flamie_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "2214" + { + "name" "krakow2017_signature_guardian" + "item_name" "#StickerKit_krakow2017_signature_guardian" + "description_string" "#StickerKit_desc_krakow2017_signature_guardian" + "sticker_material" "krakow2017/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "2215" + { + "name" "krakow2017_signature_guardian_foil" + "item_name" "#StickerKit_krakow2017_signature_guardian_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_guardian_foil" + "sticker_material" "krakow2017/sig_guardian_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "2216" + { + "name" "krakow2017_signature_guardian_gold" + "item_name" "#StickerKit_krakow2017_signature_guardian_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_guardian_gold" + "sticker_material" "krakow2017/sig_guardian_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "12065295" + } + "2217" + { + "name" "krakow2017_signature_s1mple" + "item_name" "#StickerKit_krakow2017_signature_s1mple" + "description_string" "#StickerKit_desc_krakow2017_signature_s1mple" + "sticker_material" "krakow2017/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "2218" + { + "name" "krakow2017_signature_s1mple_foil" + "item_name" "#StickerKit_krakow2017_signature_s1mple_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_s1mple_foil" + "sticker_material" "krakow2017/sig_s1mple_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "2219" + { + "name" "krakow2017_signature_s1mple_gold" + "item_name" "#StickerKit_krakow2017_signature_s1mple_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_s1mple_gold" + "sticker_material" "krakow2017/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "2220" + { + "name" "krakow2017_signature_seized" + "item_name" "#StickerKit_krakow2017_signature_seized" + "description_string" "#StickerKit_desc_krakow2017_signature_seized" + "sticker_material" "krakow2017/sig_seized" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "2221" + { + "name" "krakow2017_signature_seized_foil" + "item_name" "#StickerKit_krakow2017_signature_seized_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_seized_foil" + "sticker_material" "krakow2017/sig_seized_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "2222" + { + "name" "krakow2017_signature_seized_gold" + "item_name" "#StickerKit_krakow2017_signature_seized_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_seized_gold" + "sticker_material" "krakow2017/sig_seized_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "12" + "tournament_player_id" "3648428" + } + "2223" + { + "name" "krakow2017_signature_adrenkz" + "item_name" "#StickerKit_krakow2017_signature_adrenkz" + "description_string" "#StickerKit_desc_krakow2017_signature_adrenkz" + "sticker_material" "krakow2017/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2224" + { + "name" "krakow2017_signature_adrenkz_foil" + "item_name" "#StickerKit_krakow2017_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_adrenkz_foil" + "sticker_material" "krakow2017/sig_adrenkz_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2225" + { + "name" "krakow2017_signature_adrenkz_gold" + "item_name" "#StickerKit_krakow2017_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_adrenkz_gold" + "sticker_material" "krakow2017/sig_adrenkz_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2226" + { + "name" "krakow2017_signature_dosia" + "item_name" "#StickerKit_krakow2017_signature_dosia" + "description_string" "#StickerKit_desc_krakow2017_signature_dosia" + "sticker_material" "krakow2017/sig_dosia" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2227" + { + "name" "krakow2017_signature_dosia_foil" + "item_name" "#StickerKit_krakow2017_signature_dosia_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_dosia_foil" + "sticker_material" "krakow2017/sig_dosia_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2228" + { + "name" "krakow2017_signature_dosia_gold" + "item_name" "#StickerKit_krakow2017_signature_dosia_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_dosia_gold" + "sticker_material" "krakow2017/sig_dosia_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2229" + { + "name" "krakow2017_signature_hobbit" + "item_name" "#StickerKit_krakow2017_signature_hobbit" + "description_string" "#StickerKit_desc_krakow2017_signature_hobbit" + "sticker_material" "krakow2017/sig_hobbit" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2230" + { + "name" "krakow2017_signature_hobbit_foil" + "item_name" "#StickerKit_krakow2017_signature_hobbit_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_hobbit_foil" + "sticker_material" "krakow2017/sig_hobbit_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2231" + { + "name" "krakow2017_signature_hobbit_gold" + "item_name" "#StickerKit_krakow2017_signature_hobbit_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_hobbit_gold" + "sticker_material" "krakow2017/sig_hobbit_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2232" + { + "name" "krakow2017_signature_mou" + "item_name" "#StickerKit_krakow2017_signature_mou" + "description_string" "#StickerKit_desc_krakow2017_signature_mou" + "sticker_material" "krakow2017/sig_mou" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2233" + { + "name" "krakow2017_signature_mou_foil" + "item_name" "#StickerKit_krakow2017_signature_mou_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_mou_foil" + "sticker_material" "krakow2017/sig_mou_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2234" + { + "name" "krakow2017_signature_mou_gold" + "item_name" "#StickerKit_krakow2017_signature_mou_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_mou_gold" + "sticker_material" "krakow2017/sig_mou_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2235" + { + "name" "krakow2017_signature_zeus" + "item_name" "#StickerKit_krakow2017_signature_zeus" + "description_string" "#StickerKit_desc_krakow2017_signature_zeus" + "sticker_material" "krakow2017/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "59062744" + } + "2236" + { + "name" "krakow2017_signature_zeus_foil" + "item_name" "#StickerKit_krakow2017_signature_zeus_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_zeus_foil" + "sticker_material" "krakow2017/sig_zeus_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "59062744" + } + "2237" + { + "name" "krakow2017_signature_zeus_gold" + "item_name" "#StickerKit_krakow2017_signature_zeus_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_zeus_gold" + "sticker_material" "krakow2017/sig_zeus_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "63" + "tournament_player_id" "59062744" + } + "2238" + { + "name" "krakow2017_signature_aizy" + "item_name" "#StickerKit_krakow2017_signature_aizy" + "description_string" "#StickerKit_desc_krakow2017_signature_aizy" + "sticker_material" "krakow2017/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "2239" + { + "name" "krakow2017_signature_aizy_foil" + "item_name" "#StickerKit_krakow2017_signature_aizy_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_aizy_foil" + "sticker_material" "krakow2017/sig_aizy_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "2240" + { + "name" "krakow2017_signature_aizy_gold" + "item_name" "#StickerKit_krakow2017_signature_aizy_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_aizy_gold" + "sticker_material" "krakow2017/sig_aizy_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "2241" + { + "name" "krakow2017_signature_cajunb" + "item_name" "#StickerKit_krakow2017_signature_cajunb" + "description_string" "#StickerKit_desc_krakow2017_signature_cajunb" + "sticker_material" "krakow2017/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "2242" + { + "name" "krakow2017_signature_cajunb_foil" + "item_name" "#StickerKit_krakow2017_signature_cajunb_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_cajunb_foil" + "sticker_material" "krakow2017/sig_cajunb_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "2243" + { + "name" "krakow2017_signature_cajunb_gold" + "item_name" "#StickerKit_krakow2017_signature_cajunb_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_cajunb_gold" + "sticker_material" "krakow2017/sig_cajunb_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "2244" + { + "name" "krakow2017_signature_k0nfig" + "item_name" "#StickerKit_krakow2017_signature_k0nfig" + "description_string" "#StickerKit_desc_krakow2017_signature_k0nfig" + "sticker_material" "krakow2017/sig_k0nfig" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "2245" + { + "name" "krakow2017_signature_k0nfig_foil" + "item_name" "#StickerKit_krakow2017_signature_k0nfig_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_k0nfig_foil" + "sticker_material" "krakow2017/sig_k0nfig_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "2246" + { + "name" "krakow2017_signature_k0nfig_gold" + "item_name" "#StickerKit_krakow2017_signature_k0nfig_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_k0nfig_gold" + "sticker_material" "krakow2017/sig_k0nfig_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "2247" + { + "name" "krakow2017_signature_magisk" + "item_name" "#StickerKit_krakow2017_signature_magisk" + "description_string" "#StickerKit_desc_krakow2017_signature_magisk" + "sticker_material" "krakow2017/sig_magisk" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "23690923" + } + "2248" + { + "name" "krakow2017_signature_magisk_foil" + "item_name" "#StickerKit_krakow2017_signature_magisk_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_magisk_foil" + "sticker_material" "krakow2017/sig_magisk_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "23690923" + } + "2249" + { + "name" "krakow2017_signature_magisk_gold" + "item_name" "#StickerKit_krakow2017_signature_magisk_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_magisk_gold" + "sticker_material" "krakow2017/sig_magisk_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "23690923" + } + "2250" + { + "name" "krakow2017_signature_msl" + "item_name" "#StickerKit_krakow2017_signature_msl" + "description_string" "#StickerKit_desc_krakow2017_signature_msl" + "sticker_material" "krakow2017/sig_msl" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "2251" + { + "name" "krakow2017_signature_msl_foil" + "item_name" "#StickerKit_krakow2017_signature_msl_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_msl_foil" + "sticker_material" "krakow2017/sig_msl_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "2252" + { + "name" "krakow2017_signature_msl_gold" + "item_name" "#StickerKit_krakow2017_signature_msl_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_msl_gold" + "sticker_material" "krakow2017/sig_msl_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "2253" + { + "name" "krakow2017_signature_allu" + "item_name" "#StickerKit_krakow2017_signature_allu" + "description_string" "#StickerKit_desc_krakow2017_signature_allu" + "sticker_material" "krakow2017/sig_allu" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "1345246" + } + "2254" + { + "name" "krakow2017_signature_allu_foil" + "item_name" "#StickerKit_krakow2017_signature_allu_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_allu_foil" + "sticker_material" "krakow2017/sig_allu_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "1345246" + } + "2255" + { + "name" "krakow2017_signature_allu_gold" + "item_name" "#StickerKit_krakow2017_signature_allu_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_allu_gold" + "sticker_material" "krakow2017/sig_allu_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "1345246" + } + "2256" + { + "name" "krakow2017_signature_karrigan" + "item_name" "#StickerKit_krakow2017_signature_karrigan" + "description_string" "#StickerKit_desc_krakow2017_signature_karrigan" + "sticker_material" "krakow2017/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "2257" + { + "name" "krakow2017_signature_karrigan_foil" + "item_name" "#StickerKit_krakow2017_signature_karrigan_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_karrigan_foil" + "sticker_material" "krakow2017/sig_karrigan_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "2258" + { + "name" "krakow2017_signature_karrigan_gold" + "item_name" "#StickerKit_krakow2017_signature_karrigan_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_karrigan_gold" + "sticker_material" "krakow2017/sig_karrigan_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "2259" + { + "name" "krakow2017_signature_kioshima" + "item_name" "#StickerKit_krakow2017_signature_kioshima" + "description_string" "#StickerKit_desc_krakow2017_signature_kioshima" + "sticker_material" "krakow2017/sig_kioshima" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "2260" + { + "name" "krakow2017_signature_kioshima_foil" + "item_name" "#StickerKit_krakow2017_signature_kioshima_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_kioshima_foil" + "sticker_material" "krakow2017/sig_kioshima_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "2261" + { + "name" "krakow2017_signature_kioshima_gold" + "item_name" "#StickerKit_krakow2017_signature_kioshima_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_kioshima_gold" + "sticker_material" "krakow2017/sig_kioshima_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "40517167" + } + "2262" + { + "name" "krakow2017_signature_niko" + "item_name" "#StickerKit_krakow2017_signature_niko" + "description_string" "#StickerKit_desc_krakow2017_signature_niko" + "sticker_material" "krakow2017/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "2263" + { + "name" "krakow2017_signature_niko_foil" + "item_name" "#StickerKit_krakow2017_signature_niko_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_niko_foil" + "sticker_material" "krakow2017/sig_niko_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "2264" + { + "name" "krakow2017_signature_niko_gold" + "item_name" "#StickerKit_krakow2017_signature_niko_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_niko_gold" + "sticker_material" "krakow2017/sig_niko_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "2265" + { + "name" "krakow2017_signature_rain" + "item_name" "#StickerKit_krakow2017_signature_rain" + "description_string" "#StickerKit_desc_krakow2017_signature_rain" + "sticker_material" "krakow2017/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "2266" + { + "name" "krakow2017_signature_rain_foil" + "item_name" "#StickerKit_krakow2017_signature_rain_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_rain_foil" + "sticker_material" "krakow2017/sig_rain_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "2267" + { + "name" "krakow2017_signature_rain_gold" + "item_name" "#StickerKit_krakow2017_signature_rain_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_rain_gold" + "sticker_material" "krakow2017/sig_rain_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "2268" + { + "name" "krakow2017_signature_chrisj" + "item_name" "#StickerKit_krakow2017_signature_chrisj" + "description_string" "#StickerKit_desc_krakow2017_signature_chrisj" + "sticker_material" "krakow2017/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "2269" + { + "name" "krakow2017_signature_chrisj_foil" + "item_name" "#StickerKit_krakow2017_signature_chrisj_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_chrisj_foil" + "sticker_material" "krakow2017/sig_chrisj_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "2270" + { + "name" "krakow2017_signature_chrisj_gold" + "item_name" "#StickerKit_krakow2017_signature_chrisj_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_chrisj_gold" + "sticker_material" "krakow2017/sig_chrisj_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "2271" + { + "name" "krakow2017_signature_denis" + "item_name" "#StickerKit_krakow2017_signature_denis" + "description_string" "#StickerKit_desc_krakow2017_signature_denis" + "sticker_material" "krakow2017/sig_denis" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "2272" + { + "name" "krakow2017_signature_denis_foil" + "item_name" "#StickerKit_krakow2017_signature_denis_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_denis_foil" + "sticker_material" "krakow2017/sig_denis_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "2273" + { + "name" "krakow2017_signature_denis_gold" + "item_name" "#StickerKit_krakow2017_signature_denis_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_denis_gold" + "sticker_material" "krakow2017/sig_denis_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "31185376" + } + "2274" + { + "name" "krakow2017_signature_lowel" + "item_name" "#StickerKit_krakow2017_signature_lowel" + "description_string" "#StickerKit_desc_krakow2017_signature_lowel" + "sticker_material" "krakow2017/sig_lowel" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "34456844" + } + "2275" + { + "name" "krakow2017_signature_lowel_foil" + "item_name" "#StickerKit_krakow2017_signature_lowel_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_lowel_foil" + "sticker_material" "krakow2017/sig_lowel_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "34456844" + } + "2276" + { + "name" "krakow2017_signature_lowel_gold" + "item_name" "#StickerKit_krakow2017_signature_lowel_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_lowel_gold" + "sticker_material" "krakow2017/sig_lowel_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "34456844" + } + "2277" + { + "name" "krakow2017_signature_oskar" + "item_name" "#StickerKit_krakow2017_signature_oskar" + "description_string" "#StickerKit_desc_krakow2017_signature_oskar" + "sticker_material" "krakow2017/sig_oskar" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "2278" + { + "name" "krakow2017_signature_oskar_foil" + "item_name" "#StickerKit_krakow2017_signature_oskar_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_oskar_foil" + "sticker_material" "krakow2017/sig_oskar_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "2279" + { + "name" "krakow2017_signature_oskar_gold" + "item_name" "#StickerKit_krakow2017_signature_oskar_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_oskar_gold" + "sticker_material" "krakow2017/sig_oskar_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "2280" + { + "name" "krakow2017_signature_ropz" + "item_name" "#StickerKit_krakow2017_signature_ropz" + "description_string" "#StickerKit_desc_krakow2017_signature_ropz" + "sticker_material" "krakow2017/sig_ropz" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "2281" + { + "name" "krakow2017_signature_ropz_foil" + "item_name" "#StickerKit_krakow2017_signature_ropz_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_ropz_foil" + "sticker_material" "krakow2017/sig_ropz_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "2282" + { + "name" "krakow2017_signature_ropz_gold" + "item_name" "#StickerKit_krakow2017_signature_ropz_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_ropz_gold" + "sticker_material" "krakow2017/sig_ropz_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "2283" + { + "name" "krakow2017_signature_apex" + "item_name" "#StickerKit_krakow2017_signature_apex" + "description_string" "#StickerKit_desc_krakow2017_signature_apex" + "sticker_material" "krakow2017/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "29478439" + } + "2284" + { + "name" "krakow2017_signature_apex_foil" + "item_name" "#StickerKit_krakow2017_signature_apex_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_apex_foil" + "sticker_material" "krakow2017/sig_apex_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "29478439" + } + "2285" + { + "name" "krakow2017_signature_apex_gold" + "item_name" "#StickerKit_krakow2017_signature_apex_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_apex_gold" + "sticker_material" "krakow2017/sig_apex_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "29478439" + } + "2286" + { + "name" "krakow2017_signature_bodyy" + "item_name" "#StickerKit_krakow2017_signature_bodyy" + "description_string" "#StickerKit_desc_krakow2017_signature_bodyy" + "sticker_material" "krakow2017/sig_bodyy" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2287" + { + "name" "krakow2017_signature_bodyy_foil" + "item_name" "#StickerKit_krakow2017_signature_bodyy_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_bodyy_foil" + "sticker_material" "krakow2017/sig_bodyy_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2288" + { + "name" "krakow2017_signature_bodyy_gold" + "item_name" "#StickerKit_krakow2017_signature_bodyy_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_bodyy_gold" + "sticker_material" "krakow2017/sig_bodyy_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2289" + { + "name" "krakow2017_signature_kennys" + "item_name" "#StickerKit_krakow2017_signature_kennys" + "description_string" "#StickerKit_desc_krakow2017_signature_kennys" + "sticker_material" "krakow2017/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "2290" + { + "name" "krakow2017_signature_kennys_foil" + "item_name" "#StickerKit_krakow2017_signature_kennys_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_kennys_foil" + "sticker_material" "krakow2017/sig_kennys_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "2291" + { + "name" "krakow2017_signature_kennys_gold" + "item_name" "#StickerKit_krakow2017_signature_kennys_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_kennys_gold" + "sticker_material" "krakow2017/sig_kennys_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "2292" + { + "name" "krakow2017_signature_nbk" + "item_name" "#StickerKit_krakow2017_signature_nbk" + "description_string" "#StickerKit_desc_krakow2017_signature_nbk" + "sticker_material" "krakow2017/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "444845" + } + "2293" + { + "name" "krakow2017_signature_nbk_foil" + "item_name" "#StickerKit_krakow2017_signature_nbk_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_nbk_foil" + "sticker_material" "krakow2017/sig_nbk_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "444845" + } + "2294" + { + "name" "krakow2017_signature_nbk_gold" + "item_name" "#StickerKit_krakow2017_signature_nbk_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_nbk_gold" + "sticker_material" "krakow2017/sig_nbk_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "444845" + } + "2295" + { + "name" "krakow2017_signature_shox" + "item_name" "#StickerKit_krakow2017_signature_shox" + "description_string" "#StickerKit_desc_krakow2017_signature_shox" + "sticker_material" "krakow2017/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2296" + { + "name" "krakow2017_signature_shox_foil" + "item_name" "#StickerKit_krakow2017_signature_shox_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_shox_foil" + "sticker_material" "krakow2017/sig_shox_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2297" + { + "name" "krakow2017_signature_shox_gold" + "item_name" "#StickerKit_krakow2017_signature_shox_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_shox_gold" + "sticker_material" "krakow2017/sig_shox_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2298" + { + "name" "krakow2017_signature_gobb" + "item_name" "#StickerKit_krakow2017_signature_gobb" + "description_string" "#StickerKit_desc_krakow2017_signature_gobb" + "sticker_material" "krakow2017/sig_gobb" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "2299" + { + "name" "krakow2017_signature_gobb_foil" + "item_name" "#StickerKit_krakow2017_signature_gobb_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_gobb_foil" + "sticker_material" "krakow2017/sig_gobb_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "2300" + { + "name" "krakow2017_signature_gobb_gold" + "item_name" "#StickerKit_krakow2017_signature_gobb_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_gobb_gold" + "sticker_material" "krakow2017/sig_gobb_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "2301" + { + "name" "krakow2017_signature_keev" + "item_name" "#StickerKit_krakow2017_signature_keev" + "description_string" "#StickerKit_desc_krakow2017_signature_keev" + "sticker_material" "krakow2017/sig_keev" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "51271036" + } + "2302" + { + "name" "krakow2017_signature_keev_foil" + "item_name" "#StickerKit_krakow2017_signature_keev_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_keev_foil" + "sticker_material" "krakow2017/sig_keev_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "51271036" + } + "2303" + { + "name" "krakow2017_signature_keev_gold" + "item_name" "#StickerKit_krakow2017_signature_keev_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_keev_gold" + "sticker_material" "krakow2017/sig_keev_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "51271036" + } + "2304" + { + "name" "krakow2017_signature_legija" + "item_name" "#StickerKit_krakow2017_signature_legija" + "description_string" "#StickerKit_desc_krakow2017_signature_legija" + "sticker_material" "krakow2017/sig_legija" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "21242287" + } + "2305" + { + "name" "krakow2017_signature_legija_foil" + "item_name" "#StickerKit_krakow2017_signature_legija_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_legija_foil" + "sticker_material" "krakow2017/sig_legija_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "21242287" + } + "2306" + { + "name" "krakow2017_signature_legija_gold" + "item_name" "#StickerKit_krakow2017_signature_legija_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_legija_gold" + "sticker_material" "krakow2017/sig_legija_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "21242287" + } + "2307" + { + "name" "krakow2017_signature_nex" + "item_name" "#StickerKit_krakow2017_signature_nex" + "description_string" "#StickerKit_desc_krakow2017_signature_nex" + "sticker_material" "krakow2017/sig_nex" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "2308" + { + "name" "krakow2017_signature_nex_foil" + "item_name" "#StickerKit_krakow2017_signature_nex_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_nex_foil" + "sticker_material" "krakow2017/sig_nex_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "2309" + { + "name" "krakow2017_signature_nex_gold" + "item_name" "#StickerKit_krakow2017_signature_nex_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_nex_gold" + "sticker_material" "krakow2017/sig_nex_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "2310" + { + "name" "krakow2017_signature_tabsen" + "item_name" "#StickerKit_krakow2017_signature_tabsen" + "description_string" "#StickerKit_desc_krakow2017_signature_tabsen" + "sticker_material" "krakow2017/sig_tabsen" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "2311" + { + "name" "krakow2017_signature_tabsen_foil" + "item_name" "#StickerKit_krakow2017_signature_tabsen_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_tabsen_foil" + "sticker_material" "krakow2017/sig_tabsen_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "2312" + { + "name" "krakow2017_signature_tabsen_gold" + "item_name" "#StickerKit_krakow2017_signature_tabsen_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_tabsen_gold" + "sticker_material" "krakow2017/sig_tabsen_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "2313" + { + "name" "krakow2017_signature_autimatic" + "item_name" "#StickerKit_krakow2017_signature_autimatic" + "description_string" "#StickerKit_desc_krakow2017_signature_autimatic" + "sticker_material" "krakow2017/sig_autimatic" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "2314" + { + "name" "krakow2017_signature_autimatic_foil" + "item_name" "#StickerKit_krakow2017_signature_autimatic_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_autimatic_foil" + "sticker_material" "krakow2017/sig_autimatic_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "2315" + { + "name" "krakow2017_signature_autimatic_gold" + "item_name" "#StickerKit_krakow2017_signature_autimatic_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_autimatic_gold" + "sticker_material" "krakow2017/sig_autimatic_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "2316" + { + "name" "krakow2017_signature_nothing" + "item_name" "#StickerKit_krakow2017_signature_nothing" + "description_string" "#StickerKit_desc_krakow2017_signature_nothing" + "sticker_material" "krakow2017/sig_nothing" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "2317" + { + "name" "krakow2017_signature_nothing_foil" + "item_name" "#StickerKit_krakow2017_signature_nothing_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_nothing_foil" + "sticker_material" "krakow2017/sig_nothing_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "2318" + { + "name" "krakow2017_signature_nothing_gold" + "item_name" "#StickerKit_krakow2017_signature_nothing_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_nothing_gold" + "sticker_material" "krakow2017/sig_nothing_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "755286" + } + "2319" + { + "name" "krakow2017_signature_shroud" + "item_name" "#StickerKit_krakow2017_signature_shroud" + "description_string" "#StickerKit_desc_krakow2017_signature_shroud" + "sticker_material" "krakow2017/sig_shroud" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "2320" + { + "name" "krakow2017_signature_shroud_foil" + "item_name" "#StickerKit_krakow2017_signature_shroud_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_shroud_foil" + "sticker_material" "krakow2017/sig_shroud_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "2321" + { + "name" "krakow2017_signature_shroud_gold" + "item_name" "#StickerKit_krakow2017_signature_shroud_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_shroud_gold" + "sticker_material" "krakow2017/sig_shroud_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "4515926" + } + "2322" + { + "name" "krakow2017_signature_skadoodle" + "item_name" "#StickerKit_krakow2017_signature_skadoodle" + "description_string" "#StickerKit_desc_krakow2017_signature_skadoodle" + "sticker_material" "krakow2017/sig_skadoodle" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "2323" + { + "name" "krakow2017_signature_skadoodle_foil" + "item_name" "#StickerKit_krakow2017_signature_skadoodle_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_skadoodle_foil" + "sticker_material" "krakow2017/sig_skadoodle_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "2324" + { + "name" "krakow2017_signature_skadoodle_gold" + "item_name" "#StickerKit_krakow2017_signature_skadoodle_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_skadoodle_gold" + "sticker_material" "krakow2017/sig_skadoodle_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "2325" + { + "name" "krakow2017_signature_stewie2k" + "item_name" "#StickerKit_krakow2017_signature_stewie2k" + "description_string" "#StickerKit_desc_krakow2017_signature_stewie2k" + "sticker_material" "krakow2017/sig_stewie2k" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "2326" + { + "name" "krakow2017_signature_stewie2k_foil" + "item_name" "#StickerKit_krakow2017_signature_stewie2k_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_stewie2k_foil" + "sticker_material" "krakow2017/sig_stewie2k_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "2327" + { + "name" "krakow2017_signature_stewie2k_gold" + "item_name" "#StickerKit_krakow2017_signature_stewie2k_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_stewie2k_gold" + "sticker_material" "krakow2017/sig_stewie2k_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "2328" + { + "name" "krakow2017_signature_hs" + "item_name" "#StickerKit_krakow2017_signature_hs" + "description_string" "#StickerKit_desc_krakow2017_signature_hs" + "sticker_material" "krakow2017/sig_hs" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "3417033" + } + "2329" + { + "name" "krakow2017_signature_hs_foil" + "item_name" "#StickerKit_krakow2017_signature_hs_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_hs_foil" + "sticker_material" "krakow2017/sig_hs_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "3417033" + } + "2330" + { + "name" "krakow2017_signature_hs_gold" + "item_name" "#StickerKit_krakow2017_signature_hs_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_hs_gold" + "sticker_material" "krakow2017/sig_hs_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "3417033" + } + "2331" + { + "name" "krakow2017_signature_innocent" + "item_name" "#StickerKit_krakow2017_signature_innocent" + "description_string" "#StickerKit_desc_krakow2017_signature_innocent" + "sticker_material" "krakow2017/sig_innocent" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "26563533" + } + "2332" + { + "name" "krakow2017_signature_innocent_foil" + "item_name" "#StickerKit_krakow2017_signature_innocent_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_innocent_foil" + "sticker_material" "krakow2017/sig_innocent_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "26563533" + } + "2333" + { + "name" "krakow2017_signature_innocent_gold" + "item_name" "#StickerKit_krakow2017_signature_innocent_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_innocent_gold" + "sticker_material" "krakow2017/sig_innocent_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "26563533" + } + "2334" + { + "name" "krakow2017_signature_krystal" + "item_name" "#StickerKit_krakow2017_signature_krystal" + "description_string" "#StickerKit_desc_krakow2017_signature_krystal" + "sticker_material" "krakow2017/sig_krystal" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "17526007" + } + "2335" + { + "name" "krakow2017_signature_krystal_foil" + "item_name" "#StickerKit_krakow2017_signature_krystal_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_krystal_foil" + "sticker_material" "krakow2017/sig_krystal_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "17526007" + } + "2336" + { + "name" "krakow2017_signature_krystal_gold" + "item_name" "#StickerKit_krakow2017_signature_krystal_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_krystal_gold" + "sticker_material" "krakow2017/sig_krystal_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "17526007" + } + "2337" + { + "name" "krakow2017_signature_sunny" + "item_name" "#StickerKit_krakow2017_signature_sunny" + "description_string" "#StickerKit_desc_krakow2017_signature_sunny" + "sticker_material" "krakow2017/sig_sunny" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "57405333" + } + "2338" + { + "name" "krakow2017_signature_sunny_foil" + "item_name" "#StickerKit_krakow2017_signature_sunny_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_sunny_foil" + "sticker_material" "krakow2017/sig_sunny_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "57405333" + } + "2339" + { + "name" "krakow2017_signature_sunny_gold" + "item_name" "#StickerKit_krakow2017_signature_sunny_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_sunny_gold" + "sticker_material" "krakow2017/sig_sunny_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "57405333" + } + "2340" + { + "name" "krakow2017_signature_zehn" + "item_name" "#StickerKit_krakow2017_signature_zehn" + "description_string" "#StickerKit_desc_krakow2017_signature_zehn" + "sticker_material" "krakow2017/sig_zehn" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "16308501" + } + "2341" + { + "name" "krakow2017_signature_zehn_foil" + "item_name" "#StickerKit_krakow2017_signature_zehn_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_zehn_foil" + "sticker_material" "krakow2017/sig_zehn_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "16308501" + } + "2342" + { + "name" "krakow2017_signature_zehn_gold" + "item_name" "#StickerKit_krakow2017_signature_zehn_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_zehn_gold" + "sticker_material" "krakow2017/sig_zehn_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "39" + "tournament_player_id" "16308501" + } + "2343" + { + "name" "krakow2017_signature_b1ad3" + "item_name" "#StickerKit_krakow2017_signature_b1ad3" + "description_string" "#StickerKit_desc_krakow2017_signature_b1ad3" + "sticker_material" "krakow2017/sig_b1ad3" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "2344" + { + "name" "krakow2017_signature_b1ad3_foil" + "item_name" "#StickerKit_krakow2017_signature_b1ad3_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_b1ad3_foil" + "sticker_material" "krakow2017/sig_b1ad3_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "2345" + { + "name" "krakow2017_signature_b1ad3_gold" + "item_name" "#StickerKit_krakow2017_signature_b1ad3_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_b1ad3_gold" + "sticker_material" "krakow2017/sig_b1ad3_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "2346" + { + "name" "krakow2017_signature_electronic" + "item_name" "#StickerKit_krakow2017_signature_electronic" + "description_string" "#StickerKit_desc_krakow2017_signature_electronic" + "sticker_material" "krakow2017/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "83779379" + } + "2347" + { + "name" "krakow2017_signature_electronic_foil" + "item_name" "#StickerKit_krakow2017_signature_electronic_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_electronic_foil" + "sticker_material" "krakow2017/sig_electronic_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "83779379" + } + "2348" + { + "name" "krakow2017_signature_electronic_gold" + "item_name" "#StickerKit_krakow2017_signature_electronic_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_electronic_gold" + "sticker_material" "krakow2017/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "83779379" + } + "2349" + { + "name" "krakow2017_signature_markeloff" + "item_name" "#StickerKit_krakow2017_signature_markeloff" + "description_string" "#StickerKit_desc_krakow2017_signature_markeloff" + "sticker_material" "krakow2017/sig_markeloff" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "2350" + { + "name" "krakow2017_signature_markeloff_foil" + "item_name" "#StickerKit_krakow2017_signature_markeloff_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_markeloff_foil" + "sticker_material" "krakow2017/sig_markeloff_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "2351" + { + "name" "krakow2017_signature_markeloff_gold" + "item_name" "#StickerKit_krakow2017_signature_markeloff_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_markeloff_gold" + "sticker_material" "krakow2017/sig_markeloff_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "2352" + { + "name" "krakow2017_signature_waylander" + "item_name" "#StickerKit_krakow2017_signature_waylander" + "description_string" "#StickerKit_desc_krakow2017_signature_waylander" + "sticker_material" "krakow2017/sig_waylander" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "2353" + { + "name" "krakow2017_signature_waylander_foil" + "item_name" "#StickerKit_krakow2017_signature_waylander_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_waylander_foil" + "sticker_material" "krakow2017/sig_waylander_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "2354" + { + "name" "krakow2017_signature_waylander_gold" + "item_name" "#StickerKit_krakow2017_signature_waylander_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_waylander_gold" + "sticker_material" "krakow2017/sig_waylander_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "2355" + { + "name" "krakow2017_signature_worldedit" + "item_name" "#StickerKit_krakow2017_signature_worldedit" + "description_string" "#StickerKit_desc_krakow2017_signature_worldedit" + "sticker_material" "krakow2017/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "2356" + { + "name" "krakow2017_signature_worldedit_foil" + "item_name" "#StickerKit_krakow2017_signature_worldedit_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_worldedit_foil" + "sticker_material" "krakow2017/sig_worldedit_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "2357" + { + "name" "krakow2017_signature_worldedit_gold" + "item_name" "#StickerKit_krakow2017_signature_worldedit_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_worldedit_gold" + "sticker_material" "krakow2017/sig_worldedit_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "2358" + { + "name" "krakow2017_signature_boltz" + "item_name" "#StickerKit_krakow2017_signature_boltz" + "description_string" "#StickerKit_desc_krakow2017_signature_boltz" + "sticker_material" "krakow2017/sig_boltz" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "58113672" + } + "2359" + { + "name" "krakow2017_signature_boltz_foil" + "item_name" "#StickerKit_krakow2017_signature_boltz_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_boltz_foil" + "sticker_material" "krakow2017/sig_boltz_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "58113672" + } + "2360" + { + "name" "krakow2017_signature_boltz_gold" + "item_name" "#StickerKit_krakow2017_signature_boltz_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_boltz_gold" + "sticker_material" "krakow2017/sig_boltz_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "58113672" + } + "2361" + { + "name" "krakow2017_signature_hen1" + "item_name" "#StickerKit_krakow2017_signature_hen1" + "description_string" "#StickerKit_desc_krakow2017_signature_hen1" + "sticker_material" "krakow2017/sig_hen1" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "57761535" + } + "2362" + { + "name" "krakow2017_signature_hen1_foil" + "item_name" "#StickerKit_krakow2017_signature_hen1_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_hen1_foil" + "sticker_material" "krakow2017/sig_hen1_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "57761535" + } + "2363" + { + "name" "krakow2017_signature_hen1_gold" + "item_name" "#StickerKit_krakow2017_signature_hen1_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_hen1_gold" + "sticker_material" "krakow2017/sig_hen1_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "57761535" + } + "2364" + { + "name" "krakow2017_signature_kngv" + "item_name" "#StickerKit_krakow2017_signature_kngv" + "description_string" "#StickerKit_desc_krakow2017_signature_kngv" + "sticker_material" "krakow2017/sig_kngv" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "6732863" + } + "2365" + { + "name" "krakow2017_signature_kngv_foil" + "item_name" "#StickerKit_krakow2017_signature_kngv_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_kngv_foil" + "sticker_material" "krakow2017/sig_kngv_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "6732863" + } + "2366" + { + "name" "krakow2017_signature_kngv_gold" + "item_name" "#StickerKit_krakow2017_signature_kngv_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_kngv_gold" + "sticker_material" "krakow2017/sig_kngv_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "6732863" + } + "2367" + { + "name" "krakow2017_signature_lucas1" + "item_name" "#StickerKit_krakow2017_signature_lucas1" + "description_string" "#StickerKit_desc_krakow2017_signature_lucas1" + "sticker_material" "krakow2017/sig_lucas1" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "4780624" + } + "2368" + { + "name" "krakow2017_signature_lucas1_foil" + "item_name" "#StickerKit_krakow2017_signature_lucas1_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_lucas1_foil" + "sticker_material" "krakow2017/sig_lucas1_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "4780624" + } + "2369" + { + "name" "krakow2017_signature_lucas1_gold" + "item_name" "#StickerKit_krakow2017_signature_lucas1_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_lucas1_gold" + "sticker_material" "krakow2017/sig_lucas1_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "4780624" + } + "2370" + { + "name" "krakow2017_signature_steel" + "item_name" "#StickerKit_krakow2017_signature_steel" + "description_string" "#StickerKit_desc_krakow2017_signature_steel" + "sticker_material" "krakow2017/sig_steel" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "54512474" + } + "2371" + { + "name" "krakow2017_signature_steel_foil" + "item_name" "#StickerKit_krakow2017_signature_steel_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_steel_foil" + "sticker_material" "krakow2017/sig_steel_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "54512474" + } + "2372" + { + "name" "krakow2017_signature_steel_gold" + "item_name" "#StickerKit_krakow2017_signature_steel_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_steel_gold" + "sticker_material" "krakow2017/sig_steel_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "71" + "tournament_player_id" "54512474" + } + "2373" + { + "name" "krakow2017_signature_chopper" + "item_name" "#StickerKit_krakow2017_signature_chopper" + "description_string" "#StickerKit_desc_krakow2017_signature_chopper" + "sticker_material" "krakow2017/sig_chopper" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "2374" + { + "name" "krakow2017_signature_chopper_foil" + "item_name" "#StickerKit_krakow2017_signature_chopper_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_chopper_foil" + "sticker_material" "krakow2017/sig_chopper_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "2375" + { + "name" "krakow2017_signature_chopper_gold" + "item_name" "#StickerKit_krakow2017_signature_chopper_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_chopper_gold" + "sticker_material" "krakow2017/sig_chopper_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "2376" + { + "name" "krakow2017_signature_hutji" + "item_name" "#StickerKit_krakow2017_signature_hutji" + "description_string" "#StickerKit_desc_krakow2017_signature_hutji" + "sticker_material" "krakow2017/sig_hutji" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "2377" + { + "name" "krakow2017_signature_hutji_foil" + "item_name" "#StickerKit_krakow2017_signature_hutji_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_hutji_foil" + "sticker_material" "krakow2017/sig_hutji_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "2378" + { + "name" "krakow2017_signature_hutji_gold" + "item_name" "#StickerKit_krakow2017_signature_hutji_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_hutji_gold" + "sticker_material" "krakow2017/sig_hutji_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "2379" + { + "name" "krakow2017_signature_jr" + "item_name" "#StickerKit_krakow2017_signature_jr" + "description_string" "#StickerKit_desc_krakow2017_signature_jr" + "sticker_material" "krakow2017/sig_jr" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "2380" + { + "name" "krakow2017_signature_jr_foil" + "item_name" "#StickerKit_krakow2017_signature_jr_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_jr_foil" + "sticker_material" "krakow2017/sig_jr_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "2381" + { + "name" "krakow2017_signature_jr_gold" + "item_name" "#StickerKit_krakow2017_signature_jr_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_jr_gold" + "sticker_material" "krakow2017/sig_jr_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "2382" + { + "name" "krakow2017_signature_keshandr" + "item_name" "#StickerKit_krakow2017_signature_keshandr" + "description_string" "#StickerKit_desc_krakow2017_signature_keshandr" + "sticker_material" "krakow2017/sig_keshandr" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "65572922" + } + "2383" + { + "name" "krakow2017_signature_keshandr_foil" + "item_name" "#StickerKit_krakow2017_signature_keshandr_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_keshandr_foil" + "sticker_material" "krakow2017/sig_keshandr_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "65572922" + } + "2384" + { + "name" "krakow2017_signature_keshandr_gold" + "item_name" "#StickerKit_krakow2017_signature_keshandr_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_keshandr_gold" + "sticker_material" "krakow2017/sig_keshandr_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "65572922" + } + "2385" + { + "name" "krakow2017_signature_mir" + "item_name" "#StickerKit_krakow2017_signature_mir" + "description_string" "#StickerKit_desc_krakow2017_signature_mir" + "sticker_material" "krakow2017/sig_mir" + "item_rarity" "rare" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "40562076" + } + "2386" + { + "name" "krakow2017_signature_mir_foil" + "item_name" "#StickerKit_krakow2017_signature_mir_foil" + "description_string" "#StickerKit_desc_krakow2017_signature_mir_foil" + "sticker_material" "krakow2017/sig_mir_foil" + "item_rarity" "mythical" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "40562076" + } + "2387" + { + "name" "krakow2017_signature_mir_gold" + "item_name" "#StickerKit_krakow2017_signature_mir_gold" + "description_string" "#StickerKit_desc_krakow2017_signature_mir_gold" + "sticker_material" "krakow2017/sig_mir_gold" + "item_rarity" "ancient" + "tournament_event_id" "12" + "tournament_team_id" "70" + "tournament_player_id" "40562076" + } + } + "prefabs" + { + "boston2018_sticker_capsule_prefab" + { + "first_sale_date" "2017-12-18" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + } + "boston2018_signature_capsule_prefab" + { + "first_sale_date" "2017-12-18" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_boston2018_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_boston2018_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "224" "crate_sticker_pack_boston2018_legends" + "225" "crate_sticker_pack_boston2018_challengers" + "226" "crate_sticker_pack_boston2018_contenders" + "227" "crate_signature_pack_boston2018_group_players_collection_legends" + "228" "crate_signature_pack_boston2018_group_players_collection_challengers" + "229" "crate_signature_pack_boston2018_group_players_collection_contenders" + "230" "crate_boston2018_promo_de_inferno" + "231" "crate_boston2018_promo_de_mirage" + "232" "crate_boston2018_promo_de_cbble" + "233" "crate_boston2018_promo_de_overpass" + "234" "crate_boston2018_promo_de_cache" + "235" "crate_boston2018_promo_de_train" + "236" "crate_boston2018_promo_de_nuke" + "239" "crate_sticker_pack_boston2018_contenders_flg" + "240" "crate_signature_pack_boston2018_group_players_collection_contenders_flg" + "241" "crate_sticker_pack_boston2018_legends_ntv" + "242" "crate_signature_pack_boston2018_group_players_collection_legends_ntv" + } + "client_loot_lists" + { + "boston2018_rare_gamb" + { + "[boston2018_team_gamb]sticker" "1" + } + "boston2018_rare_thv" + { + "[boston2018_team_thv]sticker" "1" + } + "boston2018_rare_astr" + { + "[boston2018_team_astr]sticker" "1" + } + "boston2018_rare_vp" + { + "[boston2018_team_vp]sticker" "1" + } + "boston2018_rare_fntc" + { + "[boston2018_team_fntc]sticker" "1" + } + "boston2018_rare_sk" + { + "[boston2018_team_sk]sticker" "1" + } + "boston2018_rare_big" + { + "[boston2018_team_big]sticker" "1" + } + "boston2018_rare_nor" + { + "[boston2018_team_nor]sticker" "1" + } + "boston2018_rare_g2" + { + "[boston2018_team_g2]sticker" "1" + } + "boston2018_rare_c9" + { + "[boston2018_team_c9]sticker" "1" + } + "boston2018_rare_flip" + { + "[boston2018_team_flip]sticker" "1" + } + "boston2018_rare_navi" + { + "[boston2018_team_navi]sticker" "1" + } + "boston2018_rare_mss" + { + "[boston2018_team_mss]sticker" "1" + } + "boston2018_rare_spr" + { + "[boston2018_team_spr]sticker" "1" + } + "boston2018_rare_faze" + { + "[boston2018_team_faze]sticker" "1" + } + "boston2018_rare_vega" + { + "[boston2018_team_vega]sticker" "1" + } + "boston2018_rare_spc" + { + "[boston2018_team_spc]sticker" "1" + } + "boston2018_rare_liq" + { + "[boston2018_team_liq]sticker" "1" + } + "boston2018_rare_avg" + { + "[boston2018_team_avg]sticker" "1" + } + "boston2018_rare_ren" + { + "[boston2018_team_ren]sticker" "1" + } + "boston2018_rare_nv" + { + "[boston2018_team_nv]sticker" "1" + } + "boston2018_rare_mfg" + { + "[boston2018_team_mfg]sticker" "1" + } + "boston2018_rare_qb" + { + "[boston2018_team_qb]sticker" "1" + } + "boston2018_rare_tyl" + { + "[boston2018_team_tyl]sticker" "1" + } + "boston2018_rare_flg" + { + "[boston2018_team_flg]sticker" "1" + } + "boston2018_rare_eleague" + { + "[boston2018_team_eleague]sticker" "1" + } + "boston2018_graffiti_gamb" + { + "[boston2018_team_gamb_graffiti]spray" "1" + } + "boston2018_graffiti_thv" + { + "[boston2018_team_thv_graffiti]spray" "1" + } + "boston2018_graffiti_astr" + { + "[boston2018_team_astr_graffiti]spray" "1" + } + "boston2018_graffiti_vp" + { + "[boston2018_team_vp_graffiti]spray" "1" + } + "boston2018_graffiti_fntc" + { + "[boston2018_team_fntc_graffiti]spray" "1" + } + "boston2018_graffiti_sk" + { + "[boston2018_team_sk_graffiti]spray" "1" + } + "boston2018_graffiti_big" + { + "[boston2018_team_big_graffiti]spray" "1" + } + "boston2018_graffiti_nor" + { + "[boston2018_team_nor_graffiti]spray" "1" + } + "boston2018_graffiti_g2" + { + "[boston2018_team_g2_graffiti]spray" "1" + } + "boston2018_graffiti_c9" + { + "[boston2018_team_c9_graffiti]spray" "1" + } + "boston2018_graffiti_flip" + { + "[boston2018_team_flip_graffiti]spray" "1" + } + "boston2018_graffiti_navi" + { + "[boston2018_team_navi_graffiti]spray" "1" + } + "boston2018_graffiti_mss" + { + "[boston2018_team_mss_graffiti]spray" "1" + } + "boston2018_graffiti_spr" + { + "[boston2018_team_spr_graffiti]spray" "1" + } + "boston2018_graffiti_faze" + { + "[boston2018_team_faze_graffiti]spray" "1" + } + "boston2018_graffiti_vega" + { + "[boston2018_team_vega_graffiti]spray" "1" + } + "boston2018_graffiti_spc" + { + "[boston2018_team_spc_graffiti]spray" "1" + } + "boston2018_graffiti_liq" + { + "[boston2018_team_liq_graffiti]spray" "1" + } + "boston2018_graffiti_avg" + { + "[boston2018_team_avg_graffiti]spray" "1" + } + "boston2018_graffiti_ren" + { + "[boston2018_team_ren_graffiti]spray" "1" + } + "boston2018_graffiti_nv" + { + "[boston2018_team_nv_graffiti]spray" "1" + } + "boston2018_graffiti_mfg" + { + "[boston2018_team_mfg_graffiti]spray" "1" + } + "boston2018_graffiti_qb" + { + "[boston2018_team_qb_graffiti]spray" "1" + } + "boston2018_graffiti_tyl" + { + "[boston2018_team_tyl_graffiti]spray" "1" + } + "boston2018_graffiti_flg" + { + "[boston2018_team_flg_graffiti]spray" "1" + } + "boston2018_graffiti_eleague" + { + "[boston2018_team_eleague_graffiti]spray" "1" + } + "crate_sticker_pack_boston2018_legends_rare" + { + "[boston2018_team_gamb]sticker" "1" + "[boston2018_team_thv]sticker" "1" + "[boston2018_team_astr]sticker" "1" + "[boston2018_team_vp]sticker" "1" + "[boston2018_team_fntc]sticker" "1" + "[boston2018_team_sk]sticker" "1" + "[boston2018_team_big]sticker" "1" + "[boston2018_team_nor]sticker" "1" + "[boston2018_team_eleague]sticker" "1" + } + "crate_sticker_pack_boston2018_legends_mythical" + { + "[boston2018_team_gamb_holo]sticker" "1" + "[boston2018_team_thv_holo]sticker" "1" + "[boston2018_team_astr_holo]sticker" "1" + "[boston2018_team_vp_holo]sticker" "1" + "[boston2018_team_fntc_holo]sticker" "1" + "[boston2018_team_sk_holo]sticker" "1" + "[boston2018_team_big_holo]sticker" "1" + "[boston2018_team_nor_holo]sticker" "1" + "[boston2018_team_eleague_holo]sticker" "1" + } + "crate_sticker_pack_boston2018_legends_ntv_mythical" + { + "[boston2018_team_gamb_holo]sticker" "1" + "[boston2018_team_astr_holo]sticker" "1" + "[boston2018_team_vp_holo]sticker" "1" + "[boston2018_team_fntc_holo]sticker" "1" + "[boston2018_team_sk_holo]sticker" "1" + "[boston2018_team_big_holo]sticker" "1" + "[boston2018_team_nor_holo]sticker" "1" + "[boston2018_team_eleague_holo]sticker" "1" + } + "crate_sticker_pack_boston2018_legends_legendary" + { + "[boston2018_team_gamb_foil]sticker" "1" + "[boston2018_team_thv_foil]sticker" "1" + "[boston2018_team_astr_foil]sticker" "1" + "[boston2018_team_vp_foil]sticker" "1" + "[boston2018_team_fntc_foil]sticker" "1" + "[boston2018_team_sk_foil]sticker" "1" + "[boston2018_team_big_foil]sticker" "1" + "[boston2018_team_nor_foil]sticker" "1" + "[boston2018_team_eleague_foil]sticker" "1" + } + "crate_sticker_pack_boston2018_legends_ntv_legendary" + { + "[boston2018_team_gamb_foil]sticker" "1" + "[boston2018_team_astr_foil]sticker" "1" + "[boston2018_team_vp_foil]sticker" "1" + "[boston2018_team_fntc_foil]sticker" "1" + "[boston2018_team_sk_foil]sticker" "1" + "[boston2018_team_big_foil]sticker" "1" + "[boston2018_team_nor_foil]sticker" "1" + "[boston2018_team_eleague_foil]sticker" "1" + } + "crate_sticker_pack_boston2018_legends" + { + "crate_sticker_pack_boston2018_legends_mythical" "1" + "crate_sticker_pack_boston2018_legends_legendary" "1" + } + "crate_sticker_pack_boston2018_legends_ntv" + { + "crate_sticker_pack_boston2018_legends_ntv_mythical" "1" + "crate_sticker_pack_boston2018_legends_ntv_legendary" "1" + } + "crate_sticker_pack_boston2018_challengers_rare" + { + "[boston2018_team_g2]sticker" "1" + "[boston2018_team_c9]sticker" "1" + "[boston2018_team_flip]sticker" "1" + "[boston2018_team_navi]sticker" "1" + "[boston2018_team_mss]sticker" "1" + "[boston2018_team_spr]sticker" "1" + "[boston2018_team_faze]sticker" "1" + "[boston2018_team_vega]sticker" "1" + "[boston2018_team_eleague]sticker" "1" + } + "crate_sticker_pack_boston2018_challengers_mythical" + { + "[boston2018_team_g2_holo]sticker" "1" + "[boston2018_team_c9_holo]sticker" "1" + "[boston2018_team_flip_holo]sticker" "1" + "[boston2018_team_navi_holo]sticker" "1" + "[boston2018_team_mss_holo]sticker" "1" + "[boston2018_team_spr_holo]sticker" "1" + "[boston2018_team_faze_holo]sticker" "1" + "[boston2018_team_vega_holo]sticker" "1" + "[boston2018_team_eleague_holo]sticker" "1" + } + "crate_sticker_pack_boston2018_challengers_legendary" + { + "[boston2018_team_g2_foil]sticker" "1" + "[boston2018_team_c9_foil]sticker" "1" + "[boston2018_team_flip_foil]sticker" "1" + "[boston2018_team_navi_foil]sticker" "1" + "[boston2018_team_mss_foil]sticker" "1" + "[boston2018_team_spr_foil]sticker" "1" + "[boston2018_team_faze_foil]sticker" "1" + "[boston2018_team_vega_foil]sticker" "1" + "[boston2018_team_eleague_foil]sticker" "1" + } + "crate_sticker_pack_boston2018_challengers" + { + "crate_sticker_pack_boston2018_challengers_mythical" "1" + "crate_sticker_pack_boston2018_challengers_legendary" "1" + } + "crate_sticker_pack_boston2018_contenders_rare" + { + "[boston2018_team_spc]sticker" "1" + "[boston2018_team_liq]sticker" "1" + "[boston2018_team_avg]sticker" "1" + "[boston2018_team_ren]sticker" "1" + "[boston2018_team_nv]sticker" "1" + "[boston2018_team_mfg]sticker" "1" + "[boston2018_team_qb]sticker" "1" + "[boston2018_team_tyl]sticker" "1" + "[boston2018_team_flg]sticker" "1" + "[boston2018_team_eleague]sticker" "1" + } + "crate_sticker_pack_boston2018_contenders_mythical" + { + "[boston2018_team_spc_holo]sticker" "1" + "[boston2018_team_liq_holo]sticker" "1" + "[boston2018_team_avg_holo]sticker" "1" + "[boston2018_team_ren_holo]sticker" "1" + "[boston2018_team_nv_holo]sticker" "1" + "[boston2018_team_mfg_holo]sticker" "1" + "[boston2018_team_qb_holo]sticker" "1" + "[boston2018_team_tyl_holo]sticker" "1" + "[boston2018_team_eleague_holo]sticker" "1" + } + "crate_sticker_pack_boston2018_contenders_legendary" + { + "[boston2018_team_spc_foil]sticker" "1" + "[boston2018_team_liq_foil]sticker" "1" + "[boston2018_team_avg_foil]sticker" "1" + "[boston2018_team_ren_foil]sticker" "1" + "[boston2018_team_nv_foil]sticker" "1" + "[boston2018_team_mfg_foil]sticker" "1" + "[boston2018_team_qb_foil]sticker" "1" + "[boston2018_team_tyl_foil]sticker" "1" + "[boston2018_team_eleague_foil]sticker" "1" + } + "crate_sticker_pack_boston2018_contenders_flgonly_mythical" + { + "[boston2018_team_flg_holo]sticker" "1" + } + "crate_sticker_pack_boston2018_contenders_flg_mythical" + { + "[boston2018_team_spc_holo]sticker" "1" + "[boston2018_team_liq_holo]sticker" "1" + "[boston2018_team_avg_holo]sticker" "1" + "[boston2018_team_ren_holo]sticker" "1" + "[boston2018_team_nv_holo]sticker" "1" + "[boston2018_team_mfg_holo]sticker" "1" + "[boston2018_team_qb_holo]sticker" "1" + "[boston2018_team_flg_holo]sticker" "1" + "[boston2018_team_eleague_holo]sticker" "1" + } + "crate_sticker_pack_boston2018_contenders_flgonly_legendary" + { + "[boston2018_team_flg_foil]sticker" "1" + } + "crate_sticker_pack_boston2018_contenders_flg_legendary" + { + "[boston2018_team_spc_foil]sticker" "1" + "[boston2018_team_liq_foil]sticker" "1" + "[boston2018_team_avg_foil]sticker" "1" + "[boston2018_team_ren_foil]sticker" "1" + "[boston2018_team_nv_foil]sticker" "1" + "[boston2018_team_mfg_foil]sticker" "1" + "[boston2018_team_qb_foil]sticker" "1" + "[boston2018_team_flg_foil]sticker" "1" + "[boston2018_team_eleague_foil]sticker" "1" + } + "crate_sticker_pack_boston2018_contenders" + { + "crate_sticker_pack_boston2018_contenders_mythical" "1" + "crate_sticker_pack_boston2018_contenders_legendary" "1" + } + "crate_sticker_pack_boston2018_contenders_flg" + { + "crate_sticker_pack_boston2018_contenders_flg_mythical" "1" + "crate_sticker_pack_boston2018_contenders_flg_legendary" "1" + } + "boston2018_signatures_gamb" + { + "[boston2018_signature_adrenkz]sticker" "1" + "[boston2018_signature_adrenkz_foil]sticker" "1" + "[boston2018_signature_adrenkz_gold]sticker" "1" + "[boston2018_signature_dosia]sticker" "1" + "[boston2018_signature_dosia_foil]sticker" "1" + "[boston2018_signature_dosia_gold]sticker" "1" + "[boston2018_signature_fitch]sticker" "1" + "[boston2018_signature_fitch_foil]sticker" "1" + "[boston2018_signature_fitch_gold]sticker" "1" + "[boston2018_signature_hobbit]sticker" "1" + "[boston2018_signature_hobbit_foil]sticker" "1" + "[boston2018_signature_hobbit_gold]sticker" "1" + "[boston2018_signature_mou]sticker" "1" + "[boston2018_signature_mou_foil]sticker" "1" + "[boston2018_signature_mou_gold]sticker" "1" + } + "boston2018_signatures_thv" + { + "[boston2018_signature_bit]sticker" "1" + "[boston2018_signature_bit_foil]sticker" "1" + "[boston2018_signature_bit_gold]sticker" "1" + "[boston2018_signature_fnx]sticker" "1" + "[boston2018_signature_fnx_foil]sticker" "1" + "[boston2018_signature_fnx_gold]sticker" "1" + "[boston2018_signature_hen1]sticker" "1" + "[boston2018_signature_hen1_foil]sticker" "1" + "[boston2018_signature_hen1_gold]sticker" "1" + "[boston2018_signature_kngv]sticker" "1" + "[boston2018_signature_kngv_foil]sticker" "1" + "[boston2018_signature_kngv_gold]sticker" "1" + "[boston2018_signature_lucas1]sticker" "1" + "[boston2018_signature_lucas1_foil]sticker" "1" + "[boston2018_signature_lucas1_gold]sticker" "1" + } + "boston2018_signatures_astr" + { + "[boston2018_signature_device]sticker" "1" + "[boston2018_signature_device_foil]sticker" "1" + "[boston2018_signature_device_gold]sticker" "1" + "[boston2018_signature_dupreeh]sticker" "1" + "[boston2018_signature_dupreeh_foil]sticker" "1" + "[boston2018_signature_dupreeh_gold]sticker" "1" + "[boston2018_signature_gla1ve]sticker" "1" + "[boston2018_signature_gla1ve_foil]sticker" "1" + "[boston2018_signature_gla1ve_gold]sticker" "1" + "[boston2018_signature_kjaerbye]sticker" "1" + "[boston2018_signature_kjaerbye_foil]sticker" "1" + "[boston2018_signature_kjaerbye_gold]sticker" "1" + "[boston2018_signature_xyp9x]sticker" "1" + "[boston2018_signature_xyp9x_foil]sticker" "1" + "[boston2018_signature_xyp9x_gold]sticker" "1" + } + "boston2018_signatures_vp" + { + "[boston2018_signature_byali]sticker" "1" + "[boston2018_signature_byali_foil]sticker" "1" + "[boston2018_signature_byali_gold]sticker" "1" + "[boston2018_signature_neo]sticker" "1" + "[boston2018_signature_neo_foil]sticker" "1" + "[boston2018_signature_neo_gold]sticker" "1" + "[boston2018_signature_pasha]sticker" "1" + "[boston2018_signature_pasha_foil]sticker" "1" + "[boston2018_signature_pasha_gold]sticker" "1" + "[boston2018_signature_snax]sticker" "1" + "[boston2018_signature_snax_foil]sticker" "1" + "[boston2018_signature_snax_gold]sticker" "1" + "[boston2018_signature_taz]sticker" "1" + "[boston2018_signature_taz_foil]sticker" "1" + "[boston2018_signature_taz_gold]sticker" "1" + } + "boston2018_signatures_fntc" + { + "[boston2018_signature_flusha]sticker" "1" + "[boston2018_signature_flusha_foil]sticker" "1" + "[boston2018_signature_flusha_gold]sticker" "1" + "[boston2018_signature_golden]sticker" "1" + "[boston2018_signature_golden_foil]sticker" "1" + "[boston2018_signature_golden_gold]sticker" "1" + "[boston2018_signature_jw]sticker" "1" + "[boston2018_signature_jw_foil]sticker" "1" + "[boston2018_signature_jw_gold]sticker" "1" + "[boston2018_signature_krimz]sticker" "1" + "[boston2018_signature_krimz_foil]sticker" "1" + "[boston2018_signature_krimz_gold]sticker" "1" + "[boston2018_signature_lekro]sticker" "1" + "[boston2018_signature_lekro_foil]sticker" "1" + "[boston2018_signature_lekro_gold]sticker" "1" + } + "boston2018_signatures_sk" + { + "[boston2018_signature_coldzera]sticker" "1" + "[boston2018_signature_coldzera_foil]sticker" "1" + "[boston2018_signature_coldzera_gold]sticker" "1" + "[boston2018_signature_fallen]sticker" "1" + "[boston2018_signature_fallen_foil]sticker" "1" + "[boston2018_signature_fallen_gold]sticker" "1" + "[boston2018_signature_felps]sticker" "1" + "[boston2018_signature_felps_foil]sticker" "1" + "[boston2018_signature_felps_gold]sticker" "1" + "[boston2018_signature_fer]sticker" "1" + "[boston2018_signature_fer_foil]sticker" "1" + "[boston2018_signature_fer_gold]sticker" "1" + "[boston2018_signature_taco]sticker" "1" + "[boston2018_signature_taco_foil]sticker" "1" + "[boston2018_signature_taco_gold]sticker" "1" + } + "boston2018_signatures_big" + { + "[boston2018_signature_gobb]sticker" "1" + "[boston2018_signature_gobb_foil]sticker" "1" + "[boston2018_signature_gobb_gold]sticker" "1" + "[boston2018_signature_keev]sticker" "1" + "[boston2018_signature_keev_foil]sticker" "1" + "[boston2018_signature_keev_gold]sticker" "1" + "[boston2018_signature_legija]sticker" "1" + "[boston2018_signature_legija_foil]sticker" "1" + "[boston2018_signature_legija_gold]sticker" "1" + "[boston2018_signature_nex]sticker" "1" + "[boston2018_signature_nex_foil]sticker" "1" + "[boston2018_signature_nex_gold]sticker" "1" + "[boston2018_signature_tabsen]sticker" "1" + "[boston2018_signature_tabsen_foil]sticker" "1" + "[boston2018_signature_tabsen_gold]sticker" "1" + } + "boston2018_signatures_nor" + { + "[boston2018_signature_aizy]sticker" "1" + "[boston2018_signature_aizy_foil]sticker" "1" + "[boston2018_signature_aizy_gold]sticker" "1" + "[boston2018_signature_cajunb]sticker" "1" + "[boston2018_signature_cajunb_foil]sticker" "1" + "[boston2018_signature_cajunb_gold]sticker" "1" + "[boston2018_signature_k0nfig]sticker" "1" + "[boston2018_signature_k0nfig_foil]sticker" "1" + "[boston2018_signature_k0nfig_gold]sticker" "1" + "[boston2018_signature_msl]sticker" "1" + "[boston2018_signature_msl_foil]sticker" "1" + "[boston2018_signature_msl_gold]sticker" "1" + "[boston2018_signature_v4lde]sticker" "1" + "[boston2018_signature_v4lde_foil]sticker" "1" + "[boston2018_signature_v4lde_gold]sticker" "1" + } + "boston2018_signatures_g2" + { + "[boston2018_signature_apex]sticker" "1" + "[boston2018_signature_apex_foil]sticker" "1" + "[boston2018_signature_apex_gold]sticker" "1" + "[boston2018_signature_bodyy]sticker" "1" + "[boston2018_signature_bodyy_foil]sticker" "1" + "[boston2018_signature_bodyy_gold]sticker" "1" + "[boston2018_signature_kennys]sticker" "1" + "[boston2018_signature_kennys_foil]sticker" "1" + "[boston2018_signature_kennys_gold]sticker" "1" + "[boston2018_signature_nbk]sticker" "1" + "[boston2018_signature_nbk_foil]sticker" "1" + "[boston2018_signature_nbk_gold]sticker" "1" + "[boston2018_signature_shox]sticker" "1" + "[boston2018_signature_shox_foil]sticker" "1" + "[boston2018_signature_shox_gold]sticker" "1" + } + "boston2018_signatures_c9" + { + "[boston2018_signature_autimatic]sticker" "1" + "[boston2018_signature_autimatic_foil]sticker" "1" + "[boston2018_signature_autimatic_gold]sticker" "1" + "[boston2018_signature_rush]sticker" "1" + "[boston2018_signature_rush_foil]sticker" "1" + "[boston2018_signature_rush_gold]sticker" "1" + "[boston2018_signature_skadoodle]sticker" "1" + "[boston2018_signature_skadoodle_foil]sticker" "1" + "[boston2018_signature_skadoodle_gold]sticker" "1" + "[boston2018_signature_stewie2k]sticker" "1" + "[boston2018_signature_stewie2k_foil]sticker" "1" + "[boston2018_signature_stewie2k_gold]sticker" "1" + "[boston2018_signature_tarik]sticker" "1" + "[boston2018_signature_tarik_foil]sticker" "1" + "[boston2018_signature_tarik_gold]sticker" "1" + } + "boston2018_signatures_flip" + { + "[boston2018_signature_b1ad3]sticker" "1" + "[boston2018_signature_b1ad3_foil]sticker" "1" + "[boston2018_signature_b1ad3_gold]sticker" "1" + "[boston2018_signature_markeloff]sticker" "1" + "[boston2018_signature_markeloff_foil]sticker" "1" + "[boston2018_signature_markeloff_gold]sticker" "1" + "[boston2018_signature_seized]sticker" "1" + "[boston2018_signature_seized_foil]sticker" "1" + "[boston2018_signature_seized_gold]sticker" "1" + "[boston2018_signature_waylander]sticker" "1" + "[boston2018_signature_waylander_foil]sticker" "1" + "[boston2018_signature_waylander_gold]sticker" "1" + "[boston2018_signature_worldedit]sticker" "1" + "[boston2018_signature_worldedit_foil]sticker" "1" + "[boston2018_signature_worldedit_gold]sticker" "1" + } + "boston2018_signatures_navi" + { + "[boston2018_signature_edward]sticker" "1" + "[boston2018_signature_edward_foil]sticker" "1" + "[boston2018_signature_edward_gold]sticker" "1" + "[boston2018_signature_electronic]sticker" "1" + "[boston2018_signature_electronic_foil]sticker" "1" + "[boston2018_signature_electronic_gold]sticker" "1" + "[boston2018_signature_flamie]sticker" "1" + "[boston2018_signature_flamie_foil]sticker" "1" + "[boston2018_signature_flamie_gold]sticker" "1" + "[boston2018_signature_s1mple]sticker" "1" + "[boston2018_signature_s1mple_foil]sticker" "1" + "[boston2018_signature_s1mple_gold]sticker" "1" + "[boston2018_signature_zeus]sticker" "1" + "[boston2018_signature_zeus_foil]sticker" "1" + "[boston2018_signature_zeus_gold]sticker" "1" + } + "boston2018_signatures_mss" + { + "[boston2018_signature_chrisj]sticker" "1" + "[boston2018_signature_chrisj_foil]sticker" "1" + "[boston2018_signature_chrisj_gold]sticker" "1" + "[boston2018_signature_oskar]sticker" "1" + "[boston2018_signature_oskar_foil]sticker" "1" + "[boston2018_signature_oskar_gold]sticker" "1" + "[boston2018_signature_ropz]sticker" "1" + "[boston2018_signature_ropz_foil]sticker" "1" + "[boston2018_signature_ropz_gold]sticker" "1" + "[boston2018_signature_styko]sticker" "1" + "[boston2018_signature_styko_foil]sticker" "1" + "[boston2018_signature_styko_gold]sticker" "1" + "[boston2018_signature_sunny]sticker" "1" + "[boston2018_signature_sunny_foil]sticker" "1" + "[boston2018_signature_sunny_gold]sticker" "1" + } + "boston2018_signatures_spr" + { + "[boston2018_signature_denis]sticker" "1" + "[boston2018_signature_denis_foil]sticker" "1" + "[boston2018_signature_denis_gold]sticker" "1" + "[boston2018_signature_innocent]sticker" "1" + "[boston2018_signature_innocent_foil]sticker" "1" + "[boston2018_signature_innocent_gold]sticker" "1" + "[boston2018_signature_krystal]sticker" "1" + "[boston2018_signature_krystal_foil]sticker" "1" + "[boston2018_signature_krystal_gold]sticker" "1" + "[boston2018_signature_spiidi]sticker" "1" + "[boston2018_signature_spiidi_foil]sticker" "1" + "[boston2018_signature_spiidi_gold]sticker" "1" + "[boston2018_signature_zehn]sticker" "1" + "[boston2018_signature_zehn_foil]sticker" "1" + "[boston2018_signature_zehn_gold]sticker" "1" + } + "boston2018_signatures_faze" + { + "[boston2018_signature_guardian]sticker" "1" + "[boston2018_signature_guardian_foil]sticker" "1" + "[boston2018_signature_guardian_gold]sticker" "1" + "[boston2018_signature_karrigan]sticker" "1" + "[boston2018_signature_karrigan_foil]sticker" "1" + "[boston2018_signature_karrigan_gold]sticker" "1" + "[boston2018_signature_niko]sticker" "1" + "[boston2018_signature_niko_foil]sticker" "1" + "[boston2018_signature_niko_gold]sticker" "1" + "[boston2018_signature_olofmeister]sticker" "1" + "[boston2018_signature_olofmeister_foil]sticker" "1" + "[boston2018_signature_olofmeister_gold]sticker" "1" + "[boston2018_signature_rain]sticker" "1" + "[boston2018_signature_rain_foil]sticker" "1" + "[boston2018_signature_rain_gold]sticker" "1" + } + "boston2018_signatures_vega" + { + "[boston2018_signature_chopper]sticker" "1" + "[boston2018_signature_chopper_foil]sticker" "1" + "[boston2018_signature_chopper_gold]sticker" "1" + "[boston2018_signature_hutji]sticker" "1" + "[boston2018_signature_hutji_foil]sticker" "1" + "[boston2018_signature_hutji_gold]sticker" "1" + "[boston2018_signature_jr]sticker" "1" + "[boston2018_signature_jr_foil]sticker" "1" + "[boston2018_signature_jr_gold]sticker" "1" + "[boston2018_signature_keshandr]sticker" "1" + "[boston2018_signature_keshandr_foil]sticker" "1" + "[boston2018_signature_keshandr_gold]sticker" "1" + "[boston2018_signature_mir]sticker" "1" + "[boston2018_signature_mir_foil]sticker" "1" + "[boston2018_signature_mir_gold]sticker" "1" + } + "boston2018_signatures_spc" + { + "[boston2018_signature_calyx]sticker" "1" + "[boston2018_signature_calyx_foil]sticker" "1" + "[boston2018_signature_calyx_gold]sticker" "1" + "[boston2018_signature_maj3r]sticker" "1" + "[boston2018_signature_maj3r_foil]sticker" "1" + "[boston2018_signature_maj3r_gold]sticker" "1" + "[boston2018_signature_ngin]sticker" "1" + "[boston2018_signature_ngin_foil]sticker" "1" + "[boston2018_signature_ngin_gold]sticker" "1" + "[boston2018_signature_paz]sticker" "1" + "[boston2018_signature_paz_foil]sticker" "1" + "[boston2018_signature_paz_gold]sticker" "1" + "[boston2018_signature_xantares]sticker" "1" + "[boston2018_signature_xantares_foil]sticker" "1" + "[boston2018_signature_xantares_gold]sticker" "1" + } + "boston2018_signatures_liq" + { + "[boston2018_signature_elige]sticker" "1" + "[boston2018_signature_elige_foil]sticker" "1" + "[boston2018_signature_elige_gold]sticker" "1" + "[boston2018_signature_jdm64]sticker" "1" + "[boston2018_signature_jdm64_foil]sticker" "1" + "[boston2018_signature_jdm64_gold]sticker" "1" + "[boston2018_signature_nitro]sticker" "1" + "[boston2018_signature_nitro_foil]sticker" "1" + "[boston2018_signature_nitro_gold]sticker" "1" + "[boston2018_signature_stanislaw]sticker" "1" + "[boston2018_signature_stanislaw_foil]sticker" "1" + "[boston2018_signature_stanislaw_gold]sticker" "1" + "[boston2018_signature_twistzz]sticker" "1" + "[boston2018_signature_twistzz_foil]sticker" "1" + "[boston2018_signature_twistzz_gold]sticker" "1" + } + "boston2018_signatures_avg" + { + "[boston2018_signature_buster]sticker" "1" + "[boston2018_signature_buster_foil]sticker" "1" + "[boston2018_signature_buster_gold]sticker" "1" + "[boston2018_signature_dimasick]sticker" "1" + "[boston2018_signature_dimasick_foil]sticker" "1" + "[boston2018_signature_dimasick_gold]sticker" "1" + "[boston2018_signature_jame]sticker" "1" + "[boston2018_signature_jame_foil]sticker" "1" + "[boston2018_signature_jame_gold]sticker" "1" + "[boston2018_signature_krizzen]sticker" "1" + "[boston2018_signature_krizzen_foil]sticker" "1" + "[boston2018_signature_krizzen_gold]sticker" "1" + "[boston2018_signature_qikert]sticker" "1" + "[boston2018_signature_qikert_foil]sticker" "1" + "[boston2018_signature_qikert_gold]sticker" "1" + } + "boston2018_signatures_ren" + { + "[boston2018_signature_azr]sticker" "1" + "[boston2018_signature_azr_foil]sticker" "1" + "[boston2018_signature_azr_gold]sticker" "1" + "[boston2018_signature_jks]sticker" "1" + "[boston2018_signature_jks_foil]sticker" "1" + "[boston2018_signature_jks_gold]sticker" "1" + "[boston2018_signature_naf]sticker" "1" + "[boston2018_signature_naf_foil]sticker" "1" + "[boston2018_signature_naf_gold]sticker" "1" + "[boston2018_signature_nifty]sticker" "1" + "[boston2018_signature_nifty_foil]sticker" "1" + "[boston2018_signature_nifty_gold]sticker" "1" + "[boston2018_signature_ustilo]sticker" "1" + "[boston2018_signature_ustilo_foil]sticker" "1" + "[boston2018_signature_ustilo_gold]sticker" "1" + } + "boston2018_signatures_nv" + { + "[boston2018_signature_happy]sticker" "1" + "[boston2018_signature_happy_foil]sticker" "1" + "[boston2018_signature_happy_gold]sticker" "1" + "[boston2018_signature_rpk]sticker" "1" + "[boston2018_signature_rpk_foil]sticker" "1" + "[boston2018_signature_rpk_gold]sticker" "1" + "[boston2018_signature_scream]sticker" "1" + "[boston2018_signature_scream_foil]sticker" "1" + "[boston2018_signature_scream_gold]sticker" "1" + "[boston2018_signature_sixer]sticker" "1" + "[boston2018_signature_sixer_foil]sticker" "1" + "[boston2018_signature_sixer_gold]sticker" "1" + "[boston2018_signature_xms]sticker" "1" + "[boston2018_signature_xms_foil]sticker" "1" + "[boston2018_signature_xms_gold]sticker" "1" + } + "boston2018_signatures_mfg" + { + "[boston2018_signature_amanek]sticker" "1" + "[boston2018_signature_amanek_foil]sticker" "1" + "[boston2018_signature_amanek_gold]sticker" "1" + "[boston2018_signature_devoduvek]sticker" "1" + "[boston2018_signature_devoduvek_foil]sticker" "1" + "[boston2018_signature_devoduvek_gold]sticker" "1" + "[boston2018_signature_sgares]sticker" "1" + "[boston2018_signature_sgares_foil]sticker" "1" + "[boston2018_signature_sgares_gold]sticker" "1" + "[boston2018_signature_shahzam]sticker" "1" + "[boston2018_signature_shahzam_foil]sticker" "1" + "[boston2018_signature_shahzam_gold]sticker" "1" + "[boston2018_signature_sick]sticker" "1" + "[boston2018_signature_sick_foil]sticker" "1" + "[boston2018_signature_sick_gold]sticker" "1" + } + "boston2018_signatures_qb" + { + "[boston2018_signature_balblna]sticker" "1" + "[boston2018_signature_balblna_foil]sticker" "1" + "[boston2018_signature_balblna_gold]sticker" "1" + "[boston2018_signature_boombl4]sticker" "1" + "[boston2018_signature_boombl4_foil]sticker" "1" + "[boston2018_signature_boombl4_gold]sticker" "1" + "[boston2018_signature_jmqa]sticker" "1" + "[boston2018_signature_jmqa_foil]sticker" "1" + "[boston2018_signature_jmqa_gold]sticker" "1" + "[boston2018_signature_kvik]sticker" "1" + "[boston2018_signature_kvik_foil]sticker" "1" + "[boston2018_signature_kvik_gold]sticker" "1" + "[boston2018_signature_waterfallz]sticker" "1" + "[boston2018_signature_waterfallz_foil]sticker" "1" + "[boston2018_signature_waterfallz_gold]sticker" "1" + } + "boston2018_signatures_tyl" + { + "[boston2018_signature_bntet]sticker" "1" + "[boston2018_signature_bntet_foil]sticker" "1" + "[boston2018_signature_bntet_gold]sticker" "1" + "[boston2018_signature_bondik]sticker" "1" + "[boston2018_signature_bondik_foil]sticker" "1" + "[boston2018_signature_bondik_gold]sticker" "1" + "[boston2018_signature_captainmo]sticker" "1" + "[boston2018_signature_captainmo_foil]sticker" "1" + "[boston2018_signature_captainmo_gold]sticker" "1" + "[boston2018_signature_dd]sticker" "1" + "[boston2018_signature_dd_foil]sticker" "1" + "[boston2018_signature_dd_gold]sticker" "1" + "[boston2018_signature_somebody]sticker" "1" + "[boston2018_signature_somebody_foil]sticker" "1" + "[boston2018_signature_somebody_gold]sticker" "1" + } + "boston2018_signatures_flg" + { + "[boston2018_signature_attacker]sticker" "1" + "[boston2018_signature_attacker_foil]sticker" "1" + "[boston2018_signature_attacker_gold]sticker" "1" + "[boston2018_signature_karsa]sticker" "1" + "[boston2018_signature_karsa_foil]sticker" "1" + "[boston2018_signature_karsa_gold]sticker" "1" + "[boston2018_signature_kaze]sticker" "1" + "[boston2018_signature_kaze_foil]sticker" "1" + "[boston2018_signature_kaze_gold]sticker" "1" + "[boston2018_signature_loveyy]sticker" "1" + "[boston2018_signature_loveyy_foil]sticker" "1" + "[boston2018_signature_loveyy_gold]sticker" "1" + "[boston2018_signature_summer]sticker" "1" + "[boston2018_signature_summer_foil]sticker" "1" + "[boston2018_signature_summer_gold]sticker" "1" + } + "crate_signature_pack_boston2018_group_legends_rare" + { + "[boston2018_signature_adrenkz]sticker" "1" + "[boston2018_signature_dosia]sticker" "1" + "[boston2018_signature_fitch]sticker" "1" + "[boston2018_signature_hobbit]sticker" "1" + "[boston2018_signature_mou]sticker" "1" + "[boston2018_signature_bit]sticker" "1" + "[boston2018_signature_fnx]sticker" "1" + "[boston2018_signature_hen1]sticker" "1" + "[boston2018_signature_kngv]sticker" "1" + "[boston2018_signature_lucas1]sticker" "1" + "[boston2018_signature_device]sticker" "1" + "[boston2018_signature_dupreeh]sticker" "1" + "[boston2018_signature_gla1ve]sticker" "1" + "[boston2018_signature_kjaerbye]sticker" "1" + "[boston2018_signature_xyp9x]sticker" "1" + "[boston2018_signature_byali]sticker" "1" + "[boston2018_signature_neo]sticker" "1" + "[boston2018_signature_pasha]sticker" "1" + "[boston2018_signature_snax]sticker" "1" + "[boston2018_signature_taz]sticker" "1" + "[boston2018_signature_flusha]sticker" "1" + "[boston2018_signature_golden]sticker" "1" + "[boston2018_signature_jw]sticker" "1" + "[boston2018_signature_krimz]sticker" "1" + "[boston2018_signature_lekro]sticker" "1" + "[boston2018_signature_coldzera]sticker" "1" + "[boston2018_signature_fallen]sticker" "1" + "[boston2018_signature_felps]sticker" "1" + "[boston2018_signature_fer]sticker" "1" + "[boston2018_signature_taco]sticker" "1" + "[boston2018_signature_gobb]sticker" "1" + "[boston2018_signature_keev]sticker" "1" + "[boston2018_signature_legija]sticker" "1" + "[boston2018_signature_nex]sticker" "1" + "[boston2018_signature_tabsen]sticker" "1" + "[boston2018_signature_aizy]sticker" "1" + "[boston2018_signature_cajunb]sticker" "1" + "[boston2018_signature_k0nfig]sticker" "1" + "[boston2018_signature_msl]sticker" "1" + "[boston2018_signature_v4lde]sticker" "1" + } + "crate_signature_pack_boston2018_group_legends_ntv_rare" + { + "[boston2018_signature_adrenkz]sticker" "1" + "[boston2018_signature_dosia]sticker" "1" + "[boston2018_signature_fitch]sticker" "1" + "[boston2018_signature_hobbit]sticker" "1" + "[boston2018_signature_mou]sticker" "1" + "[boston2018_signature_device]sticker" "1" + "[boston2018_signature_dupreeh]sticker" "1" + "[boston2018_signature_gla1ve]sticker" "1" + "[boston2018_signature_kjaerbye]sticker" "1" + "[boston2018_signature_xyp9x]sticker" "1" + "[boston2018_signature_byali]sticker" "1" + "[boston2018_signature_neo]sticker" "1" + "[boston2018_signature_pasha]sticker" "1" + "[boston2018_signature_snax]sticker" "1" + "[boston2018_signature_taz]sticker" "1" + "[boston2018_signature_flusha]sticker" "1" + "[boston2018_signature_golden]sticker" "1" + "[boston2018_signature_jw]sticker" "1" + "[boston2018_signature_krimz]sticker" "1" + "[boston2018_signature_lekro]sticker" "1" + "[boston2018_signature_coldzera]sticker" "1" + "[boston2018_signature_fallen]sticker" "1" + "[boston2018_signature_felps]sticker" "1" + "[boston2018_signature_fer]sticker" "1" + "[boston2018_signature_taco]sticker" "1" + "[boston2018_signature_gobb]sticker" "1" + "[boston2018_signature_keev]sticker" "1" + "[boston2018_signature_legija]sticker" "1" + "[boston2018_signature_nex]sticker" "1" + "[boston2018_signature_tabsen]sticker" "1" + "[boston2018_signature_aizy]sticker" "1" + "[boston2018_signature_cajunb]sticker" "1" + "[boston2018_signature_k0nfig]sticker" "1" + "[boston2018_signature_msl]sticker" "1" + "[boston2018_signature_v4lde]sticker" "1" + } + "crate_signature_pack_boston2018_group_legends_foil" + { + "[boston2018_signature_adrenkz_foil]sticker" "1" + "[boston2018_signature_dosia_foil]sticker" "1" + "[boston2018_signature_fitch_foil]sticker" "1" + "[boston2018_signature_hobbit_foil]sticker" "1" + "[boston2018_signature_mou_foil]sticker" "1" + "[boston2018_signature_bit_foil]sticker" "1" + "[boston2018_signature_fnx_foil]sticker" "1" + "[boston2018_signature_hen1_foil]sticker" "1" + "[boston2018_signature_kngv_foil]sticker" "1" + "[boston2018_signature_lucas1_foil]sticker" "1" + "[boston2018_signature_device_foil]sticker" "1" + "[boston2018_signature_dupreeh_foil]sticker" "1" + "[boston2018_signature_gla1ve_foil]sticker" "1" + "[boston2018_signature_kjaerbye_foil]sticker" "1" + "[boston2018_signature_xyp9x_foil]sticker" "1" + "[boston2018_signature_byali_foil]sticker" "1" + "[boston2018_signature_neo_foil]sticker" "1" + "[boston2018_signature_pasha_foil]sticker" "1" + "[boston2018_signature_snax_foil]sticker" "1" + "[boston2018_signature_taz_foil]sticker" "1" + "[boston2018_signature_flusha_foil]sticker" "1" + "[boston2018_signature_golden_foil]sticker" "1" + "[boston2018_signature_jw_foil]sticker" "1" + "[boston2018_signature_krimz_foil]sticker" "1" + "[boston2018_signature_lekro_foil]sticker" "1" + "[boston2018_signature_coldzera_foil]sticker" "1" + "[boston2018_signature_fallen_foil]sticker" "1" + "[boston2018_signature_felps_foil]sticker" "1" + "[boston2018_signature_fer_foil]sticker" "1" + "[boston2018_signature_taco_foil]sticker" "1" + "[boston2018_signature_gobb_foil]sticker" "1" + "[boston2018_signature_keev_foil]sticker" "1" + "[boston2018_signature_legija_foil]sticker" "1" + "[boston2018_signature_nex_foil]sticker" "1" + "[boston2018_signature_tabsen_foil]sticker" "1" + "[boston2018_signature_aizy_foil]sticker" "1" + "[boston2018_signature_cajunb_foil]sticker" "1" + "[boston2018_signature_k0nfig_foil]sticker" "1" + "[boston2018_signature_msl_foil]sticker" "1" + "[boston2018_signature_v4lde_foil]sticker" "1" + } + "crate_signature_pack_boston2018_group_legends_ntv_foil" + { + "[boston2018_signature_adrenkz_foil]sticker" "1" + "[boston2018_signature_dosia_foil]sticker" "1" + "[boston2018_signature_fitch_foil]sticker" "1" + "[boston2018_signature_hobbit_foil]sticker" "1" + "[boston2018_signature_mou_foil]sticker" "1" + "[boston2018_signature_device_foil]sticker" "1" + "[boston2018_signature_dupreeh_foil]sticker" "1" + "[boston2018_signature_gla1ve_foil]sticker" "1" + "[boston2018_signature_kjaerbye_foil]sticker" "1" + "[boston2018_signature_xyp9x_foil]sticker" "1" + "[boston2018_signature_byali_foil]sticker" "1" + "[boston2018_signature_neo_foil]sticker" "1" + "[boston2018_signature_pasha_foil]sticker" "1" + "[boston2018_signature_snax_foil]sticker" "1" + "[boston2018_signature_taz_foil]sticker" "1" + "[boston2018_signature_flusha_foil]sticker" "1" + "[boston2018_signature_golden_foil]sticker" "1" + "[boston2018_signature_jw_foil]sticker" "1" + "[boston2018_signature_krimz_foil]sticker" "1" + "[boston2018_signature_lekro_foil]sticker" "1" + "[boston2018_signature_coldzera_foil]sticker" "1" + "[boston2018_signature_fallen_foil]sticker" "1" + "[boston2018_signature_felps_foil]sticker" "1" + "[boston2018_signature_fer_foil]sticker" "1" + "[boston2018_signature_taco_foil]sticker" "1" + "[boston2018_signature_gobb_foil]sticker" "1" + "[boston2018_signature_keev_foil]sticker" "1" + "[boston2018_signature_legija_foil]sticker" "1" + "[boston2018_signature_nex_foil]sticker" "1" + "[boston2018_signature_tabsen_foil]sticker" "1" + "[boston2018_signature_aizy_foil]sticker" "1" + "[boston2018_signature_cajunb_foil]sticker" "1" + "[boston2018_signature_k0nfig_foil]sticker" "1" + "[boston2018_signature_msl_foil]sticker" "1" + "[boston2018_signature_v4lde_foil]sticker" "1" + } + "crate_signature_pack_boston2018_group_legends_gold" + { + "[boston2018_signature_adrenkz_gold]sticker" "1" + "[boston2018_signature_dosia_gold]sticker" "1" + "[boston2018_signature_fitch_gold]sticker" "1" + "[boston2018_signature_hobbit_gold]sticker" "1" + "[boston2018_signature_mou_gold]sticker" "1" + "[boston2018_signature_bit_gold]sticker" "1" + "[boston2018_signature_fnx_gold]sticker" "1" + "[boston2018_signature_hen1_gold]sticker" "1" + "[boston2018_signature_kngv_gold]sticker" "1" + "[boston2018_signature_lucas1_gold]sticker" "1" + "[boston2018_signature_device_gold]sticker" "1" + "[boston2018_signature_dupreeh_gold]sticker" "1" + "[boston2018_signature_gla1ve_gold]sticker" "1" + "[boston2018_signature_kjaerbye_gold]sticker" "1" + "[boston2018_signature_xyp9x_gold]sticker" "1" + "[boston2018_signature_byali_gold]sticker" "1" + "[boston2018_signature_neo_gold]sticker" "1" + "[boston2018_signature_pasha_gold]sticker" "1" + "[boston2018_signature_snax_gold]sticker" "1" + "[boston2018_signature_taz_gold]sticker" "1" + "[boston2018_signature_flusha_gold]sticker" "1" + "[boston2018_signature_golden_gold]sticker" "1" + "[boston2018_signature_jw_gold]sticker" "1" + "[boston2018_signature_krimz_gold]sticker" "1" + "[boston2018_signature_lekro_gold]sticker" "1" + "[boston2018_signature_coldzera_gold]sticker" "1" + "[boston2018_signature_fallen_gold]sticker" "1" + "[boston2018_signature_felps_gold]sticker" "1" + "[boston2018_signature_fer_gold]sticker" "1" + "[boston2018_signature_taco_gold]sticker" "1" + "[boston2018_signature_gobb_gold]sticker" "1" + "[boston2018_signature_keev_gold]sticker" "1" + "[boston2018_signature_legija_gold]sticker" "1" + "[boston2018_signature_nex_gold]sticker" "1" + "[boston2018_signature_tabsen_gold]sticker" "1" + "[boston2018_signature_aizy_gold]sticker" "1" + "[boston2018_signature_cajunb_gold]sticker" "1" + "[boston2018_signature_k0nfig_gold]sticker" "1" + "[boston2018_signature_msl_gold]sticker" "1" + "[boston2018_signature_v4lde_gold]sticker" "1" + } + "crate_signature_pack_boston2018_group_legends_ntv_gold" + { + "[boston2018_signature_adrenkz_gold]sticker" "1" + "[boston2018_signature_dosia_gold]sticker" "1" + "[boston2018_signature_fitch_gold]sticker" "1" + "[boston2018_signature_hobbit_gold]sticker" "1" + "[boston2018_signature_mou_gold]sticker" "1" + "[boston2018_signature_device_gold]sticker" "1" + "[boston2018_signature_dupreeh_gold]sticker" "1" + "[boston2018_signature_gla1ve_gold]sticker" "1" + "[boston2018_signature_kjaerbye_gold]sticker" "1" + "[boston2018_signature_xyp9x_gold]sticker" "1" + "[boston2018_signature_byali_gold]sticker" "1" + "[boston2018_signature_neo_gold]sticker" "1" + "[boston2018_signature_pasha_gold]sticker" "1" + "[boston2018_signature_snax_gold]sticker" "1" + "[boston2018_signature_taz_gold]sticker" "1" + "[boston2018_signature_flusha_gold]sticker" "1" + "[boston2018_signature_golden_gold]sticker" "1" + "[boston2018_signature_jw_gold]sticker" "1" + "[boston2018_signature_krimz_gold]sticker" "1" + "[boston2018_signature_lekro_gold]sticker" "1" + "[boston2018_signature_coldzera_gold]sticker" "1" + "[boston2018_signature_fallen_gold]sticker" "1" + "[boston2018_signature_felps_gold]sticker" "1" + "[boston2018_signature_fer_gold]sticker" "1" + "[boston2018_signature_taco_gold]sticker" "1" + "[boston2018_signature_gobb_gold]sticker" "1" + "[boston2018_signature_keev_gold]sticker" "1" + "[boston2018_signature_legija_gold]sticker" "1" + "[boston2018_signature_nex_gold]sticker" "1" + "[boston2018_signature_tabsen_gold]sticker" "1" + "[boston2018_signature_aizy_gold]sticker" "1" + "[boston2018_signature_cajunb_gold]sticker" "1" + "[boston2018_signature_k0nfig_gold]sticker" "1" + "[boston2018_signature_msl_gold]sticker" "1" + "[boston2018_signature_v4lde_gold]sticker" "1" + } + "crate_signature_pack_boston2018_group_challengers_rare" + { + "[boston2018_signature_apex]sticker" "1" + "[boston2018_signature_bodyy]sticker" "1" + "[boston2018_signature_kennys]sticker" "1" + "[boston2018_signature_nbk]sticker" "1" + "[boston2018_signature_shox]sticker" "1" + "[boston2018_signature_autimatic]sticker" "1" + "[boston2018_signature_rush]sticker" "1" + "[boston2018_signature_skadoodle]sticker" "1" + "[boston2018_signature_stewie2k]sticker" "1" + "[boston2018_signature_tarik]sticker" "1" + "[boston2018_signature_b1ad3]sticker" "1" + "[boston2018_signature_markeloff]sticker" "1" + "[boston2018_signature_seized]sticker" "1" + "[boston2018_signature_waylander]sticker" "1" + "[boston2018_signature_worldedit]sticker" "1" + "[boston2018_signature_edward]sticker" "1" + "[boston2018_signature_electronic]sticker" "1" + "[boston2018_signature_flamie]sticker" "1" + "[boston2018_signature_s1mple]sticker" "1" + "[boston2018_signature_zeus]sticker" "1" + "[boston2018_signature_chrisj]sticker" "1" + "[boston2018_signature_oskar]sticker" "1" + "[boston2018_signature_ropz]sticker" "1" + "[boston2018_signature_styko]sticker" "1" + "[boston2018_signature_sunny]sticker" "1" + "[boston2018_signature_denis]sticker" "1" + "[boston2018_signature_innocent]sticker" "1" + "[boston2018_signature_krystal]sticker" "1" + "[boston2018_signature_spiidi]sticker" "1" + "[boston2018_signature_zehn]sticker" "1" + "[boston2018_signature_guardian]sticker" "1" + "[boston2018_signature_karrigan]sticker" "1" + "[boston2018_signature_niko]sticker" "1" + "[boston2018_signature_olofmeister]sticker" "1" + "[boston2018_signature_rain]sticker" "1" + "[boston2018_signature_chopper]sticker" "1" + "[boston2018_signature_hutji]sticker" "1" + "[boston2018_signature_jr]sticker" "1" + "[boston2018_signature_keshandr]sticker" "1" + "[boston2018_signature_mir]sticker" "1" + } + "crate_signature_pack_boston2018_group_challengers_foil" + { + "[boston2018_signature_apex_foil]sticker" "1" + "[boston2018_signature_bodyy_foil]sticker" "1" + "[boston2018_signature_kennys_foil]sticker" "1" + "[boston2018_signature_nbk_foil]sticker" "1" + "[boston2018_signature_shox_foil]sticker" "1" + "[boston2018_signature_autimatic_foil]sticker" "1" + "[boston2018_signature_rush_foil]sticker" "1" + "[boston2018_signature_skadoodle_foil]sticker" "1" + "[boston2018_signature_stewie2k_foil]sticker" "1" + "[boston2018_signature_tarik_foil]sticker" "1" + "[boston2018_signature_b1ad3_foil]sticker" "1" + "[boston2018_signature_markeloff_foil]sticker" "1" + "[boston2018_signature_seized_foil]sticker" "1" + "[boston2018_signature_waylander_foil]sticker" "1" + "[boston2018_signature_worldedit_foil]sticker" "1" + "[boston2018_signature_edward_foil]sticker" "1" + "[boston2018_signature_electronic_foil]sticker" "1" + "[boston2018_signature_flamie_foil]sticker" "1" + "[boston2018_signature_s1mple_foil]sticker" "1" + "[boston2018_signature_zeus_foil]sticker" "1" + "[boston2018_signature_chrisj_foil]sticker" "1" + "[boston2018_signature_oskar_foil]sticker" "1" + "[boston2018_signature_ropz_foil]sticker" "1" + "[boston2018_signature_styko_foil]sticker" "1" + "[boston2018_signature_sunny_foil]sticker" "1" + "[boston2018_signature_denis_foil]sticker" "1" + "[boston2018_signature_innocent_foil]sticker" "1" + "[boston2018_signature_krystal_foil]sticker" "1" + "[boston2018_signature_spiidi_foil]sticker" "1" + "[boston2018_signature_zehn_foil]sticker" "1" + "[boston2018_signature_guardian_foil]sticker" "1" + "[boston2018_signature_karrigan_foil]sticker" "1" + "[boston2018_signature_niko_foil]sticker" "1" + "[boston2018_signature_olofmeister_foil]sticker" "1" + "[boston2018_signature_rain_foil]sticker" "1" + "[boston2018_signature_chopper_foil]sticker" "1" + "[boston2018_signature_hutji_foil]sticker" "1" + "[boston2018_signature_jr_foil]sticker" "1" + "[boston2018_signature_keshandr_foil]sticker" "1" + "[boston2018_signature_mir_foil]sticker" "1" + } + "crate_signature_pack_boston2018_group_challengers_gold" + { + "[boston2018_signature_apex_gold]sticker" "1" + "[boston2018_signature_bodyy_gold]sticker" "1" + "[boston2018_signature_kennys_gold]sticker" "1" + "[boston2018_signature_nbk_gold]sticker" "1" + "[boston2018_signature_shox_gold]sticker" "1" + "[boston2018_signature_autimatic_gold]sticker" "1" + "[boston2018_signature_rush_gold]sticker" "1" + "[boston2018_signature_skadoodle_gold]sticker" "1" + "[boston2018_signature_stewie2k_gold]sticker" "1" + "[boston2018_signature_tarik_gold]sticker" "1" + "[boston2018_signature_b1ad3_gold]sticker" "1" + "[boston2018_signature_markeloff_gold]sticker" "1" + "[boston2018_signature_seized_gold]sticker" "1" + "[boston2018_signature_waylander_gold]sticker" "1" + "[boston2018_signature_worldedit_gold]sticker" "1" + "[boston2018_signature_edward_gold]sticker" "1" + "[boston2018_signature_electronic_gold]sticker" "1" + "[boston2018_signature_flamie_gold]sticker" "1" + "[boston2018_signature_s1mple_gold]sticker" "1" + "[boston2018_signature_zeus_gold]sticker" "1" + "[boston2018_signature_chrisj_gold]sticker" "1" + "[boston2018_signature_oskar_gold]sticker" "1" + "[boston2018_signature_ropz_gold]sticker" "1" + "[boston2018_signature_styko_gold]sticker" "1" + "[boston2018_signature_sunny_gold]sticker" "1" + "[boston2018_signature_denis_gold]sticker" "1" + "[boston2018_signature_innocent_gold]sticker" "1" + "[boston2018_signature_krystal_gold]sticker" "1" + "[boston2018_signature_spiidi_gold]sticker" "1" + "[boston2018_signature_zehn_gold]sticker" "1" + "[boston2018_signature_guardian_gold]sticker" "1" + "[boston2018_signature_karrigan_gold]sticker" "1" + "[boston2018_signature_niko_gold]sticker" "1" + "[boston2018_signature_olofmeister_gold]sticker" "1" + "[boston2018_signature_rain_gold]sticker" "1" + "[boston2018_signature_chopper_gold]sticker" "1" + "[boston2018_signature_hutji_gold]sticker" "1" + "[boston2018_signature_jr_gold]sticker" "1" + "[boston2018_signature_keshandr_gold]sticker" "1" + "[boston2018_signature_mir_gold]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_rare" + { + "[boston2018_signature_calyx]sticker" "1" + "[boston2018_signature_maj3r]sticker" "1" + "[boston2018_signature_ngin]sticker" "1" + "[boston2018_signature_paz]sticker" "1" + "[boston2018_signature_xantares]sticker" "1" + "[boston2018_signature_elige]sticker" "1" + "[boston2018_signature_jdm64]sticker" "1" + "[boston2018_signature_nitro]sticker" "1" + "[boston2018_signature_stanislaw]sticker" "1" + "[boston2018_signature_twistzz]sticker" "1" + "[boston2018_signature_buster]sticker" "1" + "[boston2018_signature_dimasick]sticker" "1" + "[boston2018_signature_jame]sticker" "1" + "[boston2018_signature_krizzen]sticker" "1" + "[boston2018_signature_qikert]sticker" "1" + "[boston2018_signature_azr]sticker" "1" + "[boston2018_signature_jks]sticker" "1" + "[boston2018_signature_naf]sticker" "1" + "[boston2018_signature_nifty]sticker" "1" + "[boston2018_signature_ustilo]sticker" "1" + "[boston2018_signature_happy]sticker" "1" + "[boston2018_signature_rpk]sticker" "1" + "[boston2018_signature_scream]sticker" "1" + "[boston2018_signature_sixer]sticker" "1" + "[boston2018_signature_xms]sticker" "1" + "[boston2018_signature_amanek]sticker" "1" + "[boston2018_signature_devoduvek]sticker" "1" + "[boston2018_signature_sgares]sticker" "1" + "[boston2018_signature_shahzam]sticker" "1" + "[boston2018_signature_sick]sticker" "1" + "[boston2018_signature_balblna]sticker" "1" + "[boston2018_signature_boombl4]sticker" "1" + "[boston2018_signature_jmqa]sticker" "1" + "[boston2018_signature_kvik]sticker" "1" + "[boston2018_signature_waterfallz]sticker" "1" + "[boston2018_signature_bntet]sticker" "1" + "[boston2018_signature_bondik]sticker" "1" + "[boston2018_signature_captainmo]sticker" "1" + "[boston2018_signature_dd]sticker" "1" + "[boston2018_signature_somebody]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_foil" + { + "[boston2018_signature_calyx_foil]sticker" "1" + "[boston2018_signature_maj3r_foil]sticker" "1" + "[boston2018_signature_ngin_foil]sticker" "1" + "[boston2018_signature_paz_foil]sticker" "1" + "[boston2018_signature_xantares_foil]sticker" "1" + "[boston2018_signature_elige_foil]sticker" "1" + "[boston2018_signature_jdm64_foil]sticker" "1" + "[boston2018_signature_nitro_foil]sticker" "1" + "[boston2018_signature_stanislaw_foil]sticker" "1" + "[boston2018_signature_twistzz_foil]sticker" "1" + "[boston2018_signature_buster_foil]sticker" "1" + "[boston2018_signature_dimasick_foil]sticker" "1" + "[boston2018_signature_jame_foil]sticker" "1" + "[boston2018_signature_krizzen_foil]sticker" "1" + "[boston2018_signature_qikert_foil]sticker" "1" + "[boston2018_signature_azr_foil]sticker" "1" + "[boston2018_signature_jks_foil]sticker" "1" + "[boston2018_signature_naf_foil]sticker" "1" + "[boston2018_signature_nifty_foil]sticker" "1" + "[boston2018_signature_ustilo_foil]sticker" "1" + "[boston2018_signature_happy_foil]sticker" "1" + "[boston2018_signature_rpk_foil]sticker" "1" + "[boston2018_signature_scream_foil]sticker" "1" + "[boston2018_signature_sixer_foil]sticker" "1" + "[boston2018_signature_xms_foil]sticker" "1" + "[boston2018_signature_amanek_foil]sticker" "1" + "[boston2018_signature_devoduvek_foil]sticker" "1" + "[boston2018_signature_sgares_foil]sticker" "1" + "[boston2018_signature_shahzam_foil]sticker" "1" + "[boston2018_signature_sick_foil]sticker" "1" + "[boston2018_signature_balblna_foil]sticker" "1" + "[boston2018_signature_boombl4_foil]sticker" "1" + "[boston2018_signature_jmqa_foil]sticker" "1" + "[boston2018_signature_kvik_foil]sticker" "1" + "[boston2018_signature_waterfallz_foil]sticker" "1" + "[boston2018_signature_bntet_foil]sticker" "1" + "[boston2018_signature_bondik_foil]sticker" "1" + "[boston2018_signature_captainmo_foil]sticker" "1" + "[boston2018_signature_dd_foil]sticker" "1" + "[boston2018_signature_somebody_foil]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_gold" + { + "[boston2018_signature_calyx_gold]sticker" "1" + "[boston2018_signature_maj3r_gold]sticker" "1" + "[boston2018_signature_ngin_gold]sticker" "1" + "[boston2018_signature_paz_gold]sticker" "1" + "[boston2018_signature_xantares_gold]sticker" "1" + "[boston2018_signature_elige_gold]sticker" "1" + "[boston2018_signature_jdm64_gold]sticker" "1" + "[boston2018_signature_nitro_gold]sticker" "1" + "[boston2018_signature_stanislaw_gold]sticker" "1" + "[boston2018_signature_twistzz_gold]sticker" "1" + "[boston2018_signature_buster_gold]sticker" "1" + "[boston2018_signature_dimasick_gold]sticker" "1" + "[boston2018_signature_jame_gold]sticker" "1" + "[boston2018_signature_krizzen_gold]sticker" "1" + "[boston2018_signature_qikert_gold]sticker" "1" + "[boston2018_signature_azr_gold]sticker" "1" + "[boston2018_signature_jks_gold]sticker" "1" + "[boston2018_signature_naf_gold]sticker" "1" + "[boston2018_signature_nifty_gold]sticker" "1" + "[boston2018_signature_ustilo_gold]sticker" "1" + "[boston2018_signature_happy_gold]sticker" "1" + "[boston2018_signature_rpk_gold]sticker" "1" + "[boston2018_signature_scream_gold]sticker" "1" + "[boston2018_signature_sixer_gold]sticker" "1" + "[boston2018_signature_xms_gold]sticker" "1" + "[boston2018_signature_amanek_gold]sticker" "1" + "[boston2018_signature_devoduvek_gold]sticker" "1" + "[boston2018_signature_sgares_gold]sticker" "1" + "[boston2018_signature_shahzam_gold]sticker" "1" + "[boston2018_signature_sick_gold]sticker" "1" + "[boston2018_signature_balblna_gold]sticker" "1" + "[boston2018_signature_boombl4_gold]sticker" "1" + "[boston2018_signature_jmqa_gold]sticker" "1" + "[boston2018_signature_kvik_gold]sticker" "1" + "[boston2018_signature_waterfallz_gold]sticker" "1" + "[boston2018_signature_bntet_gold]sticker" "1" + "[boston2018_signature_bondik_gold]sticker" "1" + "[boston2018_signature_captainmo_gold]sticker" "1" + "[boston2018_signature_dd_gold]sticker" "1" + "[boston2018_signature_somebody_gold]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_flgonly_rare" + { + "[boston2018_signature_attacker]sticker" "1" + "[boston2018_signature_karsa]sticker" "1" + "[boston2018_signature_kaze]sticker" "1" + "[boston2018_signature_loveyy]sticker" "1" + "[boston2018_signature_summer]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_flgonly_foil" + { + "[boston2018_signature_attacker_foil]sticker" "1" + "[boston2018_signature_karsa_foil]sticker" "1" + "[boston2018_signature_kaze_foil]sticker" "1" + "[boston2018_signature_loveyy_foil]sticker" "1" + "[boston2018_signature_summer_foil]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_flgonly_gold" + { + "[boston2018_signature_attacker_gold]sticker" "1" + "[boston2018_signature_karsa_gold]sticker" "1" + "[boston2018_signature_kaze_gold]sticker" "1" + "[boston2018_signature_loveyy_gold]sticker" "1" + "[boston2018_signature_summer_gold]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_flg_rare" + { + "[boston2018_signature_calyx]sticker" "1" + "[boston2018_signature_maj3r]sticker" "1" + "[boston2018_signature_ngin]sticker" "1" + "[boston2018_signature_paz]sticker" "1" + "[boston2018_signature_xantares]sticker" "1" + "[boston2018_signature_elige]sticker" "1" + "[boston2018_signature_jdm64]sticker" "1" + "[boston2018_signature_nitro]sticker" "1" + "[boston2018_signature_stanislaw]sticker" "1" + "[boston2018_signature_twistzz]sticker" "1" + "[boston2018_signature_buster]sticker" "1" + "[boston2018_signature_dimasick]sticker" "1" + "[boston2018_signature_jame]sticker" "1" + "[boston2018_signature_krizzen]sticker" "1" + "[boston2018_signature_qikert]sticker" "1" + "[boston2018_signature_azr]sticker" "1" + "[boston2018_signature_jks]sticker" "1" + "[boston2018_signature_naf]sticker" "1" + "[boston2018_signature_nifty]sticker" "1" + "[boston2018_signature_ustilo]sticker" "1" + "[boston2018_signature_happy]sticker" "1" + "[boston2018_signature_rpk]sticker" "1" + "[boston2018_signature_scream]sticker" "1" + "[boston2018_signature_sixer]sticker" "1" + "[boston2018_signature_xms]sticker" "1" + "[boston2018_signature_amanek]sticker" "1" + "[boston2018_signature_devoduvek]sticker" "1" + "[boston2018_signature_sgares]sticker" "1" + "[boston2018_signature_shahzam]sticker" "1" + "[boston2018_signature_sick]sticker" "1" + "[boston2018_signature_balblna]sticker" "1" + "[boston2018_signature_boombl4]sticker" "1" + "[boston2018_signature_jmqa]sticker" "1" + "[boston2018_signature_kvik]sticker" "1" + "[boston2018_signature_waterfallz]sticker" "1" + "[boston2018_signature_attacker]sticker" "1" + "[boston2018_signature_karsa]sticker" "1" + "[boston2018_signature_kaze]sticker" "1" + "[boston2018_signature_loveyy]sticker" "1" + "[boston2018_signature_summer]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_flg_foil" + { + "[boston2018_signature_calyx_foil]sticker" "1" + "[boston2018_signature_maj3r_foil]sticker" "1" + "[boston2018_signature_ngin_foil]sticker" "1" + "[boston2018_signature_paz_foil]sticker" "1" + "[boston2018_signature_xantares_foil]sticker" "1" + "[boston2018_signature_elige_foil]sticker" "1" + "[boston2018_signature_jdm64_foil]sticker" "1" + "[boston2018_signature_nitro_foil]sticker" "1" + "[boston2018_signature_stanislaw_foil]sticker" "1" + "[boston2018_signature_twistzz_foil]sticker" "1" + "[boston2018_signature_buster_foil]sticker" "1" + "[boston2018_signature_dimasick_foil]sticker" "1" + "[boston2018_signature_jame_foil]sticker" "1" + "[boston2018_signature_krizzen_foil]sticker" "1" + "[boston2018_signature_qikert_foil]sticker" "1" + "[boston2018_signature_azr_foil]sticker" "1" + "[boston2018_signature_jks_foil]sticker" "1" + "[boston2018_signature_naf_foil]sticker" "1" + "[boston2018_signature_nifty_foil]sticker" "1" + "[boston2018_signature_ustilo_foil]sticker" "1" + "[boston2018_signature_happy_foil]sticker" "1" + "[boston2018_signature_rpk_foil]sticker" "1" + "[boston2018_signature_scream_foil]sticker" "1" + "[boston2018_signature_sixer_foil]sticker" "1" + "[boston2018_signature_xms_foil]sticker" "1" + "[boston2018_signature_amanek_foil]sticker" "1" + "[boston2018_signature_devoduvek_foil]sticker" "1" + "[boston2018_signature_sgares_foil]sticker" "1" + "[boston2018_signature_shahzam_foil]sticker" "1" + "[boston2018_signature_sick_foil]sticker" "1" + "[boston2018_signature_balblna_foil]sticker" "1" + "[boston2018_signature_boombl4_foil]sticker" "1" + "[boston2018_signature_jmqa_foil]sticker" "1" + "[boston2018_signature_kvik_foil]sticker" "1" + "[boston2018_signature_waterfallz_foil]sticker" "1" + "[boston2018_signature_attacker_foil]sticker" "1" + "[boston2018_signature_karsa_foil]sticker" "1" + "[boston2018_signature_kaze_foil]sticker" "1" + "[boston2018_signature_loveyy_foil]sticker" "1" + "[boston2018_signature_summer_foil]sticker" "1" + } + "crate_signature_pack_boston2018_group_contenders_flg_gold" + { + "[boston2018_signature_calyx_gold]sticker" "1" + "[boston2018_signature_maj3r_gold]sticker" "1" + "[boston2018_signature_ngin_gold]sticker" "1" + "[boston2018_signature_paz_gold]sticker" "1" + "[boston2018_signature_xantares_gold]sticker" "1" + "[boston2018_signature_elige_gold]sticker" "1" + "[boston2018_signature_jdm64_gold]sticker" "1" + "[boston2018_signature_nitro_gold]sticker" "1" + "[boston2018_signature_stanislaw_gold]sticker" "1" + "[boston2018_signature_twistzz_gold]sticker" "1" + "[boston2018_signature_buster_gold]sticker" "1" + "[boston2018_signature_dimasick_gold]sticker" "1" + "[boston2018_signature_jame_gold]sticker" "1" + "[boston2018_signature_krizzen_gold]sticker" "1" + "[boston2018_signature_qikert_gold]sticker" "1" + "[boston2018_signature_azr_gold]sticker" "1" + "[boston2018_signature_jks_gold]sticker" "1" + "[boston2018_signature_naf_gold]sticker" "1" + "[boston2018_signature_nifty_gold]sticker" "1" + "[boston2018_signature_ustilo_gold]sticker" "1" + "[boston2018_signature_happy_gold]sticker" "1" + "[boston2018_signature_rpk_gold]sticker" "1" + "[boston2018_signature_scream_gold]sticker" "1" + "[boston2018_signature_sixer_gold]sticker" "1" + "[boston2018_signature_xms_gold]sticker" "1" + "[boston2018_signature_amanek_gold]sticker" "1" + "[boston2018_signature_devoduvek_gold]sticker" "1" + "[boston2018_signature_sgares_gold]sticker" "1" + "[boston2018_signature_shahzam_gold]sticker" "1" + "[boston2018_signature_sick_gold]sticker" "1" + "[boston2018_signature_balblna_gold]sticker" "1" + "[boston2018_signature_boombl4_gold]sticker" "1" + "[boston2018_signature_jmqa_gold]sticker" "1" + "[boston2018_signature_kvik_gold]sticker" "1" + "[boston2018_signature_waterfallz_gold]sticker" "1" + "[boston2018_signature_attacker_gold]sticker" "1" + "[boston2018_signature_karsa_gold]sticker" "1" + "[boston2018_signature_kaze_gold]sticker" "1" + "[boston2018_signature_loveyy_gold]sticker" "1" + "[boston2018_signature_summer_gold]sticker" "1" + } + "crate_signature_pack_boston2018_group_players_collection_legends" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_boston2018_group_legends_rare" "1" + "crate_signature_pack_boston2018_group_legends_foil" "1" + "crate_signature_pack_boston2018_group_legends_gold" "1" + } + "crate_signature_pack_boston2018_group_players_collection_legends_ntv" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_boston2018_group_legends_ntv_rare" "1" + "crate_signature_pack_boston2018_group_legends_ntv_foil" "1" + "crate_signature_pack_boston2018_group_legends_ntv_gold" "1" + } + "crate_signature_pack_boston2018_group_players_collection_challengers" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_boston2018_group_challengers_rare" "1" + "crate_signature_pack_boston2018_group_challengers_foil" "1" + "crate_signature_pack_boston2018_group_challengers_gold" "1" + } + "crate_signature_pack_boston2018_group_players_collection_contenders" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_boston2018_group_contenders_rare" "1" + "crate_signature_pack_boston2018_group_contenders_foil" "1" + "crate_signature_pack_boston2018_group_contenders_gold" "1" + } + "crate_signature_pack_boston2018_group_players_collection_contenders_flgonly" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_boston2018_group_contenders_flgonly_rare" "1" + "crate_signature_pack_boston2018_group_contenders_flgonly_foil" "1" + "crate_signature_pack_boston2018_group_contenders_flgonly_gold" "1" + } + "crate_signature_pack_boston2018_group_players_collection_contenders_flg" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_boston2018_group_contenders_flg_rare" "1" + "crate_signature_pack_boston2018_group_contenders_flg_foil" "1" + "crate_signature_pack_boston2018_group_contenders_flg_gold" "1" + } + "crate_boston2018_promo_de_inferno" + { + "set_inferno" "1" + } + "crate_boston2018_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_boston2018_promo_de_cbble" + { + "set_cobblestone" "1" + } + "crate_boston2018_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_boston2018_promo_de_cache" + { + "set_cache" "1" + } + "crate_boston2018_promo_de_train" + { + "set_train" "1" + } + "crate_boston2018_promo_de_nuke" + { + "set_nuke" "1" + } + } + "items" + { + "4406" + { + "item_name" "#StoreItem_boston2018_team_gamb_sticker" + "name" "crate_sticker_pack_boston2018_gamb" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/gamb" + "loot_list_name" "boston2018_rare_gamb" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4407" + { + "item_name" "#StoreItem_boston2018_team_thv_sticker" + "name" "crate_sticker_pack_boston2018_thv" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/thv" + "loot_list_name" "boston2018_rare_thv" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4408" + { + "item_name" "#StoreItem_boston2018_team_astr_sticker" + "name" "crate_sticker_pack_boston2018_astr" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/astr" + "loot_list_name" "boston2018_rare_astr" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4409" + { + "item_name" "#StoreItem_boston2018_team_vp_sticker" + "name" "crate_sticker_pack_boston2018_vp" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/vp" + "loot_list_name" "boston2018_rare_vp" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4410" + { + "item_name" "#StoreItem_boston2018_team_fntc_sticker" + "name" "crate_sticker_pack_boston2018_fntc" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/fntc" + "loot_list_name" "boston2018_rare_fntc" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4411" + { + "item_name" "#StoreItem_boston2018_team_sk_sticker" + "name" "crate_sticker_pack_boston2018_sk" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/sk" + "loot_list_name" "boston2018_rare_sk" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4412" + { + "item_name" "#StoreItem_boston2018_team_big_sticker" + "name" "crate_sticker_pack_boston2018_big" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/big" + "loot_list_name" "boston2018_rare_big" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4413" + { + "item_name" "#StoreItem_boston2018_team_nor_sticker" + "name" "crate_sticker_pack_boston2018_nor" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/nor" + "loot_list_name" "boston2018_rare_nor" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4414" + { + "item_name" "#StoreItem_boston2018_team_g2_sticker" + "name" "crate_sticker_pack_boston2018_g2" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/g2" + "loot_list_name" "boston2018_rare_g2" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4415" + { + "item_name" "#StoreItem_boston2018_team_c9_sticker" + "name" "crate_sticker_pack_boston2018_c9" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/c9" + "loot_list_name" "boston2018_rare_c9" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4416" + { + "item_name" "#StoreItem_boston2018_team_flip_sticker" + "name" "crate_sticker_pack_boston2018_flip" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/flip" + "loot_list_name" "boston2018_rare_flip" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4417" + { + "item_name" "#StoreItem_boston2018_team_navi_sticker" + "name" "crate_sticker_pack_boston2018_navi" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/navi" + "loot_list_name" "boston2018_rare_navi" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4418" + { + "item_name" "#StoreItem_boston2018_team_mss_sticker" + "name" "crate_sticker_pack_boston2018_mss" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/mss" + "loot_list_name" "boston2018_rare_mss" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4419" + { + "item_name" "#StoreItem_boston2018_team_spr_sticker" + "name" "crate_sticker_pack_boston2018_spr" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/spr" + "loot_list_name" "boston2018_rare_spr" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4420" + { + "item_name" "#StoreItem_boston2018_team_faze_sticker" + "name" "crate_sticker_pack_boston2018_faze" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/faze" + "loot_list_name" "boston2018_rare_faze" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4421" + { + "item_name" "#StoreItem_boston2018_team_vega_sticker" + "name" "crate_sticker_pack_boston2018_vega" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/vega" + "loot_list_name" "boston2018_rare_vega" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4422" + { + "item_name" "#StoreItem_boston2018_team_spc_sticker" + "name" "crate_sticker_pack_boston2018_spc" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/spc" + "loot_list_name" "boston2018_rare_spc" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4423" + { + "item_name" "#StoreItem_boston2018_team_liq_sticker" + "name" "crate_sticker_pack_boston2018_liq" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/liq" + "loot_list_name" "boston2018_rare_liq" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4424" + { + "item_name" "#StoreItem_boston2018_team_avg_sticker" + "name" "crate_sticker_pack_boston2018_avg" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/avg" + "loot_list_name" "boston2018_rare_avg" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4425" + { + "item_name" "#StoreItem_boston2018_team_ren_sticker" + "name" "crate_sticker_pack_boston2018_ren" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/ren" + "loot_list_name" "boston2018_rare_ren" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4426" + { + "item_name" "#StoreItem_boston2018_team_nv_sticker" + "name" "crate_sticker_pack_boston2018_nv" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/nv" + "loot_list_name" "boston2018_rare_nv" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4427" + { + "item_name" "#StoreItem_boston2018_team_mfg_sticker" + "name" "crate_sticker_pack_boston2018_mfg" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/mfg" + "loot_list_name" "boston2018_rare_mfg" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4428" + { + "item_name" "#StoreItem_boston2018_team_qb_sticker" + "name" "crate_sticker_pack_boston2018_qb" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/qb" + "loot_list_name" "boston2018_rare_qb" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4429" + { + "item_name" "#StoreItem_boston2018_team_tyl_sticker" + "name" "crate_sticker_pack_boston2018_tyl" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/tyl" + "loot_list_name" "boston2018_rare_tyl" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4472" + { + "item_name" "#StoreItem_boston2018_team_flg_sticker" + "name" "crate_sticker_pack_boston2018_flg" + "item_description" "#EventItemDesc_boston2018_sticker_team" + "image_inventory" "econ/stickers/boston2018/flg" + "loot_list_name" "boston2018_rare_flg" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4430" + { + "item_name" "#StoreItem_boston2018_team_eleague_sticker" + "name" "crate_sticker_pack_boston2018_eleague" + "item_description" "#EventItemDesc_boston2018_sticker_org" + "image_inventory" "econ/stickers/boston2018/eleague" + "loot_list_name" "boston2018_rare_eleague" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4431" + { + "item_name" "#StoreItem_boston2018_team_gamb_graffiti" + "name" "crate_graffiti_pack_boston2018_gamb" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/gamb_graffiti" + "loot_list_name" "boston2018_graffiti_gamb" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4432" + { + "item_name" "#StoreItem_boston2018_team_thv_graffiti" + "name" "crate_graffiti_pack_boston2018_thv" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/thv_graffiti" + "loot_list_name" "boston2018_graffiti_thv" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4433" + { + "item_name" "#StoreItem_boston2018_team_astr_graffiti" + "name" "crate_graffiti_pack_boston2018_astr" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/astr_graffiti" + "loot_list_name" "boston2018_graffiti_astr" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4434" + { + "item_name" "#StoreItem_boston2018_team_vp_graffiti" + "name" "crate_graffiti_pack_boston2018_vp" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/vp_graffiti" + "loot_list_name" "boston2018_graffiti_vp" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4435" + { + "item_name" "#StoreItem_boston2018_team_fntc_graffiti" + "name" "crate_graffiti_pack_boston2018_fntc" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/fntc_graffiti" + "loot_list_name" "boston2018_graffiti_fntc" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4436" + { + "item_name" "#StoreItem_boston2018_team_sk_graffiti" + "name" "crate_graffiti_pack_boston2018_sk" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/sk_graffiti" + "loot_list_name" "boston2018_graffiti_sk" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4437" + { + "item_name" "#StoreItem_boston2018_team_big_graffiti" + "name" "crate_graffiti_pack_boston2018_big" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/big_graffiti" + "loot_list_name" "boston2018_graffiti_big" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4438" + { + "item_name" "#StoreItem_boston2018_team_nor_graffiti" + "name" "crate_graffiti_pack_boston2018_nor" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/nor_graffiti" + "loot_list_name" "boston2018_graffiti_nor" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4439" + { + "item_name" "#StoreItem_boston2018_team_g2_graffiti" + "name" "crate_graffiti_pack_boston2018_g2" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/g2_graffiti" + "loot_list_name" "boston2018_graffiti_g2" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4440" + { + "item_name" "#StoreItem_boston2018_team_c9_graffiti" + "name" "crate_graffiti_pack_boston2018_c9" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/c9_graffiti" + "loot_list_name" "boston2018_graffiti_c9" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4441" + { + "item_name" "#StoreItem_boston2018_team_flip_graffiti" + "name" "crate_graffiti_pack_boston2018_flip" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/flip_graffiti" + "loot_list_name" "boston2018_graffiti_flip" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4442" + { + "item_name" "#StoreItem_boston2018_team_navi_graffiti" + "name" "crate_graffiti_pack_boston2018_navi" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/navi_graffiti" + "loot_list_name" "boston2018_graffiti_navi" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4443" + { + "item_name" "#StoreItem_boston2018_team_mss_graffiti" + "name" "crate_graffiti_pack_boston2018_mss" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/mss_graffiti" + "loot_list_name" "boston2018_graffiti_mss" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4444" + { + "item_name" "#StoreItem_boston2018_team_spr_graffiti" + "name" "crate_graffiti_pack_boston2018_spr" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/spr_graffiti" + "loot_list_name" "boston2018_graffiti_spr" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4445" + { + "item_name" "#StoreItem_boston2018_team_faze_graffiti" + "name" "crate_graffiti_pack_boston2018_faze" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/faze_graffiti" + "loot_list_name" "boston2018_graffiti_faze" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4446" + { + "item_name" "#StoreItem_boston2018_team_vega_graffiti" + "name" "crate_graffiti_pack_boston2018_vega" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/vega_graffiti" + "loot_list_name" "boston2018_graffiti_vega" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4447" + { + "item_name" "#StoreItem_boston2018_team_spc_graffiti" + "name" "crate_graffiti_pack_boston2018_spc" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/spc_graffiti" + "loot_list_name" "boston2018_graffiti_spc" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4448" + { + "item_name" "#StoreItem_boston2018_team_liq_graffiti" + "name" "crate_graffiti_pack_boston2018_liq" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/liq_graffiti" + "loot_list_name" "boston2018_graffiti_liq" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4449" + { + "item_name" "#StoreItem_boston2018_team_avg_graffiti" + "name" "crate_graffiti_pack_boston2018_avg" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/avg_graffiti" + "loot_list_name" "boston2018_graffiti_avg" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4450" + { + "item_name" "#StoreItem_boston2018_team_ren_graffiti" + "name" "crate_graffiti_pack_boston2018_ren" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/ren_graffiti" + "loot_list_name" "boston2018_graffiti_ren" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4451" + { + "item_name" "#StoreItem_boston2018_team_nv_graffiti" + "name" "crate_graffiti_pack_boston2018_nv" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/nv_graffiti" + "loot_list_name" "boston2018_graffiti_nv" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4452" + { + "item_name" "#StoreItem_boston2018_team_mfg_graffiti" + "name" "crate_graffiti_pack_boston2018_mfg" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/mfg_graffiti" + "loot_list_name" "boston2018_graffiti_mfg" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4453" + { + "item_name" "#StoreItem_boston2018_team_qb_graffiti" + "name" "crate_graffiti_pack_boston2018_qb" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/qb_graffiti" + "loot_list_name" "boston2018_graffiti_qb" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4454" + { + "item_name" "#StoreItem_boston2018_team_tyl_graffiti" + "name" "crate_graffiti_pack_boston2018_tyl" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/tyl_graffiti" + "loot_list_name" "boston2018_graffiti_tyl" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4473" + { + "item_name" "#StoreItem_boston2018_team_flg_graffiti" + "name" "crate_graffiti_pack_boston2018_flg" + "item_description" "#EventItemDesc_boston2018_graffiti_team" + "image_inventory" "econ/stickers/boston2018/flg_graffiti" + "loot_list_name" "boston2018_graffiti_flg" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4455" + { + "item_name" "#StoreItem_boston2018_team_eleague_graffiti" + "name" "crate_graffiti_pack_boston2018_eleague" + "item_description" "#EventItemDesc_boston2018_graffiti_org" + "image_inventory" "econ/stickers/boston2018/eleague_graffiti" + "loot_list_name" "boston2018_graffiti_eleague" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4456" + { + "item_name" "#CSGO_crate_sticker_pack_boston2018_legends" + "name" "crate_sticker_pack_boston2018_legends" + "item_description" "#CSGO_crate_sticker_pack_boston2018_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_legends" + "prefab" "boston2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "224" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_boston2018_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_boston2018_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4478" + { + "item_name" "#CSGO_crate_sticker_pack_boston2018_legends_ntv" + "name" "crate_sticker_pack_boston2018_legends_ntv" + "item_description" "#CSGO_crate_sticker_pack_boston2018_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_legends_ntv" + "prefab" "boston2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "241" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_boston2018_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_boston2018_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4457" + { + "item_name" "#CSGO_crate_sticker_pack_boston2018_challengers" + "name" "crate_sticker_pack_boston2018_challengers" + "item_description" "#CSGO_crate_sticker_pack_boston2018_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_challengers" + "prefab" "boston2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "225" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_boston2018_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_boston2018_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4458" + { + "item_name" "#CSGO_crate_sticker_pack_boston2018_contenders" + "name" "crate_sticker_pack_boston2018_contenders" + "item_description" "#CSGO_crate_sticker_pack_boston2018_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_contenders" + "prefab" "boston2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "226" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_boston2018_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_boston2018_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4474" + { + "item_name" "#CSGO_crate_sticker_pack_boston2018_contenders_flg" + "name" "crate_sticker_pack_boston2018_contenders_flg" + "item_description" "#CSGO_crate_sticker_pack_boston2018_contenders_flg_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_contenders_flg" + "prefab" "boston2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "239" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_boston2018_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_boston2018_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4459" + { + "item_name" "#CSGO_crate_signature_pack_boston2018_group_legends" + "name" "crate_signature_pack_boston2018_group_legends" + "item_description" "#CSGO_crate_signature_pack_boston2018_group_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_group_legends" + "prefab" "boston2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "227" + } + } + } + "4479" + { + "item_name" "#CSGO_crate_signature_pack_boston2018_group_legends_ntv" + "name" "crate_signature_pack_boston2018_group_legends_ntv" + "item_description" "#CSGO_crate_signature_pack_boston2018_group_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_group_legends_ntv" + "prefab" "boston2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "242" + } + } + } + "4460" + { + "item_name" "#CSGO_crate_signature_pack_boston2018_group_challengers" + "name" "crate_signature_pack_boston2018_group_challengers" + "item_description" "#CSGO_crate_signature_pack_boston2018_group_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_group_challengers" + "prefab" "boston2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "228" + } + } + } + "4461" + { + "item_name" "#CSGO_crate_signature_pack_boston2018_group_contenders" + "name" "crate_signature_pack_boston2018_group_contenders" + "item_description" "#CSGO_crate_signature_pack_boston2018_group_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_group_contenders" + "prefab" "boston2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "229" + } + } + } + "4475" + { + "item_name" "#CSGO_crate_signature_pack_boston2018_group_contenders_flg" + "name" "crate_signature_pack_boston2018_group_contenders_flg" + "item_description" "#CSGO_crate_signature_pack_boston2018_group_contenders_flg_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_boston2018_group_contenders_flg" + "prefab" "boston2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "240" + } + } + } + "4462" + { + "item_name" "#CSGO_crate_boston2018_bundle_of_all" + "name" "crate_boston2018_bundle_of_all" + "item_description" "#CSGO_crate_boston2018_bundle_of_all_desc" + "image_inventory" "econ/weapon_cases/boston2018_bundleofall" + "loot_list_name" "boston2018_bundle_of_all" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4476" + { + "item_name" "#CSGO_crate_boston2018_bundle_of_all" + "name" "crate_boston2018_bundle_of_all_flg" + "item_description" "#CSGO_crate_boston2018_bundle_of_all_desc" + "image_inventory" "econ/weapon_cases/boston2018_bundleofall" + "loot_list_name" "boston2018_bundle_of_all" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4480" + { + "item_name" "#CSGO_crate_boston2018_bundle_of_all" + "name" "crate_boston2018_bundle_of_all_ntv" + "item_description" "#CSGO_crate_boston2018_bundle_of_all_desc" + "image_inventory" "econ/weapon_cases/boston2018_bundleofall" + "loot_list_name" "boston2018_bundle_of_all" + "prefab" "boston2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4463" + { + "item_name" "#CSGO_crate_boston2018_promo_de_inferno" + "name" "crate_boston2018_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_boston2018_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "230" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno" + "tag_text" "#CSGO_set_inferno" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4464" + { + "item_name" "#CSGO_crate_boston2018_promo_de_mirage" + "name" "crate_boston2018_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_boston2018_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "231" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4465" + { + "item_name" "#CSGO_crate_boston2018_promo_de_cbble" + "name" "crate_boston2018_promo_de_cbble" + "image_inventory" "econ/weapon_cases/crate_boston2018_promo_de_cbble" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "232" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4466" + { + "item_name" "#CSGO_crate_boston2018_promo_de_overpass" + "name" "crate_boston2018_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_boston2018_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "233" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4467" + { + "item_name" "#CSGO_crate_boston2018_promo_de_cache" + "name" "crate_boston2018_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_boston2018_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "234" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4468" + { + "item_name" "#CSGO_crate_boston2018_promo_de_train" + "name" "crate_boston2018_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_boston2018_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "235" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4469" + { + "item_name" "#CSGO_crate_boston2018_promo_de_nuke" + "name" "crate_boston2018_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_boston2018_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "236" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "13" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke" + "tag_text" "#CSGO_set_nuke" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "2436" + { + "name" "boston2018_team_gamb" + "item_name" "#StickerKit_boston2018_team_gamb" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/gamb" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "63" + } + "2437" + { + "name" "boston2018_team_gamb_holo" + "item_name" "#StickerKit_boston2018_team_gamb_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/gamb_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "63" + } + "2438" + { + "name" "boston2018_team_gamb_foil" + "item_name" "#StickerKit_boston2018_team_gamb_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/gamb_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "63" + } + "2439" + { + "name" "boston2018_team_gamb_gold" + "item_name" "#StickerKit_boston2018_team_gamb_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/gamb_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "63" + } + "2440" + { + "name" "boston2018_team_thv" + "item_name" "#StickerKit_boston2018_team_thv" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/thv" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "78" + } + "2441" + { + "name" "boston2018_team_thv_holo" + "item_name" "#StickerKit_boston2018_team_thv_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/thv_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "78" + } + "2442" + { + "name" "boston2018_team_thv_foil" + "item_name" "#StickerKit_boston2018_team_thv_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/thv_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "78" + } + "2443" + { + "name" "boston2018_team_thv_gold" + "item_name" "#StickerKit_boston2018_team_thv_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/thv_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "78" + } + "2444" + { + "name" "boston2018_team_astr" + "item_name" "#StickerKit_boston2018_team_astr" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/astr" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "60" + } + "2445" + { + "name" "boston2018_team_astr_holo" + "item_name" "#StickerKit_boston2018_team_astr_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "60" + } + "2446" + { + "name" "boston2018_team_astr_foil" + "item_name" "#StickerKit_boston2018_team_astr_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "60" + } + "2447" + { + "name" "boston2018_team_astr_gold" + "item_name" "#StickerKit_boston2018_team_astr_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "60" + } + "2448" + { + "name" "boston2018_team_vp" + "item_name" "#StickerKit_boston2018_team_vp" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vp" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "31" + } + "2449" + { + "name" "boston2018_team_vp_holo" + "item_name" "#StickerKit_boston2018_team_vp_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "31" + } + "2450" + { + "name" "boston2018_team_vp_foil" + "item_name" "#StickerKit_boston2018_team_vp_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "31" + } + "2451" + { + "name" "boston2018_team_vp_gold" + "item_name" "#StickerKit_boston2018_team_vp_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vp_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "31" + } + "2452" + { + "name" "boston2018_team_fntc" + "item_name" "#StickerKit_boston2018_team_fntc" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/fntc" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "6" + } + "2453" + { + "name" "boston2018_team_fntc_holo" + "item_name" "#StickerKit_boston2018_team_fntc_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "6" + } + "2454" + { + "name" "boston2018_team_fntc_foil" + "item_name" "#StickerKit_boston2018_team_fntc_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "6" + } + "2455" + { + "name" "boston2018_team_fntc_gold" + "item_name" "#StickerKit_boston2018_team_fntc_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "6" + } + "2456" + { + "name" "boston2018_team_sk" + "item_name" "#StickerKit_boston2018_team_sk" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/sk" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "14" + } + "2457" + { + "name" "boston2018_team_sk_holo" + "item_name" "#StickerKit_boston2018_team_sk_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/sk_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "14" + } + "2458" + { + "name" "boston2018_team_sk_foil" + "item_name" "#StickerKit_boston2018_team_sk_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/sk_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "14" + } + "2459" + { + "name" "boston2018_team_sk_gold" + "item_name" "#StickerKit_boston2018_team_sk_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/sk_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "14" + } + "2460" + { + "name" "boston2018_team_big" + "item_name" "#StickerKit_boston2018_team_big" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/big" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "69" + } + "2461" + { + "name" "boston2018_team_big_holo" + "item_name" "#StickerKit_boston2018_team_big_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/big_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "69" + } + "2462" + { + "name" "boston2018_team_big_foil" + "item_name" "#StickerKit_boston2018_team_big_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/big_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "69" + } + "2463" + { + "name" "boston2018_team_big_gold" + "item_name" "#StickerKit_boston2018_team_big_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/big_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "69" + } + "2464" + { + "name" "boston2018_team_nor" + "item_name" "#StickerKit_boston2018_team_nor" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nor" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "68" + } + "2465" + { + "name" "boston2018_team_nor_holo" + "item_name" "#StickerKit_boston2018_team_nor_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nor_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "68" + } + "2466" + { + "name" "boston2018_team_nor_foil" + "item_name" "#StickerKit_boston2018_team_nor_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nor_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "68" + } + "2467" + { + "name" "boston2018_team_nor_gold" + "item_name" "#StickerKit_boston2018_team_nor_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nor_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "68" + } + "2468" + { + "name" "boston2018_team_g2" + "item_name" "#StickerKit_boston2018_team_g2" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/g2" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "59" + } + "2469" + { + "name" "boston2018_team_g2_holo" + "item_name" "#StickerKit_boston2018_team_g2_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "59" + } + "2470" + { + "name" "boston2018_team_g2_foil" + "item_name" "#StickerKit_boston2018_team_g2_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "59" + } + "2471" + { + "name" "boston2018_team_g2_gold" + "item_name" "#StickerKit_boston2018_team_g2_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "59" + } + "2472" + { + "name" "boston2018_team_c9" + "item_name" "#StickerKit_boston2018_team_c9" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/c9" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "33" + } + "2473" + { + "name" "boston2018_team_c9_holo" + "item_name" "#StickerKit_boston2018_team_c9_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/c9_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "33" + } + "2474" + { + "name" "boston2018_team_c9_foil" + "item_name" "#StickerKit_boston2018_team_c9_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/c9_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "33" + } + "2475" + { + "name" "boston2018_team_c9_gold" + "item_name" "#StickerKit_boston2018_team_c9_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/c9_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "33" + } + "2476" + { + "name" "boston2018_team_flip" + "item_name" "#StickerKit_boston2018_team_flip" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flip" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "43" + } + "2477" + { + "name" "boston2018_team_flip_holo" + "item_name" "#StickerKit_boston2018_team_flip_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flip_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "43" + } + "2478" + { + "name" "boston2018_team_flip_foil" + "item_name" "#StickerKit_boston2018_team_flip_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flip_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "43" + } + "2479" + { + "name" "boston2018_team_flip_gold" + "item_name" "#StickerKit_boston2018_team_flip_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flip_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "43" + } + "2480" + { + "name" "boston2018_team_navi" + "item_name" "#StickerKit_boston2018_team_navi" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/navi" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "12" + } + "2481" + { + "name" "boston2018_team_navi_holo" + "item_name" "#StickerKit_boston2018_team_navi_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "12" + } + "2482" + { + "name" "boston2018_team_navi_foil" + "item_name" "#StickerKit_boston2018_team_navi_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "12" + } + "2483" + { + "name" "boston2018_team_navi_gold" + "item_name" "#StickerKit_boston2018_team_navi_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "12" + } + "2484" + { + "name" "boston2018_team_mss" + "item_name" "#StickerKit_boston2018_team_mss" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mss" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "29" + } + "2485" + { + "name" "boston2018_team_mss_holo" + "item_name" "#StickerKit_boston2018_team_mss_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mss_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "29" + } + "2486" + { + "name" "boston2018_team_mss_foil" + "item_name" "#StickerKit_boston2018_team_mss_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "29" + } + "2487" + { + "name" "boston2018_team_mss_gold" + "item_name" "#StickerKit_boston2018_team_mss_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "29" + } + "2488" + { + "name" "boston2018_team_spr" + "item_name" "#StickerKit_boston2018_team_spr" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spr" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "72" + } + "2489" + { + "name" "boston2018_team_spr_holo" + "item_name" "#StickerKit_boston2018_team_spr_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spr_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "72" + } + "2490" + { + "name" "boston2018_team_spr_foil" + "item_name" "#StickerKit_boston2018_team_spr_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spr_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "72" + } + "2491" + { + "name" "boston2018_team_spr_gold" + "item_name" "#StickerKit_boston2018_team_spr_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spr_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "72" + } + "2492" + { + "name" "boston2018_team_faze" + "item_name" "#StickerKit_boston2018_team_faze" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/faze" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "61" + } + "2493" + { + "name" "boston2018_team_faze_holo" + "item_name" "#StickerKit_boston2018_team_faze_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "61" + } + "2494" + { + "name" "boston2018_team_faze_foil" + "item_name" "#StickerKit_boston2018_team_faze_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "61" + } + "2495" + { + "name" "boston2018_team_faze_gold" + "item_name" "#StickerKit_boston2018_team_faze_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "61" + } + "2496" + { + "name" "boston2018_team_vega" + "item_name" "#StickerKit_boston2018_team_vega" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vega" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "70" + } + "2497" + { + "name" "boston2018_team_vega_holo" + "item_name" "#StickerKit_boston2018_team_vega_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vega_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "70" + } + "2498" + { + "name" "boston2018_team_vega_foil" + "item_name" "#StickerKit_boston2018_team_vega_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vega_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "70" + } + "2499" + { + "name" "boston2018_team_vega_gold" + "item_name" "#StickerKit_boston2018_team_vega_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/vega_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "70" + } + "2500" + { + "name" "boston2018_team_spc" + "item_name" "#StickerKit_boston2018_team_spc" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spc" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "73" + } + "2501" + { + "name" "boston2018_team_spc_holo" + "item_name" "#StickerKit_boston2018_team_spc_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spc_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "73" + } + "2502" + { + "name" "boston2018_team_spc_foil" + "item_name" "#StickerKit_boston2018_team_spc_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spc_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "73" + } + "2503" + { + "name" "boston2018_team_spc_gold" + "item_name" "#StickerKit_boston2018_team_spc_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/spc_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "73" + } + "2504" + { + "name" "boston2018_team_liq" + "item_name" "#StickerKit_boston2018_team_liq" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/liq" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "48" + } + "2505" + { + "name" "boston2018_team_liq_holo" + "item_name" "#StickerKit_boston2018_team_liq_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "48" + } + "2506" + { + "name" "boston2018_team_liq_foil" + "item_name" "#StickerKit_boston2018_team_liq_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "48" + } + "2507" + { + "name" "boston2018_team_liq_gold" + "item_name" "#StickerKit_boston2018_team_liq_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "48" + } + "2508" + { + "name" "boston2018_team_avg" + "item_name" "#StickerKit_boston2018_team_avg" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/avg" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "75" + } + "2509" + { + "name" "boston2018_team_avg_holo" + "item_name" "#StickerKit_boston2018_team_avg_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/avg_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "75" + } + "2510" + { + "name" "boston2018_team_avg_foil" + "item_name" "#StickerKit_boston2018_team_avg_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/avg_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "75" + } + "2511" + { + "name" "boston2018_team_avg_gold" + "item_name" "#StickerKit_boston2018_team_avg_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/avg_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "75" + } + "2512" + { + "name" "boston2018_team_ren" + "item_name" "#StickerKit_boston2018_team_ren" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/ren" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "53" + } + "2513" + { + "name" "boston2018_team_ren_holo" + "item_name" "#StickerKit_boston2018_team_ren_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/ren_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "53" + } + "2514" + { + "name" "boston2018_team_ren_foil" + "item_name" "#StickerKit_boston2018_team_ren_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/ren_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "53" + } + "2515" + { + "name" "boston2018_team_ren_gold" + "item_name" "#StickerKit_boston2018_team_ren_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/ren_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "53" + } + "2516" + { + "name" "boston2018_team_nv" + "item_name" "#StickerKit_boston2018_team_nv" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nv" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "46" + } + "2517" + { + "name" "boston2018_team_nv_holo" + "item_name" "#StickerKit_boston2018_team_nv_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nv_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "46" + } + "2518" + { + "name" "boston2018_team_nv_foil" + "item_name" "#StickerKit_boston2018_team_nv_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nv_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "46" + } + "2519" + { + "name" "boston2018_team_nv_gold" + "item_name" "#StickerKit_boston2018_team_nv_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/nv_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "46" + } + "2520" + { + "name" "boston2018_team_mfg" + "item_name" "#StickerKit_boston2018_team_mfg" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mfg" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "77" + } + "2521" + { + "name" "boston2018_team_mfg_holo" + "item_name" "#StickerKit_boston2018_team_mfg_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mfg_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "77" + } + "2522" + { + "name" "boston2018_team_mfg_foil" + "item_name" "#StickerKit_boston2018_team_mfg_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mfg_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "77" + } + "2523" + { + "name" "boston2018_team_mfg_gold" + "item_name" "#StickerKit_boston2018_team_mfg_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/mfg_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "77" + } + "2524" + { + "name" "boston2018_team_qb" + "item_name" "#StickerKit_boston2018_team_qb" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/qb" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "76" + } + "2525" + { + "name" "boston2018_team_qb_holo" + "item_name" "#StickerKit_boston2018_team_qb_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/qb_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "76" + } + "2526" + { + "name" "boston2018_team_qb_foil" + "item_name" "#StickerKit_boston2018_team_qb_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/qb_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "76" + } + "2527" + { + "name" "boston2018_team_qb_gold" + "item_name" "#StickerKit_boston2018_team_qb_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/qb_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "76" + } + "2528" + { + "name" "boston2018_team_tyl" + "item_name" "#StickerKit_boston2018_team_tyl" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/tyl" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "74" + } + "2529" + { + "name" "boston2018_team_tyl_holo" + "item_name" "#StickerKit_boston2018_team_tyl_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/tyl_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "74" + } + "2530" + { + "name" "boston2018_team_tyl_foil" + "item_name" "#StickerKit_boston2018_team_tyl_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/tyl_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "74" + } + "2531" + { + "name" "boston2018_team_tyl_gold" + "item_name" "#StickerKit_boston2018_team_tyl_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/tyl_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "74" + } + "2935" + { + "name" "boston2018_team_flg" + "item_name" "#StickerKit_boston2018_team_flg" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flg" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "79" + } + "2936" + { + "name" "boston2018_team_flg_holo" + "item_name" "#StickerKit_boston2018_team_flg_holo" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flg_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "79" + } + "2937" + { + "name" "boston2018_team_flg_foil" + "item_name" "#StickerKit_boston2018_team_flg_foil" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flg_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "79" + } + "2938" + { + "name" "boston2018_team_flg_gold" + "item_name" "#StickerKit_boston2018_team_flg_gold" + "description_string" "#EventItemDesc_boston2018_sticker_team" + "sticker_material" "boston2018/flg_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "79" + } + "2532" + { + "name" "boston2018_team_eleague" + "item_name" "#StickerKit_boston2018_team_eleague" + "description_string" "#EventItemDesc_boston2018_sticker_org" + "sticker_material" "boston2018/eleague" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "0" + } + "2533" + { + "name" "boston2018_team_eleague_holo" + "item_name" "#StickerKit_boston2018_team_eleague_holo" + "description_string" "#EventItemDesc_boston2018_sticker_org" + "sticker_material" "boston2018/eleague_holo" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "0" + } + "2534" + { + "name" "boston2018_team_eleague_foil" + "item_name" "#StickerKit_boston2018_team_eleague_foil" + "description_string" "#EventItemDesc_boston2018_sticker_org" + "sticker_material" "boston2018/eleague_foil" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "0" + } + "2535" + { + "name" "boston2018_team_eleague_gold" + "item_name" "#StickerKit_boston2018_team_eleague_gold" + "description_string" "#EventItemDesc_boston2018_sticker_org" + "sticker_material" "boston2018/eleague_gold" + "item_rarity" "legendary" + "tournament_event_id" "13" + "tournament_team_id" "0" + } + "2536" + { + "name" "boston2018_team_gamb_graffiti" + "item_name" "#StickerKit_boston2018_team_gamb" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/gamb_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "63" + } + "2537" + { + "name" "boston2018_team_thv_graffiti" + "item_name" "#StickerKit_boston2018_team_thv" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/thv_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "78" + } + "2538" + { + "name" "boston2018_team_astr_graffiti" + "item_name" "#StickerKit_boston2018_team_astr" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/astr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "60" + } + "2539" + { + "name" "boston2018_team_vp_graffiti" + "item_name" "#StickerKit_boston2018_team_vp" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/vp_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "31" + } + "2540" + { + "name" "boston2018_team_fntc_graffiti" + "item_name" "#StickerKit_boston2018_team_fntc" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/fntc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "6" + } + "2541" + { + "name" "boston2018_team_sk_graffiti" + "item_name" "#StickerKit_boston2018_team_sk" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/sk_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "14" + } + "2542" + { + "name" "boston2018_team_big_graffiti" + "item_name" "#StickerKit_boston2018_team_big" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/big_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "69" + } + "2543" + { + "name" "boston2018_team_nor_graffiti" + "item_name" "#StickerKit_boston2018_team_nor" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/nor_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "68" + } + "2544" + { + "name" "boston2018_team_g2_graffiti" + "item_name" "#StickerKit_boston2018_team_g2" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/g2_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "59" + } + "2545" + { + "name" "boston2018_team_c9_graffiti" + "item_name" "#StickerKit_boston2018_team_c9" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/c9_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "33" + } + "2546" + { + "name" "boston2018_team_flip_graffiti" + "item_name" "#StickerKit_boston2018_team_flip" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/flip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "43" + } + "2547" + { + "name" "boston2018_team_navi_graffiti" + "item_name" "#StickerKit_boston2018_team_navi" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "12" + } + "2548" + { + "name" "boston2018_team_mss_graffiti" + "item_name" "#StickerKit_boston2018_team_mss" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/mss_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "29" + } + "2549" + { + "name" "boston2018_team_spr_graffiti" + "item_name" "#StickerKit_boston2018_team_spr" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/spr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "72" + } + "2550" + { + "name" "boston2018_team_faze_graffiti" + "item_name" "#StickerKit_boston2018_team_faze" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "61" + } + "2551" + { + "name" "boston2018_team_vega_graffiti" + "item_name" "#StickerKit_boston2018_team_vega" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/vega_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "70" + } + "2552" + { + "name" "boston2018_team_spc_graffiti" + "item_name" "#StickerKit_boston2018_team_spc" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/spc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "73" + } + "2553" + { + "name" "boston2018_team_liq_graffiti" + "item_name" "#StickerKit_boston2018_team_liq" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "48" + } + "2554" + { + "name" "boston2018_team_avg_graffiti" + "item_name" "#StickerKit_boston2018_team_avg" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/avg_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "75" + } + "2555" + { + "name" "boston2018_team_ren_graffiti" + "item_name" "#StickerKit_boston2018_team_ren" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/ren_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "53" + } + "2556" + { + "name" "boston2018_team_nv_graffiti" + "item_name" "#StickerKit_boston2018_team_nv" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/nv_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "46" + } + "2557" + { + "name" "boston2018_team_mfg_graffiti" + "item_name" "#StickerKit_boston2018_team_mfg" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/mfg_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "77" + } + "2558" + { + "name" "boston2018_team_qb_graffiti" + "item_name" "#StickerKit_boston2018_team_qb" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/qb_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "76" + } + "2559" + { + "name" "boston2018_team_tyl_graffiti" + "item_name" "#StickerKit_boston2018_team_tyl" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/tyl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "74" + } + "2939" + { + "name" "boston2018_team_flg_graffiti" + "item_name" "#StickerKit_boston2018_team_flg" + "description_string" "#EventItemDesc_boston2018_graffiti_team" + "sticker_material" "boston2018/flg_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "79" + } + "2560" + { + "name" "boston2018_team_eleague_graffiti" + "item_name" "#StickerKit_boston2018_team_eleague" + "description_string" "#EventItemDesc_boston2018_graffiti_org" + "sticker_material" "boston2018/eleague_graffiti" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "0" + } + "2561" + { + "name" "boston2018_signature_adrenkz" + "item_name" "#StickerKit_boston2018_signature_adrenkz" + "description_string" "#StickerKit_desc_boston2018_signature_adrenkz" + "sticker_material" "boston2018/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2562" + { + "name" "boston2018_signature_adrenkz_foil" + "item_name" "#StickerKit_boston2018_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_boston2018_signature_adrenkz_foil" + "sticker_material" "boston2018/sig_adrenkz_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2563" + { + "name" "boston2018_signature_adrenkz_gold" + "item_name" "#StickerKit_boston2018_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_boston2018_signature_adrenkz_gold" + "sticker_material" "boston2018/sig_adrenkz_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "2564" + { + "name" "boston2018_signature_dosia" + "item_name" "#StickerKit_boston2018_signature_dosia" + "description_string" "#StickerKit_desc_boston2018_signature_dosia" + "sticker_material" "boston2018/sig_dosia" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2565" + { + "name" "boston2018_signature_dosia_foil" + "item_name" "#StickerKit_boston2018_signature_dosia_foil" + "description_string" "#StickerKit_desc_boston2018_signature_dosia_foil" + "sticker_material" "boston2018/sig_dosia_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2566" + { + "name" "boston2018_signature_dosia_gold" + "item_name" "#StickerKit_boston2018_signature_dosia_gold" + "description_string" "#StickerKit_desc_boston2018_signature_dosia_gold" + "sticker_material" "boston2018/sig_dosia_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "2567" + { + "name" "boston2018_signature_fitch" + "item_name" "#StickerKit_boston2018_signature_fitch" + "description_string" "#StickerKit_desc_boston2018_signature_fitch" + "sticker_material" "boston2018/sig_fitch" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "33208850" + } + "2568" + { + "name" "boston2018_signature_fitch_foil" + "item_name" "#StickerKit_boston2018_signature_fitch_foil" + "description_string" "#StickerKit_desc_boston2018_signature_fitch_foil" + "sticker_material" "boston2018/sig_fitch_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "33208850" + } + "2569" + { + "name" "boston2018_signature_fitch_gold" + "item_name" "#StickerKit_boston2018_signature_fitch_gold" + "description_string" "#StickerKit_desc_boston2018_signature_fitch_gold" + "sticker_material" "boston2018/sig_fitch_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "33208850" + } + "2570" + { + "name" "boston2018_signature_hobbit" + "item_name" "#StickerKit_boston2018_signature_hobbit" + "description_string" "#StickerKit_desc_boston2018_signature_hobbit" + "sticker_material" "boston2018/sig_hobbit" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2571" + { + "name" "boston2018_signature_hobbit_foil" + "item_name" "#StickerKit_boston2018_signature_hobbit_foil" + "description_string" "#StickerKit_desc_boston2018_signature_hobbit_foil" + "sticker_material" "boston2018/sig_hobbit_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2572" + { + "name" "boston2018_signature_hobbit_gold" + "item_name" "#StickerKit_boston2018_signature_hobbit_gold" + "description_string" "#StickerKit_desc_boston2018_signature_hobbit_gold" + "sticker_material" "boston2018/sig_hobbit_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "2573" + { + "name" "boston2018_signature_mou" + "item_name" "#StickerKit_boston2018_signature_mou" + "description_string" "#StickerKit_desc_boston2018_signature_mou" + "sticker_material" "boston2018/sig_mou" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2574" + { + "name" "boston2018_signature_mou_foil" + "item_name" "#StickerKit_boston2018_signature_mou_foil" + "description_string" "#StickerKit_desc_boston2018_signature_mou_foil" + "sticker_material" "boston2018/sig_mou_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2575" + { + "name" "boston2018_signature_mou_gold" + "item_name" "#StickerKit_boston2018_signature_mou_gold" + "description_string" "#StickerKit_desc_boston2018_signature_mou_gold" + "sticker_material" "boston2018/sig_mou_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "2576" + { + "name" "boston2018_signature_bit" + "item_name" "#StickerKit_boston2018_signature_bit" + "description_string" "#StickerKit_desc_boston2018_signature_bit" + "sticker_material" "boston2018/sig_bit" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "9224396" + } + "2577" + { + "name" "boston2018_signature_bit_foil" + "item_name" "#StickerKit_boston2018_signature_bit_foil" + "description_string" "#StickerKit_desc_boston2018_signature_bit_foil" + "sticker_material" "boston2018/sig_bit_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "9224396" + } + "2578" + { + "name" "boston2018_signature_bit_gold" + "item_name" "#StickerKit_boston2018_signature_bit_gold" + "description_string" "#StickerKit_desc_boston2018_signature_bit_gold" + "sticker_material" "boston2018/sig_bit_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "9224396" + } + "2579" + { + "name" "boston2018_signature_fnx" + "item_name" "#StickerKit_boston2018_signature_fnx" + "description_string" "#StickerKit_desc_boston2018_signature_fnx" + "sticker_material" "boston2018/sig_fnx" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "170178574" + } + "2580" + { + "name" "boston2018_signature_fnx_foil" + "item_name" "#StickerKit_boston2018_signature_fnx_foil" + "description_string" "#StickerKit_desc_boston2018_signature_fnx_foil" + "sticker_material" "boston2018/sig_fnx_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "170178574" + } + "2581" + { + "name" "boston2018_signature_fnx_gold" + "item_name" "#StickerKit_boston2018_signature_fnx_gold" + "description_string" "#StickerKit_desc_boston2018_signature_fnx_gold" + "sticker_material" "boston2018/sig_fnx_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "170178574" + } + "2582" + { + "name" "boston2018_signature_hen1" + "item_name" "#StickerKit_boston2018_signature_hen1" + "description_string" "#StickerKit_desc_boston2018_signature_hen1" + "sticker_material" "boston2018/sig_hen1" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "57761535" + } + "2583" + { + "name" "boston2018_signature_hen1_foil" + "item_name" "#StickerKit_boston2018_signature_hen1_foil" + "description_string" "#StickerKit_desc_boston2018_signature_hen1_foil" + "sticker_material" "boston2018/sig_hen1_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "57761535" + } + "2584" + { + "name" "boston2018_signature_hen1_gold" + "item_name" "#StickerKit_boston2018_signature_hen1_gold" + "description_string" "#StickerKit_desc_boston2018_signature_hen1_gold" + "sticker_material" "boston2018/sig_hen1_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "57761535" + } + "2585" + { + "name" "boston2018_signature_kngv" + "item_name" "#StickerKit_boston2018_signature_kngv" + "description_string" "#StickerKit_desc_boston2018_signature_kngv" + "sticker_material" "boston2018/sig_kngv" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "6732863" + } + "2586" + { + "name" "boston2018_signature_kngv_foil" + "item_name" "#StickerKit_boston2018_signature_kngv_foil" + "description_string" "#StickerKit_desc_boston2018_signature_kngv_foil" + "sticker_material" "boston2018/sig_kngv_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "6732863" + } + "2587" + { + "name" "boston2018_signature_kngv_gold" + "item_name" "#StickerKit_boston2018_signature_kngv_gold" + "description_string" "#StickerKit_desc_boston2018_signature_kngv_gold" + "sticker_material" "boston2018/sig_kngv_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "6732863" + } + "2588" + { + "name" "boston2018_signature_lucas1" + "item_name" "#StickerKit_boston2018_signature_lucas1" + "description_string" "#StickerKit_desc_boston2018_signature_lucas1" + "sticker_material" "boston2018/sig_lucas1" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "4780624" + } + "2589" + { + "name" "boston2018_signature_lucas1_foil" + "item_name" "#StickerKit_boston2018_signature_lucas1_foil" + "description_string" "#StickerKit_desc_boston2018_signature_lucas1_foil" + "sticker_material" "boston2018/sig_lucas1_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "4780624" + } + "2590" + { + "name" "boston2018_signature_lucas1_gold" + "item_name" "#StickerKit_boston2018_signature_lucas1_gold" + "description_string" "#StickerKit_desc_boston2018_signature_lucas1_gold" + "sticker_material" "boston2018/sig_lucas1_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "78" + "tournament_player_id" "4780624" + } + "2591" + { + "name" "boston2018_signature_device" + "item_name" "#StickerKit_boston2018_signature_device" + "description_string" "#StickerKit_desc_boston2018_signature_device" + "sticker_material" "boston2018/sig_device" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2592" + { + "name" "boston2018_signature_device_foil" + "item_name" "#StickerKit_boston2018_signature_device_foil" + "description_string" "#StickerKit_desc_boston2018_signature_device_foil" + "sticker_material" "boston2018/sig_device_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2593" + { + "name" "boston2018_signature_device_gold" + "item_name" "#StickerKit_boston2018_signature_device_gold" + "description_string" "#StickerKit_desc_boston2018_signature_device_gold" + "sticker_material" "boston2018/sig_device_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "2594" + { + "name" "boston2018_signature_dupreeh" + "item_name" "#StickerKit_boston2018_signature_dupreeh" + "description_string" "#StickerKit_desc_boston2018_signature_dupreeh" + "sticker_material" "boston2018/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2595" + { + "name" "boston2018_signature_dupreeh_foil" + "item_name" "#StickerKit_boston2018_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_boston2018_signature_dupreeh_foil" + "sticker_material" "boston2018/sig_dupreeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2596" + { + "name" "boston2018_signature_dupreeh_gold" + "item_name" "#StickerKit_boston2018_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_boston2018_signature_dupreeh_gold" + "sticker_material" "boston2018/sig_dupreeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "2597" + { + "name" "boston2018_signature_gla1ve" + "item_name" "#StickerKit_boston2018_signature_gla1ve" + "description_string" "#StickerKit_desc_boston2018_signature_gla1ve" + "sticker_material" "boston2018/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2598" + { + "name" "boston2018_signature_gla1ve_foil" + "item_name" "#StickerKit_boston2018_signature_gla1ve_foil" + "description_string" "#StickerKit_desc_boston2018_signature_gla1ve_foil" + "sticker_material" "boston2018/sig_gla1ve_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2599" + { + "name" "boston2018_signature_gla1ve_gold" + "item_name" "#StickerKit_boston2018_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_boston2018_signature_gla1ve_gold" + "sticker_material" "boston2018/sig_gla1ve_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "2600" + { + "name" "boston2018_signature_kjaerbye" + "item_name" "#StickerKit_boston2018_signature_kjaerbye" + "description_string" "#StickerKit_desc_boston2018_signature_kjaerbye" + "sticker_material" "boston2018/sig_kjaerbye" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2601" + { + "name" "boston2018_signature_kjaerbye_foil" + "item_name" "#StickerKit_boston2018_signature_kjaerbye_foil" + "description_string" "#StickerKit_desc_boston2018_signature_kjaerbye_foil" + "sticker_material" "boston2018/sig_kjaerbye_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2602" + { + "name" "boston2018_signature_kjaerbye_gold" + "item_name" "#StickerKit_boston2018_signature_kjaerbye_gold" + "description_string" "#StickerKit_desc_boston2018_signature_kjaerbye_gold" + "sticker_material" "boston2018/sig_kjaerbye_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "59614824" + } + "2603" + { + "name" "boston2018_signature_xyp9x" + "item_name" "#StickerKit_boston2018_signature_xyp9x" + "description_string" "#StickerKit_desc_boston2018_signature_xyp9x" + "sticker_material" "boston2018/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2604" + { + "name" "boston2018_signature_xyp9x_foil" + "item_name" "#StickerKit_boston2018_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_boston2018_signature_xyp9x_foil" + "sticker_material" "boston2018/sig_xyp9x_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2605" + { + "name" "boston2018_signature_xyp9x_gold" + "item_name" "#StickerKit_boston2018_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_boston2018_signature_xyp9x_gold" + "sticker_material" "boston2018/sig_xyp9x_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "2606" + { + "name" "boston2018_signature_byali" + "item_name" "#StickerKit_boston2018_signature_byali" + "description_string" "#StickerKit_desc_boston2018_signature_byali" + "sticker_material" "boston2018/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2607" + { + "name" "boston2018_signature_byali_foil" + "item_name" "#StickerKit_boston2018_signature_byali_foil" + "description_string" "#StickerKit_desc_boston2018_signature_byali_foil" + "sticker_material" "boston2018/sig_byali_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2608" + { + "name" "boston2018_signature_byali_gold" + "item_name" "#StickerKit_boston2018_signature_byali_gold" + "description_string" "#StickerKit_desc_boston2018_signature_byali_gold" + "sticker_material" "boston2018/sig_byali_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "2609" + { + "name" "boston2018_signature_neo" + "item_name" "#StickerKit_boston2018_signature_neo" + "description_string" "#StickerKit_desc_boston2018_signature_neo" + "sticker_material" "boston2018/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2610" + { + "name" "boston2018_signature_neo_foil" + "item_name" "#StickerKit_boston2018_signature_neo_foil" + "description_string" "#StickerKit_desc_boston2018_signature_neo_foil" + "sticker_material" "boston2018/sig_neo_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2611" + { + "name" "boston2018_signature_neo_gold" + "item_name" "#StickerKit_boston2018_signature_neo_gold" + "description_string" "#StickerKit_desc_boston2018_signature_neo_gold" + "sticker_material" "boston2018/sig_neo_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "2612" + { + "name" "boston2018_signature_pasha" + "item_name" "#StickerKit_boston2018_signature_pasha" + "description_string" "#StickerKit_desc_boston2018_signature_pasha" + "sticker_material" "boston2018/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2613" + { + "name" "boston2018_signature_pasha_foil" + "item_name" "#StickerKit_boston2018_signature_pasha_foil" + "description_string" "#StickerKit_desc_boston2018_signature_pasha_foil" + "sticker_material" "boston2018/sig_pasha_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2614" + { + "name" "boston2018_signature_pasha_gold" + "item_name" "#StickerKit_boston2018_signature_pasha_gold" + "description_string" "#StickerKit_desc_boston2018_signature_pasha_gold" + "sticker_material" "boston2018/sig_pasha_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "2615" + { + "name" "boston2018_signature_snax" + "item_name" "#StickerKit_boston2018_signature_snax" + "description_string" "#StickerKit_desc_boston2018_signature_snax" + "sticker_material" "boston2018/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2616" + { + "name" "boston2018_signature_snax_foil" + "item_name" "#StickerKit_boston2018_signature_snax_foil" + "description_string" "#StickerKit_desc_boston2018_signature_snax_foil" + "sticker_material" "boston2018/sig_snax_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2617" + { + "name" "boston2018_signature_snax_gold" + "item_name" "#StickerKit_boston2018_signature_snax_gold" + "description_string" "#StickerKit_desc_boston2018_signature_snax_gold" + "sticker_material" "boston2018/sig_snax_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "21875845" + } + "2618" + { + "name" "boston2018_signature_taz" + "item_name" "#StickerKit_boston2018_signature_taz" + "description_string" "#StickerKit_desc_boston2018_signature_taz" + "sticker_material" "boston2018/sig_taz" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2619" + { + "name" "boston2018_signature_taz_foil" + "item_name" "#StickerKit_boston2018_signature_taz_foil" + "description_string" "#StickerKit_desc_boston2018_signature_taz_foil" + "sticker_material" "boston2018/sig_taz_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2620" + { + "name" "boston2018_signature_taz_gold" + "item_name" "#StickerKit_boston2018_signature_taz_gold" + "description_string" "#StickerKit_desc_boston2018_signature_taz_gold" + "sticker_material" "boston2018/sig_taz_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "31" + "tournament_player_id" "234052" + } + "2621" + { + "name" "boston2018_signature_flusha" + "item_name" "#StickerKit_boston2018_signature_flusha" + "description_string" "#StickerKit_desc_boston2018_signature_flusha" + "sticker_material" "boston2018/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "2622" + { + "name" "boston2018_signature_flusha_foil" + "item_name" "#StickerKit_boston2018_signature_flusha_foil" + "description_string" "#StickerKit_desc_boston2018_signature_flusha_foil" + "sticker_material" "boston2018/sig_flusha_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "2623" + { + "name" "boston2018_signature_flusha_gold" + "item_name" "#StickerKit_boston2018_signature_flusha_gold" + "description_string" "#StickerKit_desc_boston2018_signature_flusha_gold" + "sticker_material" "boston2018/sig_flusha_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "2624" + { + "name" "boston2018_signature_golden" + "item_name" "#StickerKit_boston2018_signature_golden" + "description_string" "#StickerKit_desc_boston2018_signature_golden" + "sticker_material" "boston2018/sig_golden" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "116509497" + } + "2625" + { + "name" "boston2018_signature_golden_foil" + "item_name" "#StickerKit_boston2018_signature_golden_foil" + "description_string" "#StickerKit_desc_boston2018_signature_golden_foil" + "sticker_material" "boston2018/sig_golden_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "116509497" + } + "2626" + { + "name" "boston2018_signature_golden_gold" + "item_name" "#StickerKit_boston2018_signature_golden_gold" + "description_string" "#StickerKit_desc_boston2018_signature_golden_gold" + "sticker_material" "boston2018/sig_golden_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "116509497" + } + "2627" + { + "name" "boston2018_signature_jw" + "item_name" "#StickerKit_boston2018_signature_jw" + "description_string" "#StickerKit_desc_boston2018_signature_jw" + "sticker_material" "boston2018/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "2628" + { + "name" "boston2018_signature_jw_foil" + "item_name" "#StickerKit_boston2018_signature_jw_foil" + "description_string" "#StickerKit_desc_boston2018_signature_jw_foil" + "sticker_material" "boston2018/sig_jw_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "2629" + { + "name" "boston2018_signature_jw_gold" + "item_name" "#StickerKit_boston2018_signature_jw_gold" + "description_string" "#StickerKit_desc_boston2018_signature_jw_gold" + "sticker_material" "boston2018/sig_jw_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "2630" + { + "name" "boston2018_signature_krimz" + "item_name" "#StickerKit_boston2018_signature_krimz" + "description_string" "#StickerKit_desc_boston2018_signature_krimz" + "sticker_material" "boston2018/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "2631" + { + "name" "boston2018_signature_krimz_foil" + "item_name" "#StickerKit_boston2018_signature_krimz_foil" + "description_string" "#StickerKit_desc_boston2018_signature_krimz_foil" + "sticker_material" "boston2018/sig_krimz_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "2632" + { + "name" "boston2018_signature_krimz_gold" + "item_name" "#StickerKit_boston2018_signature_krimz_gold" + "description_string" "#StickerKit_desc_boston2018_signature_krimz_gold" + "sticker_material" "boston2018/sig_krimz_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "2633" + { + "name" "boston2018_signature_lekro" + "item_name" "#StickerKit_boston2018_signature_lekro" + "description_string" "#StickerKit_desc_boston2018_signature_lekro" + "sticker_material" "boston2018/sig_lekro" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "1093135" + } + "2634" + { + "name" "boston2018_signature_lekro_foil" + "item_name" "#StickerKit_boston2018_signature_lekro_foil" + "description_string" "#StickerKit_desc_boston2018_signature_lekro_foil" + "sticker_material" "boston2018/sig_lekro_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "1093135" + } + "2635" + { + "name" "boston2018_signature_lekro_gold" + "item_name" "#StickerKit_boston2018_signature_lekro_gold" + "description_string" "#StickerKit_desc_boston2018_signature_lekro_gold" + "sticker_material" "boston2018/sig_lekro_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "6" + "tournament_player_id" "1093135" + } + "2636" + { + "name" "boston2018_signature_coldzera" + "item_name" "#StickerKit_boston2018_signature_coldzera" + "description_string" "#StickerKit_desc_boston2018_signature_coldzera" + "sticker_material" "boston2018/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "2637" + { + "name" "boston2018_signature_coldzera_foil" + "item_name" "#StickerKit_boston2018_signature_coldzera_foil" + "description_string" "#StickerKit_desc_boston2018_signature_coldzera_foil" + "sticker_material" "boston2018/sig_coldzera_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "2638" + { + "name" "boston2018_signature_coldzera_gold" + "item_name" "#StickerKit_boston2018_signature_coldzera_gold" + "description_string" "#StickerKit_desc_boston2018_signature_coldzera_gold" + "sticker_material" "boston2018/sig_coldzera_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "79720871" + } + "2639" + { + "name" "boston2018_signature_fallen" + "item_name" "#StickerKit_boston2018_signature_fallen" + "description_string" "#StickerKit_desc_boston2018_signature_fallen" + "sticker_material" "boston2018/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "2640" + { + "name" "boston2018_signature_fallen_foil" + "item_name" "#StickerKit_boston2018_signature_fallen_foil" + "description_string" "#StickerKit_desc_boston2018_signature_fallen_foil" + "sticker_material" "boston2018/sig_fallen_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "2641" + { + "name" "boston2018_signature_fallen_gold" + "item_name" "#StickerKit_boston2018_signature_fallen_gold" + "description_string" "#StickerKit_desc_boston2018_signature_fallen_gold" + "sticker_material" "boston2018/sig_fallen_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "424467" + } + "2642" + { + "name" "boston2018_signature_felps" + "item_name" "#StickerKit_boston2018_signature_felps" + "description_string" "#StickerKit_desc_boston2018_signature_felps" + "sticker_material" "boston2018/sig_felps" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "22765766" + } + "2643" + { + "name" "boston2018_signature_felps_foil" + "item_name" "#StickerKit_boston2018_signature_felps_foil" + "description_string" "#StickerKit_desc_boston2018_signature_felps_foil" + "sticker_material" "boston2018/sig_felps_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "22765766" + } + "2644" + { + "name" "boston2018_signature_felps_gold" + "item_name" "#StickerKit_boston2018_signature_felps_gold" + "description_string" "#StickerKit_desc_boston2018_signature_felps_gold" + "sticker_material" "boston2018/sig_felps_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "22765766" + } + "2645" + { + "name" "boston2018_signature_fer" + "item_name" "#StickerKit_boston2018_signature_fer" + "description_string" "#StickerKit_desc_boston2018_signature_fer" + "sticker_material" "boston2018/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "2646" + { + "name" "boston2018_signature_fer_foil" + "item_name" "#StickerKit_boston2018_signature_fer_foil" + "description_string" "#StickerKit_desc_boston2018_signature_fer_foil" + "sticker_material" "boston2018/sig_fer_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "2647" + { + "name" "boston2018_signature_fer_gold" + "item_name" "#StickerKit_boston2018_signature_fer_gold" + "description_string" "#StickerKit_desc_boston2018_signature_fer_gold" + "sticker_material" "boston2018/sig_fer_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "38921219" + } + "2648" + { + "name" "boston2018_signature_taco" + "item_name" "#StickerKit_boston2018_signature_taco" + "description_string" "#StickerKit_desc_boston2018_signature_taco" + "sticker_material" "boston2018/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "2649" + { + "name" "boston2018_signature_taco_foil" + "item_name" "#StickerKit_boston2018_signature_taco_foil" + "description_string" "#StickerKit_desc_boston2018_signature_taco_foil" + "sticker_material" "boston2018/sig_taco_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "2650" + { + "name" "boston2018_signature_taco_gold" + "item_name" "#StickerKit_boston2018_signature_taco_gold" + "description_string" "#StickerKit_desc_boston2018_signature_taco_gold" + "sticker_material" "boston2018/sig_taco_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "14" + "tournament_player_id" "52876568" + } + "2651" + { + "name" "boston2018_signature_gobb" + "item_name" "#StickerKit_boston2018_signature_gobb" + "description_string" "#StickerKit_desc_boston2018_signature_gobb" + "sticker_material" "boston2018/sig_gobb" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "2652" + { + "name" "boston2018_signature_gobb_foil" + "item_name" "#StickerKit_boston2018_signature_gobb_foil" + "description_string" "#StickerKit_desc_boston2018_signature_gobb_foil" + "sticker_material" "boston2018/sig_gobb_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "2653" + { + "name" "boston2018_signature_gobb_gold" + "item_name" "#StickerKit_boston2018_signature_gobb_gold" + "description_string" "#StickerKit_desc_boston2018_signature_gobb_gold" + "sticker_material" "boston2018/sig_gobb_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "2654" + { + "name" "boston2018_signature_keev" + "item_name" "#StickerKit_boston2018_signature_keev" + "description_string" "#StickerKit_desc_boston2018_signature_keev" + "sticker_material" "boston2018/sig_keev" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "51271036" + } + "2655" + { + "name" "boston2018_signature_keev_foil" + "item_name" "#StickerKit_boston2018_signature_keev_foil" + "description_string" "#StickerKit_desc_boston2018_signature_keev_foil" + "sticker_material" "boston2018/sig_keev_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "51271036" + } + "2656" + { + "name" "boston2018_signature_keev_gold" + "item_name" "#StickerKit_boston2018_signature_keev_gold" + "description_string" "#StickerKit_desc_boston2018_signature_keev_gold" + "sticker_material" "boston2018/sig_keev_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "51271036" + } + "2657" + { + "name" "boston2018_signature_legija" + "item_name" "#StickerKit_boston2018_signature_legija" + "description_string" "#StickerKit_desc_boston2018_signature_legija" + "sticker_material" "boston2018/sig_legija" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "21242287" + } + "2658" + { + "name" "boston2018_signature_legija_foil" + "item_name" "#StickerKit_boston2018_signature_legija_foil" + "description_string" "#StickerKit_desc_boston2018_signature_legija_foil" + "sticker_material" "boston2018/sig_legija_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "21242287" + } + "2659" + { + "name" "boston2018_signature_legija_gold" + "item_name" "#StickerKit_boston2018_signature_legija_gold" + "description_string" "#StickerKit_desc_boston2018_signature_legija_gold" + "sticker_material" "boston2018/sig_legija_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "21242287" + } + "2660" + { + "name" "boston2018_signature_nex" + "item_name" "#StickerKit_boston2018_signature_nex" + "description_string" "#StickerKit_desc_boston2018_signature_nex" + "sticker_material" "boston2018/sig_nex" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "2661" + { + "name" "boston2018_signature_nex_foil" + "item_name" "#StickerKit_boston2018_signature_nex_foil" + "description_string" "#StickerKit_desc_boston2018_signature_nex_foil" + "sticker_material" "boston2018/sig_nex_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "2662" + { + "name" "boston2018_signature_nex_gold" + "item_name" "#StickerKit_boston2018_signature_nex_gold" + "description_string" "#StickerKit_desc_boston2018_signature_nex_gold" + "sticker_material" "boston2018/sig_nex_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "2663" + { + "name" "boston2018_signature_tabsen" + "item_name" "#StickerKit_boston2018_signature_tabsen" + "description_string" "#StickerKit_desc_boston2018_signature_tabsen" + "sticker_material" "boston2018/sig_tabsen" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "2664" + { + "name" "boston2018_signature_tabsen_foil" + "item_name" "#StickerKit_boston2018_signature_tabsen_foil" + "description_string" "#StickerKit_desc_boston2018_signature_tabsen_foil" + "sticker_material" "boston2018/sig_tabsen_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "2665" + { + "name" "boston2018_signature_tabsen_gold" + "item_name" "#StickerKit_boston2018_signature_tabsen_gold" + "description_string" "#StickerKit_desc_boston2018_signature_tabsen_gold" + "sticker_material" "boston2018/sig_tabsen_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "2666" + { + "name" "boston2018_signature_aizy" + "item_name" "#StickerKit_boston2018_signature_aizy" + "description_string" "#StickerKit_desc_boston2018_signature_aizy" + "sticker_material" "boston2018/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "2667" + { + "name" "boston2018_signature_aizy_foil" + "item_name" "#StickerKit_boston2018_signature_aizy_foil" + "description_string" "#StickerKit_desc_boston2018_signature_aizy_foil" + "sticker_material" "boston2018/sig_aizy_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "2668" + { + "name" "boston2018_signature_aizy_gold" + "item_name" "#StickerKit_boston2018_signature_aizy_gold" + "description_string" "#StickerKit_desc_boston2018_signature_aizy_gold" + "sticker_material" "boston2018/sig_aizy_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "2669" + { + "name" "boston2018_signature_cajunb" + "item_name" "#StickerKit_boston2018_signature_cajunb" + "description_string" "#StickerKit_desc_boston2018_signature_cajunb" + "sticker_material" "boston2018/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "2670" + { + "name" "boston2018_signature_cajunb_foil" + "item_name" "#StickerKit_boston2018_signature_cajunb_foil" + "description_string" "#StickerKit_desc_boston2018_signature_cajunb_foil" + "sticker_material" "boston2018/sig_cajunb_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "2671" + { + "name" "boston2018_signature_cajunb_gold" + "item_name" "#StickerKit_boston2018_signature_cajunb_gold" + "description_string" "#StickerKit_desc_boston2018_signature_cajunb_gold" + "sticker_material" "boston2018/sig_cajunb_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "18062315" + } + "2672" + { + "name" "boston2018_signature_k0nfig" + "item_name" "#StickerKit_boston2018_signature_k0nfig" + "description_string" "#StickerKit_desc_boston2018_signature_k0nfig" + "sticker_material" "boston2018/sig_k0nfig" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "2673" + { + "name" "boston2018_signature_k0nfig_foil" + "item_name" "#StickerKit_boston2018_signature_k0nfig_foil" + "description_string" "#StickerKit_desc_boston2018_signature_k0nfig_foil" + "sticker_material" "boston2018/sig_k0nfig_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "2674" + { + "name" "boston2018_signature_k0nfig_gold" + "item_name" "#StickerKit_boston2018_signature_k0nfig_gold" + "description_string" "#StickerKit_desc_boston2018_signature_k0nfig_gold" + "sticker_material" "boston2018/sig_k0nfig_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "19403447" + } + "2675" + { + "name" "boston2018_signature_msl" + "item_name" "#StickerKit_boston2018_signature_msl" + "description_string" "#StickerKit_desc_boston2018_signature_msl" + "sticker_material" "boston2018/sig_msl" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "2676" + { + "name" "boston2018_signature_msl_foil" + "item_name" "#StickerKit_boston2018_signature_msl_foil" + "description_string" "#StickerKit_desc_boston2018_signature_msl_foil" + "sticker_material" "boston2018/sig_msl_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "2677" + { + "name" "boston2018_signature_msl_gold" + "item_name" "#StickerKit_boston2018_signature_msl_gold" + "description_string" "#StickerKit_desc_boston2018_signature_msl_gold" + "sticker_material" "boston2018/sig_msl_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "2678" + { + "name" "boston2018_signature_v4lde" + "item_name" "#StickerKit_boston2018_signature_v4lde" + "description_string" "#StickerKit_desc_boston2018_signature_v4lde" + "sticker_material" "boston2018/sig_v4lde" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "2679" + { + "name" "boston2018_signature_v4lde_foil" + "item_name" "#StickerKit_boston2018_signature_v4lde_foil" + "description_string" "#StickerKit_desc_boston2018_signature_v4lde_foil" + "sticker_material" "boston2018/sig_v4lde_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "2680" + { + "name" "boston2018_signature_v4lde_gold" + "item_name" "#StickerKit_boston2018_signature_v4lde_gold" + "description_string" "#StickerKit_desc_boston2018_signature_v4lde_gold" + "sticker_material" "boston2018/sig_v4lde_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "2681" + { + "name" "boston2018_signature_apex" + "item_name" "#StickerKit_boston2018_signature_apex" + "description_string" "#StickerKit_desc_boston2018_signature_apex" + "sticker_material" "boston2018/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "29478439" + } + "2682" + { + "name" "boston2018_signature_apex_foil" + "item_name" "#StickerKit_boston2018_signature_apex_foil" + "description_string" "#StickerKit_desc_boston2018_signature_apex_foil" + "sticker_material" "boston2018/sig_apex_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "29478439" + } + "2683" + { + "name" "boston2018_signature_apex_gold" + "item_name" "#StickerKit_boston2018_signature_apex_gold" + "description_string" "#StickerKit_desc_boston2018_signature_apex_gold" + "sticker_material" "boston2018/sig_apex_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "29478439" + } + "2684" + { + "name" "boston2018_signature_bodyy" + "item_name" "#StickerKit_boston2018_signature_bodyy" + "description_string" "#StickerKit_desc_boston2018_signature_bodyy" + "sticker_material" "boston2018/sig_bodyy" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2685" + { + "name" "boston2018_signature_bodyy_foil" + "item_name" "#StickerKit_boston2018_signature_bodyy_foil" + "description_string" "#StickerKit_desc_boston2018_signature_bodyy_foil" + "sticker_material" "boston2018/sig_bodyy_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2686" + { + "name" "boston2018_signature_bodyy_gold" + "item_name" "#StickerKit_boston2018_signature_bodyy_gold" + "description_string" "#StickerKit_desc_boston2018_signature_bodyy_gold" + "sticker_material" "boston2018/sig_bodyy_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "2687" + { + "name" "boston2018_signature_kennys" + "item_name" "#StickerKit_boston2018_signature_kennys" + "description_string" "#StickerKit_desc_boston2018_signature_kennys" + "sticker_material" "boston2018/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "2688" + { + "name" "boston2018_signature_kennys_foil" + "item_name" "#StickerKit_boston2018_signature_kennys_foil" + "description_string" "#StickerKit_desc_boston2018_signature_kennys_foil" + "sticker_material" "boston2018/sig_kennys_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "2689" + { + "name" "boston2018_signature_kennys_gold" + "item_name" "#StickerKit_boston2018_signature_kennys_gold" + "description_string" "#StickerKit_desc_boston2018_signature_kennys_gold" + "sticker_material" "boston2018/sig_kennys_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "2690" + { + "name" "boston2018_signature_nbk" + "item_name" "#StickerKit_boston2018_signature_nbk" + "description_string" "#StickerKit_desc_boston2018_signature_nbk" + "sticker_material" "boston2018/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "444845" + } + "2691" + { + "name" "boston2018_signature_nbk_foil" + "item_name" "#StickerKit_boston2018_signature_nbk_foil" + "description_string" "#StickerKit_desc_boston2018_signature_nbk_foil" + "sticker_material" "boston2018/sig_nbk_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "444845" + } + "2692" + { + "name" "boston2018_signature_nbk_gold" + "item_name" "#StickerKit_boston2018_signature_nbk_gold" + "description_string" "#StickerKit_desc_boston2018_signature_nbk_gold" + "sticker_material" "boston2018/sig_nbk_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "444845" + } + "2693" + { + "name" "boston2018_signature_shox" + "item_name" "#StickerKit_boston2018_signature_shox" + "description_string" "#StickerKit_desc_boston2018_signature_shox" + "sticker_material" "boston2018/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2694" + { + "name" "boston2018_signature_shox_foil" + "item_name" "#StickerKit_boston2018_signature_shox_foil" + "description_string" "#StickerKit_desc_boston2018_signature_shox_foil" + "sticker_material" "boston2018/sig_shox_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2695" + { + "name" "boston2018_signature_shox_gold" + "item_name" "#StickerKit_boston2018_signature_shox_gold" + "description_string" "#StickerKit_desc_boston2018_signature_shox_gold" + "sticker_material" "boston2018/sig_shox_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "2696" + { + "name" "boston2018_signature_autimatic" + "item_name" "#StickerKit_boston2018_signature_autimatic" + "description_string" "#StickerKit_desc_boston2018_signature_autimatic" + "sticker_material" "boston2018/sig_autimatic" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "2697" + { + "name" "boston2018_signature_autimatic_foil" + "item_name" "#StickerKit_boston2018_signature_autimatic_foil" + "description_string" "#StickerKit_desc_boston2018_signature_autimatic_foil" + "sticker_material" "boston2018/sig_autimatic_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "2698" + { + "name" "boston2018_signature_autimatic_gold" + "item_name" "#StickerKit_boston2018_signature_autimatic_gold" + "description_string" "#StickerKit_desc_boston2018_signature_autimatic_gold" + "sticker_material" "boston2018/sig_autimatic_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "2699" + { + "name" "boston2018_signature_rush" + "item_name" "#StickerKit_boston2018_signature_rush" + "description_string" "#StickerKit_desc_boston2018_signature_rush" + "sticker_material" "boston2018/sig_rush" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "2700" + { + "name" "boston2018_signature_rush_foil" + "item_name" "#StickerKit_boston2018_signature_rush_foil" + "description_string" "#StickerKit_desc_boston2018_signature_rush_foil" + "sticker_material" "boston2018/sig_rush_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "2701" + { + "name" "boston2018_signature_rush_gold" + "item_name" "#StickerKit_boston2018_signature_rush_gold" + "description_string" "#StickerKit_desc_boston2018_signature_rush_gold" + "sticker_material" "boston2018/sig_rush_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "2702" + { + "name" "boston2018_signature_skadoodle" + "item_name" "#StickerKit_boston2018_signature_skadoodle" + "description_string" "#StickerKit_desc_boston2018_signature_skadoodle" + "sticker_material" "boston2018/sig_skadoodle" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "2703" + { + "name" "boston2018_signature_skadoodle_foil" + "item_name" "#StickerKit_boston2018_signature_skadoodle_foil" + "description_string" "#StickerKit_desc_boston2018_signature_skadoodle_foil" + "sticker_material" "boston2018/sig_skadoodle_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "2704" + { + "name" "boston2018_signature_skadoodle_gold" + "item_name" "#StickerKit_boston2018_signature_skadoodle_gold" + "description_string" "#StickerKit_desc_boston2018_signature_skadoodle_gold" + "sticker_material" "boston2018/sig_skadoodle_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "2705" + { + "name" "boston2018_signature_stewie2k" + "item_name" "#StickerKit_boston2018_signature_stewie2k" + "description_string" "#StickerKit_desc_boston2018_signature_stewie2k" + "sticker_material" "boston2018/sig_stewie2k" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "2706" + { + "name" "boston2018_signature_stewie2k_foil" + "item_name" "#StickerKit_boston2018_signature_stewie2k_foil" + "description_string" "#StickerKit_desc_boston2018_signature_stewie2k_foil" + "sticker_material" "boston2018/sig_stewie2k_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "2707" + { + "name" "boston2018_signature_stewie2k_gold" + "item_name" "#StickerKit_boston2018_signature_stewie2k_gold" + "description_string" "#StickerKit_desc_boston2018_signature_stewie2k_gold" + "sticker_material" "boston2018/sig_stewie2k_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "38738282" + } + "2708" + { + "name" "boston2018_signature_tarik" + "item_name" "#StickerKit_boston2018_signature_tarik" + "description_string" "#StickerKit_desc_boston2018_signature_tarik" + "sticker_material" "boston2018/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "18216247" + } + "2709" + { + "name" "boston2018_signature_tarik_foil" + "item_name" "#StickerKit_boston2018_signature_tarik_foil" + "description_string" "#StickerKit_desc_boston2018_signature_tarik_foil" + "sticker_material" "boston2018/sig_tarik_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "18216247" + } + "2710" + { + "name" "boston2018_signature_tarik_gold" + "item_name" "#StickerKit_boston2018_signature_tarik_gold" + "description_string" "#StickerKit_desc_boston2018_signature_tarik_gold" + "sticker_material" "boston2018/sig_tarik_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "33" + "tournament_player_id" "18216247" + } + "2711" + { + "name" "boston2018_signature_b1ad3" + "item_name" "#StickerKit_boston2018_signature_b1ad3" + "description_string" "#StickerKit_desc_boston2018_signature_b1ad3" + "sticker_material" "boston2018/sig_b1ad3" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "2712" + { + "name" "boston2018_signature_b1ad3_foil" + "item_name" "#StickerKit_boston2018_signature_b1ad3_foil" + "description_string" "#StickerKit_desc_boston2018_signature_b1ad3_foil" + "sticker_material" "boston2018/sig_b1ad3_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "2713" + { + "name" "boston2018_signature_b1ad3_gold" + "item_name" "#StickerKit_boston2018_signature_b1ad3_gold" + "description_string" "#StickerKit_desc_boston2018_signature_b1ad3_gold" + "sticker_material" "boston2018/sig_b1ad3_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "53258137" + } + "2714" + { + "name" "boston2018_signature_markeloff" + "item_name" "#StickerKit_boston2018_signature_markeloff" + "description_string" "#StickerKit_desc_boston2018_signature_markeloff" + "sticker_material" "boston2018/sig_markeloff" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "2715" + { + "name" "boston2018_signature_markeloff_foil" + "item_name" "#StickerKit_boston2018_signature_markeloff_foil" + "description_string" "#StickerKit_desc_boston2018_signature_markeloff_foil" + "sticker_material" "boston2018/sig_markeloff_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "2716" + { + "name" "boston2018_signature_markeloff_gold" + "item_name" "#StickerKit_boston2018_signature_markeloff_gold" + "description_string" "#StickerKit_desc_boston2018_signature_markeloff_gold" + "sticker_material" "boston2018/sig_markeloff_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "5667261" + } + "2717" + { + "name" "boston2018_signature_seized" + "item_name" "#StickerKit_boston2018_signature_seized" + "description_string" "#StickerKit_desc_boston2018_signature_seized" + "sticker_material" "boston2018/sig_seized" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "3648428" + } + "2718" + { + "name" "boston2018_signature_seized_foil" + "item_name" "#StickerKit_boston2018_signature_seized_foil" + "description_string" "#StickerKit_desc_boston2018_signature_seized_foil" + "sticker_material" "boston2018/sig_seized_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "3648428" + } + "2719" + { + "name" "boston2018_signature_seized_gold" + "item_name" "#StickerKit_boston2018_signature_seized_gold" + "description_string" "#StickerKit_desc_boston2018_signature_seized_gold" + "sticker_material" "boston2018/sig_seized_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "3648428" + } + "2720" + { + "name" "boston2018_signature_waylander" + "item_name" "#StickerKit_boston2018_signature_waylander" + "description_string" "#StickerKit_desc_boston2018_signature_waylander" + "sticker_material" "boston2018/sig_waylander" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "2721" + { + "name" "boston2018_signature_waylander_foil" + "item_name" "#StickerKit_boston2018_signature_waylander_foil" + "description_string" "#StickerKit_desc_boston2018_signature_waylander_foil" + "sticker_material" "boston2018/sig_waylander_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "2722" + { + "name" "boston2018_signature_waylander_gold" + "item_name" "#StickerKit_boston2018_signature_waylander_gold" + "description_string" "#StickerKit_desc_boston2018_signature_waylander_gold" + "sticker_material" "boston2018/sig_waylander_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "38340970" + } + "2723" + { + "name" "boston2018_signature_worldedit" + "item_name" "#StickerKit_boston2018_signature_worldedit" + "description_string" "#StickerKit_desc_boston2018_signature_worldedit" + "sticker_material" "boston2018/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "2724" + { + "name" "boston2018_signature_worldedit_foil" + "item_name" "#StickerKit_boston2018_signature_worldedit_foil" + "description_string" "#StickerKit_desc_boston2018_signature_worldedit_foil" + "sticker_material" "boston2018/sig_worldedit_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "2725" + { + "name" "boston2018_signature_worldedit_gold" + "item_name" "#StickerKit_boston2018_signature_worldedit_gold" + "description_string" "#StickerKit_desc_boston2018_signature_worldedit_gold" + "sticker_material" "boston2018/sig_worldedit_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "43" + "tournament_player_id" "36732188" + } + "2726" + { + "name" "boston2018_signature_edward" + "item_name" "#StickerKit_boston2018_signature_edward" + "description_string" "#StickerKit_desc_boston2018_signature_edward" + "sticker_material" "boston2018/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "2727" + { + "name" "boston2018_signature_edward_foil" + "item_name" "#StickerKit_boston2018_signature_edward_foil" + "description_string" "#StickerKit_desc_boston2018_signature_edward_foil" + "sticker_material" "boston2018/sig_edward_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "2728" + { + "name" "boston2018_signature_edward_gold" + "item_name" "#StickerKit_boston2018_signature_edward_gold" + "description_string" "#StickerKit_desc_boston2018_signature_edward_gold" + "sticker_material" "boston2018/sig_edward_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "2729" + { + "name" "boston2018_signature_electronic" + "item_name" "#StickerKit_boston2018_signature_electronic" + "description_string" "#StickerKit_desc_boston2018_signature_electronic" + "sticker_material" "boston2018/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "2730" + { + "name" "boston2018_signature_electronic_foil" + "item_name" "#StickerKit_boston2018_signature_electronic_foil" + "description_string" "#StickerKit_desc_boston2018_signature_electronic_foil" + "sticker_material" "boston2018/sig_electronic_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "2731" + { + "name" "boston2018_signature_electronic_gold" + "item_name" "#StickerKit_boston2018_signature_electronic_gold" + "description_string" "#StickerKit_desc_boston2018_signature_electronic_gold" + "sticker_material" "boston2018/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "2732" + { + "name" "boston2018_signature_flamie" + "item_name" "#StickerKit_boston2018_signature_flamie" + "description_string" "#StickerKit_desc_boston2018_signature_flamie" + "sticker_material" "boston2018/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "2733" + { + "name" "boston2018_signature_flamie_foil" + "item_name" "#StickerKit_boston2018_signature_flamie_foil" + "description_string" "#StickerKit_desc_boston2018_signature_flamie_foil" + "sticker_material" "boston2018/sig_flamie_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "2734" + { + "name" "boston2018_signature_flamie_gold" + "item_name" "#StickerKit_boston2018_signature_flamie_gold" + "description_string" "#StickerKit_desc_boston2018_signature_flamie_gold" + "sticker_material" "boston2018/sig_flamie_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "2735" + { + "name" "boston2018_signature_s1mple" + "item_name" "#StickerKit_boston2018_signature_s1mple" + "description_string" "#StickerKit_desc_boston2018_signature_s1mple" + "sticker_material" "boston2018/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "2736" + { + "name" "boston2018_signature_s1mple_foil" + "item_name" "#StickerKit_boston2018_signature_s1mple_foil" + "description_string" "#StickerKit_desc_boston2018_signature_s1mple_foil" + "sticker_material" "boston2018/sig_s1mple_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "2737" + { + "name" "boston2018_signature_s1mple_gold" + "item_name" "#StickerKit_boston2018_signature_s1mple_gold" + "description_string" "#StickerKit_desc_boston2018_signature_s1mple_gold" + "sticker_material" "boston2018/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "2738" + { + "name" "boston2018_signature_zeus" + "item_name" "#StickerKit_boston2018_signature_zeus" + "description_string" "#StickerKit_desc_boston2018_signature_zeus" + "sticker_material" "boston2018/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "2739" + { + "name" "boston2018_signature_zeus_foil" + "item_name" "#StickerKit_boston2018_signature_zeus_foil" + "description_string" "#StickerKit_desc_boston2018_signature_zeus_foil" + "sticker_material" "boston2018/sig_zeus_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "2740" + { + "name" "boston2018_signature_zeus_gold" + "item_name" "#StickerKit_boston2018_signature_zeus_gold" + "description_string" "#StickerKit_desc_boston2018_signature_zeus_gold" + "sticker_material" "boston2018/sig_zeus_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "2741" + { + "name" "boston2018_signature_chrisj" + "item_name" "#StickerKit_boston2018_signature_chrisj" + "description_string" "#StickerKit_desc_boston2018_signature_chrisj" + "sticker_material" "boston2018/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "2742" + { + "name" "boston2018_signature_chrisj_foil" + "item_name" "#StickerKit_boston2018_signature_chrisj_foil" + "description_string" "#StickerKit_desc_boston2018_signature_chrisj_foil" + "sticker_material" "boston2018/sig_chrisj_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "2743" + { + "name" "boston2018_signature_chrisj_gold" + "item_name" "#StickerKit_boston2018_signature_chrisj_gold" + "description_string" "#StickerKit_desc_boston2018_signature_chrisj_gold" + "sticker_material" "boston2018/sig_chrisj_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "2744" + { + "name" "boston2018_signature_oskar" + "item_name" "#StickerKit_boston2018_signature_oskar" + "description_string" "#StickerKit_desc_boston2018_signature_oskar" + "sticker_material" "boston2018/sig_oskar" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "2745" + { + "name" "boston2018_signature_oskar_foil" + "item_name" "#StickerKit_boston2018_signature_oskar_foil" + "description_string" "#StickerKit_desc_boston2018_signature_oskar_foil" + "sticker_material" "boston2018/sig_oskar_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "2746" + { + "name" "boston2018_signature_oskar_gold" + "item_name" "#StickerKit_boston2018_signature_oskar_gold" + "description_string" "#StickerKit_desc_boston2018_signature_oskar_gold" + "sticker_material" "boston2018/sig_oskar_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "2747" + { + "name" "boston2018_signature_ropz" + "item_name" "#StickerKit_boston2018_signature_ropz" + "description_string" "#StickerKit_desc_boston2018_signature_ropz" + "sticker_material" "boston2018/sig_ropz" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "2748" + { + "name" "boston2018_signature_ropz_foil" + "item_name" "#StickerKit_boston2018_signature_ropz_foil" + "description_string" "#StickerKit_desc_boston2018_signature_ropz_foil" + "sticker_material" "boston2018/sig_ropz_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "2749" + { + "name" "boston2018_signature_ropz_gold" + "item_name" "#StickerKit_boston2018_signature_ropz_gold" + "description_string" "#StickerKit_desc_boston2018_signature_ropz_gold" + "sticker_material" "boston2018/sig_ropz_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "2750" + { + "name" "boston2018_signature_styko" + "item_name" "#StickerKit_boston2018_signature_styko" + "description_string" "#StickerKit_desc_boston2018_signature_styko" + "sticker_material" "boston2018/sig_styko" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "55928431" + } + "2751" + { + "name" "boston2018_signature_styko_foil" + "item_name" "#StickerKit_boston2018_signature_styko_foil" + "description_string" "#StickerKit_desc_boston2018_signature_styko_foil" + "sticker_material" "boston2018/sig_styko_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "55928431" + } + "2752" + { + "name" "boston2018_signature_styko_gold" + "item_name" "#StickerKit_boston2018_signature_styko_gold" + "description_string" "#StickerKit_desc_boston2018_signature_styko_gold" + "sticker_material" "boston2018/sig_styko_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "55928431" + } + "2753" + { + "name" "boston2018_signature_sunny" + "item_name" "#StickerKit_boston2018_signature_sunny" + "description_string" "#StickerKit_desc_boston2018_signature_sunny" + "sticker_material" "boston2018/sig_sunny" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "57405333" + } + "2754" + { + "name" "boston2018_signature_sunny_foil" + "item_name" "#StickerKit_boston2018_signature_sunny_foil" + "description_string" "#StickerKit_desc_boston2018_signature_sunny_foil" + "sticker_material" "boston2018/sig_sunny_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "57405333" + } + "2755" + { + "name" "boston2018_signature_sunny_gold" + "item_name" "#StickerKit_boston2018_signature_sunny_gold" + "description_string" "#StickerKit_desc_boston2018_signature_sunny_gold" + "sticker_material" "boston2018/sig_sunny_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "29" + "tournament_player_id" "57405333" + } + "2756" + { + "name" "boston2018_signature_denis" + "item_name" "#StickerKit_boston2018_signature_denis" + "description_string" "#StickerKit_desc_boston2018_signature_denis" + "sticker_material" "boston2018/sig_denis" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "31185376" + } + "2757" + { + "name" "boston2018_signature_denis_foil" + "item_name" "#StickerKit_boston2018_signature_denis_foil" + "description_string" "#StickerKit_desc_boston2018_signature_denis_foil" + "sticker_material" "boston2018/sig_denis_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "31185376" + } + "2758" + { + "name" "boston2018_signature_denis_gold" + "item_name" "#StickerKit_boston2018_signature_denis_gold" + "description_string" "#StickerKit_desc_boston2018_signature_denis_gold" + "sticker_material" "boston2018/sig_denis_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "31185376" + } + "2759" + { + "name" "boston2018_signature_innocent" + "item_name" "#StickerKit_boston2018_signature_innocent" + "description_string" "#StickerKit_desc_boston2018_signature_innocent" + "sticker_material" "boston2018/sig_innocent" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "26563533" + } + "2760" + { + "name" "boston2018_signature_innocent_foil" + "item_name" "#StickerKit_boston2018_signature_innocent_foil" + "description_string" "#StickerKit_desc_boston2018_signature_innocent_foil" + "sticker_material" "boston2018/sig_innocent_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "26563533" + } + "2761" + { + "name" "boston2018_signature_innocent_gold" + "item_name" "#StickerKit_boston2018_signature_innocent_gold" + "description_string" "#StickerKit_desc_boston2018_signature_innocent_gold" + "sticker_material" "boston2018/sig_innocent_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "26563533" + } + "2762" + { + "name" "boston2018_signature_krystal" + "item_name" "#StickerKit_boston2018_signature_krystal" + "description_string" "#StickerKit_desc_boston2018_signature_krystal" + "sticker_material" "boston2018/sig_krystal" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "17526007" + } + "2763" + { + "name" "boston2018_signature_krystal_foil" + "item_name" "#StickerKit_boston2018_signature_krystal_foil" + "description_string" "#StickerKit_desc_boston2018_signature_krystal_foil" + "sticker_material" "boston2018/sig_krystal_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "17526007" + } + "2764" + { + "name" "boston2018_signature_krystal_gold" + "item_name" "#StickerKit_boston2018_signature_krystal_gold" + "description_string" "#StickerKit_desc_boston2018_signature_krystal_gold" + "sticker_material" "boston2018/sig_krystal_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "17526007" + } + "2765" + { + "name" "boston2018_signature_spiidi" + "item_name" "#StickerKit_boston2018_signature_spiidi" + "description_string" "#StickerKit_desc_boston2018_signature_spiidi" + "sticker_material" "boston2018/sig_spiidi" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "13465075" + } + "2766" + { + "name" "boston2018_signature_spiidi_foil" + "item_name" "#StickerKit_boston2018_signature_spiidi_foil" + "description_string" "#StickerKit_desc_boston2018_signature_spiidi_foil" + "sticker_material" "boston2018/sig_spiidi_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "13465075" + } + "2767" + { + "name" "boston2018_signature_spiidi_gold" + "item_name" "#StickerKit_boston2018_signature_spiidi_gold" + "description_string" "#StickerKit_desc_boston2018_signature_spiidi_gold" + "sticker_material" "boston2018/sig_spiidi_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "13465075" + } + "2768" + { + "name" "boston2018_signature_zehn" + "item_name" "#StickerKit_boston2018_signature_zehn" + "description_string" "#StickerKit_desc_boston2018_signature_zehn" + "sticker_material" "boston2018/sig_zehn" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "16308501" + } + "2769" + { + "name" "boston2018_signature_zehn_foil" + "item_name" "#StickerKit_boston2018_signature_zehn_foil" + "description_string" "#StickerKit_desc_boston2018_signature_zehn_foil" + "sticker_material" "boston2018/sig_zehn_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "16308501" + } + "2770" + { + "name" "boston2018_signature_zehn_gold" + "item_name" "#StickerKit_boston2018_signature_zehn_gold" + "description_string" "#StickerKit_desc_boston2018_signature_zehn_gold" + "sticker_material" "boston2018/sig_zehn_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "72" + "tournament_player_id" "16308501" + } + "2771" + { + "name" "boston2018_signature_guardian" + "item_name" "#StickerKit_boston2018_signature_guardian" + "description_string" "#StickerKit_desc_boston2018_signature_guardian" + "sticker_material" "boston2018/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "2772" + { + "name" "boston2018_signature_guardian_foil" + "item_name" "#StickerKit_boston2018_signature_guardian_foil" + "description_string" "#StickerKit_desc_boston2018_signature_guardian_foil" + "sticker_material" "boston2018/sig_guardian_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "2773" + { + "name" "boston2018_signature_guardian_gold" + "item_name" "#StickerKit_boston2018_signature_guardian_gold" + "description_string" "#StickerKit_desc_boston2018_signature_guardian_gold" + "sticker_material" "boston2018/sig_guardian_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "2774" + { + "name" "boston2018_signature_karrigan" + "item_name" "#StickerKit_boston2018_signature_karrigan" + "description_string" "#StickerKit_desc_boston2018_signature_karrigan" + "sticker_material" "boston2018/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "2775" + { + "name" "boston2018_signature_karrigan_foil" + "item_name" "#StickerKit_boston2018_signature_karrigan_foil" + "description_string" "#StickerKit_desc_boston2018_signature_karrigan_foil" + "sticker_material" "boston2018/sig_karrigan_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "2776" + { + "name" "boston2018_signature_karrigan_gold" + "item_name" "#StickerKit_boston2018_signature_karrigan_gold" + "description_string" "#StickerKit_desc_boston2018_signature_karrigan_gold" + "sticker_material" "boston2018/sig_karrigan_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "2777" + { + "name" "boston2018_signature_niko" + "item_name" "#StickerKit_boston2018_signature_niko" + "description_string" "#StickerKit_desc_boston2018_signature_niko" + "sticker_material" "boston2018/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "2778" + { + "name" "boston2018_signature_niko_foil" + "item_name" "#StickerKit_boston2018_signature_niko_foil" + "description_string" "#StickerKit_desc_boston2018_signature_niko_foil" + "sticker_material" "boston2018/sig_niko_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "2779" + { + "name" "boston2018_signature_niko_gold" + "item_name" "#StickerKit_boston2018_signature_niko_gold" + "description_string" "#StickerKit_desc_boston2018_signature_niko_gold" + "sticker_material" "boston2018/sig_niko_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "2780" + { + "name" "boston2018_signature_olofmeister" + "item_name" "#StickerKit_boston2018_signature_olofmeister" + "description_string" "#StickerKit_desc_boston2018_signature_olofmeister" + "sticker_material" "boston2018/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "2781" + { + "name" "boston2018_signature_olofmeister_foil" + "item_name" "#StickerKit_boston2018_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_boston2018_signature_olofmeister_foil" + "sticker_material" "boston2018/sig_olofmeister_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "2782" + { + "name" "boston2018_signature_olofmeister_gold" + "item_name" "#StickerKit_boston2018_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_boston2018_signature_olofmeister_gold" + "sticker_material" "boston2018/sig_olofmeister_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "2783" + { + "name" "boston2018_signature_rain" + "item_name" "#StickerKit_boston2018_signature_rain" + "description_string" "#StickerKit_desc_boston2018_signature_rain" + "sticker_material" "boston2018/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "2784" + { + "name" "boston2018_signature_rain_foil" + "item_name" "#StickerKit_boston2018_signature_rain_foil" + "description_string" "#StickerKit_desc_boston2018_signature_rain_foil" + "sticker_material" "boston2018/sig_rain_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "2785" + { + "name" "boston2018_signature_rain_gold" + "item_name" "#StickerKit_boston2018_signature_rain_gold" + "description_string" "#StickerKit_desc_boston2018_signature_rain_gold" + "sticker_material" "boston2018/sig_rain_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "2786" + { + "name" "boston2018_signature_chopper" + "item_name" "#StickerKit_boston2018_signature_chopper" + "description_string" "#StickerKit_desc_boston2018_signature_chopper" + "sticker_material" "boston2018/sig_chopper" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "2787" + { + "name" "boston2018_signature_chopper_foil" + "item_name" "#StickerKit_boston2018_signature_chopper_foil" + "description_string" "#StickerKit_desc_boston2018_signature_chopper_foil" + "sticker_material" "boston2018/sig_chopper_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "2788" + { + "name" "boston2018_signature_chopper_gold" + "item_name" "#StickerKit_boston2018_signature_chopper_gold" + "description_string" "#StickerKit_desc_boston2018_signature_chopper_gold" + "sticker_material" "boston2018/sig_chopper_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "2789" + { + "name" "boston2018_signature_hutji" + "item_name" "#StickerKit_boston2018_signature_hutji" + "description_string" "#StickerKit_desc_boston2018_signature_hutji" + "sticker_material" "boston2018/sig_hutji" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "2790" + { + "name" "boston2018_signature_hutji_foil" + "item_name" "#StickerKit_boston2018_signature_hutji_foil" + "description_string" "#StickerKit_desc_boston2018_signature_hutji_foil" + "sticker_material" "boston2018/sig_hutji_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "2791" + { + "name" "boston2018_signature_hutji_gold" + "item_name" "#StickerKit_boston2018_signature_hutji_gold" + "description_string" "#StickerKit_desc_boston2018_signature_hutji_gold" + "sticker_material" "boston2018/sig_hutji_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "2792" + { + "name" "boston2018_signature_jr" + "item_name" "#StickerKit_boston2018_signature_jr" + "description_string" "#StickerKit_desc_boston2018_signature_jr" + "sticker_material" "boston2018/sig_jr" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "2793" + { + "name" "boston2018_signature_jr_foil" + "item_name" "#StickerKit_boston2018_signature_jr_foil" + "description_string" "#StickerKit_desc_boston2018_signature_jr_foil" + "sticker_material" "boston2018/sig_jr_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "2794" + { + "name" "boston2018_signature_jr_gold" + "item_name" "#StickerKit_boston2018_signature_jr_gold" + "description_string" "#StickerKit_desc_boston2018_signature_jr_gold" + "sticker_material" "boston2018/sig_jr_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "2795" + { + "name" "boston2018_signature_keshandr" + "item_name" "#StickerKit_boston2018_signature_keshandr" + "description_string" "#StickerKit_desc_boston2018_signature_keshandr" + "sticker_material" "boston2018/sig_keshandr" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "65572922" + } + "2796" + { + "name" "boston2018_signature_keshandr_foil" + "item_name" "#StickerKit_boston2018_signature_keshandr_foil" + "description_string" "#StickerKit_desc_boston2018_signature_keshandr_foil" + "sticker_material" "boston2018/sig_keshandr_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "65572922" + } + "2797" + { + "name" "boston2018_signature_keshandr_gold" + "item_name" "#StickerKit_boston2018_signature_keshandr_gold" + "description_string" "#StickerKit_desc_boston2018_signature_keshandr_gold" + "sticker_material" "boston2018/sig_keshandr_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "65572922" + } + "2798" + { + "name" "boston2018_signature_mir" + "item_name" "#StickerKit_boston2018_signature_mir" + "description_string" "#StickerKit_desc_boston2018_signature_mir" + "sticker_material" "boston2018/sig_mir" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "40562076" + } + "2799" + { + "name" "boston2018_signature_mir_foil" + "item_name" "#StickerKit_boston2018_signature_mir_foil" + "description_string" "#StickerKit_desc_boston2018_signature_mir_foil" + "sticker_material" "boston2018/sig_mir_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "40562076" + } + "2800" + { + "name" "boston2018_signature_mir_gold" + "item_name" "#StickerKit_boston2018_signature_mir_gold" + "description_string" "#StickerKit_desc_boston2018_signature_mir_gold" + "sticker_material" "boston2018/sig_mir_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "70" + "tournament_player_id" "40562076" + } + "2801" + { + "name" "boston2018_signature_calyx" + "item_name" "#StickerKit_boston2018_signature_calyx" + "description_string" "#StickerKit_desc_boston2018_signature_calyx" + "sticker_material" "boston2018/sig_calyx" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "92280537" + } + "2802" + { + "name" "boston2018_signature_calyx_foil" + "item_name" "#StickerKit_boston2018_signature_calyx_foil" + "description_string" "#StickerKit_desc_boston2018_signature_calyx_foil" + "sticker_material" "boston2018/sig_calyx_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "92280537" + } + "2803" + { + "name" "boston2018_signature_calyx_gold" + "item_name" "#StickerKit_boston2018_signature_calyx_gold" + "description_string" "#StickerKit_desc_boston2018_signature_calyx_gold" + "sticker_material" "boston2018/sig_calyx_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "92280537" + } + "2804" + { + "name" "boston2018_signature_maj3r" + "item_name" "#StickerKit_boston2018_signature_maj3r" + "description_string" "#StickerKit_desc_boston2018_signature_maj3r" + "sticker_material" "boston2018/sig_maj3r" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "7167161" + } + "2805" + { + "name" "boston2018_signature_maj3r_foil" + "item_name" "#StickerKit_boston2018_signature_maj3r_foil" + "description_string" "#StickerKit_desc_boston2018_signature_maj3r_foil" + "sticker_material" "boston2018/sig_maj3r_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "7167161" + } + "2806" + { + "name" "boston2018_signature_maj3r_gold" + "item_name" "#StickerKit_boston2018_signature_maj3r_gold" + "description_string" "#StickerKit_desc_boston2018_signature_maj3r_gold" + "sticker_material" "boston2018/sig_maj3r_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "7167161" + } + "2807" + { + "name" "boston2018_signature_ngin" + "item_name" "#StickerKit_boston2018_signature_ngin" + "description_string" "#StickerKit_desc_boston2018_signature_ngin" + "sticker_material" "boston2018/sig_ngin" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "17887362" + } + "2808" + { + "name" "boston2018_signature_ngin_foil" + "item_name" "#StickerKit_boston2018_signature_ngin_foil" + "description_string" "#StickerKit_desc_boston2018_signature_ngin_foil" + "sticker_material" "boston2018/sig_ngin_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "17887362" + } + "2809" + { + "name" "boston2018_signature_ngin_gold" + "item_name" "#StickerKit_boston2018_signature_ngin_gold" + "description_string" "#StickerKit_desc_boston2018_signature_ngin_gold" + "sticker_material" "boston2018/sig_ngin_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "17887362" + } + "2810" + { + "name" "boston2018_signature_paz" + "item_name" "#StickerKit_boston2018_signature_paz" + "description_string" "#StickerKit_desc_boston2018_signature_paz" + "sticker_material" "boston2018/sig_paz" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "68524615" + } + "2811" + { + "name" "boston2018_signature_paz_foil" + "item_name" "#StickerKit_boston2018_signature_paz_foil" + "description_string" "#StickerKit_desc_boston2018_signature_paz_foil" + "sticker_material" "boston2018/sig_paz_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "68524615" + } + "2812" + { + "name" "boston2018_signature_paz_gold" + "item_name" "#StickerKit_boston2018_signature_paz_gold" + "description_string" "#StickerKit_desc_boston2018_signature_paz_gold" + "sticker_material" "boston2018/sig_paz_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "68524615" + } + "2813" + { + "name" "boston2018_signature_xantares" + "item_name" "#StickerKit_boston2018_signature_xantares" + "description_string" "#StickerKit_desc_boston2018_signature_xantares" + "sticker_material" "boston2018/sig_xantares" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "83853068" + } + "2814" + { + "name" "boston2018_signature_xantares_foil" + "item_name" "#StickerKit_boston2018_signature_xantares_foil" + "description_string" "#StickerKit_desc_boston2018_signature_xantares_foil" + "sticker_material" "boston2018/sig_xantares_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "83853068" + } + "2815" + { + "name" "boston2018_signature_xantares_gold" + "item_name" "#StickerKit_boston2018_signature_xantares_gold" + "description_string" "#StickerKit_desc_boston2018_signature_xantares_gold" + "sticker_material" "boston2018/sig_xantares_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "73" + "tournament_player_id" "83853068" + } + "2816" + { + "name" "boston2018_signature_elige" + "item_name" "#StickerKit_boston2018_signature_elige" + "description_string" "#StickerKit_desc_boston2018_signature_elige" + "sticker_material" "boston2018/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "2817" + { + "name" "boston2018_signature_elige_foil" + "item_name" "#StickerKit_boston2018_signature_elige_foil" + "description_string" "#StickerKit_desc_boston2018_signature_elige_foil" + "sticker_material" "boston2018/sig_elige_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "2818" + { + "name" "boston2018_signature_elige_gold" + "item_name" "#StickerKit_boston2018_signature_elige_gold" + "description_string" "#StickerKit_desc_boston2018_signature_elige_gold" + "sticker_material" "boston2018/sig_elige_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "2819" + { + "name" "boston2018_signature_jdm64" + "item_name" "#StickerKit_boston2018_signature_jdm64" + "description_string" "#StickerKit_desc_boston2018_signature_jdm64" + "sticker_material" "boston2018/sig_jdm64" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "2820" + { + "name" "boston2018_signature_jdm64_foil" + "item_name" "#StickerKit_boston2018_signature_jdm64_foil" + "description_string" "#StickerKit_desc_boston2018_signature_jdm64_foil" + "sticker_material" "boston2018/sig_jdm64_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "2821" + { + "name" "boston2018_signature_jdm64_gold" + "item_name" "#StickerKit_boston2018_signature_jdm64_gold" + "description_string" "#StickerKit_desc_boston2018_signature_jdm64_gold" + "sticker_material" "boston2018/sig_jdm64_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "7223652" + } + "2822" + { + "name" "boston2018_signature_nitro" + "item_name" "#StickerKit_boston2018_signature_nitro" + "description_string" "#StickerKit_desc_boston2018_signature_nitro" + "sticker_material" "boston2018/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "2823" + { + "name" "boston2018_signature_nitro_foil" + "item_name" "#StickerKit_boston2018_signature_nitro_foil" + "description_string" "#StickerKit_desc_boston2018_signature_nitro_foil" + "sticker_material" "boston2018/sig_nitro_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "2824" + { + "name" "boston2018_signature_nitro_gold" + "item_name" "#StickerKit_boston2018_signature_nitro_gold" + "description_string" "#StickerKit_desc_boston2018_signature_nitro_gold" + "sticker_material" "boston2018/sig_nitro_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "2825" + { + "name" "boston2018_signature_stanislaw" + "item_name" "#StickerKit_boston2018_signature_stanislaw" + "description_string" "#StickerKit_desc_boston2018_signature_stanislaw" + "sticker_material" "boston2018/sig_stanislaw" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "21583315" + } + "2826" + { + "name" "boston2018_signature_stanislaw_foil" + "item_name" "#StickerKit_boston2018_signature_stanislaw_foil" + "description_string" "#StickerKit_desc_boston2018_signature_stanislaw_foil" + "sticker_material" "boston2018/sig_stanislaw_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "21583315" + } + "2827" + { + "name" "boston2018_signature_stanislaw_gold" + "item_name" "#StickerKit_boston2018_signature_stanislaw_gold" + "description_string" "#StickerKit_desc_boston2018_signature_stanislaw_gold" + "sticker_material" "boston2018/sig_stanislaw_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "21583315" + } + "2828" + { + "name" "boston2018_signature_twistzz" + "item_name" "#StickerKit_boston2018_signature_twistzz" + "description_string" "#StickerKit_desc_boston2018_signature_twistzz" + "sticker_material" "boston2018/sig_twistzz" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "2829" + { + "name" "boston2018_signature_twistzz_foil" + "item_name" "#StickerKit_boston2018_signature_twistzz_foil" + "description_string" "#StickerKit_desc_boston2018_signature_twistzz_foil" + "sticker_material" "boston2018/sig_twistzz_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "2830" + { + "name" "boston2018_signature_twistzz_gold" + "item_name" "#StickerKit_boston2018_signature_twistzz_gold" + "description_string" "#StickerKit_desc_boston2018_signature_twistzz_gold" + "sticker_material" "boston2018/sig_twistzz_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "2831" + { + "name" "boston2018_signature_buster" + "item_name" "#StickerKit_boston2018_signature_buster" + "description_string" "#StickerKit_desc_boston2018_signature_buster" + "sticker_material" "boston2018/sig_buster" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "2832" + { + "name" "boston2018_signature_buster_foil" + "item_name" "#StickerKit_boston2018_signature_buster_foil" + "description_string" "#StickerKit_desc_boston2018_signature_buster_foil" + "sticker_material" "boston2018/sig_buster_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "2833" + { + "name" "boston2018_signature_buster_gold" + "item_name" "#StickerKit_boston2018_signature_buster_gold" + "description_string" "#StickerKit_desc_boston2018_signature_buster_gold" + "sticker_material" "boston2018/sig_buster_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "2834" + { + "name" "boston2018_signature_dimasick" + "item_name" "#StickerKit_boston2018_signature_dimasick" + "description_string" "#StickerKit_desc_boston2018_signature_dimasick" + "sticker_material" "boston2018/sig_dimasick" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "825268" + } + "2835" + { + "name" "boston2018_signature_dimasick_foil" + "item_name" "#StickerKit_boston2018_signature_dimasick_foil" + "description_string" "#StickerKit_desc_boston2018_signature_dimasick_foil" + "sticker_material" "boston2018/sig_dimasick_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "825268" + } + "2836" + { + "name" "boston2018_signature_dimasick_gold" + "item_name" "#StickerKit_boston2018_signature_dimasick_gold" + "description_string" "#StickerKit_desc_boston2018_signature_dimasick_gold" + "sticker_material" "boston2018/sig_dimasick_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "825268" + } + "2837" + { + "name" "boston2018_signature_jame" + "item_name" "#StickerKit_boston2018_signature_jame" + "description_string" "#StickerKit_desc_boston2018_signature_jame" + "sticker_material" "boston2018/sig_jame" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "2838" + { + "name" "boston2018_signature_jame_foil" + "item_name" "#StickerKit_boston2018_signature_jame_foil" + "description_string" "#StickerKit_desc_boston2018_signature_jame_foil" + "sticker_material" "boston2018/sig_jame_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "2839" + { + "name" "boston2018_signature_jame_gold" + "item_name" "#StickerKit_boston2018_signature_jame_gold" + "description_string" "#StickerKit_desc_boston2018_signature_jame_gold" + "sticker_material" "boston2018/sig_jame_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "2840" + { + "name" "boston2018_signature_krizzen" + "item_name" "#StickerKit_boston2018_signature_krizzen" + "description_string" "#StickerKit_desc_boston2018_signature_krizzen" + "sticker_material" "boston2018/sig_krizzen" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "107672171" + } + "2841" + { + "name" "boston2018_signature_krizzen_foil" + "item_name" "#StickerKit_boston2018_signature_krizzen_foil" + "description_string" "#StickerKit_desc_boston2018_signature_krizzen_foil" + "sticker_material" "boston2018/sig_krizzen_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "107672171" + } + "2842" + { + "name" "boston2018_signature_krizzen_gold" + "item_name" "#StickerKit_boston2018_signature_krizzen_gold" + "description_string" "#StickerKit_desc_boston2018_signature_krizzen_gold" + "sticker_material" "boston2018/sig_krizzen_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "107672171" + } + "2843" + { + "name" "boston2018_signature_qikert" + "item_name" "#StickerKit_boston2018_signature_qikert" + "description_string" "#StickerKit_desc_boston2018_signature_qikert" + "sticker_material" "boston2018/sig_qikert" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "2844" + { + "name" "boston2018_signature_qikert_foil" + "item_name" "#StickerKit_boston2018_signature_qikert_foil" + "description_string" "#StickerKit_desc_boston2018_signature_qikert_foil" + "sticker_material" "boston2018/sig_qikert_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "2845" + { + "name" "boston2018_signature_qikert_gold" + "item_name" "#StickerKit_boston2018_signature_qikert_gold" + "description_string" "#StickerKit_desc_boston2018_signature_qikert_gold" + "sticker_material" "boston2018/sig_qikert_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "2846" + { + "name" "boston2018_signature_azr" + "item_name" "#StickerKit_boston2018_signature_azr" + "description_string" "#StickerKit_desc_boston2018_signature_azr" + "sticker_material" "boston2018/sig_azr" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "2847" + { + "name" "boston2018_signature_azr_foil" + "item_name" "#StickerKit_boston2018_signature_azr_foil" + "description_string" "#StickerKit_desc_boston2018_signature_azr_foil" + "sticker_material" "boston2018/sig_azr_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "2848" + { + "name" "boston2018_signature_azr_gold" + "item_name" "#StickerKit_boston2018_signature_azr_gold" + "description_string" "#StickerKit_desc_boston2018_signature_azr_gold" + "sticker_material" "boston2018/sig_azr_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "2849" + { + "name" "boston2018_signature_jks" + "item_name" "#StickerKit_boston2018_signature_jks" + "description_string" "#StickerKit_desc_boston2018_signature_jks" + "sticker_material" "boston2018/sig_jks" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "2850" + { + "name" "boston2018_signature_jks_foil" + "item_name" "#StickerKit_boston2018_signature_jks_foil" + "description_string" "#StickerKit_desc_boston2018_signature_jks_foil" + "sticker_material" "boston2018/sig_jks_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "2851" + { + "name" "boston2018_signature_jks_gold" + "item_name" "#StickerKit_boston2018_signature_jks_gold" + "description_string" "#StickerKit_desc_boston2018_signature_jks_gold" + "sticker_material" "boston2018/sig_jks_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "2852" + { + "name" "boston2018_signature_naf" + "item_name" "#StickerKit_boston2018_signature_naf" + "description_string" "#StickerKit_desc_boston2018_signature_naf" + "sticker_material" "boston2018/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "40885967" + } + "2853" + { + "name" "boston2018_signature_naf_foil" + "item_name" "#StickerKit_boston2018_signature_naf_foil" + "description_string" "#StickerKit_desc_boston2018_signature_naf_foil" + "sticker_material" "boston2018/sig_naf_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "40885967" + } + "2854" + { + "name" "boston2018_signature_naf_gold" + "item_name" "#StickerKit_boston2018_signature_naf_gold" + "description_string" "#StickerKit_desc_boston2018_signature_naf_gold" + "sticker_material" "boston2018/sig_naf_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "40885967" + } + "2855" + { + "name" "boston2018_signature_nifty" + "item_name" "#StickerKit_boston2018_signature_nifty" + "description_string" "#StickerKit_desc_boston2018_signature_nifty" + "sticker_material" "boston2018/sig_nifty" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "163358521" + } + "2856" + { + "name" "boston2018_signature_nifty_foil" + "item_name" "#StickerKit_boston2018_signature_nifty_foil" + "description_string" "#StickerKit_desc_boston2018_signature_nifty_foil" + "sticker_material" "boston2018/sig_nifty_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "163358521" + } + "2857" + { + "name" "boston2018_signature_nifty_gold" + "item_name" "#StickerKit_boston2018_signature_nifty_gold" + "description_string" "#StickerKit_desc_boston2018_signature_nifty_gold" + "sticker_material" "boston2018/sig_nifty_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "163358521" + } + "2858" + { + "name" "boston2018_signature_ustilo" + "item_name" "#StickerKit_boston2018_signature_ustilo" + "description_string" "#StickerKit_desc_boston2018_signature_ustilo" + "sticker_material" "boston2018/sig_ustilo" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "18903255" + } + "2859" + { + "name" "boston2018_signature_ustilo_foil" + "item_name" "#StickerKit_boston2018_signature_ustilo_foil" + "description_string" "#StickerKit_desc_boston2018_signature_ustilo_foil" + "sticker_material" "boston2018/sig_ustilo_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "18903255" + } + "2860" + { + "name" "boston2018_signature_ustilo_gold" + "item_name" "#StickerKit_boston2018_signature_ustilo_gold" + "description_string" "#StickerKit_desc_boston2018_signature_ustilo_gold" + "sticker_material" "boston2018/sig_ustilo_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "53" + "tournament_player_id" "18903255" + } + "2861" + { + "name" "boston2018_signature_happy" + "item_name" "#StickerKit_boston2018_signature_happy" + "description_string" "#StickerKit_desc_boston2018_signature_happy" + "sticker_material" "boston2018/sig_happy" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "2862" + { + "name" "boston2018_signature_happy_foil" + "item_name" "#StickerKit_boston2018_signature_happy_foil" + "description_string" "#StickerKit_desc_boston2018_signature_happy_foil" + "sticker_material" "boston2018/sig_happy_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "2863" + { + "name" "boston2018_signature_happy_gold" + "item_name" "#StickerKit_boston2018_signature_happy_gold" + "description_string" "#StickerKit_desc_boston2018_signature_happy_gold" + "sticker_material" "boston2018/sig_happy_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "17975624" + } + "2864" + { + "name" "boston2018_signature_rpk" + "item_name" "#StickerKit_boston2018_signature_rpk" + "description_string" "#StickerKit_desc_boston2018_signature_rpk" + "sticker_material" "boston2018/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "53985773" + } + "2865" + { + "name" "boston2018_signature_rpk_foil" + "item_name" "#StickerKit_boston2018_signature_rpk_foil" + "description_string" "#StickerKit_desc_boston2018_signature_rpk_foil" + "sticker_material" "boston2018/sig_rpk_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "53985773" + } + "2866" + { + "name" "boston2018_signature_rpk_gold" + "item_name" "#StickerKit_boston2018_signature_rpk_gold" + "description_string" "#StickerKit_desc_boston2018_signature_rpk_gold" + "sticker_material" "boston2018/sig_rpk_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "53985773" + } + "2867" + { + "name" "boston2018_signature_scream" + "item_name" "#StickerKit_boston2018_signature_scream" + "description_string" "#StickerKit_desc_boston2018_signature_scream" + "sticker_material" "boston2018/sig_scream" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "28502520" + } + "2868" + { + "name" "boston2018_signature_scream_foil" + "item_name" "#StickerKit_boston2018_signature_scream_foil" + "description_string" "#StickerKit_desc_boston2018_signature_scream_foil" + "sticker_material" "boston2018/sig_scream_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "28502520" + } + "2869" + { + "name" "boston2018_signature_scream_gold" + "item_name" "#StickerKit_boston2018_signature_scream_gold" + "description_string" "#StickerKit_desc_boston2018_signature_scream_gold" + "sticker_material" "boston2018/sig_scream_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "28502520" + } + "2870" + { + "name" "boston2018_signature_sixer" + "item_name" "#StickerKit_boston2018_signature_sixer" + "description_string" "#StickerKit_desc_boston2018_signature_sixer" + "sticker_material" "boston2018/sig_sixer" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "3429256" + } + "2871" + { + "name" "boston2018_signature_sixer_foil" + "item_name" "#StickerKit_boston2018_signature_sixer_foil" + "description_string" "#StickerKit_desc_boston2018_signature_sixer_foil" + "sticker_material" "boston2018/sig_sixer_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "3429256" + } + "2872" + { + "name" "boston2018_signature_sixer_gold" + "item_name" "#StickerKit_boston2018_signature_sixer_gold" + "description_string" "#StickerKit_desc_boston2018_signature_sixer_gold" + "sticker_material" "boston2018/sig_sixer_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "3429256" + } + "2873" + { + "name" "boston2018_signature_xms" + "item_name" "#StickerKit_boston2018_signature_xms" + "description_string" "#StickerKit_desc_boston2018_signature_xms" + "sticker_material" "boston2018/sig_xms" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "38509481" + } + "2874" + { + "name" "boston2018_signature_xms_foil" + "item_name" "#StickerKit_boston2018_signature_xms_foil" + "description_string" "#StickerKit_desc_boston2018_signature_xms_foil" + "sticker_material" "boston2018/sig_xms_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "38509481" + } + "2875" + { + "name" "boston2018_signature_xms_gold" + "item_name" "#StickerKit_boston2018_signature_xms_gold" + "description_string" "#StickerKit_desc_boston2018_signature_xms_gold" + "sticker_material" "boston2018/sig_xms_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "46" + "tournament_player_id" "38509481" + } + "2876" + { + "name" "boston2018_signature_amanek" + "item_name" "#StickerKit_boston2018_signature_amanek" + "description_string" "#StickerKit_desc_boston2018_signature_amanek" + "sticker_material" "boston2018/sig_amanek" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "108679223" + } + "2877" + { + "name" "boston2018_signature_amanek_foil" + "item_name" "#StickerKit_boston2018_signature_amanek_foil" + "description_string" "#StickerKit_desc_boston2018_signature_amanek_foil" + "sticker_material" "boston2018/sig_amanek_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "108679223" + } + "2878" + { + "name" "boston2018_signature_amanek_gold" + "item_name" "#StickerKit_boston2018_signature_amanek_gold" + "description_string" "#StickerKit_desc_boston2018_signature_amanek_gold" + "sticker_material" "boston2018/sig_amanek_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "108679223" + } + "2879" + { + "name" "boston2018_signature_devoduvek" + "item_name" "#StickerKit_boston2018_signature_devoduvek" + "description_string" "#StickerKit_desc_boston2018_signature_devoduvek" + "sticker_material" "boston2018/sig_devoduvek" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "116664993" + } + "2880" + { + "name" "boston2018_signature_devoduvek_foil" + "item_name" "#StickerKit_boston2018_signature_devoduvek_foil" + "description_string" "#StickerKit_desc_boston2018_signature_devoduvek_foil" + "sticker_material" "boston2018/sig_devoduvek_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "116664993" + } + "2881" + { + "name" "boston2018_signature_devoduvek_gold" + "item_name" "#StickerKit_boston2018_signature_devoduvek_gold" + "description_string" "#StickerKit_desc_boston2018_signature_devoduvek_gold" + "sticker_material" "boston2018/sig_devoduvek_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "116664993" + } + "2882" + { + "name" "boston2018_signature_sgares" + "item_name" "#StickerKit_boston2018_signature_sgares" + "description_string" "#StickerKit_desc_boston2018_signature_sgares" + "sticker_material" "boston2018/sig_sgares" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "164004" + } + "2883" + { + "name" "boston2018_signature_sgares_foil" + "item_name" "#StickerKit_boston2018_signature_sgares_foil" + "description_string" "#StickerKit_desc_boston2018_signature_sgares_foil" + "sticker_material" "boston2018/sig_sgares_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "164004" + } + "2884" + { + "name" "boston2018_signature_sgares_gold" + "item_name" "#StickerKit_boston2018_signature_sgares_gold" + "description_string" "#StickerKit_desc_boston2018_signature_sgares_gold" + "sticker_material" "boston2018/sig_sgares_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "164004" + } + "2885" + { + "name" "boston2018_signature_shahzam" + "item_name" "#StickerKit_boston2018_signature_shahzam" + "description_string" "#StickerKit_desc_boston2018_signature_shahzam" + "sticker_material" "boston2018/sig_shahzam" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "86003016" + } + "2886" + { + "name" "boston2018_signature_shahzam_foil" + "item_name" "#StickerKit_boston2018_signature_shahzam_foil" + "description_string" "#StickerKit_desc_boston2018_signature_shahzam_foil" + "sticker_material" "boston2018/sig_shahzam_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "86003016" + } + "2887" + { + "name" "boston2018_signature_shahzam_gold" + "item_name" "#StickerKit_boston2018_signature_shahzam_gold" + "description_string" "#StickerKit_desc_boston2018_signature_shahzam_gold" + "sticker_material" "boston2018/sig_shahzam_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "86003016" + } + "2888" + { + "name" "boston2018_signature_sick" + "item_name" "#StickerKit_boston2018_signature_sick" + "description_string" "#StickerKit_desc_boston2018_signature_sick" + "sticker_material" "boston2018/sig_sick" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "23556959" + } + "2889" + { + "name" "boston2018_signature_sick_foil" + "item_name" "#StickerKit_boston2018_signature_sick_foil" + "description_string" "#StickerKit_desc_boston2018_signature_sick_foil" + "sticker_material" "boston2018/sig_sick_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "23556959" + } + "2890" + { + "name" "boston2018_signature_sick_gold" + "item_name" "#StickerKit_boston2018_signature_sick_gold" + "description_string" "#StickerKit_desc_boston2018_signature_sick_gold" + "sticker_material" "boston2018/sig_sick_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "77" + "tournament_player_id" "23556959" + } + "2891" + { + "name" "boston2018_signature_balblna" + "item_name" "#StickerKit_boston2018_signature_balblna" + "description_string" "#StickerKit_desc_boston2018_signature_balblna" + "sticker_material" "boston2018/sig_balblna" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "50204800" + } + "2892" + { + "name" "boston2018_signature_balblna_foil" + "item_name" "#StickerKit_boston2018_signature_balblna_foil" + "description_string" "#StickerKit_desc_boston2018_signature_balblna_foil" + "sticker_material" "boston2018/sig_balblna_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "50204800" + } + "2893" + { + "name" "boston2018_signature_balblna_gold" + "item_name" "#StickerKit_boston2018_signature_balblna_gold" + "description_string" "#StickerKit_desc_boston2018_signature_balblna_gold" + "sticker_material" "boston2018/sig_balblna_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "50204800" + } + "2894" + { + "name" "boston2018_signature_boombl4" + "item_name" "#StickerKit_boston2018_signature_boombl4" + "description_string" "#StickerKit_desc_boston2018_signature_boombl4" + "sticker_material" "boston2018/sig_boombl4" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "185941338" + } + "2895" + { + "name" "boston2018_signature_boombl4_foil" + "item_name" "#StickerKit_boston2018_signature_boombl4_foil" + "description_string" "#StickerKit_desc_boston2018_signature_boombl4_foil" + "sticker_material" "boston2018/sig_boombl4_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "185941338" + } + "2896" + { + "name" "boston2018_signature_boombl4_gold" + "item_name" "#StickerKit_boston2018_signature_boombl4_gold" + "description_string" "#StickerKit_desc_boston2018_signature_boombl4_gold" + "sticker_material" "boston2018/sig_boombl4_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "185941338" + } + "2897" + { + "name" "boston2018_signature_jmqa" + "item_name" "#StickerKit_boston2018_signature_jmqa" + "description_string" "#StickerKit_desc_boston2018_signature_jmqa" + "sticker_material" "boston2018/sig_jmqa" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "115223433" + } + "2898" + { + "name" "boston2018_signature_jmqa_foil" + "item_name" "#StickerKit_boston2018_signature_jmqa_foil" + "description_string" "#StickerKit_desc_boston2018_signature_jmqa_foil" + "sticker_material" "boston2018/sig_jmqa_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "115223433" + } + "2899" + { + "name" "boston2018_signature_jmqa_gold" + "item_name" "#StickerKit_boston2018_signature_jmqa_gold" + "description_string" "#StickerKit_desc_boston2018_signature_jmqa_gold" + "sticker_material" "boston2018/sig_jmqa_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "115223433" + } + "2900" + { + "name" "boston2018_signature_kvik" + "item_name" "#StickerKit_boston2018_signature_kvik" + "description_string" "#StickerKit_desc_boston2018_signature_kvik" + "sticker_material" "boston2018/sig_kvik" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "40982505" + } + "2901" + { + "name" "boston2018_signature_kvik_foil" + "item_name" "#StickerKit_boston2018_signature_kvik_foil" + "description_string" "#StickerKit_desc_boston2018_signature_kvik_foil" + "sticker_material" "boston2018/sig_kvik_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "40982505" + } + "2902" + { + "name" "boston2018_signature_kvik_gold" + "item_name" "#StickerKit_boston2018_signature_kvik_gold" + "description_string" "#StickerKit_desc_boston2018_signature_kvik_gold" + "sticker_material" "boston2018/sig_kvik_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "40982505" + } + "2903" + { + "name" "boston2018_signature_waterfallz" + "item_name" "#StickerKit_boston2018_signature_waterfallz" + "description_string" "#StickerKit_desc_boston2018_signature_waterfallz" + "sticker_material" "boston2018/sig_waterfallz" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "12720124" + } + "2904" + { + "name" "boston2018_signature_waterfallz_foil" + "item_name" "#StickerKit_boston2018_signature_waterfallz_foil" + "description_string" "#StickerKit_desc_boston2018_signature_waterfallz_foil" + "sticker_material" "boston2018/sig_waterfallz_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "12720124" + } + "2905" + { + "name" "boston2018_signature_waterfallz_gold" + "item_name" "#StickerKit_boston2018_signature_waterfallz_gold" + "description_string" "#StickerKit_desc_boston2018_signature_waterfallz_gold" + "sticker_material" "boston2018/sig_waterfallz_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "76" + "tournament_player_id" "12720124" + } + "2906" + { + "name" "boston2018_signature_bntet" + "item_name" "#StickerKit_boston2018_signature_bntet" + "description_string" "#StickerKit_desc_boston2018_signature_bntet" + "sticker_material" "boston2018/sig_bntet" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "2907" + { + "name" "boston2018_signature_bntet_foil" + "item_name" "#StickerKit_boston2018_signature_bntet_foil" + "description_string" "#StickerKit_desc_boston2018_signature_bntet_foil" + "sticker_material" "boston2018/sig_bntet_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "2908" + { + "name" "boston2018_signature_bntet_gold" + "item_name" "#StickerKit_boston2018_signature_bntet_gold" + "description_string" "#StickerKit_desc_boston2018_signature_bntet_gold" + "sticker_material" "boston2018/sig_bntet_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "2909" + { + "name" "boston2018_signature_bondik" + "item_name" "#StickerKit_boston2018_signature_bondik" + "description_string" "#StickerKit_desc_boston2018_signature_bondik" + "sticker_material" "boston2018/sig_bondik" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "46918643" + } + "2910" + { + "name" "boston2018_signature_bondik_foil" + "item_name" "#StickerKit_boston2018_signature_bondik_foil" + "description_string" "#StickerKit_desc_boston2018_signature_bondik_foil" + "sticker_material" "boston2018/sig_bondik_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "46918643" + } + "2911" + { + "name" "boston2018_signature_bondik_gold" + "item_name" "#StickerKit_boston2018_signature_bondik_gold" + "description_string" "#StickerKit_desc_boston2018_signature_bondik_gold" + "sticker_material" "boston2018/sig_bondik_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "46918643" + } + "2912" + { + "name" "boston2018_signature_captainmo" + "item_name" "#StickerKit_boston2018_signature_captainmo" + "description_string" "#StickerKit_desc_boston2018_signature_captainmo" + "sticker_material" "boston2018/sig_captainmo" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "109036162" + } + "2913" + { + "name" "boston2018_signature_captainmo_foil" + "item_name" "#StickerKit_boston2018_signature_captainmo_foil" + "description_string" "#StickerKit_desc_boston2018_signature_captainmo_foil" + "sticker_material" "boston2018/sig_captainmo_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "109036162" + } + "2914" + { + "name" "boston2018_signature_captainmo_gold" + "item_name" "#StickerKit_boston2018_signature_captainmo_gold" + "description_string" "#StickerKit_desc_boston2018_signature_captainmo_gold" + "sticker_material" "boston2018/sig_captainmo_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "109036162" + } + "2915" + { + "name" "boston2018_signature_dd" + "item_name" "#StickerKit_boston2018_signature_dd" + "description_string" "#StickerKit_desc_boston2018_signature_dd" + "sticker_material" "boston2018/sig_dd" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "169982617" + } + "2916" + { + "name" "boston2018_signature_dd_foil" + "item_name" "#StickerKit_boston2018_signature_dd_foil" + "description_string" "#StickerKit_desc_boston2018_signature_dd_foil" + "sticker_material" "boston2018/sig_dd_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "169982617" + } + "2917" + { + "name" "boston2018_signature_dd_gold" + "item_name" "#StickerKit_boston2018_signature_dd_gold" + "description_string" "#StickerKit_desc_boston2018_signature_dd_gold" + "sticker_material" "boston2018/sig_dd_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "169982617" + } + "2918" + { + "name" "boston2018_signature_somebody" + "item_name" "#StickerKit_boston2018_signature_somebody" + "description_string" "#StickerKit_desc_boston2018_signature_somebody" + "sticker_material" "boston2018/sig_somebody" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "2919" + { + "name" "boston2018_signature_somebody_foil" + "item_name" "#StickerKit_boston2018_signature_somebody_foil" + "description_string" "#StickerKit_desc_boston2018_signature_somebody_foil" + "sticker_material" "boston2018/sig_somebody_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "2920" + { + "name" "boston2018_signature_somebody_gold" + "item_name" "#StickerKit_boston2018_signature_somebody_gold" + "description_string" "#StickerKit_desc_boston2018_signature_somebody_gold" + "sticker_material" "boston2018/sig_somebody_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "2940" + { + "name" "boston2018_signature_attacker" + "item_name" "#StickerKit_boston2018_signature_attacker" + "description_string" "#StickerKit_desc_boston2018_signature_attacker" + "sticker_material" "boston2018/sig_attacker" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "88001036" + } + "2941" + { + "name" "boston2018_signature_attacker_foil" + "item_name" "#StickerKit_boston2018_signature_attacker_foil" + "description_string" "#StickerKit_desc_boston2018_signature_attacker_foil" + "sticker_material" "boston2018/sig_attacker_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "88001036" + } + "2942" + { + "name" "boston2018_signature_attacker_gold" + "item_name" "#StickerKit_boston2018_signature_attacker_gold" + "description_string" "#StickerKit_desc_boston2018_signature_attacker_gold" + "sticker_material" "boston2018/sig_attacker_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "88001036" + } + "2943" + { + "name" "boston2018_signature_karsa" + "item_name" "#StickerKit_boston2018_signature_karsa" + "description_string" "#StickerKit_desc_boston2018_signature_karsa" + "sticker_material" "boston2018/sig_karsa" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "85358333" + } + "2944" + { + "name" "boston2018_signature_karsa_foil" + "item_name" "#StickerKit_boston2018_signature_karsa_foil" + "description_string" "#StickerKit_desc_boston2018_signature_karsa_foil" + "sticker_material" "boston2018/sig_karsa_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "85358333" + } + "2945" + { + "name" "boston2018_signature_karsa_gold" + "item_name" "#StickerKit_boston2018_signature_karsa_gold" + "description_string" "#StickerKit_desc_boston2018_signature_karsa_gold" + "sticker_material" "boston2018/sig_karsa_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "85358333" + } + "2946" + { + "name" "boston2018_signature_kaze" + "item_name" "#StickerKit_boston2018_signature_kaze" + "description_string" "#StickerKit_desc_boston2018_signature_kaze" + "sticker_material" "boston2018/sig_kaze" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "16127541" + } + "2947" + { + "name" "boston2018_signature_kaze_foil" + "item_name" "#StickerKit_boston2018_signature_kaze_foil" + "description_string" "#StickerKit_desc_boston2018_signature_kaze_foil" + "sticker_material" "boston2018/sig_kaze_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "16127541" + } + "2948" + { + "name" "boston2018_signature_kaze_gold" + "item_name" "#StickerKit_boston2018_signature_kaze_gold" + "description_string" "#StickerKit_desc_boston2018_signature_kaze_gold" + "sticker_material" "boston2018/sig_kaze_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "16127541" + } + "2949" + { + "name" "boston2018_signature_loveyy" + "item_name" "#StickerKit_boston2018_signature_loveyy" + "description_string" "#StickerKit_desc_boston2018_signature_loveyy" + "sticker_material" "boston2018/sig_loveyy" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "48886373" + } + "2950" + { + "name" "boston2018_signature_loveyy_foil" + "item_name" "#StickerKit_boston2018_signature_loveyy_foil" + "description_string" "#StickerKit_desc_boston2018_signature_loveyy_foil" + "sticker_material" "boston2018/sig_loveyy_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "48886373" + } + "2951" + { + "name" "boston2018_signature_loveyy_gold" + "item_name" "#StickerKit_boston2018_signature_loveyy_gold" + "description_string" "#StickerKit_desc_boston2018_signature_loveyy_gold" + "sticker_material" "boston2018/sig_loveyy_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "48886373" + } + "2952" + { + "name" "boston2018_signature_summer" + "item_name" "#StickerKit_boston2018_signature_summer" + "description_string" "#StickerKit_desc_boston2018_signature_summer" + "sticker_material" "boston2018/sig_summer" + "item_rarity" "rare" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "52964519" + } + "2953" + { + "name" "boston2018_signature_summer_foil" + "item_name" "#StickerKit_boston2018_signature_summer_foil" + "description_string" "#StickerKit_desc_boston2018_signature_summer_foil" + "sticker_material" "boston2018/sig_summer_foil" + "item_rarity" "mythical" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "52964519" + } + "2954" + { + "name" "boston2018_signature_summer_gold" + "item_name" "#StickerKit_boston2018_signature_summer_gold" + "description_string" "#StickerKit_desc_boston2018_signature_summer_gold" + "sticker_material" "boston2018/sig_summer_gold" + "item_rarity" "ancient" + "tournament_event_id" "13" + "tournament_team_id" "79" + "tournament_player_id" "52964519" + } + } + "prefabs" + { + "london2018_sticker_capsule_prefab" + { + "first_sale_date" "2018-09-04" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + } + "london2018_signature_capsule_prefab" + { + "first_sale_date" "2018-09-04" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_london2018_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_london2018_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "245" "crate_sticker_pack_london2018_legends" + "246" "crate_sticker_pack_london2018_challengers" + "247" "crate_sticker_pack_london2018_contenders" + "248" "crate_signature_pack_london2018_group_players_collection_legends" + "249" "crate_signature_pack_london2018_group_players_collection_challengers" + "250" "crate_signature_pack_london2018_group_players_collection_contenders" + "251" "crate_london2018_promo_de_inferno" + "252" "crate_london2018_promo_de_mirage" + "253" "crate_london2018_promo_de_dust2" + "254" "crate_london2018_promo_de_overpass" + "255" "crate_london2018_promo_de_cache" + "256" "crate_london2018_promo_de_train" + "257" "crate_london2018_promo_de_nuke" + } + "client_loot_lists" + { + "london2018_rare_c9" + { + "[london2018_team_c9]sticker" "1" + } + "london2018_rare_faze" + { + "[london2018_team_faze]sticker" "1" + } + "london2018_rare_navi" + { + "[london2018_team_navi]sticker" "1" + } + "london2018_rare_mibr" + { + "[london2018_team_mibr]sticker" "1" + } + "london2018_rare_mss" + { + "[london2018_team_mss]sticker" "1" + } + "london2018_rare_wins" + { + "[london2018_team_wins]sticker" "1" + } + "london2018_rare_g2" + { + "[london2018_team_g2]sticker" "1" + } + "london2018_rare_fntc" + { + "[london2018_team_fntc]sticker" "1" + } + "london2018_rare_gamb" + { + "[london2018_team_gamb]sticker" "1" + } + "london2018_rare_vega" + { + "[london2018_team_vega]sticker" "1" + } + "london2018_rare_spc" + { + "[london2018_team_spc]sticker" "1" + } + "london2018_rare_big" + { + "[london2018_team_big]sticker" "1" + } + "london2018_rare_astr" + { + "[london2018_team_astr]sticker" "1" + } + "london2018_rare_liq" + { + "[london2018_team_liq]sticker" "1" + } + "london2018_rare_nor" + { + "[london2018_team_nor]sticker" "1" + } + "london2018_rare_vp" + { + "[london2018_team_vp]sticker" "1" + } + "london2018_rare_nip" + { + "[london2018_team_nip]sticker" "1" + } + "london2018_rare_col" + { + "[london2018_team_col]sticker" "1" + } + "london2018_rare_hlr" + { + "[london2018_team_hlr]sticker" "1" + } + "london2018_rare_ren" + { + "[london2018_team_ren]sticker" "1" + } + "london2018_rare_optc" + { + "[london2018_team_optc]sticker" "1" + } + "london2018_rare_rog" + { + "[london2018_team_rog]sticker" "1" + } + "london2018_rare_spir" + { + "[london2018_team_spir]sticker" "1" + } + "london2018_rare_tyl" + { + "[london2018_team_tyl]sticker" "1" + } + "london2018_rare_faceit" + { + "[london2018_team_faceit]sticker" "1" + } + "london2018_graffiti_c9" + { + "[london2018_team_c9_graffiti]spray" "1" + } + "london2018_graffiti_faze" + { + "[london2018_team_faze_graffiti]spray" "1" + } + "london2018_graffiti_navi" + { + "[london2018_team_navi_graffiti]spray" "1" + } + "london2018_graffiti_mibr" + { + "[london2018_team_mibr_graffiti]spray" "1" + } + "london2018_graffiti_mss" + { + "[london2018_team_mss_graffiti]spray" "1" + } + "london2018_graffiti_wins" + { + "[london2018_team_wins_graffiti]spray" "1" + } + "london2018_graffiti_g2" + { + "[london2018_team_g2_graffiti]spray" "1" + } + "london2018_graffiti_fntc" + { + "[london2018_team_fntc_graffiti]spray" "1" + } + "london2018_graffiti_gamb" + { + "[london2018_team_gamb_graffiti]spray" "1" + } + "london2018_graffiti_vega" + { + "[london2018_team_vega_graffiti]spray" "1" + } + "london2018_graffiti_spc" + { + "[london2018_team_spc_graffiti]spray" "1" + } + "london2018_graffiti_big" + { + "[london2018_team_big_graffiti]spray" "1" + } + "london2018_graffiti_astr" + { + "[london2018_team_astr_graffiti]spray" "1" + } + "london2018_graffiti_liq" + { + "[london2018_team_liq_graffiti]spray" "1" + } + "london2018_graffiti_nor" + { + "[london2018_team_nor_graffiti]spray" "1" + } + "london2018_graffiti_vp" + { + "[london2018_team_vp_graffiti]spray" "1" + } + "london2018_graffiti_nip" + { + "[london2018_team_nip_graffiti]spray" "1" + } + "london2018_graffiti_col" + { + "[london2018_team_col_graffiti]spray" "1" + } + "london2018_graffiti_hlr" + { + "[london2018_team_hlr_graffiti]spray" "1" + } + "london2018_graffiti_ren" + { + "[london2018_team_ren_graffiti]spray" "1" + } + "london2018_graffiti_optc" + { + "[london2018_team_optc_graffiti]spray" "1" + } + "london2018_graffiti_rog" + { + "[london2018_team_rog_graffiti]spray" "1" + } + "london2018_graffiti_spir" + { + "[london2018_team_spir_graffiti]spray" "1" + } + "london2018_graffiti_tyl" + { + "[london2018_team_tyl_graffiti]spray" "1" + } + "london2018_graffiti_faceit" + { + "[london2018_team_faceit_graffiti]spray" "1" + } + "crate_sticker_pack_london2018_legends_rare" + { + "[london2018_team_c9]sticker" "1" + "[london2018_team_faze]sticker" "1" + "[london2018_team_navi]sticker" "1" + "[london2018_team_mibr]sticker" "1" + "[london2018_team_mss]sticker" "1" + "[london2018_team_wins]sticker" "1" + "[london2018_team_g2]sticker" "1" + "[london2018_team_fntc]sticker" "1" + "[london2018_team_faceit]sticker" "1" + } + "crate_sticker_pack_london2018_legends_mythical" + { + "[london2018_team_c9_holo]sticker" "1" + "[london2018_team_faze_holo]sticker" "1" + "[london2018_team_navi_holo]sticker" "1" + "[london2018_team_mibr_holo]sticker" "1" + "[london2018_team_mss_holo]sticker" "1" + "[london2018_team_wins_holo]sticker" "1" + "[london2018_team_g2_holo]sticker" "1" + "[london2018_team_fntc_holo]sticker" "1" + "[london2018_team_faceit_holo]sticker" "1" + } + "crate_sticker_pack_london2018_legends_legendary" + { + "[london2018_team_c9_foil]sticker" "1" + "[london2018_team_faze_foil]sticker" "1" + "[london2018_team_navi_foil]sticker" "1" + "[london2018_team_mibr_foil]sticker" "1" + "[london2018_team_mss_foil]sticker" "1" + "[london2018_team_wins_foil]sticker" "1" + "[london2018_team_g2_foil]sticker" "1" + "[london2018_team_fntc_foil]sticker" "1" + "[london2018_team_faceit_foil]sticker" "1" + } + "crate_sticker_pack_london2018_legends" + { + "crate_sticker_pack_london2018_legends_mythical" "1" + "crate_sticker_pack_london2018_legends_legendary" "1" + } + "crate_sticker_pack_london2018_challengers_rare" + { + "[london2018_team_gamb]sticker" "1" + "[london2018_team_vega]sticker" "1" + "[london2018_team_spc]sticker" "1" + "[london2018_team_big]sticker" "1" + "[london2018_team_astr]sticker" "1" + "[london2018_team_liq]sticker" "1" + "[london2018_team_nor]sticker" "1" + "[london2018_team_vp]sticker" "1" + "[london2018_team_faceit]sticker" "1" + } + "crate_sticker_pack_london2018_challengers_mythical" + { + "[london2018_team_gamb_holo]sticker" "1" + "[london2018_team_vega_holo]sticker" "1" + "[london2018_team_spc_holo]sticker" "1" + "[london2018_team_big_holo]sticker" "1" + "[london2018_team_astr_holo]sticker" "1" + "[london2018_team_liq_holo]sticker" "1" + "[london2018_team_nor_holo]sticker" "1" + "[london2018_team_vp_holo]sticker" "1" + "[london2018_team_faceit_holo]sticker" "1" + } + "crate_sticker_pack_london2018_challengers_legendary" + { + "[london2018_team_gamb_foil]sticker" "1" + "[london2018_team_vega_foil]sticker" "1" + "[london2018_team_spc_foil]sticker" "1" + "[london2018_team_big_foil]sticker" "1" + "[london2018_team_astr_foil]sticker" "1" + "[london2018_team_liq_foil]sticker" "1" + "[london2018_team_nor_foil]sticker" "1" + "[london2018_team_vp_foil]sticker" "1" + "[london2018_team_faceit_foil]sticker" "1" + } + "crate_sticker_pack_london2018_challengers" + { + "crate_sticker_pack_london2018_challengers_mythical" "1" + "crate_sticker_pack_london2018_challengers_legendary" "1" + } + "crate_sticker_pack_london2018_contenders_rare" + { + "[london2018_team_nip]sticker" "1" + "[london2018_team_col]sticker" "1" + "[london2018_team_hlr]sticker" "1" + "[london2018_team_ren]sticker" "1" + "[london2018_team_optc]sticker" "1" + "[london2018_team_rog]sticker" "1" + "[london2018_team_spir]sticker" "1" + "[london2018_team_tyl]sticker" "1" + "[london2018_team_faceit]sticker" "1" + } + "crate_sticker_pack_london2018_contenders_mythical" + { + "[london2018_team_nip_holo]sticker" "1" + "[london2018_team_col_holo]sticker" "1" + "[london2018_team_hlr_holo]sticker" "1" + "[london2018_team_ren_holo]sticker" "1" + "[london2018_team_optc_holo]sticker" "1" + "[london2018_team_rog_holo]sticker" "1" + "[london2018_team_spir_holo]sticker" "1" + "[london2018_team_tyl_holo]sticker" "1" + "[london2018_team_faceit_holo]sticker" "1" + } + "crate_sticker_pack_london2018_contenders_legendary" + { + "[london2018_team_nip_foil]sticker" "1" + "[london2018_team_col_foil]sticker" "1" + "[london2018_team_hlr_foil]sticker" "1" + "[london2018_team_ren_foil]sticker" "1" + "[london2018_team_optc_foil]sticker" "1" + "[london2018_team_rog_foil]sticker" "1" + "[london2018_team_spir_foil]sticker" "1" + "[london2018_team_tyl_foil]sticker" "1" + "[london2018_team_faceit_foil]sticker" "1" + } + "crate_sticker_pack_london2018_contenders" + { + "crate_sticker_pack_london2018_contenders_mythical" "1" + "crate_sticker_pack_london2018_contenders_legendary" "1" + } + "london2018_signatures_c9" + { + "[london2018_signature_golden]sticker" "1" + "[london2018_signature_golden_foil]sticker" "1" + "[london2018_signature_golden_gold]sticker" "1" + "[london2018_signature_autimatic]sticker" "1" + "[london2018_signature_autimatic_foil]sticker" "1" + "[london2018_signature_autimatic_gold]sticker" "1" + "[london2018_signature_rush]sticker" "1" + "[london2018_signature_rush_foil]sticker" "1" + "[london2018_signature_rush_gold]sticker" "1" + "[london2018_signature_styko]sticker" "1" + "[london2018_signature_styko_foil]sticker" "1" + "[london2018_signature_styko_gold]sticker" "1" + "[london2018_signature_skadoodle]sticker" "1" + "[london2018_signature_skadoodle_foil]sticker" "1" + "[london2018_signature_skadoodle_gold]sticker" "1" + } + "london2018_signatures_faze" + { + "[london2018_signature_guardian]sticker" "1" + "[london2018_signature_guardian_foil]sticker" "1" + "[london2018_signature_guardian_gold]sticker" "1" + "[london2018_signature_olofmeister]sticker" "1" + "[london2018_signature_olofmeister_foil]sticker" "1" + "[london2018_signature_olofmeister_gold]sticker" "1" + "[london2018_signature_karrigan]sticker" "1" + "[london2018_signature_karrigan_foil]sticker" "1" + "[london2018_signature_karrigan_gold]sticker" "1" + "[london2018_signature_rain]sticker" "1" + "[london2018_signature_rain_foil]sticker" "1" + "[london2018_signature_rain_gold]sticker" "1" + "[london2018_signature_niko]sticker" "1" + "[london2018_signature_niko_foil]sticker" "1" + "[london2018_signature_niko_gold]sticker" "1" + } + "london2018_signatures_navi" + { + "[london2018_signature_electronic]sticker" "1" + "[london2018_signature_electronic_foil]sticker" "1" + "[london2018_signature_electronic_gold]sticker" "1" + "[london2018_signature_zeus]sticker" "1" + "[london2018_signature_zeus_foil]sticker" "1" + "[london2018_signature_zeus_gold]sticker" "1" + "[london2018_signature_s1mple]sticker" "1" + "[london2018_signature_s1mple_foil]sticker" "1" + "[london2018_signature_s1mple_gold]sticker" "1" + "[london2018_signature_edward]sticker" "1" + "[london2018_signature_edward_foil]sticker" "1" + "[london2018_signature_edward_gold]sticker" "1" + "[london2018_signature_flamie]sticker" "1" + "[london2018_signature_flamie_foil]sticker" "1" + "[london2018_signature_flamie_gold]sticker" "1" + } + "london2018_signatures_mibr" + { + "[london2018_signature_coldzera]sticker" "1" + "[london2018_signature_coldzera_foil]sticker" "1" + "[london2018_signature_coldzera_gold]sticker" "1" + "[london2018_signature_fallen]sticker" "1" + "[london2018_signature_fallen_foil]sticker" "1" + "[london2018_signature_fallen_gold]sticker" "1" + "[london2018_signature_tarik]sticker" "1" + "[london2018_signature_tarik_foil]sticker" "1" + "[london2018_signature_tarik_gold]sticker" "1" + "[london2018_signature_stewie2k]sticker" "1" + "[london2018_signature_stewie2k_foil]sticker" "1" + "[london2018_signature_stewie2k_gold]sticker" "1" + "[london2018_signature_fer]sticker" "1" + "[london2018_signature_fer_foil]sticker" "1" + "[london2018_signature_fer_gold]sticker" "1" + } + "london2018_signatures_mss" + { + "[london2018_signature_snax]sticker" "1" + "[london2018_signature_snax_foil]sticker" "1" + "[london2018_signature_snax_gold]sticker" "1" + "[london2018_signature_chrisj]sticker" "1" + "[london2018_signature_chrisj_foil]sticker" "1" + "[london2018_signature_chrisj_gold]sticker" "1" + "[london2018_signature_ropz]sticker" "1" + "[london2018_signature_ropz_foil]sticker" "1" + "[london2018_signature_ropz_gold]sticker" "1" + "[london2018_signature_sunny]sticker" "1" + "[london2018_signature_sunny_foil]sticker" "1" + "[london2018_signature_sunny_gold]sticker" "1" + "[london2018_signature_oskar]sticker" "1" + "[london2018_signature_oskar_foil]sticker" "1" + "[london2018_signature_oskar_gold]sticker" "1" + } + "london2018_signatures_wins" + { + "[london2018_signature_jmqa]sticker" "1" + "[london2018_signature_jmqa_foil]sticker" "1" + "[london2018_signature_jmqa_gold]sticker" "1" + "[london2018_signature_kvik]sticker" "1" + "[london2018_signature_kvik_foil]sticker" "1" + "[london2018_signature_kvik_gold]sticker" "1" + "[london2018_signature_balblna]sticker" "1" + "[london2018_signature_balblna_foil]sticker" "1" + "[london2018_signature_balblna_gold]sticker" "1" + "[london2018_signature_waterfallz]sticker" "1" + "[london2018_signature_waterfallz_foil]sticker" "1" + "[london2018_signature_waterfallz_gold]sticker" "1" + "[london2018_signature_boombl4]sticker" "1" + "[london2018_signature_boombl4_foil]sticker" "1" + "[london2018_signature_boombl4_gold]sticker" "1" + } + "london2018_signatures_g2" + { + "[london2018_signature_kennys]sticker" "1" + "[london2018_signature_kennys_foil]sticker" "1" + "[london2018_signature_kennys_gold]sticker" "1" + "[london2018_signature_bodyy]sticker" "1" + "[london2018_signature_bodyy_foil]sticker" "1" + "[london2018_signature_bodyy_gold]sticker" "1" + "[london2018_signature_shox]sticker" "1" + "[london2018_signature_shox_foil]sticker" "1" + "[london2018_signature_shox_gold]sticker" "1" + "[london2018_signature_ex6tenz]sticker" "1" + "[london2018_signature_ex6tenz_foil]sticker" "1" + "[london2018_signature_ex6tenz_gold]sticker" "1" + "[london2018_signature_smithzz]sticker" "1" + "[london2018_signature_smithzz_foil]sticker" "1" + "[london2018_signature_smithzz_gold]sticker" "1" + } + "london2018_signatures_fntc" + { + "[london2018_signature_draken]sticker" "1" + "[london2018_signature_draken_foil]sticker" "1" + "[london2018_signature_draken_gold]sticker" "1" + "[london2018_signature_jw]sticker" "1" + "[london2018_signature_jw_foil]sticker" "1" + "[london2018_signature_jw_gold]sticker" "1" + "[london2018_signature_krimz]sticker" "1" + "[london2018_signature_krimz_foil]sticker" "1" + "[london2018_signature_krimz_gold]sticker" "1" + "[london2018_signature_flusha]sticker" "1" + "[london2018_signature_flusha_foil]sticker" "1" + "[london2018_signature_flusha_gold]sticker" "1" + "[london2018_signature_xizt]sticker" "1" + "[london2018_signature_xizt_foil]sticker" "1" + "[london2018_signature_xizt_gold]sticker" "1" + } + "london2018_signatures_gamb" + { + "[london2018_signature_mir]sticker" "1" + "[london2018_signature_mir_foil]sticker" "1" + "[london2018_signature_mir_gold]sticker" "1" + "[london2018_signature_dosia]sticker" "1" + "[london2018_signature_dosia_foil]sticker" "1" + "[london2018_signature_dosia_gold]sticker" "1" + "[london2018_signature_hobbit]sticker" "1" + "[london2018_signature_hobbit_foil]sticker" "1" + "[london2018_signature_hobbit_gold]sticker" "1" + "[london2018_signature_mou]sticker" "1" + "[london2018_signature_mou_foil]sticker" "1" + "[london2018_signature_mou_gold]sticker" "1" + "[london2018_signature_adrenkz]sticker" "1" + "[london2018_signature_adrenkz_foil]sticker" "1" + "[london2018_signature_adrenkz_gold]sticker" "1" + } + "london2018_signatures_vega" + { + "[london2018_signature_tonyblack]sticker" "1" + "[london2018_signature_tonyblack_foil]sticker" "1" + "[london2018_signature_tonyblack_gold]sticker" "1" + "[london2018_signature_crush]sticker" "1" + "[london2018_signature_crush_foil]sticker" "1" + "[london2018_signature_crush_gold]sticker" "1" + "[london2018_signature_hutji]sticker" "1" + "[london2018_signature_hutji_foil]sticker" "1" + "[london2018_signature_hutji_gold]sticker" "1" + "[london2018_signature_jr]sticker" "1" + "[london2018_signature_jr_foil]sticker" "1" + "[london2018_signature_jr_gold]sticker" "1" + "[london2018_signature_chopper]sticker" "1" + "[london2018_signature_chopper_foil]sticker" "1" + "[london2018_signature_chopper_gold]sticker" "1" + } + "london2018_signatures_spc" + { + "[london2018_signature_xantares]sticker" "1" + "[london2018_signature_xantares_foil]sticker" "1" + "[london2018_signature_xantares_gold]sticker" "1" + "[london2018_signature_calyx]sticker" "1" + "[london2018_signature_calyx_foil]sticker" "1" + "[london2018_signature_calyx_gold]sticker" "1" + "[london2018_signature_paz]sticker" "1" + "[london2018_signature_paz_foil]sticker" "1" + "[london2018_signature_paz_gold]sticker" "1" + "[london2018_signature_ngin]sticker" "1" + "[london2018_signature_ngin_foil]sticker" "1" + "[london2018_signature_ngin_gold]sticker" "1" + "[london2018_signature_maj3r]sticker" "1" + "[london2018_signature_maj3r_foil]sticker" "1" + "[london2018_signature_maj3r_gold]sticker" "1" + } + "london2018_signatures_big" + { + "[london2018_signature_tizian]sticker" "1" + "[london2018_signature_tizian_foil]sticker" "1" + "[london2018_signature_tizian_gold]sticker" "1" + "[london2018_signature_gobb]sticker" "1" + "[london2018_signature_gobb_foil]sticker" "1" + "[london2018_signature_gobb_gold]sticker" "1" + "[london2018_signature_tabsen]sticker" "1" + "[london2018_signature_tabsen_foil]sticker" "1" + "[london2018_signature_tabsen_gold]sticker" "1" + "[london2018_signature_nex]sticker" "1" + "[london2018_signature_nex_foil]sticker" "1" + "[london2018_signature_nex_gold]sticker" "1" + "[london2018_signature_smooya]sticker" "1" + "[london2018_signature_smooya_foil]sticker" "1" + "[london2018_signature_smooya_gold]sticker" "1" + } + "london2018_signatures_astr" + { + "[london2018_signature_dupreeh]sticker" "1" + "[london2018_signature_dupreeh_foil]sticker" "1" + "[london2018_signature_dupreeh_gold]sticker" "1" + "[london2018_signature_gla1ve]sticker" "1" + "[london2018_signature_gla1ve_foil]sticker" "1" + "[london2018_signature_gla1ve_gold]sticker" "1" + "[london2018_signature_device]sticker" "1" + "[london2018_signature_device_foil]sticker" "1" + "[london2018_signature_device_gold]sticker" "1" + "[london2018_signature_magisk]sticker" "1" + "[london2018_signature_magisk_foil]sticker" "1" + "[london2018_signature_magisk_gold]sticker" "1" + "[london2018_signature_xyp9x]sticker" "1" + "[london2018_signature_xyp9x_foil]sticker" "1" + "[london2018_signature_xyp9x_gold]sticker" "1" + } + "london2018_signatures_liq" + { + "[london2018_signature_elige]sticker" "1" + "[london2018_signature_elige_foil]sticker" "1" + "[london2018_signature_elige_gold]sticker" "1" + "[london2018_signature_taco]sticker" "1" + "[london2018_signature_taco_foil]sticker" "1" + "[london2018_signature_taco_gold]sticker" "1" + "[london2018_signature_twistzz]sticker" "1" + "[london2018_signature_twistzz_foil]sticker" "1" + "[london2018_signature_twistzz_gold]sticker" "1" + "[london2018_signature_naf]sticker" "1" + "[london2018_signature_naf_foil]sticker" "1" + "[london2018_signature_naf_gold]sticker" "1" + "[london2018_signature_nitro]sticker" "1" + "[london2018_signature_nitro_foil]sticker" "1" + "[london2018_signature_nitro_gold]sticker" "1" + } + "london2018_signatures_nor" + { + "[london2018_signature_msl]sticker" "1" + "[london2018_signature_msl_foil]sticker" "1" + "[london2018_signature_msl_gold]sticker" "1" + "[london2018_signature_nikodk]sticker" "1" + "[london2018_signature_nikodk_foil]sticker" "1" + "[london2018_signature_nikodk_gold]sticker" "1" + "[london2018_signature_kjaerbye]sticker" "1" + "[london2018_signature_kjaerbye_foil]sticker" "1" + "[london2018_signature_kjaerbye_gold]sticker" "1" + "[london2018_signature_aizy]sticker" "1" + "[london2018_signature_aizy_foil]sticker" "1" + "[london2018_signature_aizy_gold]sticker" "1" + "[london2018_signature_v4lde]sticker" "1" + "[london2018_signature_v4lde_foil]sticker" "1" + "[london2018_signature_v4lde_gold]sticker" "1" + } + "london2018_signatures_vp" + { + "[london2018_signature_byali]sticker" "1" + "[london2018_signature_byali_foil]sticker" "1" + "[london2018_signature_byali_gold]sticker" "1" + "[london2018_signature_pasha]sticker" "1" + "[london2018_signature_pasha_foil]sticker" "1" + "[london2018_signature_pasha_gold]sticker" "1" + "[london2018_signature_neo]sticker" "1" + "[london2018_signature_neo_foil]sticker" "1" + "[london2018_signature_neo_gold]sticker" "1" + "[london2018_signature_michu]sticker" "1" + "[london2018_signature_michu_foil]sticker" "1" + "[london2018_signature_michu_gold]sticker" "1" + "[london2018_signature_snatchie]sticker" "1" + "[london2018_signature_snatchie_foil]sticker" "1" + "[london2018_signature_snatchie_gold]sticker" "1" + } + "london2018_signatures_nip" + { + "[london2018_signature_getright]sticker" "1" + "[london2018_signature_getright_foil]sticker" "1" + "[london2018_signature_getright_gold]sticker" "1" + "[london2018_signature_forest]sticker" "1" + "[london2018_signature_forest_foil]sticker" "1" + "[london2018_signature_forest_gold]sticker" "1" + "[london2018_signature_lekro]sticker" "1" + "[london2018_signature_lekro_foil]sticker" "1" + "[london2018_signature_lekro_gold]sticker" "1" + "[london2018_signature_rez]sticker" "1" + "[london2018_signature_rez_foil]sticker" "1" + "[london2018_signature_rez_gold]sticker" "1" + "[london2018_signature_dennis]sticker" "1" + "[london2018_signature_dennis_foil]sticker" "1" + "[london2018_signature_dennis_gold]sticker" "1" + } + "london2018_signatures_col" + { + "[london2018_signature_android]sticker" "1" + "[london2018_signature_android_foil]sticker" "1" + "[london2018_signature_android_gold]sticker" "1" + "[london2018_signature_stanislaw]sticker" "1" + "[london2018_signature_stanislaw_foil]sticker" "1" + "[london2018_signature_stanislaw_gold]sticker" "1" + "[london2018_signature_dephh]sticker" "1" + "[london2018_signature_dephh_foil]sticker" "1" + "[london2018_signature_dephh_gold]sticker" "1" + "[london2018_signature_yay]sticker" "1" + "[london2018_signature_yay_foil]sticker" "1" + "[london2018_signature_yay_gold]sticker" "1" + "[london2018_signature_shahzam]sticker" "1" + "[london2018_signature_shahzam_foil]sticker" "1" + "[london2018_signature_shahzam_gold]sticker" "1" + } + "london2018_signatures_hlr" + { + "[london2018_signature_woxic]sticker" "1" + "[london2018_signature_woxic_foil]sticker" "1" + "[london2018_signature_woxic_gold]sticker" "1" + "[london2018_signature_issaa]sticker" "1" + "[london2018_signature_issaa_foil]sticker" "1" + "[london2018_signature_issaa_gold]sticker" "1" + "[london2018_signature_bondik]sticker" "1" + "[london2018_signature_bondik_foil]sticker" "1" + "[london2018_signature_bondik_gold]sticker" "1" + "[london2018_signature_angel]sticker" "1" + "[london2018_signature_angel_foil]sticker" "1" + "[london2018_signature_angel_gold]sticker" "1" + "[london2018_signature_deadfox]sticker" "1" + "[london2018_signature_deadfox_foil]sticker" "1" + "[london2018_signature_deadfox_gold]sticker" "1" + } + "london2018_signatures_ren" + { + "[london2018_signature_nifty]sticker" "1" + "[london2018_signature_nifty_foil]sticker" "1" + "[london2018_signature_nifty_gold]sticker" "1" + "[london2018_signature_jkaem]sticker" "1" + "[london2018_signature_jkaem_foil]sticker" "1" + "[london2018_signature_jkaem_gold]sticker" "1" + "[london2018_signature_jks]sticker" "1" + "[london2018_signature_jks_foil]sticker" "1" + "[london2018_signature_jks_gold]sticker" "1" + "[london2018_signature_ustilo]sticker" "1" + "[london2018_signature_ustilo_foil]sticker" "1" + "[london2018_signature_ustilo_gold]sticker" "1" + "[london2018_signature_azr]sticker" "1" + "[london2018_signature_azr_foil]sticker" "1" + "[london2018_signature_azr_gold]sticker" "1" + } + "london2018_signatures_optc" + { + "[london2018_signature_cajunb]sticker" "1" + "[london2018_signature_cajunb_foil]sticker" "1" + "[london2018_signature_cajunb_gold]sticker" "1" + "[london2018_signature_k0nfig]sticker" "1" + "[london2018_signature_k0nfig_foil]sticker" "1" + "[london2018_signature_k0nfig_gold]sticker" "1" + "[london2018_signature_gade]sticker" "1" + "[london2018_signature_gade_foil]sticker" "1" + "[london2018_signature_gade_gold]sticker" "1" + "[london2018_signature_snappi]sticker" "1" + "[london2018_signature_snappi_foil]sticker" "1" + "[london2018_signature_snappi_gold]sticker" "1" + "[london2018_signature_jugi]sticker" "1" + "[london2018_signature_jugi_foil]sticker" "1" + "[london2018_signature_jugi_gold]sticker" "1" + } + "london2018_signatures_rog" + { + "[london2018_signature_sick]sticker" "1" + "[london2018_signature_sick_foil]sticker" "1" + "[london2018_signature_sick_gold]sticker" "1" + "[london2018_signature_hiko]sticker" "1" + "[london2018_signature_hiko_foil]sticker" "1" + "[london2018_signature_hiko_gold]sticker" "1" + "[london2018_signature_rickeh]sticker" "1" + "[london2018_signature_rickeh_foil]sticker" "1" + "[london2018_signature_rickeh_gold]sticker" "1" + "[london2018_signature_cadian]sticker" "1" + "[london2018_signature_cadian_foil]sticker" "1" + "[london2018_signature_cadian_gold]sticker" "1" + "[london2018_signature_vice]sticker" "1" + "[london2018_signature_vice_foil]sticker" "1" + "[london2018_signature_vice_gold]sticker" "1" + } + "london2018_signatures_spir" + { + "[london2018_signature_coldyy1]sticker" "1" + "[london2018_signature_coldyy1_foil]sticker" "1" + "[london2018_signature_coldyy1_gold]sticker" "1" + "[london2018_signature_dima]sticker" "1" + "[london2018_signature_dima_foil]sticker" "1" + "[london2018_signature_dima_gold]sticker" "1" + "[london2018_signature_sdy]sticker" "1" + "[london2018_signature_sdy_foil]sticker" "1" + "[london2018_signature_sdy_gold]sticker" "1" + "[london2018_signature_s0tf1k]sticker" "1" + "[london2018_signature_s0tf1k_foil]sticker" "1" + "[london2018_signature_s0tf1k_gold]sticker" "1" + "[london2018_signature_davcost]sticker" "1" + "[london2018_signature_davcost_foil]sticker" "1" + "[london2018_signature_davcost_gold]sticker" "1" + } + "london2018_signatures_tyl" + { + "[london2018_signature_somebody]sticker" "1" + "[london2018_signature_somebody_foil]sticker" "1" + "[london2018_signature_somebody_gold]sticker" "1" + "[london2018_signature_captainmo]sticker" "1" + "[london2018_signature_captainmo_foil]sticker" "1" + "[london2018_signature_captainmo_gold]sticker" "1" + "[london2018_signature_bntet]sticker" "1" + "[london2018_signature_bntet_foil]sticker" "1" + "[london2018_signature_bntet_gold]sticker" "1" + "[london2018_signature_dd]sticker" "1" + "[london2018_signature_dd_foil]sticker" "1" + "[london2018_signature_dd_gold]sticker" "1" + "[london2018_signature_xccurate]sticker" "1" + "[london2018_signature_xccurate_foil]sticker" "1" + "[london2018_signature_xccurate_gold]sticker" "1" + } + "crate_signature_pack_london2018_group_legends_rare" + { + "[london2018_signature_golden]sticker" "1" + "[london2018_signature_autimatic]sticker" "1" + "[london2018_signature_rush]sticker" "1" + "[london2018_signature_styko]sticker" "1" + "[london2018_signature_skadoodle]sticker" "1" + "[london2018_signature_guardian]sticker" "1" + "[london2018_signature_olofmeister]sticker" "1" + "[london2018_signature_karrigan]sticker" "1" + "[london2018_signature_rain]sticker" "1" + "[london2018_signature_niko]sticker" "1" + "[london2018_signature_electronic]sticker" "1" + "[london2018_signature_zeus]sticker" "1" + "[london2018_signature_s1mple]sticker" "1" + "[london2018_signature_edward]sticker" "1" + "[london2018_signature_flamie]sticker" "1" + "[london2018_signature_coldzera]sticker" "1" + "[london2018_signature_fallen]sticker" "1" + "[london2018_signature_tarik]sticker" "1" + "[london2018_signature_stewie2k]sticker" "1" + "[london2018_signature_fer]sticker" "1" + "[london2018_signature_snax]sticker" "1" + "[london2018_signature_chrisj]sticker" "1" + "[london2018_signature_ropz]sticker" "1" + "[london2018_signature_sunny]sticker" "1" + "[london2018_signature_oskar]sticker" "1" + "[london2018_signature_jmqa]sticker" "1" + "[london2018_signature_kvik]sticker" "1" + "[london2018_signature_balblna]sticker" "1" + "[london2018_signature_waterfallz]sticker" "1" + "[london2018_signature_boombl4]sticker" "1" + "[london2018_signature_kennys]sticker" "1" + "[london2018_signature_bodyy]sticker" "1" + "[london2018_signature_shox]sticker" "1" + "[london2018_signature_ex6tenz]sticker" "1" + "[london2018_signature_smithzz]sticker" "1" + "[london2018_signature_draken]sticker" "1" + "[london2018_signature_jw]sticker" "1" + "[london2018_signature_krimz]sticker" "1" + "[london2018_signature_flusha]sticker" "1" + "[london2018_signature_xizt]sticker" "1" + } + "crate_signature_pack_london2018_group_legends_foil" + { + "[london2018_signature_golden_foil]sticker" "1" + "[london2018_signature_autimatic_foil]sticker" "1" + "[london2018_signature_rush_foil]sticker" "1" + "[london2018_signature_styko_foil]sticker" "1" + "[london2018_signature_skadoodle_foil]sticker" "1" + "[london2018_signature_guardian_foil]sticker" "1" + "[london2018_signature_olofmeister_foil]sticker" "1" + "[london2018_signature_karrigan_foil]sticker" "1" + "[london2018_signature_rain_foil]sticker" "1" + "[london2018_signature_niko_foil]sticker" "1" + "[london2018_signature_electronic_foil]sticker" "1" + "[london2018_signature_zeus_foil]sticker" "1" + "[london2018_signature_s1mple_foil]sticker" "1" + "[london2018_signature_edward_foil]sticker" "1" + "[london2018_signature_flamie_foil]sticker" "1" + "[london2018_signature_coldzera_foil]sticker" "1" + "[london2018_signature_fallen_foil]sticker" "1" + "[london2018_signature_tarik_foil]sticker" "1" + "[london2018_signature_stewie2k_foil]sticker" "1" + "[london2018_signature_fer_foil]sticker" "1" + "[london2018_signature_snax_foil]sticker" "1" + "[london2018_signature_chrisj_foil]sticker" "1" + "[london2018_signature_ropz_foil]sticker" "1" + "[london2018_signature_sunny_foil]sticker" "1" + "[london2018_signature_oskar_foil]sticker" "1" + "[london2018_signature_jmqa_foil]sticker" "1" + "[london2018_signature_kvik_foil]sticker" "1" + "[london2018_signature_balblna_foil]sticker" "1" + "[london2018_signature_waterfallz_foil]sticker" "1" + "[london2018_signature_boombl4_foil]sticker" "1" + "[london2018_signature_kennys_foil]sticker" "1" + "[london2018_signature_bodyy_foil]sticker" "1" + "[london2018_signature_shox_foil]sticker" "1" + "[london2018_signature_ex6tenz_foil]sticker" "1" + "[london2018_signature_smithzz_foil]sticker" "1" + "[london2018_signature_draken_foil]sticker" "1" + "[london2018_signature_jw_foil]sticker" "1" + "[london2018_signature_krimz_foil]sticker" "1" + "[london2018_signature_flusha_foil]sticker" "1" + "[london2018_signature_xizt_foil]sticker" "1" + } + "crate_signature_pack_london2018_group_legends_gold" + { + "[london2018_signature_golden_gold]sticker" "1" + "[london2018_signature_autimatic_gold]sticker" "1" + "[london2018_signature_rush_gold]sticker" "1" + "[london2018_signature_styko_gold]sticker" "1" + "[london2018_signature_skadoodle_gold]sticker" "1" + "[london2018_signature_guardian_gold]sticker" "1" + "[london2018_signature_olofmeister_gold]sticker" "1" + "[london2018_signature_karrigan_gold]sticker" "1" + "[london2018_signature_rain_gold]sticker" "1" + "[london2018_signature_niko_gold]sticker" "1" + "[london2018_signature_electronic_gold]sticker" "1" + "[london2018_signature_zeus_gold]sticker" "1" + "[london2018_signature_s1mple_gold]sticker" "1" + "[london2018_signature_edward_gold]sticker" "1" + "[london2018_signature_flamie_gold]sticker" "1" + "[london2018_signature_coldzera_gold]sticker" "1" + "[london2018_signature_fallen_gold]sticker" "1" + "[london2018_signature_tarik_gold]sticker" "1" + "[london2018_signature_stewie2k_gold]sticker" "1" + "[london2018_signature_fer_gold]sticker" "1" + "[london2018_signature_snax_gold]sticker" "1" + "[london2018_signature_chrisj_gold]sticker" "1" + "[london2018_signature_ropz_gold]sticker" "1" + "[london2018_signature_sunny_gold]sticker" "1" + "[london2018_signature_oskar_gold]sticker" "1" + "[london2018_signature_jmqa_gold]sticker" "1" + "[london2018_signature_kvik_gold]sticker" "1" + "[london2018_signature_balblna_gold]sticker" "1" + "[london2018_signature_waterfallz_gold]sticker" "1" + "[london2018_signature_boombl4_gold]sticker" "1" + "[london2018_signature_kennys_gold]sticker" "1" + "[london2018_signature_bodyy_gold]sticker" "1" + "[london2018_signature_shox_gold]sticker" "1" + "[london2018_signature_ex6tenz_gold]sticker" "1" + "[london2018_signature_smithzz_gold]sticker" "1" + "[london2018_signature_draken_gold]sticker" "1" + "[london2018_signature_jw_gold]sticker" "1" + "[london2018_signature_krimz_gold]sticker" "1" + "[london2018_signature_flusha_gold]sticker" "1" + "[london2018_signature_xizt_gold]sticker" "1" + } + "crate_signature_pack_london2018_group_challengers_rare" + { + "[london2018_signature_mir]sticker" "1" + "[london2018_signature_dosia]sticker" "1" + "[london2018_signature_hobbit]sticker" "1" + "[london2018_signature_mou]sticker" "1" + "[london2018_signature_adrenkz]sticker" "1" + "[london2018_signature_tonyblack]sticker" "1" + "[london2018_signature_crush]sticker" "1" + "[london2018_signature_hutji]sticker" "1" + "[london2018_signature_jr]sticker" "1" + "[london2018_signature_chopper]sticker" "1" + "[london2018_signature_xantares]sticker" "1" + "[london2018_signature_calyx]sticker" "1" + "[london2018_signature_paz]sticker" "1" + "[london2018_signature_ngin]sticker" "1" + "[london2018_signature_maj3r]sticker" "1" + "[london2018_signature_tizian]sticker" "1" + "[london2018_signature_gobb]sticker" "1" + "[london2018_signature_tabsen]sticker" "1" + "[london2018_signature_nex]sticker" "1" + "[london2018_signature_smooya]sticker" "1" + "[london2018_signature_dupreeh]sticker" "1" + "[london2018_signature_gla1ve]sticker" "1" + "[london2018_signature_device]sticker" "1" + "[london2018_signature_magisk]sticker" "1" + "[london2018_signature_xyp9x]sticker" "1" + "[london2018_signature_elige]sticker" "1" + "[london2018_signature_taco]sticker" "1" + "[london2018_signature_twistzz]sticker" "1" + "[london2018_signature_naf]sticker" "1" + "[london2018_signature_nitro]sticker" "1" + "[london2018_signature_msl]sticker" "1" + "[london2018_signature_nikodk]sticker" "1" + "[london2018_signature_kjaerbye]sticker" "1" + "[london2018_signature_aizy]sticker" "1" + "[london2018_signature_v4lde]sticker" "1" + "[london2018_signature_byali]sticker" "1" + "[london2018_signature_pasha]sticker" "1" + "[london2018_signature_neo]sticker" "1" + "[london2018_signature_michu]sticker" "1" + "[london2018_signature_snatchie]sticker" "1" + } + "crate_signature_pack_london2018_group_challengers_foil" + { + "[london2018_signature_mir_foil]sticker" "1" + "[london2018_signature_dosia_foil]sticker" "1" + "[london2018_signature_hobbit_foil]sticker" "1" + "[london2018_signature_mou_foil]sticker" "1" + "[london2018_signature_adrenkz_foil]sticker" "1" + "[london2018_signature_tonyblack_foil]sticker" "1" + "[london2018_signature_crush_foil]sticker" "1" + "[london2018_signature_hutji_foil]sticker" "1" + "[london2018_signature_jr_foil]sticker" "1" + "[london2018_signature_chopper_foil]sticker" "1" + "[london2018_signature_xantares_foil]sticker" "1" + "[london2018_signature_calyx_foil]sticker" "1" + "[london2018_signature_paz_foil]sticker" "1" + "[london2018_signature_ngin_foil]sticker" "1" + "[london2018_signature_maj3r_foil]sticker" "1" + "[london2018_signature_tizian_foil]sticker" "1" + "[london2018_signature_gobb_foil]sticker" "1" + "[london2018_signature_tabsen_foil]sticker" "1" + "[london2018_signature_nex_foil]sticker" "1" + "[london2018_signature_smooya_foil]sticker" "1" + "[london2018_signature_dupreeh_foil]sticker" "1" + "[london2018_signature_gla1ve_foil]sticker" "1" + "[london2018_signature_device_foil]sticker" "1" + "[london2018_signature_magisk_foil]sticker" "1" + "[london2018_signature_xyp9x_foil]sticker" "1" + "[london2018_signature_elige_foil]sticker" "1" + "[london2018_signature_taco_foil]sticker" "1" + "[london2018_signature_twistzz_foil]sticker" "1" + "[london2018_signature_naf_foil]sticker" "1" + "[london2018_signature_nitro_foil]sticker" "1" + "[london2018_signature_msl_foil]sticker" "1" + "[london2018_signature_nikodk_foil]sticker" "1" + "[london2018_signature_kjaerbye_foil]sticker" "1" + "[london2018_signature_aizy_foil]sticker" "1" + "[london2018_signature_v4lde_foil]sticker" "1" + "[london2018_signature_byali_foil]sticker" "1" + "[london2018_signature_pasha_foil]sticker" "1" + "[london2018_signature_neo_foil]sticker" "1" + "[london2018_signature_michu_foil]sticker" "1" + "[london2018_signature_snatchie_foil]sticker" "1" + } + "crate_signature_pack_london2018_group_challengers_gold" + { + "[london2018_signature_mir_gold]sticker" "1" + "[london2018_signature_dosia_gold]sticker" "1" + "[london2018_signature_hobbit_gold]sticker" "1" + "[london2018_signature_mou_gold]sticker" "1" + "[london2018_signature_adrenkz_gold]sticker" "1" + "[london2018_signature_tonyblack_gold]sticker" "1" + "[london2018_signature_crush_gold]sticker" "1" + "[london2018_signature_hutji_gold]sticker" "1" + "[london2018_signature_jr_gold]sticker" "1" + "[london2018_signature_chopper_gold]sticker" "1" + "[london2018_signature_xantares_gold]sticker" "1" + "[london2018_signature_calyx_gold]sticker" "1" + "[london2018_signature_paz_gold]sticker" "1" + "[london2018_signature_ngin_gold]sticker" "1" + "[london2018_signature_maj3r_gold]sticker" "1" + "[london2018_signature_tizian_gold]sticker" "1" + "[london2018_signature_gobb_gold]sticker" "1" + "[london2018_signature_tabsen_gold]sticker" "1" + "[london2018_signature_nex_gold]sticker" "1" + "[london2018_signature_smooya_gold]sticker" "1" + "[london2018_signature_dupreeh_gold]sticker" "1" + "[london2018_signature_gla1ve_gold]sticker" "1" + "[london2018_signature_device_gold]sticker" "1" + "[london2018_signature_magisk_gold]sticker" "1" + "[london2018_signature_xyp9x_gold]sticker" "1" + "[london2018_signature_elige_gold]sticker" "1" + "[london2018_signature_taco_gold]sticker" "1" + "[london2018_signature_twistzz_gold]sticker" "1" + "[london2018_signature_naf_gold]sticker" "1" + "[london2018_signature_nitro_gold]sticker" "1" + "[london2018_signature_msl_gold]sticker" "1" + "[london2018_signature_nikodk_gold]sticker" "1" + "[london2018_signature_kjaerbye_gold]sticker" "1" + "[london2018_signature_aizy_gold]sticker" "1" + "[london2018_signature_v4lde_gold]sticker" "1" + "[london2018_signature_byali_gold]sticker" "1" + "[london2018_signature_pasha_gold]sticker" "1" + "[london2018_signature_neo_gold]sticker" "1" + "[london2018_signature_michu_gold]sticker" "1" + "[london2018_signature_snatchie_gold]sticker" "1" + } + "crate_signature_pack_london2018_group_contenders_rare" + { + "[london2018_signature_getright]sticker" "1" + "[london2018_signature_forest]sticker" "1" + "[london2018_signature_lekro]sticker" "1" + "[london2018_signature_rez]sticker" "1" + "[london2018_signature_dennis]sticker" "1" + "[london2018_signature_android]sticker" "1" + "[london2018_signature_stanislaw]sticker" "1" + "[london2018_signature_dephh]sticker" "1" + "[london2018_signature_yay]sticker" "1" + "[london2018_signature_shahzam]sticker" "1" + "[london2018_signature_woxic]sticker" "1" + "[london2018_signature_issaa]sticker" "1" + "[london2018_signature_bondik]sticker" "1" + "[london2018_signature_angel]sticker" "1" + "[london2018_signature_deadfox]sticker" "1" + "[london2018_signature_nifty]sticker" "1" + "[london2018_signature_jkaem]sticker" "1" + "[london2018_signature_jks]sticker" "1" + "[london2018_signature_ustilo]sticker" "1" + "[london2018_signature_azr]sticker" "1" + "[london2018_signature_cajunb]sticker" "1" + "[london2018_signature_k0nfig]sticker" "1" + "[london2018_signature_gade]sticker" "1" + "[london2018_signature_snappi]sticker" "1" + "[london2018_signature_jugi]sticker" "1" + "[london2018_signature_sick]sticker" "1" + "[london2018_signature_hiko]sticker" "1" + "[london2018_signature_rickeh]sticker" "1" + "[london2018_signature_cadian]sticker" "1" + "[london2018_signature_vice]sticker" "1" + "[london2018_signature_coldyy1]sticker" "1" + "[london2018_signature_dima]sticker" "1" + "[london2018_signature_sdy]sticker" "1" + "[london2018_signature_s0tf1k]sticker" "1" + "[london2018_signature_davcost]sticker" "1" + "[london2018_signature_somebody]sticker" "1" + "[london2018_signature_captainmo]sticker" "1" + "[london2018_signature_bntet]sticker" "1" + "[london2018_signature_dd]sticker" "1" + "[london2018_signature_xccurate]sticker" "1" + } + "crate_signature_pack_london2018_group_contenders_foil" + { + "[london2018_signature_getright_foil]sticker" "1" + "[london2018_signature_forest_foil]sticker" "1" + "[london2018_signature_lekro_foil]sticker" "1" + "[london2018_signature_rez_foil]sticker" "1" + "[london2018_signature_dennis_foil]sticker" "1" + "[london2018_signature_android_foil]sticker" "1" + "[london2018_signature_stanislaw_foil]sticker" "1" + "[london2018_signature_dephh_foil]sticker" "1" + "[london2018_signature_yay_foil]sticker" "1" + "[london2018_signature_shahzam_foil]sticker" "1" + "[london2018_signature_woxic_foil]sticker" "1" + "[london2018_signature_issaa_foil]sticker" "1" + "[london2018_signature_bondik_foil]sticker" "1" + "[london2018_signature_angel_foil]sticker" "1" + "[london2018_signature_deadfox_foil]sticker" "1" + "[london2018_signature_nifty_foil]sticker" "1" + "[london2018_signature_jkaem_foil]sticker" "1" + "[london2018_signature_jks_foil]sticker" "1" + "[london2018_signature_ustilo_foil]sticker" "1" + "[london2018_signature_azr_foil]sticker" "1" + "[london2018_signature_cajunb_foil]sticker" "1" + "[london2018_signature_k0nfig_foil]sticker" "1" + "[london2018_signature_gade_foil]sticker" "1" + "[london2018_signature_snappi_foil]sticker" "1" + "[london2018_signature_jugi_foil]sticker" "1" + "[london2018_signature_sick_foil]sticker" "1" + "[london2018_signature_hiko_foil]sticker" "1" + "[london2018_signature_rickeh_foil]sticker" "1" + "[london2018_signature_cadian_foil]sticker" "1" + "[london2018_signature_vice_foil]sticker" "1" + "[london2018_signature_coldyy1_foil]sticker" "1" + "[london2018_signature_dima_foil]sticker" "1" + "[london2018_signature_sdy_foil]sticker" "1" + "[london2018_signature_s0tf1k_foil]sticker" "1" + "[london2018_signature_davcost_foil]sticker" "1" + "[london2018_signature_somebody_foil]sticker" "1" + "[london2018_signature_captainmo_foil]sticker" "1" + "[london2018_signature_bntet_foil]sticker" "1" + "[london2018_signature_dd_foil]sticker" "1" + "[london2018_signature_xccurate_foil]sticker" "1" + } + "crate_signature_pack_london2018_group_contenders_gold" + { + "[london2018_signature_getright_gold]sticker" "1" + "[london2018_signature_forest_gold]sticker" "1" + "[london2018_signature_lekro_gold]sticker" "1" + "[london2018_signature_rez_gold]sticker" "1" + "[london2018_signature_dennis_gold]sticker" "1" + "[london2018_signature_android_gold]sticker" "1" + "[london2018_signature_stanislaw_gold]sticker" "1" + "[london2018_signature_dephh_gold]sticker" "1" + "[london2018_signature_yay_gold]sticker" "1" + "[london2018_signature_shahzam_gold]sticker" "1" + "[london2018_signature_woxic_gold]sticker" "1" + "[london2018_signature_issaa_gold]sticker" "1" + "[london2018_signature_bondik_gold]sticker" "1" + "[london2018_signature_angel_gold]sticker" "1" + "[london2018_signature_deadfox_gold]sticker" "1" + "[london2018_signature_nifty_gold]sticker" "1" + "[london2018_signature_jkaem_gold]sticker" "1" + "[london2018_signature_jks_gold]sticker" "1" + "[london2018_signature_ustilo_gold]sticker" "1" + "[london2018_signature_azr_gold]sticker" "1" + "[london2018_signature_cajunb_gold]sticker" "1" + "[london2018_signature_k0nfig_gold]sticker" "1" + "[london2018_signature_gade_gold]sticker" "1" + "[london2018_signature_snappi_gold]sticker" "1" + "[london2018_signature_jugi_gold]sticker" "1" + "[london2018_signature_sick_gold]sticker" "1" + "[london2018_signature_hiko_gold]sticker" "1" + "[london2018_signature_rickeh_gold]sticker" "1" + "[london2018_signature_cadian_gold]sticker" "1" + "[london2018_signature_vice_gold]sticker" "1" + "[london2018_signature_coldyy1_gold]sticker" "1" + "[london2018_signature_dima_gold]sticker" "1" + "[london2018_signature_sdy_gold]sticker" "1" + "[london2018_signature_s0tf1k_gold]sticker" "1" + "[london2018_signature_davcost_gold]sticker" "1" + "[london2018_signature_somebody_gold]sticker" "1" + "[london2018_signature_captainmo_gold]sticker" "1" + "[london2018_signature_bntet_gold]sticker" "1" + "[london2018_signature_dd_gold]sticker" "1" + "[london2018_signature_xccurate_gold]sticker" "1" + } + "crate_signature_pack_london2018_group_players_collection_legends" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_london2018_group_legends_rare" "1" + "crate_signature_pack_london2018_group_legends_foil" "1" + "crate_signature_pack_london2018_group_legends_gold" "1" + } + "crate_signature_pack_london2018_group_players_collection_challengers" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_london2018_group_challengers_rare" "1" + "crate_signature_pack_london2018_group_challengers_foil" "1" + "crate_signature_pack_london2018_group_challengers_gold" "1" + } + "crate_signature_pack_london2018_group_players_collection_contenders" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_london2018_group_contenders_rare" "1" + "crate_signature_pack_london2018_group_contenders_foil" "1" + "crate_signature_pack_london2018_group_contenders_gold" "1" + } + "crate_london2018_promo_de_inferno" + { + "set_inferno_2" "1" + } + "crate_london2018_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_london2018_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_london2018_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_london2018_promo_de_cache" + { + "set_cache" "1" + } + "crate_london2018_promo_de_train" + { + "set_train" "1" + } + "crate_london2018_promo_de_nuke" + { + "set_nuke_2" "1" + } + } + "items" + { + "4483" + { + "item_name" "#StoreItem_london2018_team_c9_sticker" + "name" "crate_sticker_pack_london2018_c9" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/c9" + "loot_list_name" "london2018_rare_c9" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4484" + { + "item_name" "#StoreItem_london2018_team_faze_sticker" + "name" "crate_sticker_pack_london2018_faze" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/faze" + "loot_list_name" "london2018_rare_faze" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4485" + { + "item_name" "#StoreItem_london2018_team_navi_sticker" + "name" "crate_sticker_pack_london2018_navi" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/navi" + "loot_list_name" "london2018_rare_navi" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4486" + { + "item_name" "#StoreItem_london2018_team_mibr_sticker" + "name" "crate_sticker_pack_london2018_mibr" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/mibr" + "loot_list_name" "london2018_rare_mibr" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4487" + { + "item_name" "#StoreItem_london2018_team_mss_sticker" + "name" "crate_sticker_pack_london2018_mss" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/mss" + "loot_list_name" "london2018_rare_mss" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4488" + { + "item_name" "#StoreItem_london2018_team_wins_sticker" + "name" "crate_sticker_pack_london2018_wins" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/wins" + "loot_list_name" "london2018_rare_wins" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4489" + { + "item_name" "#StoreItem_london2018_team_g2_sticker" + "name" "crate_sticker_pack_london2018_g2" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/g2" + "loot_list_name" "london2018_rare_g2" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4490" + { + "item_name" "#StoreItem_london2018_team_fntc_sticker" + "name" "crate_sticker_pack_london2018_fntc" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/fntc" + "loot_list_name" "london2018_rare_fntc" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4491" + { + "item_name" "#StoreItem_london2018_team_gamb_sticker" + "name" "crate_sticker_pack_london2018_gamb" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/gamb" + "loot_list_name" "london2018_rare_gamb" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4492" + { + "item_name" "#StoreItem_london2018_team_vega_sticker" + "name" "crate_sticker_pack_london2018_vega" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/vega" + "loot_list_name" "london2018_rare_vega" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4493" + { + "item_name" "#StoreItem_london2018_team_spc_sticker" + "name" "crate_sticker_pack_london2018_spc" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/spc" + "loot_list_name" "london2018_rare_spc" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4494" + { + "item_name" "#StoreItem_london2018_team_big_sticker" + "name" "crate_sticker_pack_london2018_big" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/big" + "loot_list_name" "london2018_rare_big" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4495" + { + "item_name" "#StoreItem_london2018_team_astr_sticker" + "name" "crate_sticker_pack_london2018_astr" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/astr" + "loot_list_name" "london2018_rare_astr" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4496" + { + "item_name" "#StoreItem_london2018_team_liq_sticker" + "name" "crate_sticker_pack_london2018_liq" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/liq" + "loot_list_name" "london2018_rare_liq" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4497" + { + "item_name" "#StoreItem_london2018_team_nor_sticker" + "name" "crate_sticker_pack_london2018_nor" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/nor" + "loot_list_name" "london2018_rare_nor" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4498" + { + "item_name" "#StoreItem_london2018_team_vp_sticker" + "name" "crate_sticker_pack_london2018_vp" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/vp" + "loot_list_name" "london2018_rare_vp" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4499" + { + "item_name" "#StoreItem_london2018_team_nip_sticker" + "name" "crate_sticker_pack_london2018_nip" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/nip" + "loot_list_name" "london2018_rare_nip" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4500" + { + "item_name" "#StoreItem_london2018_team_col_sticker" + "name" "crate_sticker_pack_london2018_col" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/col" + "loot_list_name" "london2018_rare_col" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4501" + { + "item_name" "#StoreItem_london2018_team_hlr_sticker" + "name" "crate_sticker_pack_london2018_hlr" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/hlr" + "loot_list_name" "london2018_rare_hlr" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4502" + { + "item_name" "#StoreItem_london2018_team_ren_sticker" + "name" "crate_sticker_pack_london2018_ren" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/ren" + "loot_list_name" "london2018_rare_ren" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4503" + { + "item_name" "#StoreItem_london2018_team_optc_sticker" + "name" "crate_sticker_pack_london2018_optc" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/optc" + "loot_list_name" "london2018_rare_optc" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4504" + { + "item_name" "#StoreItem_london2018_team_rog_sticker" + "name" "crate_sticker_pack_london2018_rog" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/rog" + "loot_list_name" "london2018_rare_rog" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4505" + { + "item_name" "#StoreItem_london2018_team_spir_sticker" + "name" "crate_sticker_pack_london2018_spir" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/spir" + "loot_list_name" "london2018_rare_spir" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4506" + { + "item_name" "#StoreItem_london2018_team_tyl_sticker" + "name" "crate_sticker_pack_london2018_tyl" + "item_description" "#EventItemDesc_london2018_sticker_team" + "image_inventory" "econ/stickers/london2018/tyl" + "loot_list_name" "london2018_rare_tyl" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4507" + { + "item_name" "#StoreItem_london2018_team_faceit_sticker" + "name" "crate_sticker_pack_london2018_faceit" + "item_description" "#EventItemDesc_london2018_sticker_org" + "image_inventory" "econ/stickers/london2018/faceit" + "loot_list_name" "london2018_rare_faceit" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4508" + { + "item_name" "#StoreItem_london2018_team_c9_graffiti" + "name" "crate_graffiti_pack_london2018_c9" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/c9_graffiti" + "loot_list_name" "london2018_graffiti_c9" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4509" + { + "item_name" "#StoreItem_london2018_team_faze_graffiti" + "name" "crate_graffiti_pack_london2018_faze" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/faze_graffiti" + "loot_list_name" "london2018_graffiti_faze" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4510" + { + "item_name" "#StoreItem_london2018_team_navi_graffiti" + "name" "crate_graffiti_pack_london2018_navi" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/navi_graffiti" + "loot_list_name" "london2018_graffiti_navi" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4511" + { + "item_name" "#StoreItem_london2018_team_mibr_graffiti" + "name" "crate_graffiti_pack_london2018_mibr" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/mibr_graffiti" + "loot_list_name" "london2018_graffiti_mibr" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4512" + { + "item_name" "#StoreItem_london2018_team_mss_graffiti" + "name" "crate_graffiti_pack_london2018_mss" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/mss_graffiti" + "loot_list_name" "london2018_graffiti_mss" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4513" + { + "item_name" "#StoreItem_london2018_team_wins_graffiti" + "name" "crate_graffiti_pack_london2018_wins" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/wins_graffiti" + "loot_list_name" "london2018_graffiti_wins" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4514" + { + "item_name" "#StoreItem_london2018_team_g2_graffiti" + "name" "crate_graffiti_pack_london2018_g2" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/g2_graffiti" + "loot_list_name" "london2018_graffiti_g2" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4515" + { + "item_name" "#StoreItem_london2018_team_fntc_graffiti" + "name" "crate_graffiti_pack_london2018_fntc" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/fntc_graffiti" + "loot_list_name" "london2018_graffiti_fntc" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4516" + { + "item_name" "#StoreItem_london2018_team_gamb_graffiti" + "name" "crate_graffiti_pack_london2018_gamb" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/gamb_graffiti" + "loot_list_name" "london2018_graffiti_gamb" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4517" + { + "item_name" "#StoreItem_london2018_team_vega_graffiti" + "name" "crate_graffiti_pack_london2018_vega" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/vega_graffiti" + "loot_list_name" "london2018_graffiti_vega" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4518" + { + "item_name" "#StoreItem_london2018_team_spc_graffiti" + "name" "crate_graffiti_pack_london2018_spc" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/spc_graffiti" + "loot_list_name" "london2018_graffiti_spc" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4519" + { + "item_name" "#StoreItem_london2018_team_big_graffiti" + "name" "crate_graffiti_pack_london2018_big" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/big_graffiti" + "loot_list_name" "london2018_graffiti_big" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4520" + { + "item_name" "#StoreItem_london2018_team_astr_graffiti" + "name" "crate_graffiti_pack_london2018_astr" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/astr_graffiti" + "loot_list_name" "london2018_graffiti_astr" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4521" + { + "item_name" "#StoreItem_london2018_team_liq_graffiti" + "name" "crate_graffiti_pack_london2018_liq" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/liq_graffiti" + "loot_list_name" "london2018_graffiti_liq" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4522" + { + "item_name" "#StoreItem_london2018_team_nor_graffiti" + "name" "crate_graffiti_pack_london2018_nor" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/nor_graffiti" + "loot_list_name" "london2018_graffiti_nor" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4523" + { + "item_name" "#StoreItem_london2018_team_vp_graffiti" + "name" "crate_graffiti_pack_london2018_vp" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/vp_graffiti" + "loot_list_name" "london2018_graffiti_vp" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4524" + { + "item_name" "#StoreItem_london2018_team_nip_graffiti" + "name" "crate_graffiti_pack_london2018_nip" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/nip_graffiti" + "loot_list_name" "london2018_graffiti_nip" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4525" + { + "item_name" "#StoreItem_london2018_team_col_graffiti" + "name" "crate_graffiti_pack_london2018_col" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/col_graffiti" + "loot_list_name" "london2018_graffiti_col" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4526" + { + "item_name" "#StoreItem_london2018_team_hlr_graffiti" + "name" "crate_graffiti_pack_london2018_hlr" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/hlr_graffiti" + "loot_list_name" "london2018_graffiti_hlr" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4527" + { + "item_name" "#StoreItem_london2018_team_ren_graffiti" + "name" "crate_graffiti_pack_london2018_ren" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/ren_graffiti" + "loot_list_name" "london2018_graffiti_ren" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4528" + { + "item_name" "#StoreItem_london2018_team_optc_graffiti" + "name" "crate_graffiti_pack_london2018_optc" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/optc_graffiti" + "loot_list_name" "london2018_graffiti_optc" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4529" + { + "item_name" "#StoreItem_london2018_team_rog_graffiti" + "name" "crate_graffiti_pack_london2018_rog" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/rog_graffiti" + "loot_list_name" "london2018_graffiti_rog" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4530" + { + "item_name" "#StoreItem_london2018_team_spir_graffiti" + "name" "crate_graffiti_pack_london2018_spir" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/spir_graffiti" + "loot_list_name" "london2018_graffiti_spir" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4531" + { + "item_name" "#StoreItem_london2018_team_tyl_graffiti" + "name" "crate_graffiti_pack_london2018_tyl" + "item_description" "#EventItemDesc_london2018_graffiti_team" + "image_inventory" "econ/stickers/london2018/tyl_graffiti" + "loot_list_name" "london2018_graffiti_tyl" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4532" + { + "item_name" "#StoreItem_london2018_team_faceit_graffiti" + "name" "crate_graffiti_pack_london2018_faceit" + "item_description" "#EventItemDesc_london2018_graffiti_org" + "image_inventory" "econ/stickers/london2018/faceit_graffiti" + "loot_list_name" "london2018_graffiti_faceit" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4533" + { + "item_name" "#CSGO_crate_sticker_pack_london2018_legends" + "name" "crate_sticker_pack_london2018_legends" + "item_description" "#CSGO_crate_sticker_pack_london2018_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_london2018_legends" + "prefab" "london2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "245" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_london2018_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_london2018_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4534" + { + "item_name" "#CSGO_crate_sticker_pack_london2018_challengers" + "name" "crate_sticker_pack_london2018_challengers" + "item_description" "#CSGO_crate_sticker_pack_london2018_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_london2018_challengers" + "prefab" "london2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "246" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_london2018_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_london2018_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4535" + { + "item_name" "#CSGO_crate_sticker_pack_london2018_contenders" + "name" "crate_sticker_pack_london2018_contenders" + "item_description" "#CSGO_crate_sticker_pack_london2018_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_london2018_contenders" + "prefab" "london2018_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "247" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_london2018_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_london2018_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4536" + { + "item_name" "#CSGO_crate_signature_pack_london2018_group_legends" + "name" "crate_signature_pack_london2018_group_legends" + "item_description" "#CSGO_crate_signature_pack_london2018_group_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_london2018_group_legends" + "prefab" "london2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "248" + } + } + } + "4537" + { + "item_name" "#CSGO_crate_signature_pack_london2018_group_challengers" + "name" "crate_signature_pack_london2018_group_challengers" + "item_description" "#CSGO_crate_signature_pack_london2018_group_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_london2018_group_challengers" + "prefab" "london2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "249" + } + } + } + "4538" + { + "item_name" "#CSGO_crate_signature_pack_london2018_group_contenders" + "name" "crate_signature_pack_london2018_group_contenders" + "item_description" "#CSGO_crate_signature_pack_london2018_group_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_london2018_group_contenders" + "prefab" "london2018_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "250" + } + } + } + "4539" + { + "item_name" "#CSGO_crate_london2018_bundle_of_all" + "name" "crate_london2018_bundle_of_all" + "item_description" "#CSGO_crate_london2018_bundle_of_all_desc" + "image_inventory" "econ/weapon_cases/london2018_bundleofall" + "loot_list_name" "london2018_bundle_of_all" + "prefab" "london2018_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4540" + { + "item_name" "#CSGO_crate_london2018_promo_de_inferno" + "name" "crate_london2018_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_london2018_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "251" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno_2" + "tag_text" "#CSGO_set_inferno_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4541" + { + "item_name" "#CSGO_crate_london2018_promo_de_mirage" + "name" "crate_london2018_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_london2018_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "252" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4542" + { + "item_name" "#CSGO_crate_london2018_promo_de_dust2" + "name" "crate_london2018_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_london2018_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "253" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4543" + { + "item_name" "#CSGO_crate_london2018_promo_de_overpass" + "name" "crate_london2018_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_london2018_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "254" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4544" + { + "item_name" "#CSGO_crate_london2018_promo_de_cache" + "name" "crate_london2018_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_london2018_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "255" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4545" + { + "item_name" "#CSGO_crate_london2018_promo_de_train" + "name" "crate_london2018_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_london2018_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "256" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4546" + { + "item_name" "#CSGO_crate_london2018_promo_de_nuke" + "name" "crate_london2018_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_london2018_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "257" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "14" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke_2" + "tag_text" "#CSGO_set_nuke_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "2955" + { + "name" "london2018_team_c9" + "item_name" "#StickerKit_london2018_team_c9" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/c9" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "33" + } + "2956" + { + "name" "london2018_team_c9_holo" + "item_name" "#StickerKit_london2018_team_c9_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/c9_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "33" + } + "2957" + { + "name" "london2018_team_c9_foil" + "item_name" "#StickerKit_london2018_team_c9_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/c9_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "33" + } + "2958" + { + "name" "london2018_team_c9_gold" + "item_name" "#StickerKit_london2018_team_c9_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/c9_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "33" + } + "2959" + { + "name" "london2018_team_faze" + "item_name" "#StickerKit_london2018_team_faze" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/faze" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "61" + } + "2960" + { + "name" "london2018_team_faze_holo" + "item_name" "#StickerKit_london2018_team_faze_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "61" + } + "2961" + { + "name" "london2018_team_faze_foil" + "item_name" "#StickerKit_london2018_team_faze_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "61" + } + "2962" + { + "name" "london2018_team_faze_gold" + "item_name" "#StickerKit_london2018_team_faze_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "61" + } + "2963" + { + "name" "london2018_team_navi" + "item_name" "#StickerKit_london2018_team_navi" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/navi" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "12" + } + "2964" + { + "name" "london2018_team_navi_holo" + "item_name" "#StickerKit_london2018_team_navi_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "12" + } + "2965" + { + "name" "london2018_team_navi_foil" + "item_name" "#StickerKit_london2018_team_navi_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "12" + } + "2966" + { + "name" "london2018_team_navi_gold" + "item_name" "#StickerKit_london2018_team_navi_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "12" + } + "2967" + { + "name" "london2018_team_mibr" + "item_name" "#StickerKit_london2018_team_mibr" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mibr" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "80" + } + "2968" + { + "name" "london2018_team_mibr_holo" + "item_name" "#StickerKit_london2018_team_mibr_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mibr_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "80" + } + "2969" + { + "name" "london2018_team_mibr_foil" + "item_name" "#StickerKit_london2018_team_mibr_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mibr_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "80" + } + "2970" + { + "name" "london2018_team_mibr_gold" + "item_name" "#StickerKit_london2018_team_mibr_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mibr_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "80" + } + "2971" + { + "name" "london2018_team_mss" + "item_name" "#StickerKit_london2018_team_mss" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mss" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "29" + } + "2972" + { + "name" "london2018_team_mss_holo" + "item_name" "#StickerKit_london2018_team_mss_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mss_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "29" + } + "2973" + { + "name" "london2018_team_mss_foil" + "item_name" "#StickerKit_london2018_team_mss_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "29" + } + "2974" + { + "name" "london2018_team_mss_gold" + "item_name" "#StickerKit_london2018_team_mss_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "29" + } + "2975" + { + "name" "london2018_team_wins" + "item_name" "#StickerKit_london2018_team_wins" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/wins" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "83" + } + "2976" + { + "name" "london2018_team_wins_holo" + "item_name" "#StickerKit_london2018_team_wins_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/wins_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "83" + } + "2977" + { + "name" "london2018_team_wins_foil" + "item_name" "#StickerKit_london2018_team_wins_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/wins_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "83" + } + "2978" + { + "name" "london2018_team_wins_gold" + "item_name" "#StickerKit_london2018_team_wins_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/wins_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "83" + } + "2979" + { + "name" "london2018_team_g2" + "item_name" "#StickerKit_london2018_team_g2" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/g2" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "59" + } + "2980" + { + "name" "london2018_team_g2_holo" + "item_name" "#StickerKit_london2018_team_g2_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "59" + } + "2981" + { + "name" "london2018_team_g2_foil" + "item_name" "#StickerKit_london2018_team_g2_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "59" + } + "2982" + { + "name" "london2018_team_g2_gold" + "item_name" "#StickerKit_london2018_team_g2_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "59" + } + "2983" + { + "name" "london2018_team_fntc" + "item_name" "#StickerKit_london2018_team_fntc" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/fntc" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "6" + } + "2984" + { + "name" "london2018_team_fntc_holo" + "item_name" "#StickerKit_london2018_team_fntc_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "6" + } + "2985" + { + "name" "london2018_team_fntc_foil" + "item_name" "#StickerKit_london2018_team_fntc_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "6" + } + "2986" + { + "name" "london2018_team_fntc_gold" + "item_name" "#StickerKit_london2018_team_fntc_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "6" + } + "2987" + { + "name" "london2018_team_gamb" + "item_name" "#StickerKit_london2018_team_gamb" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/gamb" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "63" + } + "2988" + { + "name" "london2018_team_gamb_holo" + "item_name" "#StickerKit_london2018_team_gamb_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/gamb_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "63" + } + "2989" + { + "name" "london2018_team_gamb_foil" + "item_name" "#StickerKit_london2018_team_gamb_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/gamb_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "63" + } + "2990" + { + "name" "london2018_team_gamb_gold" + "item_name" "#StickerKit_london2018_team_gamb_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/gamb_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "63" + } + "2991" + { + "name" "london2018_team_vega" + "item_name" "#StickerKit_london2018_team_vega" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vega" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "70" + } + "2992" + { + "name" "london2018_team_vega_holo" + "item_name" "#StickerKit_london2018_team_vega_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vega_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "70" + } + "2993" + { + "name" "london2018_team_vega_foil" + "item_name" "#StickerKit_london2018_team_vega_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vega_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "70" + } + "2994" + { + "name" "london2018_team_vega_gold" + "item_name" "#StickerKit_london2018_team_vega_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vega_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "70" + } + "2995" + { + "name" "london2018_team_spc" + "item_name" "#StickerKit_london2018_team_spc" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spc" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "73" + } + "2996" + { + "name" "london2018_team_spc_holo" + "item_name" "#StickerKit_london2018_team_spc_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spc_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "73" + } + "2997" + { + "name" "london2018_team_spc_foil" + "item_name" "#StickerKit_london2018_team_spc_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spc_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "73" + } + "2998" + { + "name" "london2018_team_spc_gold" + "item_name" "#StickerKit_london2018_team_spc_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spc_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "73" + } + "2999" + { + "name" "london2018_team_big" + "item_name" "#StickerKit_london2018_team_big" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/big" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "69" + } + "3000" + { + "name" "london2018_team_big_holo" + "item_name" "#StickerKit_london2018_team_big_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/big_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "69" + } + "3001" + { + "name" "london2018_team_big_foil" + "item_name" "#StickerKit_london2018_team_big_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/big_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "69" + } + "3002" + { + "name" "london2018_team_big_gold" + "item_name" "#StickerKit_london2018_team_big_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/big_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "69" + } + "3003" + { + "name" "london2018_team_astr" + "item_name" "#StickerKit_london2018_team_astr" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/astr" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "60" + } + "3004" + { + "name" "london2018_team_astr_holo" + "item_name" "#StickerKit_london2018_team_astr_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "60" + } + "3005" + { + "name" "london2018_team_astr_foil" + "item_name" "#StickerKit_london2018_team_astr_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "60" + } + "3006" + { + "name" "london2018_team_astr_gold" + "item_name" "#StickerKit_london2018_team_astr_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "60" + } + "3007" + { + "name" "london2018_team_liq" + "item_name" "#StickerKit_london2018_team_liq" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/liq" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "48" + } + "3008" + { + "name" "london2018_team_liq_holo" + "item_name" "#StickerKit_london2018_team_liq_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "48" + } + "3009" + { + "name" "london2018_team_liq_foil" + "item_name" "#StickerKit_london2018_team_liq_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "48" + } + "3010" + { + "name" "london2018_team_liq_gold" + "item_name" "#StickerKit_london2018_team_liq_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "48" + } + "3011" + { + "name" "london2018_team_nor" + "item_name" "#StickerKit_london2018_team_nor" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nor" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "68" + } + "3012" + { + "name" "london2018_team_nor_holo" + "item_name" "#StickerKit_london2018_team_nor_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nor_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "68" + } + "3013" + { + "name" "london2018_team_nor_foil" + "item_name" "#StickerKit_london2018_team_nor_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nor_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "68" + } + "3014" + { + "name" "london2018_team_nor_gold" + "item_name" "#StickerKit_london2018_team_nor_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nor_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "68" + } + "3015" + { + "name" "london2018_team_vp" + "item_name" "#StickerKit_london2018_team_vp" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vp" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "31" + } + "3016" + { + "name" "london2018_team_vp_holo" + "item_name" "#StickerKit_london2018_team_vp_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "31" + } + "3017" + { + "name" "london2018_team_vp_foil" + "item_name" "#StickerKit_london2018_team_vp_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "31" + } + "3018" + { + "name" "london2018_team_vp_gold" + "item_name" "#StickerKit_london2018_team_vp_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/vp_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "31" + } + "3019" + { + "name" "london2018_team_nip" + "item_name" "#StickerKit_london2018_team_nip" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nip" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "1" + } + "3020" + { + "name" "london2018_team_nip_holo" + "item_name" "#StickerKit_london2018_team_nip_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nip_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "1" + } + "3021" + { + "name" "london2018_team_nip_foil" + "item_name" "#StickerKit_london2018_team_nip_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nip_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "1" + } + "3022" + { + "name" "london2018_team_nip_gold" + "item_name" "#StickerKit_london2018_team_nip_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/nip_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "1" + } + "3023" + { + "name" "london2018_team_col" + "item_name" "#StickerKit_london2018_team_col" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/col" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "3" + } + "3024" + { + "name" "london2018_team_col_holo" + "item_name" "#StickerKit_london2018_team_col_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/col_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "3" + } + "3025" + { + "name" "london2018_team_col_foil" + "item_name" "#StickerKit_london2018_team_col_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/col_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "3" + } + "3026" + { + "name" "london2018_team_col_gold" + "item_name" "#StickerKit_london2018_team_col_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/col_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "3" + } + "3027" + { + "name" "london2018_team_hlr" + "item_name" "#StickerKit_london2018_team_hlr" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/hlr" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "25" + } + "3028" + { + "name" "london2018_team_hlr_holo" + "item_name" "#StickerKit_london2018_team_hlr_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/hlr_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "25" + } + "3029" + { + "name" "london2018_team_hlr_foil" + "item_name" "#StickerKit_london2018_team_hlr_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/hlr_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "25" + } + "3030" + { + "name" "london2018_team_hlr_gold" + "item_name" "#StickerKit_london2018_team_hlr_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/hlr_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "25" + } + "3031" + { + "name" "london2018_team_ren" + "item_name" "#StickerKit_london2018_team_ren" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/ren" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "53" + } + "3032" + { + "name" "london2018_team_ren_holo" + "item_name" "#StickerKit_london2018_team_ren_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/ren_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "53" + } + "3033" + { + "name" "london2018_team_ren_foil" + "item_name" "#StickerKit_london2018_team_ren_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/ren_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "53" + } + "3034" + { + "name" "london2018_team_ren_gold" + "item_name" "#StickerKit_london2018_team_ren_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/ren_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "53" + } + "3035" + { + "name" "london2018_team_optc" + "item_name" "#StickerKit_london2018_team_optc" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/optc" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "66" + } + "3036" + { + "name" "london2018_team_optc_holo" + "item_name" "#StickerKit_london2018_team_optc_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/optc_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "66" + } + "3037" + { + "name" "london2018_team_optc_foil" + "item_name" "#StickerKit_london2018_team_optc_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/optc_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "66" + } + "3038" + { + "name" "london2018_team_optc_gold" + "item_name" "#StickerKit_london2018_team_optc_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/optc_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "66" + } + "3039" + { + "name" "london2018_team_rog" + "item_name" "#StickerKit_london2018_team_rog" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/rog" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "82" + } + "3040" + { + "name" "london2018_team_rog_holo" + "item_name" "#StickerKit_london2018_team_rog_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/rog_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "82" + } + "3041" + { + "name" "london2018_team_rog_foil" + "item_name" "#StickerKit_london2018_team_rog_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/rog_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "82" + } + "3042" + { + "name" "london2018_team_rog_gold" + "item_name" "#StickerKit_london2018_team_rog_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/rog_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "82" + } + "3043" + { + "name" "london2018_team_spir" + "item_name" "#StickerKit_london2018_team_spir" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spir" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "81" + } + "3044" + { + "name" "london2018_team_spir_holo" + "item_name" "#StickerKit_london2018_team_spir_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spir_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "81" + } + "3045" + { + "name" "london2018_team_spir_foil" + "item_name" "#StickerKit_london2018_team_spir_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spir_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "81" + } + "3046" + { + "name" "london2018_team_spir_gold" + "item_name" "#StickerKit_london2018_team_spir_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/spir_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "81" + } + "3047" + { + "name" "london2018_team_tyl" + "item_name" "#StickerKit_london2018_team_tyl" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/tyl" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "74" + } + "3048" + { + "name" "london2018_team_tyl_holo" + "item_name" "#StickerKit_london2018_team_tyl_holo" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/tyl_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "74" + } + "3049" + { + "name" "london2018_team_tyl_foil" + "item_name" "#StickerKit_london2018_team_tyl_foil" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/tyl_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "74" + } + "3050" + { + "name" "london2018_team_tyl_gold" + "item_name" "#StickerKit_london2018_team_tyl_gold" + "description_string" "#EventItemDesc_london2018_sticker_team" + "sticker_material" "london2018/tyl_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "74" + } + "3051" + { + "name" "london2018_team_faceit" + "item_name" "#StickerKit_london2018_team_faceit" + "description_string" "#EventItemDesc_london2018_sticker_org" + "sticker_material" "london2018/faceit" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "0" + } + "3052" + { + "name" "london2018_team_faceit_holo" + "item_name" "#StickerKit_london2018_team_faceit_holo" + "description_string" "#EventItemDesc_london2018_sticker_org" + "sticker_material" "london2018/faceit_holo" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "0" + } + "3053" + { + "name" "london2018_team_faceit_foil" + "item_name" "#StickerKit_london2018_team_faceit_foil" + "description_string" "#EventItemDesc_london2018_sticker_org" + "sticker_material" "london2018/faceit_foil" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "0" + } + "3054" + { + "name" "london2018_team_faceit_gold" + "item_name" "#StickerKit_london2018_team_faceit_gold" + "description_string" "#EventItemDesc_london2018_sticker_org" + "sticker_material" "london2018/faceit_gold" + "item_rarity" "legendary" + "tournament_event_id" "14" + "tournament_team_id" "0" + } + "3055" + { + "name" "london2018_team_c9_graffiti" + "item_name" "#StickerKit_london2018_team_c9" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/c9_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "33" + } + "3056" + { + "name" "london2018_team_faze_graffiti" + "item_name" "#StickerKit_london2018_team_faze" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "61" + } + "3057" + { + "name" "london2018_team_navi_graffiti" + "item_name" "#StickerKit_london2018_team_navi" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "12" + } + "3058" + { + "name" "london2018_team_mibr_graffiti" + "item_name" "#StickerKit_london2018_team_mibr" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/mibr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "80" + } + "3059" + { + "name" "london2018_team_mss_graffiti" + "item_name" "#StickerKit_london2018_team_mss" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/mss_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "29" + } + "3060" + { + "name" "london2018_team_wins_graffiti" + "item_name" "#StickerKit_london2018_team_wins" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/wins_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "83" + } + "3061" + { + "name" "london2018_team_g2_graffiti" + "item_name" "#StickerKit_london2018_team_g2" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/g2_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "59" + } + "3062" + { + "name" "london2018_team_fntc_graffiti" + "item_name" "#StickerKit_london2018_team_fntc" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/fntc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "6" + } + "3063" + { + "name" "london2018_team_gamb_graffiti" + "item_name" "#StickerKit_london2018_team_gamb" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/gamb_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "63" + } + "3064" + { + "name" "london2018_team_vega_graffiti" + "item_name" "#StickerKit_london2018_team_vega" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/vega_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "70" + } + "3065" + { + "name" "london2018_team_spc_graffiti" + "item_name" "#StickerKit_london2018_team_spc" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/spc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "73" + } + "3066" + { + "name" "london2018_team_big_graffiti" + "item_name" "#StickerKit_london2018_team_big" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/big_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "69" + } + "3067" + { + "name" "london2018_team_astr_graffiti" + "item_name" "#StickerKit_london2018_team_astr" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/astr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "60" + } + "3068" + { + "name" "london2018_team_liq_graffiti" + "item_name" "#StickerKit_london2018_team_liq" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "48" + } + "3069" + { + "name" "london2018_team_nor_graffiti" + "item_name" "#StickerKit_london2018_team_nor" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/nor_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "68" + } + "3070" + { + "name" "london2018_team_vp_graffiti" + "item_name" "#StickerKit_london2018_team_vp" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/vp_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "31" + } + "3071" + { + "name" "london2018_team_nip_graffiti" + "item_name" "#StickerKit_london2018_team_nip" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/nip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "1" + } + "3072" + { + "name" "london2018_team_col_graffiti" + "item_name" "#StickerKit_london2018_team_col" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/col_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "3" + } + "3073" + { + "name" "london2018_team_hlr_graffiti" + "item_name" "#StickerKit_london2018_team_hlr" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/hlr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "25" + } + "3074" + { + "name" "london2018_team_ren_graffiti" + "item_name" "#StickerKit_london2018_team_ren" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/ren_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "53" + } + "3075" + { + "name" "london2018_team_optc_graffiti" + "item_name" "#StickerKit_london2018_team_optc" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/optc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "66" + } + "3076" + { + "name" "london2018_team_rog_graffiti" + "item_name" "#StickerKit_london2018_team_rog" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/rog_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "82" + } + "3077" + { + "name" "london2018_team_spir_graffiti" + "item_name" "#StickerKit_london2018_team_spir" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/spir_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "81" + } + "3078" + { + "name" "london2018_team_tyl_graffiti" + "item_name" "#StickerKit_london2018_team_tyl" + "description_string" "#EventItemDesc_london2018_graffiti_team" + "sticker_material" "london2018/tyl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "74" + } + "3079" + { + "name" "london2018_team_faceit_graffiti" + "item_name" "#StickerKit_london2018_team_faceit" + "description_string" "#EventItemDesc_london2018_graffiti_org" + "sticker_material" "london2018/faceit_graffiti" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "0" + } + "3080" + { + "name" "london2018_signature_golden" + "item_name" "#StickerKit_london2018_signature_golden" + "description_string" "#StickerKit_desc_london2018_signature_golden" + "sticker_material" "london2018/sig_golden" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "116509497" + } + "3081" + { + "name" "london2018_signature_golden_foil" + "item_name" "#StickerKit_london2018_signature_golden_foil" + "description_string" "#StickerKit_desc_london2018_signature_golden_foil" + "sticker_material" "london2018/sig_golden_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "116509497" + } + "3082" + { + "name" "london2018_signature_golden_gold" + "item_name" "#StickerKit_london2018_signature_golden_gold" + "description_string" "#StickerKit_desc_london2018_signature_golden_gold" + "sticker_material" "london2018/sig_golden_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "116509497" + } + "3083" + { + "name" "london2018_signature_autimatic" + "item_name" "#StickerKit_london2018_signature_autimatic" + "description_string" "#StickerKit_desc_london2018_signature_autimatic" + "sticker_material" "london2018/sig_autimatic" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "3084" + { + "name" "london2018_signature_autimatic_foil" + "item_name" "#StickerKit_london2018_signature_autimatic_foil" + "description_string" "#StickerKit_desc_london2018_signature_autimatic_foil" + "sticker_material" "london2018/sig_autimatic_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "3085" + { + "name" "london2018_signature_autimatic_gold" + "item_name" "#StickerKit_london2018_signature_autimatic_gold" + "description_string" "#StickerKit_desc_london2018_signature_autimatic_gold" + "sticker_material" "london2018/sig_autimatic_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "3086" + { + "name" "london2018_signature_rush" + "item_name" "#StickerKit_london2018_signature_rush" + "description_string" "#StickerKit_desc_london2018_signature_rush" + "sticker_material" "london2018/sig_rush" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "3087" + { + "name" "london2018_signature_rush_foil" + "item_name" "#StickerKit_london2018_signature_rush_foil" + "description_string" "#StickerKit_desc_london2018_signature_rush_foil" + "sticker_material" "london2018/sig_rush_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "3088" + { + "name" "london2018_signature_rush_gold" + "item_name" "#StickerKit_london2018_signature_rush_gold" + "description_string" "#StickerKit_desc_london2018_signature_rush_gold" + "sticker_material" "london2018/sig_rush_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "3089" + { + "name" "london2018_signature_styko" + "item_name" "#StickerKit_london2018_signature_styko" + "description_string" "#StickerKit_desc_london2018_signature_styko" + "sticker_material" "london2018/sig_styko" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "55928431" + } + "3090" + { + "name" "london2018_signature_styko_foil" + "item_name" "#StickerKit_london2018_signature_styko_foil" + "description_string" "#StickerKit_desc_london2018_signature_styko_foil" + "sticker_material" "london2018/sig_styko_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "55928431" + } + "3091" + { + "name" "london2018_signature_styko_gold" + "item_name" "#StickerKit_london2018_signature_styko_gold" + "description_string" "#StickerKit_desc_london2018_signature_styko_gold" + "sticker_material" "london2018/sig_styko_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "55928431" + } + "3092" + { + "name" "london2018_signature_skadoodle" + "item_name" "#StickerKit_london2018_signature_skadoodle" + "description_string" "#StickerKit_desc_london2018_signature_skadoodle" + "sticker_material" "london2018/sig_skadoodle" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "3093" + { + "name" "london2018_signature_skadoodle_foil" + "item_name" "#StickerKit_london2018_signature_skadoodle_foil" + "description_string" "#StickerKit_desc_london2018_signature_skadoodle_foil" + "sticker_material" "london2018/sig_skadoodle_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "3094" + { + "name" "london2018_signature_skadoodle_gold" + "item_name" "#StickerKit_london2018_signature_skadoodle_gold" + "description_string" "#StickerKit_desc_london2018_signature_skadoodle_gold" + "sticker_material" "london2018/sig_skadoodle_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "33" + "tournament_player_id" "21075725" + } + "3095" + { + "name" "london2018_signature_guardian" + "item_name" "#StickerKit_london2018_signature_guardian" + "description_string" "#StickerKit_desc_london2018_signature_guardian" + "sticker_material" "london2018/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "3096" + { + "name" "london2018_signature_guardian_foil" + "item_name" "#StickerKit_london2018_signature_guardian_foil" + "description_string" "#StickerKit_desc_london2018_signature_guardian_foil" + "sticker_material" "london2018/sig_guardian_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "3097" + { + "name" "london2018_signature_guardian_gold" + "item_name" "#StickerKit_london2018_signature_guardian_gold" + "description_string" "#StickerKit_desc_london2018_signature_guardian_gold" + "sticker_material" "london2018/sig_guardian_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "3098" + { + "name" "london2018_signature_olofmeister" + "item_name" "#StickerKit_london2018_signature_olofmeister" + "description_string" "#StickerKit_desc_london2018_signature_olofmeister" + "sticker_material" "london2018/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "3099" + { + "name" "london2018_signature_olofmeister_foil" + "item_name" "#StickerKit_london2018_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_london2018_signature_olofmeister_foil" + "sticker_material" "london2018/sig_olofmeister_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "3100" + { + "name" "london2018_signature_olofmeister_gold" + "item_name" "#StickerKit_london2018_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_london2018_signature_olofmeister_gold" + "sticker_material" "london2018/sig_olofmeister_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "3101" + { + "name" "london2018_signature_karrigan" + "item_name" "#StickerKit_london2018_signature_karrigan" + "description_string" "#StickerKit_desc_london2018_signature_karrigan" + "sticker_material" "london2018/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "3102" + { + "name" "london2018_signature_karrigan_foil" + "item_name" "#StickerKit_london2018_signature_karrigan_foil" + "description_string" "#StickerKit_desc_london2018_signature_karrigan_foil" + "sticker_material" "london2018/sig_karrigan_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "3103" + { + "name" "london2018_signature_karrigan_gold" + "item_name" "#StickerKit_london2018_signature_karrigan_gold" + "description_string" "#StickerKit_desc_london2018_signature_karrigan_gold" + "sticker_material" "london2018/sig_karrigan_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "3104" + { + "name" "london2018_signature_rain" + "item_name" "#StickerKit_london2018_signature_rain" + "description_string" "#StickerKit_desc_london2018_signature_rain" + "sticker_material" "london2018/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "3105" + { + "name" "london2018_signature_rain_foil" + "item_name" "#StickerKit_london2018_signature_rain_foil" + "description_string" "#StickerKit_desc_london2018_signature_rain_foil" + "sticker_material" "london2018/sig_rain_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "3106" + { + "name" "london2018_signature_rain_gold" + "item_name" "#StickerKit_london2018_signature_rain_gold" + "description_string" "#StickerKit_desc_london2018_signature_rain_gold" + "sticker_material" "london2018/sig_rain_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "3107" + { + "name" "london2018_signature_niko" + "item_name" "#StickerKit_london2018_signature_niko" + "description_string" "#StickerKit_desc_london2018_signature_niko" + "sticker_material" "london2018/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "3108" + { + "name" "london2018_signature_niko_foil" + "item_name" "#StickerKit_london2018_signature_niko_foil" + "description_string" "#StickerKit_desc_london2018_signature_niko_foil" + "sticker_material" "london2018/sig_niko_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "3109" + { + "name" "london2018_signature_niko_gold" + "item_name" "#StickerKit_london2018_signature_niko_gold" + "description_string" "#StickerKit_desc_london2018_signature_niko_gold" + "sticker_material" "london2018/sig_niko_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "3110" + { + "name" "london2018_signature_electronic" + "item_name" "#StickerKit_london2018_signature_electronic" + "description_string" "#StickerKit_desc_london2018_signature_electronic" + "sticker_material" "london2018/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "3111" + { + "name" "london2018_signature_electronic_foil" + "item_name" "#StickerKit_london2018_signature_electronic_foil" + "description_string" "#StickerKit_desc_london2018_signature_electronic_foil" + "sticker_material" "london2018/sig_electronic_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "3112" + { + "name" "london2018_signature_electronic_gold" + "item_name" "#StickerKit_london2018_signature_electronic_gold" + "description_string" "#StickerKit_desc_london2018_signature_electronic_gold" + "sticker_material" "london2018/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "3113" + { + "name" "london2018_signature_zeus" + "item_name" "#StickerKit_london2018_signature_zeus" + "description_string" "#StickerKit_desc_london2018_signature_zeus" + "sticker_material" "london2018/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "3114" + { + "name" "london2018_signature_zeus_foil" + "item_name" "#StickerKit_london2018_signature_zeus_foil" + "description_string" "#StickerKit_desc_london2018_signature_zeus_foil" + "sticker_material" "london2018/sig_zeus_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "3115" + { + "name" "london2018_signature_zeus_gold" + "item_name" "#StickerKit_london2018_signature_zeus_gold" + "description_string" "#StickerKit_desc_london2018_signature_zeus_gold" + "sticker_material" "london2018/sig_zeus_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "3116" + { + "name" "london2018_signature_s1mple" + "item_name" "#StickerKit_london2018_signature_s1mple" + "description_string" "#StickerKit_desc_london2018_signature_s1mple" + "sticker_material" "london2018/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "3117" + { + "name" "london2018_signature_s1mple_foil" + "item_name" "#StickerKit_london2018_signature_s1mple_foil" + "description_string" "#StickerKit_desc_london2018_signature_s1mple_foil" + "sticker_material" "london2018/sig_s1mple_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "3118" + { + "name" "london2018_signature_s1mple_gold" + "item_name" "#StickerKit_london2018_signature_s1mple_gold" + "description_string" "#StickerKit_desc_london2018_signature_s1mple_gold" + "sticker_material" "london2018/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "3119" + { + "name" "london2018_signature_edward" + "item_name" "#StickerKit_london2018_signature_edward" + "description_string" "#StickerKit_desc_london2018_signature_edward" + "sticker_material" "london2018/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "3120" + { + "name" "london2018_signature_edward_foil" + "item_name" "#StickerKit_london2018_signature_edward_foil" + "description_string" "#StickerKit_desc_london2018_signature_edward_foil" + "sticker_material" "london2018/sig_edward_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "3121" + { + "name" "london2018_signature_edward_gold" + "item_name" "#StickerKit_london2018_signature_edward_gold" + "description_string" "#StickerKit_desc_london2018_signature_edward_gold" + "sticker_material" "london2018/sig_edward_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "3122" + { + "name" "london2018_signature_flamie" + "item_name" "#StickerKit_london2018_signature_flamie" + "description_string" "#StickerKit_desc_london2018_signature_flamie" + "sticker_material" "london2018/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "3123" + { + "name" "london2018_signature_flamie_foil" + "item_name" "#StickerKit_london2018_signature_flamie_foil" + "description_string" "#StickerKit_desc_london2018_signature_flamie_foil" + "sticker_material" "london2018/sig_flamie_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "3124" + { + "name" "london2018_signature_flamie_gold" + "item_name" "#StickerKit_london2018_signature_flamie_gold" + "description_string" "#StickerKit_desc_london2018_signature_flamie_gold" + "sticker_material" "london2018/sig_flamie_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "3125" + { + "name" "london2018_signature_coldzera" + "item_name" "#StickerKit_london2018_signature_coldzera" + "description_string" "#StickerKit_desc_london2018_signature_coldzera" + "sticker_material" "london2018/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "3126" + { + "name" "london2018_signature_coldzera_foil" + "item_name" "#StickerKit_london2018_signature_coldzera_foil" + "description_string" "#StickerKit_desc_london2018_signature_coldzera_foil" + "sticker_material" "london2018/sig_coldzera_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "3127" + { + "name" "london2018_signature_coldzera_gold" + "item_name" "#StickerKit_london2018_signature_coldzera_gold" + "description_string" "#StickerKit_desc_london2018_signature_coldzera_gold" + "sticker_material" "london2018/sig_coldzera_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "3128" + { + "name" "london2018_signature_fallen" + "item_name" "#StickerKit_london2018_signature_fallen" + "description_string" "#StickerKit_desc_london2018_signature_fallen" + "sticker_material" "london2018/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "3129" + { + "name" "london2018_signature_fallen_foil" + "item_name" "#StickerKit_london2018_signature_fallen_foil" + "description_string" "#StickerKit_desc_london2018_signature_fallen_foil" + "sticker_material" "london2018/sig_fallen_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "3130" + { + "name" "london2018_signature_fallen_gold" + "item_name" "#StickerKit_london2018_signature_fallen_gold" + "description_string" "#StickerKit_desc_london2018_signature_fallen_gold" + "sticker_material" "london2018/sig_fallen_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "3131" + { + "name" "london2018_signature_tarik" + "item_name" "#StickerKit_london2018_signature_tarik" + "description_string" "#StickerKit_desc_london2018_signature_tarik" + "sticker_material" "london2018/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "18216247" + } + "3132" + { + "name" "london2018_signature_tarik_foil" + "item_name" "#StickerKit_london2018_signature_tarik_foil" + "description_string" "#StickerKit_desc_london2018_signature_tarik_foil" + "sticker_material" "london2018/sig_tarik_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "18216247" + } + "3133" + { + "name" "london2018_signature_tarik_gold" + "item_name" "#StickerKit_london2018_signature_tarik_gold" + "description_string" "#StickerKit_desc_london2018_signature_tarik_gold" + "sticker_material" "london2018/sig_tarik_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "18216247" + } + "3134" + { + "name" "london2018_signature_stewie2k" + "item_name" "#StickerKit_london2018_signature_stewie2k" + "description_string" "#StickerKit_desc_london2018_signature_stewie2k" + "sticker_material" "london2018/sig_stewie2k" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "38738282" + } + "3135" + { + "name" "london2018_signature_stewie2k_foil" + "item_name" "#StickerKit_london2018_signature_stewie2k_foil" + "description_string" "#StickerKit_desc_london2018_signature_stewie2k_foil" + "sticker_material" "london2018/sig_stewie2k_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "38738282" + } + "3136" + { + "name" "london2018_signature_stewie2k_gold" + "item_name" "#StickerKit_london2018_signature_stewie2k_gold" + "description_string" "#StickerKit_desc_london2018_signature_stewie2k_gold" + "sticker_material" "london2018/sig_stewie2k_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "38738282" + } + "3137" + { + "name" "london2018_signature_fer" + "item_name" "#StickerKit_london2018_signature_fer" + "description_string" "#StickerKit_desc_london2018_signature_fer" + "sticker_material" "london2018/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "3138" + { + "name" "london2018_signature_fer_foil" + "item_name" "#StickerKit_london2018_signature_fer_foil" + "description_string" "#StickerKit_desc_london2018_signature_fer_foil" + "sticker_material" "london2018/sig_fer_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "3139" + { + "name" "london2018_signature_fer_gold" + "item_name" "#StickerKit_london2018_signature_fer_gold" + "description_string" "#StickerKit_desc_london2018_signature_fer_gold" + "sticker_material" "london2018/sig_fer_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "3140" + { + "name" "london2018_signature_snax" + "item_name" "#StickerKit_london2018_signature_snax" + "description_string" "#StickerKit_desc_london2018_signature_snax" + "sticker_material" "london2018/sig_snax" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "21875845" + } + "3141" + { + "name" "london2018_signature_snax_foil" + "item_name" "#StickerKit_london2018_signature_snax_foil" + "description_string" "#StickerKit_desc_london2018_signature_snax_foil" + "sticker_material" "london2018/sig_snax_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "21875845" + } + "3142" + { + "name" "london2018_signature_snax_gold" + "item_name" "#StickerKit_london2018_signature_snax_gold" + "description_string" "#StickerKit_desc_london2018_signature_snax_gold" + "sticker_material" "london2018/sig_snax_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "21875845" + } + "3143" + { + "name" "london2018_signature_chrisj" + "item_name" "#StickerKit_london2018_signature_chrisj" + "description_string" "#StickerKit_desc_london2018_signature_chrisj" + "sticker_material" "london2018/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "3144" + { + "name" "london2018_signature_chrisj_foil" + "item_name" "#StickerKit_london2018_signature_chrisj_foil" + "description_string" "#StickerKit_desc_london2018_signature_chrisj_foil" + "sticker_material" "london2018/sig_chrisj_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "3145" + { + "name" "london2018_signature_chrisj_gold" + "item_name" "#StickerKit_london2018_signature_chrisj_gold" + "description_string" "#StickerKit_desc_london2018_signature_chrisj_gold" + "sticker_material" "london2018/sig_chrisj_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "3146" + { + "name" "london2018_signature_ropz" + "item_name" "#StickerKit_london2018_signature_ropz" + "description_string" "#StickerKit_desc_london2018_signature_ropz" + "sticker_material" "london2018/sig_ropz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "3147" + { + "name" "london2018_signature_ropz_foil" + "item_name" "#StickerKit_london2018_signature_ropz_foil" + "description_string" "#StickerKit_desc_london2018_signature_ropz_foil" + "sticker_material" "london2018/sig_ropz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "3148" + { + "name" "london2018_signature_ropz_gold" + "item_name" "#StickerKit_london2018_signature_ropz_gold" + "description_string" "#StickerKit_desc_london2018_signature_ropz_gold" + "sticker_material" "london2018/sig_ropz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "3149" + { + "name" "london2018_signature_sunny" + "item_name" "#StickerKit_london2018_signature_sunny" + "description_string" "#StickerKit_desc_london2018_signature_sunny" + "sticker_material" "london2018/sig_sunny" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "57405333" + } + "3150" + { + "name" "london2018_signature_sunny_foil" + "item_name" "#StickerKit_london2018_signature_sunny_foil" + "description_string" "#StickerKit_desc_london2018_signature_sunny_foil" + "sticker_material" "london2018/sig_sunny_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "57405333" + } + "3151" + { + "name" "london2018_signature_sunny_gold" + "item_name" "#StickerKit_london2018_signature_sunny_gold" + "description_string" "#StickerKit_desc_london2018_signature_sunny_gold" + "sticker_material" "london2018/sig_sunny_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "57405333" + } + "3152" + { + "name" "london2018_signature_oskar" + "item_name" "#StickerKit_london2018_signature_oskar" + "description_string" "#StickerKit_desc_london2018_signature_oskar" + "sticker_material" "london2018/sig_oskar" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "3153" + { + "name" "london2018_signature_oskar_foil" + "item_name" "#StickerKit_london2018_signature_oskar_foil" + "description_string" "#StickerKit_desc_london2018_signature_oskar_foil" + "sticker_material" "london2018/sig_oskar_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "3154" + { + "name" "london2018_signature_oskar_gold" + "item_name" "#StickerKit_london2018_signature_oskar_gold" + "description_string" "#StickerKit_desc_london2018_signature_oskar_gold" + "sticker_material" "london2018/sig_oskar_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "29" + "tournament_player_id" "171425088" + } + "3155" + { + "name" "london2018_signature_jmqa" + "item_name" "#StickerKit_london2018_signature_jmqa" + "description_string" "#StickerKit_desc_london2018_signature_jmqa" + "sticker_material" "london2018/sig_jmqa" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "115223433" + } + "3156" + { + "name" "london2018_signature_jmqa_foil" + "item_name" "#StickerKit_london2018_signature_jmqa_foil" + "description_string" "#StickerKit_desc_london2018_signature_jmqa_foil" + "sticker_material" "london2018/sig_jmqa_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "115223433" + } + "3157" + { + "name" "london2018_signature_jmqa_gold" + "item_name" "#StickerKit_london2018_signature_jmqa_gold" + "description_string" "#StickerKit_desc_london2018_signature_jmqa_gold" + "sticker_material" "london2018/sig_jmqa_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "115223433" + } + "3158" + { + "name" "london2018_signature_kvik" + "item_name" "#StickerKit_london2018_signature_kvik" + "description_string" "#StickerKit_desc_london2018_signature_kvik" + "sticker_material" "london2018/sig_kvik" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "40982505" + } + "3159" + { + "name" "london2018_signature_kvik_foil" + "item_name" "#StickerKit_london2018_signature_kvik_foil" + "description_string" "#StickerKit_desc_london2018_signature_kvik_foil" + "sticker_material" "london2018/sig_kvik_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "40982505" + } + "3160" + { + "name" "london2018_signature_kvik_gold" + "item_name" "#StickerKit_london2018_signature_kvik_gold" + "description_string" "#StickerKit_desc_london2018_signature_kvik_gold" + "sticker_material" "london2018/sig_kvik_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "40982505" + } + "3161" + { + "name" "london2018_signature_balblna" + "item_name" "#StickerKit_london2018_signature_balblna" + "description_string" "#StickerKit_desc_london2018_signature_balblna" + "sticker_material" "london2018/sig_balblna" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "50204800" + } + "3162" + { + "name" "london2018_signature_balblna_foil" + "item_name" "#StickerKit_london2018_signature_balblna_foil" + "description_string" "#StickerKit_desc_london2018_signature_balblna_foil" + "sticker_material" "london2018/sig_balblna_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "50204800" + } + "3163" + { + "name" "london2018_signature_balblna_gold" + "item_name" "#StickerKit_london2018_signature_balblna_gold" + "description_string" "#StickerKit_desc_london2018_signature_balblna_gold" + "sticker_material" "london2018/sig_balblna_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "50204800" + } + "3164" + { + "name" "london2018_signature_waterfallz" + "item_name" "#StickerKit_london2018_signature_waterfallz" + "description_string" "#StickerKit_desc_london2018_signature_waterfallz" + "sticker_material" "london2018/sig_waterfallz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "12720124" + } + "3165" + { + "name" "london2018_signature_waterfallz_foil" + "item_name" "#StickerKit_london2018_signature_waterfallz_foil" + "description_string" "#StickerKit_desc_london2018_signature_waterfallz_foil" + "sticker_material" "london2018/sig_waterfallz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "12720124" + } + "3166" + { + "name" "london2018_signature_waterfallz_gold" + "item_name" "#StickerKit_london2018_signature_waterfallz_gold" + "description_string" "#StickerKit_desc_london2018_signature_waterfallz_gold" + "sticker_material" "london2018/sig_waterfallz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "12720124" + } + "3167" + { + "name" "london2018_signature_boombl4" + "item_name" "#StickerKit_london2018_signature_boombl4" + "description_string" "#StickerKit_desc_london2018_signature_boombl4" + "sticker_material" "london2018/sig_boombl4" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "185941338" + } + "3168" + { + "name" "london2018_signature_boombl4_foil" + "item_name" "#StickerKit_london2018_signature_boombl4_foil" + "description_string" "#StickerKit_desc_london2018_signature_boombl4_foil" + "sticker_material" "london2018/sig_boombl4_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "185941338" + } + "3169" + { + "name" "london2018_signature_boombl4_gold" + "item_name" "#StickerKit_london2018_signature_boombl4_gold" + "description_string" "#StickerKit_desc_london2018_signature_boombl4_gold" + "sticker_material" "london2018/sig_boombl4_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "83" + "tournament_player_id" "185941338" + } + "3170" + { + "name" "london2018_signature_kennys" + "item_name" "#StickerKit_london2018_signature_kennys" + "description_string" "#StickerKit_desc_london2018_signature_kennys" + "sticker_material" "london2018/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "3171" + { + "name" "london2018_signature_kennys_foil" + "item_name" "#StickerKit_london2018_signature_kennys_foil" + "description_string" "#StickerKit_desc_london2018_signature_kennys_foil" + "sticker_material" "london2018/sig_kennys_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "3172" + { + "name" "london2018_signature_kennys_gold" + "item_name" "#StickerKit_london2018_signature_kennys_gold" + "description_string" "#StickerKit_desc_london2018_signature_kennys_gold" + "sticker_material" "london2018/sig_kennys_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "3173" + { + "name" "london2018_signature_bodyy" + "item_name" "#StickerKit_london2018_signature_bodyy" + "description_string" "#StickerKit_desc_london2018_signature_bodyy" + "sticker_material" "london2018/sig_bodyy" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "3174" + { + "name" "london2018_signature_bodyy_foil" + "item_name" "#StickerKit_london2018_signature_bodyy_foil" + "description_string" "#StickerKit_desc_london2018_signature_bodyy_foil" + "sticker_material" "london2018/sig_bodyy_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "3175" + { + "name" "london2018_signature_bodyy_gold" + "item_name" "#StickerKit_london2018_signature_bodyy_gold" + "description_string" "#StickerKit_desc_london2018_signature_bodyy_gold" + "sticker_material" "london2018/sig_bodyy_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "3176" + { + "name" "london2018_signature_shox" + "item_name" "#StickerKit_london2018_signature_shox" + "description_string" "#StickerKit_desc_london2018_signature_shox" + "sticker_material" "london2018/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "3177" + { + "name" "london2018_signature_shox_foil" + "item_name" "#StickerKit_london2018_signature_shox_foil" + "description_string" "#StickerKit_desc_london2018_signature_shox_foil" + "sticker_material" "london2018/sig_shox_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "3178" + { + "name" "london2018_signature_shox_gold" + "item_name" "#StickerKit_london2018_signature_shox_gold" + "description_string" "#StickerKit_desc_london2018_signature_shox_gold" + "sticker_material" "london2018/sig_shox_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "3179" + { + "name" "london2018_signature_ex6tenz" + "item_name" "#StickerKit_london2018_signature_ex6tenz" + "description_string" "#StickerKit_desc_london2018_signature_ex6tenz" + "sticker_material" "london2018/sig_ex6tenz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "11737333" + } + "3180" + { + "name" "london2018_signature_ex6tenz_foil" + "item_name" "#StickerKit_london2018_signature_ex6tenz_foil" + "description_string" "#StickerKit_desc_london2018_signature_ex6tenz_foil" + "sticker_material" "london2018/sig_ex6tenz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "11737333" + } + "3181" + { + "name" "london2018_signature_ex6tenz_gold" + "item_name" "#StickerKit_london2018_signature_ex6tenz_gold" + "description_string" "#StickerKit_desc_london2018_signature_ex6tenz_gold" + "sticker_material" "london2018/sig_ex6tenz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "11737333" + } + "3182" + { + "name" "london2018_signature_smithzz" + "item_name" "#StickerKit_london2018_signature_smithzz" + "description_string" "#StickerKit_desc_london2018_signature_smithzz" + "sticker_material" "london2018/sig_smithzz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "3183" + { + "name" "london2018_signature_smithzz_foil" + "item_name" "#StickerKit_london2018_signature_smithzz_foil" + "description_string" "#StickerKit_desc_london2018_signature_smithzz_foil" + "sticker_material" "london2018/sig_smithzz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "3184" + { + "name" "london2018_signature_smithzz_gold" + "item_name" "#StickerKit_london2018_signature_smithzz_gold" + "description_string" "#StickerKit_desc_london2018_signature_smithzz_gold" + "sticker_material" "london2018/sig_smithzz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "59" + "tournament_player_id" "14321919" + } + "3185" + { + "name" "london2018_signature_draken" + "item_name" "#StickerKit_london2018_signature_draken" + "description_string" "#StickerKit_desc_london2018_signature_draken" + "sticker_material" "london2018/sig_draken" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "159123007" + } + "3186" + { + "name" "london2018_signature_draken_foil" + "item_name" "#StickerKit_london2018_signature_draken_foil" + "description_string" "#StickerKit_desc_london2018_signature_draken_foil" + "sticker_material" "london2018/sig_draken_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "159123007" + } + "3187" + { + "name" "london2018_signature_draken_gold" + "item_name" "#StickerKit_london2018_signature_draken_gold" + "description_string" "#StickerKit_desc_london2018_signature_draken_gold" + "sticker_material" "london2018/sig_draken_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "159123007" + } + "3188" + { + "name" "london2018_signature_jw" + "item_name" "#StickerKit_london2018_signature_jw" + "description_string" "#StickerKit_desc_london2018_signature_jw" + "sticker_material" "london2018/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "3189" + { + "name" "london2018_signature_jw_foil" + "item_name" "#StickerKit_london2018_signature_jw_foil" + "description_string" "#StickerKit_desc_london2018_signature_jw_foil" + "sticker_material" "london2018/sig_jw_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "3190" + { + "name" "london2018_signature_jw_gold" + "item_name" "#StickerKit_london2018_signature_jw_gold" + "description_string" "#StickerKit_desc_london2018_signature_jw_gold" + "sticker_material" "london2018/sig_jw_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "3191" + { + "name" "london2018_signature_krimz" + "item_name" "#StickerKit_london2018_signature_krimz" + "description_string" "#StickerKit_desc_london2018_signature_krimz" + "sticker_material" "london2018/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "3192" + { + "name" "london2018_signature_krimz_foil" + "item_name" "#StickerKit_london2018_signature_krimz_foil" + "description_string" "#StickerKit_desc_london2018_signature_krimz_foil" + "sticker_material" "london2018/sig_krimz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "3193" + { + "name" "london2018_signature_krimz_gold" + "item_name" "#StickerKit_london2018_signature_krimz_gold" + "description_string" "#StickerKit_desc_london2018_signature_krimz_gold" + "sticker_material" "london2018/sig_krimz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "3194" + { + "name" "london2018_signature_flusha" + "item_name" "#StickerKit_london2018_signature_flusha" + "description_string" "#StickerKit_desc_london2018_signature_flusha" + "sticker_material" "london2018/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "3195" + { + "name" "london2018_signature_flusha_foil" + "item_name" "#StickerKit_london2018_signature_flusha_foil" + "description_string" "#StickerKit_desc_london2018_signature_flusha_foil" + "sticker_material" "london2018/sig_flusha_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "3196" + { + "name" "london2018_signature_flusha_gold" + "item_name" "#StickerKit_london2018_signature_flusha_gold" + "description_string" "#StickerKit_desc_london2018_signature_flusha_gold" + "sticker_material" "london2018/sig_flusha_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "31082355" + } + "3197" + { + "name" "london2018_signature_xizt" + "item_name" "#StickerKit_london2018_signature_xizt" + "description_string" "#StickerKit_desc_london2018_signature_xizt" + "sticker_material" "london2018/sig_xizt" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "26224992" + } + "3198" + { + "name" "london2018_signature_xizt_foil" + "item_name" "#StickerKit_london2018_signature_xizt_foil" + "description_string" "#StickerKit_desc_london2018_signature_xizt_foil" + "sticker_material" "london2018/sig_xizt_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "26224992" + } + "3199" + { + "name" "london2018_signature_xizt_gold" + "item_name" "#StickerKit_london2018_signature_xizt_gold" + "description_string" "#StickerKit_desc_london2018_signature_xizt_gold" + "sticker_material" "london2018/sig_xizt_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "6" + "tournament_player_id" "26224992" + } + "3200" + { + "name" "london2018_signature_mir" + "item_name" "#StickerKit_london2018_signature_mir" + "description_string" "#StickerKit_desc_london2018_signature_mir" + "sticker_material" "london2018/sig_mir" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "40562076" + } + "3201" + { + "name" "london2018_signature_mir_foil" + "item_name" "#StickerKit_london2018_signature_mir_foil" + "description_string" "#StickerKit_desc_london2018_signature_mir_foil" + "sticker_material" "london2018/sig_mir_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "40562076" + } + "3202" + { + "name" "london2018_signature_mir_gold" + "item_name" "#StickerKit_london2018_signature_mir_gold" + "description_string" "#StickerKit_desc_london2018_signature_mir_gold" + "sticker_material" "london2018/sig_mir_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "40562076" + } + "3203" + { + "name" "london2018_signature_dosia" + "item_name" "#StickerKit_london2018_signature_dosia" + "description_string" "#StickerKit_desc_london2018_signature_dosia" + "sticker_material" "london2018/sig_dosia" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "3204" + { + "name" "london2018_signature_dosia_foil" + "item_name" "#StickerKit_london2018_signature_dosia_foil" + "description_string" "#StickerKit_desc_london2018_signature_dosia_foil" + "sticker_material" "london2018/sig_dosia_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "3205" + { + "name" "london2018_signature_dosia_gold" + "item_name" "#StickerKit_london2018_signature_dosia_gold" + "description_string" "#StickerKit_desc_london2018_signature_dosia_gold" + "sticker_material" "london2018/sig_dosia_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "146641530" + } + "3206" + { + "name" "london2018_signature_hobbit" + "item_name" "#StickerKit_london2018_signature_hobbit" + "description_string" "#StickerKit_desc_london2018_signature_hobbit" + "sticker_material" "london2018/sig_hobbit" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "3207" + { + "name" "london2018_signature_hobbit_foil" + "item_name" "#StickerKit_london2018_signature_hobbit_foil" + "description_string" "#StickerKit_desc_london2018_signature_hobbit_foil" + "sticker_material" "london2018/sig_hobbit_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "3208" + { + "name" "london2018_signature_hobbit_gold" + "item_name" "#StickerKit_london2018_signature_hobbit_gold" + "description_string" "#StickerKit_desc_london2018_signature_hobbit_gold" + "sticker_material" "london2018/sig_hobbit_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "68027030" + } + "3209" + { + "name" "london2018_signature_mou" + "item_name" "#StickerKit_london2018_signature_mou" + "description_string" "#StickerKit_desc_london2018_signature_mou" + "sticker_material" "london2018/sig_mou" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "3210" + { + "name" "london2018_signature_mou_foil" + "item_name" "#StickerKit_london2018_signature_mou_foil" + "description_string" "#StickerKit_desc_london2018_signature_mou_foil" + "sticker_material" "london2018/sig_mou_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "3211" + { + "name" "london2018_signature_mou_gold" + "item_name" "#StickerKit_london2018_signature_mou_gold" + "description_string" "#StickerKit_desc_london2018_signature_mou_gold" + "sticker_material" "london2018/sig_mou_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "52678767" + } + "3212" + { + "name" "london2018_signature_adrenkz" + "item_name" "#StickerKit_london2018_signature_adrenkz" + "description_string" "#StickerKit_desc_london2018_signature_adrenkz" + "sticker_material" "london2018/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "3213" + { + "name" "london2018_signature_adrenkz_foil" + "item_name" "#StickerKit_london2018_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_london2018_signature_adrenkz_foil" + "sticker_material" "london2018/sig_adrenkz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "3214" + { + "name" "london2018_signature_adrenkz_gold" + "item_name" "#StickerKit_london2018_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_london2018_signature_adrenkz_gold" + "sticker_material" "london2018/sig_adrenkz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "63" + "tournament_player_id" "46200979" + } + "3215" + { + "name" "london2018_signature_tonyblack" + "item_name" "#StickerKit_london2018_signature_tonyblack" + "description_string" "#StickerKit_desc_london2018_signature_tonyblack" + "sticker_material" "london2018/sig_tonyblack" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "15738602" + } + "3216" + { + "name" "london2018_signature_tonyblack_foil" + "item_name" "#StickerKit_london2018_signature_tonyblack_foil" + "description_string" "#StickerKit_desc_london2018_signature_tonyblack_foil" + "sticker_material" "london2018/sig_tonyblack_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "15738602" + } + "3217" + { + "name" "london2018_signature_tonyblack_gold" + "item_name" "#StickerKit_london2018_signature_tonyblack_gold" + "description_string" "#StickerKit_desc_london2018_signature_tonyblack_gold" + "sticker_material" "london2018/sig_tonyblack_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "15738602" + } + "3218" + { + "name" "london2018_signature_crush" + "item_name" "#StickerKit_london2018_signature_crush" + "description_string" "#StickerKit_desc_london2018_signature_crush" + "sticker_material" "london2018/sig_crush" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "36981424" + } + "3219" + { + "name" "london2018_signature_crush_foil" + "item_name" "#StickerKit_london2018_signature_crush_foil" + "description_string" "#StickerKit_desc_london2018_signature_crush_foil" + "sticker_material" "london2018/sig_crush_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "36981424" + } + "3220" + { + "name" "london2018_signature_crush_gold" + "item_name" "#StickerKit_london2018_signature_crush_gold" + "description_string" "#StickerKit_desc_london2018_signature_crush_gold" + "sticker_material" "london2018/sig_crush_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "36981424" + } + "3221" + { + "name" "london2018_signature_hutji" + "item_name" "#StickerKit_london2018_signature_hutji" + "description_string" "#StickerKit_desc_london2018_signature_hutji" + "sticker_material" "london2018/sig_hutji" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "3222" + { + "name" "london2018_signature_hutji_foil" + "item_name" "#StickerKit_london2018_signature_hutji_foil" + "description_string" "#StickerKit_desc_london2018_signature_hutji_foil" + "sticker_material" "london2018/sig_hutji_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "3223" + { + "name" "london2018_signature_hutji_gold" + "item_name" "#StickerKit_london2018_signature_hutji_gold" + "description_string" "#StickerKit_desc_london2018_signature_hutji_gold" + "sticker_material" "london2018/sig_hutji_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "3224" + { + "name" "london2018_signature_jr" + "item_name" "#StickerKit_london2018_signature_jr" + "description_string" "#StickerKit_desc_london2018_signature_jr" + "sticker_material" "london2018/sig_jr" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "3225" + { + "name" "london2018_signature_jr_foil" + "item_name" "#StickerKit_london2018_signature_jr_foil" + "description_string" "#StickerKit_desc_london2018_signature_jr_foil" + "sticker_material" "london2018/sig_jr_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "3226" + { + "name" "london2018_signature_jr_gold" + "item_name" "#StickerKit_london2018_signature_jr_gold" + "description_string" "#StickerKit_desc_london2018_signature_jr_gold" + "sticker_material" "london2018/sig_jr_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "3227" + { + "name" "london2018_signature_chopper" + "item_name" "#StickerKit_london2018_signature_chopper" + "description_string" "#StickerKit_desc_london2018_signature_chopper" + "sticker_material" "london2018/sig_chopper" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "3228" + { + "name" "london2018_signature_chopper_foil" + "item_name" "#StickerKit_london2018_signature_chopper_foil" + "description_string" "#StickerKit_desc_london2018_signature_chopper_foil" + "sticker_material" "london2018/sig_chopper_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "3229" + { + "name" "london2018_signature_chopper_gold" + "item_name" "#StickerKit_london2018_signature_chopper_gold" + "description_string" "#StickerKit_desc_london2018_signature_chopper_gold" + "sticker_material" "london2018/sig_chopper_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "3230" + { + "name" "london2018_signature_xantares" + "item_name" "#StickerKit_london2018_signature_xantares" + "description_string" "#StickerKit_desc_london2018_signature_xantares" + "sticker_material" "london2018/sig_xantares" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "83853068" + } + "3231" + { + "name" "london2018_signature_xantares_foil" + "item_name" "#StickerKit_london2018_signature_xantares_foil" + "description_string" "#StickerKit_desc_london2018_signature_xantares_foil" + "sticker_material" "london2018/sig_xantares_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "83853068" + } + "3232" + { + "name" "london2018_signature_xantares_gold" + "item_name" "#StickerKit_london2018_signature_xantares_gold" + "description_string" "#StickerKit_desc_london2018_signature_xantares_gold" + "sticker_material" "london2018/sig_xantares_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "83853068" + } + "3233" + { + "name" "london2018_signature_calyx" + "item_name" "#StickerKit_london2018_signature_calyx" + "description_string" "#StickerKit_desc_london2018_signature_calyx" + "sticker_material" "london2018/sig_calyx" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "92280537" + } + "3234" + { + "name" "london2018_signature_calyx_foil" + "item_name" "#StickerKit_london2018_signature_calyx_foil" + "description_string" "#StickerKit_desc_london2018_signature_calyx_foil" + "sticker_material" "london2018/sig_calyx_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "92280537" + } + "3235" + { + "name" "london2018_signature_calyx_gold" + "item_name" "#StickerKit_london2018_signature_calyx_gold" + "description_string" "#StickerKit_desc_london2018_signature_calyx_gold" + "sticker_material" "london2018/sig_calyx_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "92280537" + } + "3236" + { + "name" "london2018_signature_paz" + "item_name" "#StickerKit_london2018_signature_paz" + "description_string" "#StickerKit_desc_london2018_signature_paz" + "sticker_material" "london2018/sig_paz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "68524615" + } + "3237" + { + "name" "london2018_signature_paz_foil" + "item_name" "#StickerKit_london2018_signature_paz_foil" + "description_string" "#StickerKit_desc_london2018_signature_paz_foil" + "sticker_material" "london2018/sig_paz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "68524615" + } + "3238" + { + "name" "london2018_signature_paz_gold" + "item_name" "#StickerKit_london2018_signature_paz_gold" + "description_string" "#StickerKit_desc_london2018_signature_paz_gold" + "sticker_material" "london2018/sig_paz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "68524615" + } + "3239" + { + "name" "london2018_signature_ngin" + "item_name" "#StickerKit_london2018_signature_ngin" + "description_string" "#StickerKit_desc_london2018_signature_ngin" + "sticker_material" "london2018/sig_ngin" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "17887362" + } + "3240" + { + "name" "london2018_signature_ngin_foil" + "item_name" "#StickerKit_london2018_signature_ngin_foil" + "description_string" "#StickerKit_desc_london2018_signature_ngin_foil" + "sticker_material" "london2018/sig_ngin_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "17887362" + } + "3241" + { + "name" "london2018_signature_ngin_gold" + "item_name" "#StickerKit_london2018_signature_ngin_gold" + "description_string" "#StickerKit_desc_london2018_signature_ngin_gold" + "sticker_material" "london2018/sig_ngin_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "17887362" + } + "3242" + { + "name" "london2018_signature_maj3r" + "item_name" "#StickerKit_london2018_signature_maj3r" + "description_string" "#StickerKit_desc_london2018_signature_maj3r" + "sticker_material" "london2018/sig_maj3r" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "7167161" + } + "3243" + { + "name" "london2018_signature_maj3r_foil" + "item_name" "#StickerKit_london2018_signature_maj3r_foil" + "description_string" "#StickerKit_desc_london2018_signature_maj3r_foil" + "sticker_material" "london2018/sig_maj3r_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "7167161" + } + "3244" + { + "name" "london2018_signature_maj3r_gold" + "item_name" "#StickerKit_london2018_signature_maj3r_gold" + "description_string" "#StickerKit_desc_london2018_signature_maj3r_gold" + "sticker_material" "london2018/sig_maj3r_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "73" + "tournament_player_id" "7167161" + } + "3245" + { + "name" "london2018_signature_tizian" + "item_name" "#StickerKit_london2018_signature_tizian" + "description_string" "#StickerKit_desc_london2018_signature_tizian" + "sticker_material" "london2018/sig_tizian" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "37291208" + } + "3246" + { + "name" "london2018_signature_tizian_foil" + "item_name" "#StickerKit_london2018_signature_tizian_foil" + "description_string" "#StickerKit_desc_london2018_signature_tizian_foil" + "sticker_material" "london2018/sig_tizian_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "37291208" + } + "3247" + { + "name" "london2018_signature_tizian_gold" + "item_name" "#StickerKit_london2018_signature_tizian_gold" + "description_string" "#StickerKit_desc_london2018_signature_tizian_gold" + "sticker_material" "london2018/sig_tizian_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "37291208" + } + "3248" + { + "name" "london2018_signature_gobb" + "item_name" "#StickerKit_london2018_signature_gobb" + "description_string" "#StickerKit_desc_london2018_signature_gobb" + "sticker_material" "london2018/sig_gobb" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "3249" + { + "name" "london2018_signature_gobb_foil" + "item_name" "#StickerKit_london2018_signature_gobb_foil" + "description_string" "#StickerKit_desc_london2018_signature_gobb_foil" + "sticker_material" "london2018/sig_gobb_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "3250" + { + "name" "london2018_signature_gobb_gold" + "item_name" "#StickerKit_london2018_signature_gobb_gold" + "description_string" "#StickerKit_desc_london2018_signature_gobb_gold" + "sticker_material" "london2018/sig_gobb_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "3251" + { + "name" "london2018_signature_tabsen" + "item_name" "#StickerKit_london2018_signature_tabsen" + "description_string" "#StickerKit_desc_london2018_signature_tabsen" + "sticker_material" "london2018/sig_tabsen" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "3252" + { + "name" "london2018_signature_tabsen_foil" + "item_name" "#StickerKit_london2018_signature_tabsen_foil" + "description_string" "#StickerKit_desc_london2018_signature_tabsen_foil" + "sticker_material" "london2018/sig_tabsen_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "3253" + { + "name" "london2018_signature_tabsen_gold" + "item_name" "#StickerKit_london2018_signature_tabsen_gold" + "description_string" "#StickerKit_desc_london2018_signature_tabsen_gold" + "sticker_material" "london2018/sig_tabsen_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "3254" + { + "name" "london2018_signature_nex" + "item_name" "#StickerKit_london2018_signature_nex" + "description_string" "#StickerKit_desc_london2018_signature_nex" + "sticker_material" "london2018/sig_nex" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "3255" + { + "name" "london2018_signature_nex_foil" + "item_name" "#StickerKit_london2018_signature_nex_foil" + "description_string" "#StickerKit_desc_london2018_signature_nex_foil" + "sticker_material" "london2018/sig_nex_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "3256" + { + "name" "london2018_signature_nex_gold" + "item_name" "#StickerKit_london2018_signature_nex_gold" + "description_string" "#StickerKit_desc_london2018_signature_nex_gold" + "sticker_material" "london2018/sig_nex_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "90378773" + } + "3257" + { + "name" "london2018_signature_smooya" + "item_name" "#StickerKit_london2018_signature_smooya" + "description_string" "#StickerKit_desc_london2018_signature_smooya" + "sticker_material" "london2018/sig_smooya" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "211423593" + } + "3258" + { + "name" "london2018_signature_smooya_foil" + "item_name" "#StickerKit_london2018_signature_smooya_foil" + "description_string" "#StickerKit_desc_london2018_signature_smooya_foil" + "sticker_material" "london2018/sig_smooya_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "211423593" + } + "3259" + { + "name" "london2018_signature_smooya_gold" + "item_name" "#StickerKit_london2018_signature_smooya_gold" + "description_string" "#StickerKit_desc_london2018_signature_smooya_gold" + "sticker_material" "london2018/sig_smooya_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "69" + "tournament_player_id" "211423593" + } + "3260" + { + "name" "london2018_signature_dupreeh" + "item_name" "#StickerKit_london2018_signature_dupreeh" + "description_string" "#StickerKit_desc_london2018_signature_dupreeh" + "sticker_material" "london2018/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "3261" + { + "name" "london2018_signature_dupreeh_foil" + "item_name" "#StickerKit_london2018_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_london2018_signature_dupreeh_foil" + "sticker_material" "london2018/sig_dupreeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "3262" + { + "name" "london2018_signature_dupreeh_gold" + "item_name" "#StickerKit_london2018_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_london2018_signature_dupreeh_gold" + "sticker_material" "london2018/sig_dupreeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "3263" + { + "name" "london2018_signature_gla1ve" + "item_name" "#StickerKit_london2018_signature_gla1ve" + "description_string" "#StickerKit_desc_london2018_signature_gla1ve" + "sticker_material" "london2018/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "3264" + { + "name" "london2018_signature_gla1ve_foil" + "item_name" "#StickerKit_london2018_signature_gla1ve_foil" + "description_string" "#StickerKit_desc_london2018_signature_gla1ve_foil" + "sticker_material" "london2018/sig_gla1ve_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "3265" + { + "name" "london2018_signature_gla1ve_gold" + "item_name" "#StickerKit_london2018_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_london2018_signature_gla1ve_gold" + "sticker_material" "london2018/sig_gla1ve_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "3266" + { + "name" "london2018_signature_device" + "item_name" "#StickerKit_london2018_signature_device" + "description_string" "#StickerKit_desc_london2018_signature_device" + "sticker_material" "london2018/sig_device" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "3267" + { + "name" "london2018_signature_device_foil" + "item_name" "#StickerKit_london2018_signature_device_foil" + "description_string" "#StickerKit_desc_london2018_signature_device_foil" + "sticker_material" "london2018/sig_device_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "3268" + { + "name" "london2018_signature_device_gold" + "item_name" "#StickerKit_london2018_signature_device_gold" + "description_string" "#StickerKit_desc_london2018_signature_device_gold" + "sticker_material" "london2018/sig_device_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "3269" + { + "name" "london2018_signature_magisk" + "item_name" "#StickerKit_london2018_signature_magisk" + "description_string" "#StickerKit_desc_london2018_signature_magisk" + "sticker_material" "london2018/sig_magisk" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "3270" + { + "name" "london2018_signature_magisk_foil" + "item_name" "#StickerKit_london2018_signature_magisk_foil" + "description_string" "#StickerKit_desc_london2018_signature_magisk_foil" + "sticker_material" "london2018/sig_magisk_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "3271" + { + "name" "london2018_signature_magisk_gold" + "item_name" "#StickerKit_london2018_signature_magisk_gold" + "description_string" "#StickerKit_desc_london2018_signature_magisk_gold" + "sticker_material" "london2018/sig_magisk_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "3272" + { + "name" "london2018_signature_xyp9x" + "item_name" "#StickerKit_london2018_signature_xyp9x" + "description_string" "#StickerKit_desc_london2018_signature_xyp9x" + "sticker_material" "london2018/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "3273" + { + "name" "london2018_signature_xyp9x_foil" + "item_name" "#StickerKit_london2018_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_london2018_signature_xyp9x_foil" + "sticker_material" "london2018/sig_xyp9x_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "3274" + { + "name" "london2018_signature_xyp9x_gold" + "item_name" "#StickerKit_london2018_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_london2018_signature_xyp9x_gold" + "sticker_material" "london2018/sig_xyp9x_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "3275" + { + "name" "london2018_signature_elige" + "item_name" "#StickerKit_london2018_signature_elige" + "description_string" "#StickerKit_desc_london2018_signature_elige" + "sticker_material" "london2018/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "3276" + { + "name" "london2018_signature_elige_foil" + "item_name" "#StickerKit_london2018_signature_elige_foil" + "description_string" "#StickerKit_desc_london2018_signature_elige_foil" + "sticker_material" "london2018/sig_elige_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "3277" + { + "name" "london2018_signature_elige_gold" + "item_name" "#StickerKit_london2018_signature_elige_gold" + "description_string" "#StickerKit_desc_london2018_signature_elige_gold" + "sticker_material" "london2018/sig_elige_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "3278" + { + "name" "london2018_signature_taco" + "item_name" "#StickerKit_london2018_signature_taco" + "description_string" "#StickerKit_desc_london2018_signature_taco" + "sticker_material" "london2018/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "52876568" + } + "3279" + { + "name" "london2018_signature_taco_foil" + "item_name" "#StickerKit_london2018_signature_taco_foil" + "description_string" "#StickerKit_desc_london2018_signature_taco_foil" + "sticker_material" "london2018/sig_taco_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "52876568" + } + "3280" + { + "name" "london2018_signature_taco_gold" + "item_name" "#StickerKit_london2018_signature_taco_gold" + "description_string" "#StickerKit_desc_london2018_signature_taco_gold" + "sticker_material" "london2018/sig_taco_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "52876568" + } + "3281" + { + "name" "london2018_signature_twistzz" + "item_name" "#StickerKit_london2018_signature_twistzz" + "description_string" "#StickerKit_desc_london2018_signature_twistzz" + "sticker_material" "london2018/sig_twistzz" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "3282" + { + "name" "london2018_signature_twistzz_foil" + "item_name" "#StickerKit_london2018_signature_twistzz_foil" + "description_string" "#StickerKit_desc_london2018_signature_twistzz_foil" + "sticker_material" "london2018/sig_twistzz_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "3283" + { + "name" "london2018_signature_twistzz_gold" + "item_name" "#StickerKit_london2018_signature_twistzz_gold" + "description_string" "#StickerKit_desc_london2018_signature_twistzz_gold" + "sticker_material" "london2018/sig_twistzz_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "3284" + { + "name" "london2018_signature_naf" + "item_name" "#StickerKit_london2018_signature_naf" + "description_string" "#StickerKit_desc_london2018_signature_naf" + "sticker_material" "london2018/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "3285" + { + "name" "london2018_signature_naf_foil" + "item_name" "#StickerKit_london2018_signature_naf_foil" + "description_string" "#StickerKit_desc_london2018_signature_naf_foil" + "sticker_material" "london2018/sig_naf_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "3286" + { + "name" "london2018_signature_naf_gold" + "item_name" "#StickerKit_london2018_signature_naf_gold" + "description_string" "#StickerKit_desc_london2018_signature_naf_gold" + "sticker_material" "london2018/sig_naf_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "3287" + { + "name" "london2018_signature_nitro" + "item_name" "#StickerKit_london2018_signature_nitro" + "description_string" "#StickerKit_desc_london2018_signature_nitro" + "sticker_material" "london2018/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "3288" + { + "name" "london2018_signature_nitro_foil" + "item_name" "#StickerKit_london2018_signature_nitro_foil" + "description_string" "#StickerKit_desc_london2018_signature_nitro_foil" + "sticker_material" "london2018/sig_nitro_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "3289" + { + "name" "london2018_signature_nitro_gold" + "item_name" "#StickerKit_london2018_signature_nitro_gold" + "description_string" "#StickerKit_desc_london2018_signature_nitro_gold" + "sticker_material" "london2018/sig_nitro_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "3290" + { + "name" "london2018_signature_msl" + "item_name" "#StickerKit_london2018_signature_msl" + "description_string" "#StickerKit_desc_london2018_signature_msl" + "sticker_material" "london2018/sig_msl" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "3291" + { + "name" "london2018_signature_msl_foil" + "item_name" "#StickerKit_london2018_signature_msl_foil" + "description_string" "#StickerKit_desc_london2018_signature_msl_foil" + "sticker_material" "london2018/sig_msl_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "3292" + { + "name" "london2018_signature_msl_gold" + "item_name" "#StickerKit_london2018_signature_msl_gold" + "description_string" "#StickerKit_desc_london2018_signature_msl_gold" + "sticker_material" "london2018/sig_msl_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "24134891" + } + "3293" + { + "name" "london2018_signature_nikodk" + "item_name" "#StickerKit_london2018_signature_nikodk" + "description_string" "#StickerKit_desc_london2018_signature_nikodk" + "sticker_material" "london2018/sig_nikodk" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "29470855" + } + "3294" + { + "name" "london2018_signature_nikodk_foil" + "item_name" "#StickerKit_london2018_signature_nikodk_foil" + "description_string" "#StickerKit_desc_london2018_signature_nikodk_foil" + "sticker_material" "london2018/sig_nikodk_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "29470855" + } + "3295" + { + "name" "london2018_signature_nikodk_gold" + "item_name" "#StickerKit_london2018_signature_nikodk_gold" + "description_string" "#StickerKit_desc_london2018_signature_nikodk_gold" + "sticker_material" "london2018/sig_nikodk_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "29470855" + } + "3296" + { + "name" "london2018_signature_kjaerbye" + "item_name" "#StickerKit_london2018_signature_kjaerbye" + "description_string" "#StickerKit_desc_london2018_signature_kjaerbye" + "sticker_material" "london2018/sig_kjaerbye" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "59614824" + } + "3297" + { + "name" "london2018_signature_kjaerbye_foil" + "item_name" "#StickerKit_london2018_signature_kjaerbye_foil" + "description_string" "#StickerKit_desc_london2018_signature_kjaerbye_foil" + "sticker_material" "london2018/sig_kjaerbye_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "59614824" + } + "3298" + { + "name" "london2018_signature_kjaerbye_gold" + "item_name" "#StickerKit_london2018_signature_kjaerbye_gold" + "description_string" "#StickerKit_desc_london2018_signature_kjaerbye_gold" + "sticker_material" "london2018/sig_kjaerbye_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "59614824" + } + "3299" + { + "name" "london2018_signature_aizy" + "item_name" "#StickerKit_london2018_signature_aizy" + "description_string" "#StickerKit_desc_london2018_signature_aizy" + "sticker_material" "london2018/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "3300" + { + "name" "london2018_signature_aizy_foil" + "item_name" "#StickerKit_london2018_signature_aizy_foil" + "description_string" "#StickerKit_desc_london2018_signature_aizy_foil" + "sticker_material" "london2018/sig_aizy_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "3301" + { + "name" "london2018_signature_aizy_gold" + "item_name" "#StickerKit_london2018_signature_aizy_gold" + "description_string" "#StickerKit_desc_london2018_signature_aizy_gold" + "sticker_material" "london2018/sig_aizy_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "3302" + { + "name" "london2018_signature_v4lde" + "item_name" "#StickerKit_london2018_signature_v4lde" + "description_string" "#StickerKit_desc_london2018_signature_v4lde" + "sticker_material" "london2018/sig_v4lde" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "3303" + { + "name" "london2018_signature_v4lde_foil" + "item_name" "#StickerKit_london2018_signature_v4lde_foil" + "description_string" "#StickerKit_desc_london2018_signature_v4lde_foil" + "sticker_material" "london2018/sig_v4lde_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "3304" + { + "name" "london2018_signature_v4lde_gold" + "item_name" "#StickerKit_london2018_signature_v4lde_gold" + "description_string" "#StickerKit_desc_london2018_signature_v4lde_gold" + "sticker_material" "london2018/sig_v4lde_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "3305" + { + "name" "london2018_signature_byali" + "item_name" "#StickerKit_london2018_signature_byali" + "description_string" "#StickerKit_desc_london2018_signature_byali" + "sticker_material" "london2018/sig_byali" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "3306" + { + "name" "london2018_signature_byali_foil" + "item_name" "#StickerKit_london2018_signature_byali_foil" + "description_string" "#StickerKit_desc_london2018_signature_byali_foil" + "sticker_material" "london2018/sig_byali_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "3307" + { + "name" "london2018_signature_byali_gold" + "item_name" "#StickerKit_london2018_signature_byali_gold" + "description_string" "#StickerKit_desc_london2018_signature_byali_gold" + "sticker_material" "london2018/sig_byali_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "18860354" + } + "3308" + { + "name" "london2018_signature_pasha" + "item_name" "#StickerKit_london2018_signature_pasha" + "description_string" "#StickerKit_desc_london2018_signature_pasha" + "sticker_material" "london2018/sig_pasha" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "3309" + { + "name" "london2018_signature_pasha_foil" + "item_name" "#StickerKit_london2018_signature_pasha_foil" + "description_string" "#StickerKit_desc_london2018_signature_pasha_foil" + "sticker_material" "london2018/sig_pasha_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "3310" + { + "name" "london2018_signature_pasha_gold" + "item_name" "#StickerKit_london2018_signature_pasha_gold" + "description_string" "#StickerKit_desc_london2018_signature_pasha_gold" + "sticker_material" "london2018/sig_pasha_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "13580090" + } + "3311" + { + "name" "london2018_signature_neo" + "item_name" "#StickerKit_london2018_signature_neo" + "description_string" "#StickerKit_desc_london2018_signature_neo" + "sticker_material" "london2018/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "3312" + { + "name" "london2018_signature_neo_foil" + "item_name" "#StickerKit_london2018_signature_neo_foil" + "description_string" "#StickerKit_desc_london2018_signature_neo_foil" + "sticker_material" "london2018/sig_neo_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "3313" + { + "name" "london2018_signature_neo_gold" + "item_name" "#StickerKit_london2018_signature_neo_gold" + "description_string" "#StickerKit_desc_london2018_signature_neo_gold" + "sticker_material" "london2018/sig_neo_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "460206" + } + "3314" + { + "name" "london2018_signature_michu" + "item_name" "#StickerKit_london2018_signature_michu" + "description_string" "#StickerKit_desc_london2018_signature_michu" + "sticker_material" "london2018/sig_michu" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "60359075" + } + "3315" + { + "name" "london2018_signature_michu_foil" + "item_name" "#StickerKit_london2018_signature_michu_foil" + "description_string" "#StickerKit_desc_london2018_signature_michu_foil" + "sticker_material" "london2018/sig_michu_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "60359075" + } + "3316" + { + "name" "london2018_signature_michu_gold" + "item_name" "#StickerKit_london2018_signature_michu_gold" + "description_string" "#StickerKit_desc_london2018_signature_michu_gold" + "sticker_material" "london2018/sig_michu_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "60359075" + } + "3317" + { + "name" "london2018_signature_snatchie" + "item_name" "#StickerKit_london2018_signature_snatchie" + "description_string" "#StickerKit_desc_london2018_signature_snatchie" + "sticker_material" "london2018/sig_snatchie" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "111436809" + } + "3318" + { + "name" "london2018_signature_snatchie_foil" + "item_name" "#StickerKit_london2018_signature_snatchie_foil" + "description_string" "#StickerKit_desc_london2018_signature_snatchie_foil" + "sticker_material" "london2018/sig_snatchie_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "111436809" + } + "3319" + { + "name" "london2018_signature_snatchie_gold" + "item_name" "#StickerKit_london2018_signature_snatchie_gold" + "description_string" "#StickerKit_desc_london2018_signature_snatchie_gold" + "sticker_material" "london2018/sig_snatchie_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "31" + "tournament_player_id" "111436809" + } + "3320" + { + "name" "london2018_signature_getright" + "item_name" "#StickerKit_london2018_signature_getright" + "description_string" "#StickerKit_desc_london2018_signature_getright" + "sticker_material" "london2018/sig_getright" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "3321" + { + "name" "london2018_signature_getright_foil" + "item_name" "#StickerKit_london2018_signature_getright_foil" + "description_string" "#StickerKit_desc_london2018_signature_getright_foil" + "sticker_material" "london2018/sig_getright_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "3322" + { + "name" "london2018_signature_getright_gold" + "item_name" "#StickerKit_london2018_signature_getright_gold" + "description_string" "#StickerKit_desc_london2018_signature_getright_gold" + "sticker_material" "london2018/sig_getright_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "3323" + { + "name" "london2018_signature_forest" + "item_name" "#StickerKit_london2018_signature_forest" + "description_string" "#StickerKit_desc_london2018_signature_forest" + "sticker_material" "london2018/sig_forest" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "3324" + { + "name" "london2018_signature_forest_foil" + "item_name" "#StickerKit_london2018_signature_forest_foil" + "description_string" "#StickerKit_desc_london2018_signature_forest_foil" + "sticker_material" "london2018/sig_forest_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "3325" + { + "name" "london2018_signature_forest_gold" + "item_name" "#StickerKit_london2018_signature_forest_gold" + "description_string" "#StickerKit_desc_london2018_signature_forest_gold" + "sticker_material" "london2018/sig_forest_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "3326" + { + "name" "london2018_signature_lekro" + "item_name" "#StickerKit_london2018_signature_lekro" + "description_string" "#StickerKit_desc_london2018_signature_lekro" + "sticker_material" "london2018/sig_lekro" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "3327" + { + "name" "london2018_signature_lekro_foil" + "item_name" "#StickerKit_london2018_signature_lekro_foil" + "description_string" "#StickerKit_desc_london2018_signature_lekro_foil" + "sticker_material" "london2018/sig_lekro_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "3328" + { + "name" "london2018_signature_lekro_gold" + "item_name" "#StickerKit_london2018_signature_lekro_gold" + "description_string" "#StickerKit_desc_london2018_signature_lekro_gold" + "sticker_material" "london2018/sig_lekro_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "3329" + { + "name" "london2018_signature_rez" + "item_name" "#StickerKit_london2018_signature_rez" + "description_string" "#StickerKit_desc_london2018_signature_rez" + "sticker_material" "london2018/sig_rez" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "3330" + { + "name" "london2018_signature_rez_foil" + "item_name" "#StickerKit_london2018_signature_rez_foil" + "description_string" "#StickerKit_desc_london2018_signature_rez_foil" + "sticker_material" "london2018/sig_rez_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "3331" + { + "name" "london2018_signature_rez_gold" + "item_name" "#StickerKit_london2018_signature_rez_gold" + "description_string" "#StickerKit_desc_london2018_signature_rez_gold" + "sticker_material" "london2018/sig_rez_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "3332" + { + "name" "london2018_signature_dennis" + "item_name" "#StickerKit_london2018_signature_dennis" + "description_string" "#StickerKit_desc_london2018_signature_dennis" + "sticker_material" "london2018/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "108076825" + } + "3333" + { + "name" "london2018_signature_dennis_foil" + "item_name" "#StickerKit_london2018_signature_dennis_foil" + "description_string" "#StickerKit_desc_london2018_signature_dennis_foil" + "sticker_material" "london2018/sig_dennis_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "108076825" + } + "3334" + { + "name" "london2018_signature_dennis_gold" + "item_name" "#StickerKit_london2018_signature_dennis_gold" + "description_string" "#StickerKit_desc_london2018_signature_dennis_gold" + "sticker_material" "london2018/sig_dennis_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "1" + "tournament_player_id" "108076825" + } + "3335" + { + "name" "london2018_signature_android" + "item_name" "#StickerKit_london2018_signature_android" + "description_string" "#StickerKit_desc_london2018_signature_android" + "sticker_material" "london2018/sig_android" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "1936433" + } + "3336" + { + "name" "london2018_signature_android_foil" + "item_name" "#StickerKit_london2018_signature_android_foil" + "description_string" "#StickerKit_desc_london2018_signature_android_foil" + "sticker_material" "london2018/sig_android_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "1936433" + } + "3337" + { + "name" "london2018_signature_android_gold" + "item_name" "#StickerKit_london2018_signature_android_gold" + "description_string" "#StickerKit_desc_london2018_signature_android_gold" + "sticker_material" "london2018/sig_android_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "1936433" + } + "3338" + { + "name" "london2018_signature_stanislaw" + "item_name" "#StickerKit_london2018_signature_stanislaw" + "description_string" "#StickerKit_desc_london2018_signature_stanislaw" + "sticker_material" "london2018/sig_stanislaw" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "21583315" + } + "3339" + { + "name" "london2018_signature_stanislaw_foil" + "item_name" "#StickerKit_london2018_signature_stanislaw_foil" + "description_string" "#StickerKit_desc_london2018_signature_stanislaw_foil" + "sticker_material" "london2018/sig_stanislaw_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "21583315" + } + "3340" + { + "name" "london2018_signature_stanislaw_gold" + "item_name" "#StickerKit_london2018_signature_stanislaw_gold" + "description_string" "#StickerKit_desc_london2018_signature_stanislaw_gold" + "sticker_material" "london2018/sig_stanislaw_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "21583315" + } + "3341" + { + "name" "london2018_signature_dephh" + "item_name" "#StickerKit_london2018_signature_dephh" + "description_string" "#StickerKit_desc_london2018_signature_dephh" + "sticker_material" "london2018/sig_dephh" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "3342" + { + "name" "london2018_signature_dephh_foil" + "item_name" "#StickerKit_london2018_signature_dephh_foil" + "description_string" "#StickerKit_desc_london2018_signature_dephh_foil" + "sticker_material" "london2018/sig_dephh_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "3343" + { + "name" "london2018_signature_dephh_gold" + "item_name" "#StickerKit_london2018_signature_dephh_gold" + "description_string" "#StickerKit_desc_london2018_signature_dephh_gold" + "sticker_material" "london2018/sig_dephh_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "3344" + { + "name" "london2018_signature_yay" + "item_name" "#StickerKit_london2018_signature_yay" + "description_string" "#StickerKit_desc_london2018_signature_yay" + "sticker_material" "london2018/sig_yay" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "57496765" + } + "3345" + { + "name" "london2018_signature_yay_foil" + "item_name" "#StickerKit_london2018_signature_yay_foil" + "description_string" "#StickerKit_desc_london2018_signature_yay_foil" + "sticker_material" "london2018/sig_yay_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "57496765" + } + "3346" + { + "name" "london2018_signature_yay_gold" + "item_name" "#StickerKit_london2018_signature_yay_gold" + "description_string" "#StickerKit_desc_london2018_signature_yay_gold" + "sticker_material" "london2018/sig_yay_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "57496765" + } + "3347" + { + "name" "london2018_signature_shahzam" + "item_name" "#StickerKit_london2018_signature_shahzam" + "description_string" "#StickerKit_desc_london2018_signature_shahzam" + "sticker_material" "london2018/sig_shahzam" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "3348" + { + "name" "london2018_signature_shahzam_foil" + "item_name" "#StickerKit_london2018_signature_shahzam_foil" + "description_string" "#StickerKit_desc_london2018_signature_shahzam_foil" + "sticker_material" "london2018/sig_shahzam_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "3349" + { + "name" "london2018_signature_shahzam_gold" + "item_name" "#StickerKit_london2018_signature_shahzam_gold" + "description_string" "#StickerKit_desc_london2018_signature_shahzam_gold" + "sticker_material" "london2018/sig_shahzam_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "3350" + { + "name" "london2018_signature_woxic" + "item_name" "#StickerKit_london2018_signature_woxic" + "description_string" "#StickerKit_desc_london2018_signature_woxic" + "sticker_material" "london2018/sig_woxic" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "123219778" + } + "3351" + { + "name" "london2018_signature_woxic_foil" + "item_name" "#StickerKit_london2018_signature_woxic_foil" + "description_string" "#StickerKit_desc_london2018_signature_woxic_foil" + "sticker_material" "london2018/sig_woxic_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "123219778" + } + "3352" + { + "name" "london2018_signature_woxic_gold" + "item_name" "#StickerKit_london2018_signature_woxic_gold" + "description_string" "#StickerKit_desc_london2018_signature_woxic_gold" + "sticker_material" "london2018/sig_woxic_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "123219778" + } + "3353" + { + "name" "london2018_signature_issaa" + "item_name" "#StickerKit_london2018_signature_issaa" + "description_string" "#StickerKit_desc_london2018_signature_issaa" + "sticker_material" "london2018/sig_issaa" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "3354" + { + "name" "london2018_signature_issaa_foil" + "item_name" "#StickerKit_london2018_signature_issaa_foil" + "description_string" "#StickerKit_desc_london2018_signature_issaa_foil" + "sticker_material" "london2018/sig_issaa_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "3355" + { + "name" "london2018_signature_issaa_gold" + "item_name" "#StickerKit_london2018_signature_issaa_gold" + "description_string" "#StickerKit_desc_london2018_signature_issaa_gold" + "sticker_material" "london2018/sig_issaa_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "3356" + { + "name" "london2018_signature_bondik" + "item_name" "#StickerKit_london2018_signature_bondik" + "description_string" "#StickerKit_desc_london2018_signature_bondik" + "sticker_material" "london2018/sig_bondik" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "46918643" + } + "3357" + { + "name" "london2018_signature_bondik_foil" + "item_name" "#StickerKit_london2018_signature_bondik_foil" + "description_string" "#StickerKit_desc_london2018_signature_bondik_foil" + "sticker_material" "london2018/sig_bondik_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "46918643" + } + "3358" + { + "name" "london2018_signature_bondik_gold" + "item_name" "#StickerKit_london2018_signature_bondik_gold" + "description_string" "#StickerKit_desc_london2018_signature_bondik_gold" + "sticker_material" "london2018/sig_bondik_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "46918643" + } + "3359" + { + "name" "london2018_signature_angel" + "item_name" "#StickerKit_london2018_signature_angel" + "description_string" "#StickerKit_desc_london2018_signature_angel" + "sticker_material" "london2018/sig_angel" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "3360" + { + "name" "london2018_signature_angel_foil" + "item_name" "#StickerKit_london2018_signature_angel_foil" + "description_string" "#StickerKit_desc_london2018_signature_angel_foil" + "sticker_material" "london2018/sig_angel_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "3361" + { + "name" "london2018_signature_angel_gold" + "item_name" "#StickerKit_london2018_signature_angel_gold" + "description_string" "#StickerKit_desc_london2018_signature_angel_gold" + "sticker_material" "london2018/sig_angel_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "3362" + { + "name" "london2018_signature_deadfox" + "item_name" "#StickerKit_london2018_signature_deadfox" + "description_string" "#StickerKit_desc_london2018_signature_deadfox" + "sticker_material" "london2018/sig_deadfox" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "3363" + { + "name" "london2018_signature_deadfox_foil" + "item_name" "#StickerKit_london2018_signature_deadfox_foil" + "description_string" "#StickerKit_desc_london2018_signature_deadfox_foil" + "sticker_material" "london2018/sig_deadfox_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "3364" + { + "name" "london2018_signature_deadfox_gold" + "item_name" "#StickerKit_london2018_signature_deadfox_gold" + "description_string" "#StickerKit_desc_london2018_signature_deadfox_gold" + "sticker_material" "london2018/sig_deadfox_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "3365" + { + "name" "london2018_signature_nifty" + "item_name" "#StickerKit_london2018_signature_nifty" + "description_string" "#StickerKit_desc_london2018_signature_nifty" + "sticker_material" "london2018/sig_nifty" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "163358521" + } + "3366" + { + "name" "london2018_signature_nifty_foil" + "item_name" "#StickerKit_london2018_signature_nifty_foil" + "description_string" "#StickerKit_desc_london2018_signature_nifty_foil" + "sticker_material" "london2018/sig_nifty_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "163358521" + } + "3367" + { + "name" "london2018_signature_nifty_gold" + "item_name" "#StickerKit_london2018_signature_nifty_gold" + "description_string" "#StickerKit_desc_london2018_signature_nifty_gold" + "sticker_material" "london2018/sig_nifty_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "163358521" + } + "3368" + { + "name" "london2018_signature_jkaem" + "item_name" "#StickerKit_london2018_signature_jkaem" + "description_string" "#StickerKit_desc_london2018_signature_jkaem" + "sticker_material" "london2018/sig_jkaem" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "3369" + { + "name" "london2018_signature_jkaem_foil" + "item_name" "#StickerKit_london2018_signature_jkaem_foil" + "description_string" "#StickerKit_desc_london2018_signature_jkaem_foil" + "sticker_material" "london2018/sig_jkaem_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "3370" + { + "name" "london2018_signature_jkaem_gold" + "item_name" "#StickerKit_london2018_signature_jkaem_gold" + "description_string" "#StickerKit_desc_london2018_signature_jkaem_gold" + "sticker_material" "london2018/sig_jkaem_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "3371" + { + "name" "london2018_signature_jks" + "item_name" "#StickerKit_london2018_signature_jks" + "description_string" "#StickerKit_desc_london2018_signature_jks" + "sticker_material" "london2018/sig_jks" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "3372" + { + "name" "london2018_signature_jks_foil" + "item_name" "#StickerKit_london2018_signature_jks_foil" + "description_string" "#StickerKit_desc_london2018_signature_jks_foil" + "sticker_material" "london2018/sig_jks_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "3373" + { + "name" "london2018_signature_jks_gold" + "item_name" "#StickerKit_london2018_signature_jks_gold" + "description_string" "#StickerKit_desc_london2018_signature_jks_gold" + "sticker_material" "london2018/sig_jks_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "3374" + { + "name" "london2018_signature_ustilo" + "item_name" "#StickerKit_london2018_signature_ustilo" + "description_string" "#StickerKit_desc_london2018_signature_ustilo" + "sticker_material" "london2018/sig_ustilo" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "18903255" + } + "3375" + { + "name" "london2018_signature_ustilo_foil" + "item_name" "#StickerKit_london2018_signature_ustilo_foil" + "description_string" "#StickerKit_desc_london2018_signature_ustilo_foil" + "sticker_material" "london2018/sig_ustilo_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "18903255" + } + "3376" + { + "name" "london2018_signature_ustilo_gold" + "item_name" "#StickerKit_london2018_signature_ustilo_gold" + "description_string" "#StickerKit_desc_london2018_signature_ustilo_gold" + "sticker_material" "london2018/sig_ustilo_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "18903255" + } + "3377" + { + "name" "london2018_signature_azr" + "item_name" "#StickerKit_london2018_signature_azr" + "description_string" "#StickerKit_desc_london2018_signature_azr" + "sticker_material" "london2018/sig_azr" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "3378" + { + "name" "london2018_signature_azr_foil" + "item_name" "#StickerKit_london2018_signature_azr_foil" + "description_string" "#StickerKit_desc_london2018_signature_azr_foil" + "sticker_material" "london2018/sig_azr_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "3379" + { + "name" "london2018_signature_azr_gold" + "item_name" "#StickerKit_london2018_signature_azr_gold" + "description_string" "#StickerKit_desc_london2018_signature_azr_gold" + "sticker_material" "london2018/sig_azr_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "3380" + { + "name" "london2018_signature_cajunb" + "item_name" "#StickerKit_london2018_signature_cajunb" + "description_string" "#StickerKit_desc_london2018_signature_cajunb" + "sticker_material" "london2018/sig_cajunb" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "18062315" + } + "3381" + { + "name" "london2018_signature_cajunb_foil" + "item_name" "#StickerKit_london2018_signature_cajunb_foil" + "description_string" "#StickerKit_desc_london2018_signature_cajunb_foil" + "sticker_material" "london2018/sig_cajunb_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "18062315" + } + "3382" + { + "name" "london2018_signature_cajunb_gold" + "item_name" "#StickerKit_london2018_signature_cajunb_gold" + "description_string" "#StickerKit_desc_london2018_signature_cajunb_gold" + "sticker_material" "london2018/sig_cajunb_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "18062315" + } + "3383" + { + "name" "london2018_signature_k0nfig" + "item_name" "#StickerKit_london2018_signature_k0nfig" + "description_string" "#StickerKit_desc_london2018_signature_k0nfig" + "sticker_material" "london2018/sig_k0nfig" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "19403447" + } + "3384" + { + "name" "london2018_signature_k0nfig_foil" + "item_name" "#StickerKit_london2018_signature_k0nfig_foil" + "description_string" "#StickerKit_desc_london2018_signature_k0nfig_foil" + "sticker_material" "london2018/sig_k0nfig_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "19403447" + } + "3385" + { + "name" "london2018_signature_k0nfig_gold" + "item_name" "#StickerKit_london2018_signature_k0nfig_gold" + "description_string" "#StickerKit_desc_london2018_signature_k0nfig_gold" + "sticker_material" "london2018/sig_k0nfig_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "19403447" + } + "3386" + { + "name" "london2018_signature_gade" + "item_name" "#StickerKit_london2018_signature_gade" + "description_string" "#StickerKit_desc_london2018_signature_gade" + "sticker_material" "london2018/sig_gade" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "21355604" + } + "3387" + { + "name" "london2018_signature_gade_foil" + "item_name" "#StickerKit_london2018_signature_gade_foil" + "description_string" "#StickerKit_desc_london2018_signature_gade_foil" + "sticker_material" "london2018/sig_gade_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "21355604" + } + "3388" + { + "name" "london2018_signature_gade_gold" + "item_name" "#StickerKit_london2018_signature_gade_gold" + "description_string" "#StickerKit_desc_london2018_signature_gade_gold" + "sticker_material" "london2018/sig_gade_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "21355604" + } + "3389" + { + "name" "london2018_signature_snappi" + "item_name" "#StickerKit_london2018_signature_snappi" + "description_string" "#StickerKit_desc_london2018_signature_snappi" + "sticker_material" "london2018/sig_snappi" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "29157337" + } + "3390" + { + "name" "london2018_signature_snappi_foil" + "item_name" "#StickerKit_london2018_signature_snappi_foil" + "description_string" "#StickerKit_desc_london2018_signature_snappi_foil" + "sticker_material" "london2018/sig_snappi_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "29157337" + } + "3391" + { + "name" "london2018_signature_snappi_gold" + "item_name" "#StickerKit_london2018_signature_snappi_gold" + "description_string" "#StickerKit_desc_london2018_signature_snappi_gold" + "sticker_material" "london2018/sig_snappi_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "29157337" + } + "3392" + { + "name" "london2018_signature_jugi" + "item_name" "#StickerKit_london2018_signature_jugi" + "description_string" "#StickerKit_desc_london2018_signature_jugi" + "sticker_material" "london2018/sig_jugi" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "83626376" + } + "3393" + { + "name" "london2018_signature_jugi_foil" + "item_name" "#StickerKit_london2018_signature_jugi_foil" + "description_string" "#StickerKit_desc_london2018_signature_jugi_foil" + "sticker_material" "london2018/sig_jugi_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "83626376" + } + "3394" + { + "name" "london2018_signature_jugi_gold" + "item_name" "#StickerKit_london2018_signature_jugi_gold" + "description_string" "#StickerKit_desc_london2018_signature_jugi_gold" + "sticker_material" "london2018/sig_jugi_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "66" + "tournament_player_id" "83626376" + } + "3395" + { + "name" "london2018_signature_sick" + "item_name" "#StickerKit_london2018_signature_sick" + "description_string" "#StickerKit_desc_london2018_signature_sick" + "sticker_material" "london2018/sig_sick" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "23556959" + } + "3396" + { + "name" "london2018_signature_sick_foil" + "item_name" "#StickerKit_london2018_signature_sick_foil" + "description_string" "#StickerKit_desc_london2018_signature_sick_foil" + "sticker_material" "london2018/sig_sick_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "23556959" + } + "3397" + { + "name" "london2018_signature_sick_gold" + "item_name" "#StickerKit_london2018_signature_sick_gold" + "description_string" "#StickerKit_desc_london2018_signature_sick_gold" + "sticker_material" "london2018/sig_sick_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "23556959" + } + "3398" + { + "name" "london2018_signature_hiko" + "item_name" "#StickerKit_london2018_signature_hiko" + "description_string" "#StickerKit_desc_london2018_signature_hiko" + "sticker_material" "london2018/sig_hiko" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "2791" + } + "3399" + { + "name" "london2018_signature_hiko_foil" + "item_name" "#StickerKit_london2018_signature_hiko_foil" + "description_string" "#StickerKit_desc_london2018_signature_hiko_foil" + "sticker_material" "london2018/sig_hiko_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "2791" + } + "3400" + { + "name" "london2018_signature_hiko_gold" + "item_name" "#StickerKit_london2018_signature_hiko_gold" + "description_string" "#StickerKit_desc_london2018_signature_hiko_gold" + "sticker_material" "london2018/sig_hiko_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "2791" + } + "3401" + { + "name" "london2018_signature_rickeh" + "item_name" "#StickerKit_london2018_signature_rickeh" + "description_string" "#StickerKit_desc_london2018_signature_rickeh" + "sticker_material" "london2018/sig_rickeh" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "3215921" + } + "3402" + { + "name" "london2018_signature_rickeh_foil" + "item_name" "#StickerKit_london2018_signature_rickeh_foil" + "description_string" "#StickerKit_desc_london2018_signature_rickeh_foil" + "sticker_material" "london2018/sig_rickeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "3215921" + } + "3403" + { + "name" "london2018_signature_rickeh_gold" + "item_name" "#StickerKit_london2018_signature_rickeh_gold" + "description_string" "#StickerKit_desc_london2018_signature_rickeh_gold" + "sticker_material" "london2018/sig_rickeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "3215921" + } + "3404" + { + "name" "london2018_signature_cadian" + "item_name" "#StickerKit_london2018_signature_cadian" + "description_string" "#StickerKit_desc_london2018_signature_cadian" + "sticker_material" "london2018/sig_cadian" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "43849788" + } + "3405" + { + "name" "london2018_signature_cadian_foil" + "item_name" "#StickerKit_london2018_signature_cadian_foil" + "description_string" "#StickerKit_desc_london2018_signature_cadian_foil" + "sticker_material" "london2018/sig_cadian_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "43849788" + } + "3406" + { + "name" "london2018_signature_cadian_gold" + "item_name" "#StickerKit_london2018_signature_cadian_gold" + "description_string" "#StickerKit_desc_london2018_signature_cadian_gold" + "sticker_material" "london2018/sig_cadian_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "43849788" + } + "3407" + { + "name" "london2018_signature_vice" + "item_name" "#StickerKit_london2018_signature_vice" + "description_string" "#StickerKit_desc_london2018_signature_vice" + "sticker_material" "london2018/sig_vice" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "135979468" + } + "3408" + { + "name" "london2018_signature_vice_foil" + "item_name" "#StickerKit_london2018_signature_vice_foil" + "description_string" "#StickerKit_desc_london2018_signature_vice_foil" + "sticker_material" "london2018/sig_vice_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "135979468" + } + "3409" + { + "name" "london2018_signature_vice_gold" + "item_name" "#StickerKit_london2018_signature_vice_gold" + "description_string" "#StickerKit_desc_london2018_signature_vice_gold" + "sticker_material" "london2018/sig_vice_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "82" + "tournament_player_id" "135979468" + } + "3410" + { + "name" "london2018_signature_coldyy1" + "item_name" "#StickerKit_london2018_signature_coldyy1" + "description_string" "#StickerKit_desc_london2018_signature_coldyy1" + "sticker_material" "london2018/sig_coldyy1" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "34364443" + } + "3411" + { + "name" "london2018_signature_coldyy1_foil" + "item_name" "#StickerKit_london2018_signature_coldyy1_foil" + "description_string" "#StickerKit_desc_london2018_signature_coldyy1_foil" + "sticker_material" "london2018/sig_coldyy1_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "34364443" + } + "3412" + { + "name" "london2018_signature_coldyy1_gold" + "item_name" "#StickerKit_london2018_signature_coldyy1_gold" + "description_string" "#StickerKit_desc_london2018_signature_coldyy1_gold" + "sticker_material" "london2018/sig_coldyy1_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "34364443" + } + "3413" + { + "name" "london2018_signature_dima" + "item_name" "#StickerKit_london2018_signature_dima" + "description_string" "#StickerKit_desc_london2018_signature_dima" + "sticker_material" "london2018/sig_dima" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "51718767" + } + "3414" + { + "name" "london2018_signature_dima_foil" + "item_name" "#StickerKit_london2018_signature_dima_foil" + "description_string" "#StickerKit_desc_london2018_signature_dima_foil" + "sticker_material" "london2018/sig_dima_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "51718767" + } + "3415" + { + "name" "london2018_signature_dima_gold" + "item_name" "#StickerKit_london2018_signature_dima_gold" + "description_string" "#StickerKit_desc_london2018_signature_dima_gold" + "sticker_material" "london2018/sig_dima_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "51718767" + } + "3416" + { + "name" "london2018_signature_sdy" + "item_name" "#StickerKit_london2018_signature_sdy" + "description_string" "#StickerKit_desc_london2018_signature_sdy" + "sticker_material" "london2018/sig_sdy" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "80311472" + } + "3417" + { + "name" "london2018_signature_sdy_foil" + "item_name" "#StickerKit_london2018_signature_sdy_foil" + "description_string" "#StickerKit_desc_london2018_signature_sdy_foil" + "sticker_material" "london2018/sig_sdy_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "80311472" + } + "3418" + { + "name" "london2018_signature_sdy_gold" + "item_name" "#StickerKit_london2018_signature_sdy_gold" + "description_string" "#StickerKit_desc_london2018_signature_sdy_gold" + "sticker_material" "london2018/sig_sdy_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "80311472" + } + "3419" + { + "name" "london2018_signature_s0tf1k" + "item_name" "#StickerKit_london2018_signature_s0tf1k" + "description_string" "#StickerKit_desc_london2018_signature_s0tf1k" + "sticker_material" "london2018/sig_s0tf1k" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "174857712" + } + "3420" + { + "name" "london2018_signature_s0tf1k_foil" + "item_name" "#StickerKit_london2018_signature_s0tf1k_foil" + "description_string" "#StickerKit_desc_london2018_signature_s0tf1k_foil" + "sticker_material" "london2018/sig_s0tf1k_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "174857712" + } + "3421" + { + "name" "london2018_signature_s0tf1k_gold" + "item_name" "#StickerKit_london2018_signature_s0tf1k_gold" + "description_string" "#StickerKit_desc_london2018_signature_s0tf1k_gold" + "sticker_material" "london2018/sig_s0tf1k_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "174857712" + } + "3422" + { + "name" "london2018_signature_davcost" + "item_name" "#StickerKit_london2018_signature_davcost" + "description_string" "#StickerKit_desc_london2018_signature_davcost" + "sticker_material" "london2018/sig_davcost" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "20273529" + } + "3423" + { + "name" "london2018_signature_davcost_foil" + "item_name" "#StickerKit_london2018_signature_davcost_foil" + "description_string" "#StickerKit_desc_london2018_signature_davcost_foil" + "sticker_material" "london2018/sig_davcost_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "20273529" + } + "3424" + { + "name" "london2018_signature_davcost_gold" + "item_name" "#StickerKit_london2018_signature_davcost_gold" + "description_string" "#StickerKit_desc_london2018_signature_davcost_gold" + "sticker_material" "london2018/sig_davcost_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "81" + "tournament_player_id" "20273529" + } + "3425" + { + "name" "london2018_signature_somebody" + "item_name" "#StickerKit_london2018_signature_somebody" + "description_string" "#StickerKit_desc_london2018_signature_somebody" + "sticker_material" "london2018/sig_somebody" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "3426" + { + "name" "london2018_signature_somebody_foil" + "item_name" "#StickerKit_london2018_signature_somebody_foil" + "description_string" "#StickerKit_desc_london2018_signature_somebody_foil" + "sticker_material" "london2018/sig_somebody_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "3427" + { + "name" "london2018_signature_somebody_gold" + "item_name" "#StickerKit_london2018_signature_somebody_gold" + "description_string" "#StickerKit_desc_london2018_signature_somebody_gold" + "sticker_material" "london2018/sig_somebody_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "3428" + { + "name" "london2018_signature_captainmo" + "item_name" "#StickerKit_london2018_signature_captainmo" + "description_string" "#StickerKit_desc_london2018_signature_captainmo" + "sticker_material" "london2018/sig_captainmo" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "109036162" + } + "3429" + { + "name" "london2018_signature_captainmo_foil" + "item_name" "#StickerKit_london2018_signature_captainmo_foil" + "description_string" "#StickerKit_desc_london2018_signature_captainmo_foil" + "sticker_material" "london2018/sig_captainmo_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "109036162" + } + "3430" + { + "name" "london2018_signature_captainmo_gold" + "item_name" "#StickerKit_london2018_signature_captainmo_gold" + "description_string" "#StickerKit_desc_london2018_signature_captainmo_gold" + "sticker_material" "london2018/sig_captainmo_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "109036162" + } + "3431" + { + "name" "london2018_signature_bntet" + "item_name" "#StickerKit_london2018_signature_bntet" + "description_string" "#StickerKit_desc_london2018_signature_bntet" + "sticker_material" "london2018/sig_bntet" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "3432" + { + "name" "london2018_signature_bntet_foil" + "item_name" "#StickerKit_london2018_signature_bntet_foil" + "description_string" "#StickerKit_desc_london2018_signature_bntet_foil" + "sticker_material" "london2018/sig_bntet_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "3433" + { + "name" "london2018_signature_bntet_gold" + "item_name" "#StickerKit_london2018_signature_bntet_gold" + "description_string" "#StickerKit_desc_london2018_signature_bntet_gold" + "sticker_material" "london2018/sig_bntet_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "3434" + { + "name" "london2018_signature_dd" + "item_name" "#StickerKit_london2018_signature_dd" + "description_string" "#StickerKit_desc_london2018_signature_dd" + "sticker_material" "london2018/sig_dd" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "169982617" + } + "3435" + { + "name" "london2018_signature_dd_foil" + "item_name" "#StickerKit_london2018_signature_dd_foil" + "description_string" "#StickerKit_desc_london2018_signature_dd_foil" + "sticker_material" "london2018/sig_dd_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "169982617" + } + "3436" + { + "name" "london2018_signature_dd_gold" + "item_name" "#StickerKit_london2018_signature_dd_gold" + "description_string" "#StickerKit_desc_london2018_signature_dd_gold" + "sticker_material" "london2018/sig_dd_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "169982617" + } + "3437" + { + "name" "london2018_signature_xccurate" + "item_name" "#StickerKit_london2018_signature_xccurate" + "description_string" "#StickerKit_desc_london2018_signature_xccurate" + "sticker_material" "london2018/sig_xccurate" + "item_rarity" "rare" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "177428807" + } + "3438" + { + "name" "london2018_signature_xccurate_foil" + "item_name" "#StickerKit_london2018_signature_xccurate_foil" + "description_string" "#StickerKit_desc_london2018_signature_xccurate_foil" + "sticker_material" "london2018/sig_xccurate_foil" + "item_rarity" "mythical" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "177428807" + } + "3439" + { + "name" "london2018_signature_xccurate_gold" + "item_name" "#StickerKit_london2018_signature_xccurate_gold" + "description_string" "#StickerKit_desc_london2018_signature_xccurate_gold" + "sticker_material" "london2018/sig_xccurate_gold" + "item_rarity" "ancient" + "tournament_event_id" "14" + "tournament_team_id" "74" + "tournament_player_id" "177428807" + } + } + "prefabs" + { + "katowice2019_sticker_capsule_prefab" + { + "first_sale_date" "2019-02-04" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + } + "katowice2019_signature_capsule_prefab" + { + "first_sale_date" "2019-02-04" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_katowice2019_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_katowice2019_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "katowice2019_tournament_pass_prefab" + { + "first_sale_date" "2019-02-04" + "prefab" "fan_token" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + } + "katowice2019_tournament_journal_prefab" + { + "item_description" "#CSGO_TournamentJournal_katowice2019_Desc" + "first_sale_date" "2019-02-04" + "prefab" "fan_shield" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + "campaign id" + { + "attribute_class" "campaign_id" + "value" "10" + } + "sticker slot 0 id" + { + "attribute_class" "sticker_slot_id" + "value" "3584" + "force_gc_to_generate" "1" + } + "campaign completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "1" + "force_gc_to_generate" "1" + } + "operation drops awarded 0" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + } + "revolving_loot_lists" + { + "260" "crate_sticker_pack_katowice2019_legends" + "261" "crate_sticker_pack_katowice2019_challengers" + "262" "crate_sticker_pack_katowice2019_contenders" + "263" "crate_signature_pack_katowice2019_group_players_collection_legends" + "264" "crate_signature_pack_katowice2019_group_players_collection_challengers" + "265" "crate_signature_pack_katowice2019_group_players_collection_contenders" + "266" "crate_katowice2019_promo_de_inferno" + "267" "crate_katowice2019_promo_de_mirage" + "268" "crate_katowice2019_promo_de_dust2" + "269" "crate_katowice2019_promo_de_overpass" + "270" "crate_katowice2019_promo_de_cache" + "271" "crate_katowice2019_promo_de_train" + "272" "crate_katowice2019_promo_de_nuke" + } + "client_loot_lists" + { + "katowice2019_rare_astr" + { + "[katowice2019_team_astr]sticker" "1" + } + "katowice2019_rare_avg" + { + "[katowice2019_team_avg]sticker" "1" + } + "katowice2019_rare_big" + { + "[katowice2019_team_big]sticker" "1" + } + "katowice2019_rare_c9" + { + "[katowice2019_team_c9]sticker" "1" + } + "katowice2019_rare_col" + { + "[katowice2019_team_col]sticker" "1" + } + "katowice2019_rare_ence" + { + "[katowice2019_team_ence]sticker" "1" + } + "katowice2019_rare_faze" + { + "[katowice2019_team_faze]sticker" "1" + } + "katowice2019_rare_fntc" + { + "[katowice2019_team_fntc]sticker" "1" + } + "katowice2019_rare_furi" + { + "[katowice2019_team_furi]sticker" "1" + } + "katowice2019_rare_g2" + { + "[katowice2019_team_g2]sticker" "1" + } + "katowice2019_rare_gray" + { + "[katowice2019_team_gray]sticker" "1" + } + "katowice2019_rare_hlr" + { + "[katowice2019_team_hlr]sticker" "1" + } + "katowice2019_rare_mibr" + { + "[katowice2019_team_mibr]sticker" "1" + } + "katowice2019_rare_navi" + { + "[katowice2019_team_navi]sticker" "1" + } + "katowice2019_rare_nip" + { + "[katowice2019_team_nip]sticker" "1" + } + "katowice2019_rare_nrg" + { + "[katowice2019_team_nrg]sticker" "1" + } + "katowice2019_rare_ren" + { + "[katowice2019_team_ren]sticker" "1" + } + "katowice2019_rare_liq" + { + "[katowice2019_team_liq]sticker" "1" + } + "katowice2019_rare_spir" + { + "[katowice2019_team_spir]sticker" "1" + } + "katowice2019_rare_tyl" + { + "[katowice2019_team_tyl]sticker" "1" + } + "katowice2019_rare_vega" + { + "[katowice2019_team_vega]sticker" "1" + } + "katowice2019_rare_vici" + { + "[katowice2019_team_vici]sticker" "1" + } + "katowice2019_rare_vita" + { + "[katowice2019_team_vita]sticker" "1" + } + "katowice2019_rare_wins" + { + "[katowice2019_team_wins]sticker" "1" + } + "katowice2019_rare_iem" + { + "[katowice2019_team_iem]sticker" "1" + } + "crate_sticker_pack_katowice2019_legends_rare" + { + "[katowice2019_team_astr]sticker" "1" + "[katowice2019_team_big]sticker" "1" + "[katowice2019_team_col]sticker" "1" + "[katowice2019_team_faze]sticker" "1" + "[katowice2019_team_hlr]sticker" "1" + "[katowice2019_team_mibr]sticker" "1" + "[katowice2019_team_navi]sticker" "1" + "[katowice2019_team_liq]sticker" "1" + "[katowice2019_team_iem]sticker" "1" + } + "crate_sticker_pack_katowice2019_legends_mythical" + { + "[katowice2019_team_astr_holo]sticker" "1" + "[katowice2019_team_big_holo]sticker" "1" + "[katowice2019_team_col_holo]sticker" "1" + "[katowice2019_team_faze_holo]sticker" "1" + "[katowice2019_team_hlr_holo]sticker" "1" + "[katowice2019_team_mibr_holo]sticker" "1" + "[katowice2019_team_navi_holo]sticker" "1" + "[katowice2019_team_liq_holo]sticker" "1" + "[katowice2019_team_iem_holo]sticker" "1" + } + "crate_sticker_pack_katowice2019_legends_legendary" + { + "[katowice2019_team_astr_foil]sticker" "1" + "[katowice2019_team_big_foil]sticker" "1" + "[katowice2019_team_col_foil]sticker" "1" + "[katowice2019_team_faze_foil]sticker" "1" + "[katowice2019_team_hlr_foil]sticker" "1" + "[katowice2019_team_mibr_foil]sticker" "1" + "[katowice2019_team_navi_foil]sticker" "1" + "[katowice2019_team_liq_foil]sticker" "1" + "[katowice2019_team_iem_foil]sticker" "1" + } + "crate_sticker_pack_katowice2019_legends" + { + "crate_sticker_pack_katowice2019_legends_mythical" "1" + "crate_sticker_pack_katowice2019_legends_legendary" "1" + } + "crate_sticker_pack_katowice2019_challengers_rare" + { + "[katowice2019_team_c9]sticker" "1" + "[katowice2019_team_fntc]sticker" "1" + "[katowice2019_team_g2]sticker" "1" + "[katowice2019_team_nip]sticker" "1" + "[katowice2019_team_tyl]sticker" "1" + "[katowice2019_team_vega]sticker" "1" + "[katowice2019_team_iem]sticker" "1" + } + "crate_sticker_pack_katowice2019_challengers_mythical" + { + "[katowice2019_team_c9_holo]sticker" "1" + "[katowice2019_team_fntc_holo]sticker" "1" + "[katowice2019_team_g2_holo]sticker" "1" + "[katowice2019_team_nip_holo]sticker" "1" + "[katowice2019_team_tyl_holo]sticker" "1" + "[katowice2019_team_vega_holo]sticker" "1" + "[katowice2019_team_iem_holo]sticker" "1" + } + "crate_sticker_pack_katowice2019_challengers_legendary" + { + "[katowice2019_team_c9_foil]sticker" "1" + "[katowice2019_team_fntc_foil]sticker" "1" + "[katowice2019_team_g2_foil]sticker" "1" + "[katowice2019_team_nip_foil]sticker" "1" + "[katowice2019_team_tyl_foil]sticker" "1" + "[katowice2019_team_vega_foil]sticker" "1" + "[katowice2019_team_iem_foil]sticker" "1" + } + "crate_sticker_pack_katowice2019_challengers" + { + "crate_sticker_pack_katowice2019_challengers_mythical" "1" + "crate_sticker_pack_katowice2019_challengers_legendary" "1" + } + "crate_sticker_pack_katowice2019_contenders_rare" + { + "[katowice2019_team_avg]sticker" "1" + "[katowice2019_team_ence]sticker" "1" + "[katowice2019_team_furi]sticker" "1" + "[katowice2019_team_gray]sticker" "1" + "[katowice2019_team_nrg]sticker" "1" + "[katowice2019_team_ren]sticker" "1" + "[katowice2019_team_spir]sticker" "1" + "[katowice2019_team_vici]sticker" "1" + "[katowice2019_team_vita]sticker" "1" + "[katowice2019_team_wins]sticker" "1" + "[katowice2019_team_iem]sticker" "1" + } + "crate_sticker_pack_katowice2019_contenders_mythical" + { + "[katowice2019_team_avg_holo]sticker" "1" + "[katowice2019_team_ence_holo]sticker" "1" + "[katowice2019_team_furi_holo]sticker" "1" + "[katowice2019_team_gray_holo]sticker" "1" + "[katowice2019_team_nrg_holo]sticker" "1" + "[katowice2019_team_ren_holo]sticker" "1" + "[katowice2019_team_spir_holo]sticker" "1" + "[katowice2019_team_vici_holo]sticker" "1" + "[katowice2019_team_vita_holo]sticker" "1" + "[katowice2019_team_wins_holo]sticker" "1" + "[katowice2019_team_iem_holo]sticker" "1" + } + "crate_sticker_pack_katowice2019_contenders_legendary" + { + "[katowice2019_team_avg_foil]sticker" "1" + "[katowice2019_team_ence_foil]sticker" "1" + "[katowice2019_team_furi_foil]sticker" "1" + "[katowice2019_team_gray_foil]sticker" "1" + "[katowice2019_team_nrg_foil]sticker" "1" + "[katowice2019_team_ren_foil]sticker" "1" + "[katowice2019_team_spir_foil]sticker" "1" + "[katowice2019_team_vici_foil]sticker" "1" + "[katowice2019_team_vita_foil]sticker" "1" + "[katowice2019_team_wins_foil]sticker" "1" + "[katowice2019_team_iem_foil]sticker" "1" + } + "crate_sticker_pack_katowice2019_contenders" + { + "crate_sticker_pack_katowice2019_contenders_mythical" "1" + "crate_sticker_pack_katowice2019_contenders_legendary" "1" + } + "crate_signature_pack_katowice2019_group_legends_rare" + { + "[katowice2019_signature_magisk]sticker" "1" + "[katowice2019_signature_device]sticker" "1" + "[katowice2019_signature_xyp9x]sticker" "1" + "[katowice2019_signature_dupreeh]sticker" "1" + "[katowice2019_signature_gla1ve]sticker" "1" + "[katowice2019_signature_gobb]sticker" "1" + "[katowice2019_signature_tabsen]sticker" "1" + "[katowice2019_signature_tizian]sticker" "1" + "[katowice2019_signature_xantares]sticker" "1" + "[katowice2019_signature_smooya]sticker" "1" + "[katowice2019_signature_nothing]sticker" "1" + "[katowice2019_signature_rickeh]sticker" "1" + "[katowice2019_signature_stanislaw]sticker" "1" + "[katowice2019_signature_dephh]sticker" "1" + "[katowice2019_signature_shahzam]sticker" "1" + "[katowice2019_signature_guardian]sticker" "1" + "[katowice2019_signature_olofmeister]sticker" "1" + "[katowice2019_signature_rain]sticker" "1" + "[katowice2019_signature_adrenkz]sticker" "1" + "[katowice2019_signature_niko]sticker" "1" + "[katowice2019_signature_deadfox]sticker" "1" + "[katowice2019_signature_angel]sticker" "1" + "[katowice2019_signature_hobbit]sticker" "1" + "[katowice2019_signature_issaa]sticker" "1" + "[katowice2019_signature_woxic]sticker" "1" + "[katowice2019_signature_fallen]sticker" "1" + "[katowice2019_signature_felps]sticker" "1" + "[katowice2019_signature_fer]sticker" "1" + "[katowice2019_signature_taco]sticker" "1" + "[katowice2019_signature_coldzera]sticker" "1" + "[katowice2019_signature_edward]sticker" "1" + "[katowice2019_signature_zeus]sticker" "1" + "[katowice2019_signature_s1mple]sticker" "1" + "[katowice2019_signature_electronic]sticker" "1" + "[katowice2019_signature_flamie]sticker" "1" + "[katowice2019_signature_nitro]sticker" "1" + "[katowice2019_signature_stewie2k]sticker" "1" + "[katowice2019_signature_naf]sticker" "1" + "[katowice2019_signature_twistzz]sticker" "1" + "[katowice2019_signature_elige]sticker" "1" + } + "crate_signature_pack_katowice2019_group_legends_foil" + { + "[katowice2019_signature_magisk_foil]sticker" "1" + "[katowice2019_signature_device_foil]sticker" "1" + "[katowice2019_signature_xyp9x_foil]sticker" "1" + "[katowice2019_signature_dupreeh_foil]sticker" "1" + "[katowice2019_signature_gla1ve_foil]sticker" "1" + "[katowice2019_signature_gobb_foil]sticker" "1" + "[katowice2019_signature_tabsen_foil]sticker" "1" + "[katowice2019_signature_tizian_foil]sticker" "1" + "[katowice2019_signature_xantares_foil]sticker" "1" + "[katowice2019_signature_smooya_foil]sticker" "1" + "[katowice2019_signature_nothing_foil]sticker" "1" + "[katowice2019_signature_rickeh_foil]sticker" "1" + "[katowice2019_signature_stanislaw_foil]sticker" "1" + "[katowice2019_signature_dephh_foil]sticker" "1" + "[katowice2019_signature_shahzam_foil]sticker" "1" + "[katowice2019_signature_guardian_foil]sticker" "1" + "[katowice2019_signature_olofmeister_foil]sticker" "1" + "[katowice2019_signature_rain_foil]sticker" "1" + "[katowice2019_signature_adrenkz_foil]sticker" "1" + "[katowice2019_signature_niko_foil]sticker" "1" + "[katowice2019_signature_deadfox_foil]sticker" "1" + "[katowice2019_signature_angel_foil]sticker" "1" + "[katowice2019_signature_hobbit_foil]sticker" "1" + "[katowice2019_signature_issaa_foil]sticker" "1" + "[katowice2019_signature_woxic_foil]sticker" "1" + "[katowice2019_signature_fallen_foil]sticker" "1" + "[katowice2019_signature_felps_foil]sticker" "1" + "[katowice2019_signature_fer_foil]sticker" "1" + "[katowice2019_signature_taco_foil]sticker" "1" + "[katowice2019_signature_coldzera_foil]sticker" "1" + "[katowice2019_signature_edward_foil]sticker" "1" + "[katowice2019_signature_zeus_foil]sticker" "1" + "[katowice2019_signature_s1mple_foil]sticker" "1" + "[katowice2019_signature_electronic_foil]sticker" "1" + "[katowice2019_signature_flamie_foil]sticker" "1" + "[katowice2019_signature_nitro_foil]sticker" "1" + "[katowice2019_signature_stewie2k_foil]sticker" "1" + "[katowice2019_signature_naf_foil]sticker" "1" + "[katowice2019_signature_twistzz_foil]sticker" "1" + "[katowice2019_signature_elige_foil]sticker" "1" + } + "crate_signature_pack_katowice2019_group_legends_gold" + { + "[katowice2019_signature_magisk_gold]sticker" "1" + "[katowice2019_signature_device_gold]sticker" "1" + "[katowice2019_signature_xyp9x_gold]sticker" "1" + "[katowice2019_signature_dupreeh_gold]sticker" "1" + "[katowice2019_signature_gla1ve_gold]sticker" "1" + "[katowice2019_signature_gobb_gold]sticker" "1" + "[katowice2019_signature_tabsen_gold]sticker" "1" + "[katowice2019_signature_tizian_gold]sticker" "1" + "[katowice2019_signature_xantares_gold]sticker" "1" + "[katowice2019_signature_smooya_gold]sticker" "1" + "[katowice2019_signature_nothing_gold]sticker" "1" + "[katowice2019_signature_rickeh_gold]sticker" "1" + "[katowice2019_signature_stanislaw_gold]sticker" "1" + "[katowice2019_signature_dephh_gold]sticker" "1" + "[katowice2019_signature_shahzam_gold]sticker" "1" + "[katowice2019_signature_guardian_gold]sticker" "1" + "[katowice2019_signature_olofmeister_gold]sticker" "1" + "[katowice2019_signature_rain_gold]sticker" "1" + "[katowice2019_signature_adrenkz_gold]sticker" "1" + "[katowice2019_signature_niko_gold]sticker" "1" + "[katowice2019_signature_deadfox_gold]sticker" "1" + "[katowice2019_signature_angel_gold]sticker" "1" + "[katowice2019_signature_hobbit_gold]sticker" "1" + "[katowice2019_signature_issaa_gold]sticker" "1" + "[katowice2019_signature_woxic_gold]sticker" "1" + "[katowice2019_signature_fallen_gold]sticker" "1" + "[katowice2019_signature_felps_gold]sticker" "1" + "[katowice2019_signature_fer_gold]sticker" "1" + "[katowice2019_signature_taco_gold]sticker" "1" + "[katowice2019_signature_coldzera_gold]sticker" "1" + "[katowice2019_signature_edward_gold]sticker" "1" + "[katowice2019_signature_zeus_gold]sticker" "1" + "[katowice2019_signature_s1mple_gold]sticker" "1" + "[katowice2019_signature_electronic_gold]sticker" "1" + "[katowice2019_signature_flamie_gold]sticker" "1" + "[katowice2019_signature_nitro_gold]sticker" "1" + "[katowice2019_signature_stewie2k_gold]sticker" "1" + "[katowice2019_signature_naf_gold]sticker" "1" + "[katowice2019_signature_twistzz_gold]sticker" "1" + "[katowice2019_signature_elige_gold]sticker" "1" + } + "crate_signature_pack_katowice2019_group_challengers_rare" + { + "[katowice2019_signature_flusha]sticker" "1" + "[katowice2019_signature_kioshima]sticker" "1" + "[katowice2019_signature_rush]sticker" "1" + "[katowice2019_signature_autimatic]sticker" "1" + "[katowice2019_signature_golden]sticker" "1" + "[katowice2019_signature_twist]sticker" "1" + "[katowice2019_signature_xizt]sticker" "1" + "[katowice2019_signature_jw]sticker" "1" + "[katowice2019_signature_krimz]sticker" "1" + "[katowice2019_signature_brollan]sticker" "1" + "[katowice2019_signature_jackz]sticker" "1" + "[katowice2019_signature_shox]sticker" "1" + "[katowice2019_signature_bodyy]sticker" "1" + "[katowice2019_signature_kennys]sticker" "1" + "[katowice2019_signature_lucky]sticker" "1" + "[katowice2019_signature_forest]sticker" "1" + "[katowice2019_signature_lekro]sticker" "1" + "[katowice2019_signature_getright]sticker" "1" + "[katowice2019_signature_rez]sticker" "1" + "[katowice2019_signature_dennis]sticker" "1" + "[katowice2019_signature_summer]sticker" "1" + "[katowice2019_signature_somebody]sticker" "1" + "[katowice2019_signature_attacker]sticker" "1" + "[katowice2019_signature_bntet]sticker" "1" + "[katowice2019_signature_xccurate]sticker" "1" + "[katowice2019_signature_tonyblack]sticker" "1" + "[katowice2019_signature_crush]sticker" "1" + "[katowice2019_signature_jr]sticker" "1" + "[katowice2019_signature_hutji]sticker" "1" + "[katowice2019_signature_chopper]sticker" "1" + } + "crate_signature_pack_katowice2019_group_challengers_foil" + { + "[katowice2019_signature_flusha_foil]sticker" "1" + "[katowice2019_signature_kioshima_foil]sticker" "1" + "[katowice2019_signature_rush_foil]sticker" "1" + "[katowice2019_signature_autimatic_foil]sticker" "1" + "[katowice2019_signature_golden_foil]sticker" "1" + "[katowice2019_signature_twist_foil]sticker" "1" + "[katowice2019_signature_xizt_foil]sticker" "1" + "[katowice2019_signature_jw_foil]sticker" "1" + "[katowice2019_signature_krimz_foil]sticker" "1" + "[katowice2019_signature_brollan_foil]sticker" "1" + "[katowice2019_signature_jackz_foil]sticker" "1" + "[katowice2019_signature_shox_foil]sticker" "1" + "[katowice2019_signature_bodyy_foil]sticker" "1" + "[katowice2019_signature_kennys_foil]sticker" "1" + "[katowice2019_signature_lucky_foil]sticker" "1" + "[katowice2019_signature_forest_foil]sticker" "1" + "[katowice2019_signature_lekro_foil]sticker" "1" + "[katowice2019_signature_getright_foil]sticker" "1" + "[katowice2019_signature_rez_foil]sticker" "1" + "[katowice2019_signature_dennis_foil]sticker" "1" + "[katowice2019_signature_summer_foil]sticker" "1" + "[katowice2019_signature_somebody_foil]sticker" "1" + "[katowice2019_signature_attacker_foil]sticker" "1" + "[katowice2019_signature_bntet_foil]sticker" "1" + "[katowice2019_signature_xccurate_foil]sticker" "1" + "[katowice2019_signature_tonyblack_foil]sticker" "1" + "[katowice2019_signature_crush_foil]sticker" "1" + "[katowice2019_signature_jr_foil]sticker" "1" + "[katowice2019_signature_hutji_foil]sticker" "1" + "[katowice2019_signature_chopper_foil]sticker" "1" + } + "crate_signature_pack_katowice2019_group_challengers_gold" + { + "[katowice2019_signature_flusha_gold]sticker" "1" + "[katowice2019_signature_kioshima_gold]sticker" "1" + "[katowice2019_signature_rush_gold]sticker" "1" + "[katowice2019_signature_autimatic_gold]sticker" "1" + "[katowice2019_signature_golden_gold]sticker" "1" + "[katowice2019_signature_twist_gold]sticker" "1" + "[katowice2019_signature_xizt_gold]sticker" "1" + "[katowice2019_signature_jw_gold]sticker" "1" + "[katowice2019_signature_krimz_gold]sticker" "1" + "[katowice2019_signature_brollan_gold]sticker" "1" + "[katowice2019_signature_jackz_gold]sticker" "1" + "[katowice2019_signature_shox_gold]sticker" "1" + "[katowice2019_signature_bodyy_gold]sticker" "1" + "[katowice2019_signature_kennys_gold]sticker" "1" + "[katowice2019_signature_lucky_gold]sticker" "1" + "[katowice2019_signature_forest_gold]sticker" "1" + "[katowice2019_signature_lekro_gold]sticker" "1" + "[katowice2019_signature_getright_gold]sticker" "1" + "[katowice2019_signature_rez_gold]sticker" "1" + "[katowice2019_signature_dennis_gold]sticker" "1" + "[katowice2019_signature_summer_gold]sticker" "1" + "[katowice2019_signature_somebody_gold]sticker" "1" + "[katowice2019_signature_attacker_gold]sticker" "1" + "[katowice2019_signature_bntet_gold]sticker" "1" + "[katowice2019_signature_xccurate_gold]sticker" "1" + "[katowice2019_signature_tonyblack_gold]sticker" "1" + "[katowice2019_signature_crush_gold]sticker" "1" + "[katowice2019_signature_jr_gold]sticker" "1" + "[katowice2019_signature_hutji_gold]sticker" "1" + "[katowice2019_signature_chopper_gold]sticker" "1" + } + "crate_signature_pack_katowice2019_group_contenders_rare" + { + "[katowice2019_signature_fitch]sticker" "1" + "[katowice2019_signature_jame]sticker" "1" + "[katowice2019_signature_krizzen]sticker" "1" + "[katowice2019_signature_qikert]sticker" "1" + "[katowice2019_signature_buster]sticker" "1" + "[katowice2019_signature_allu]sticker" "1" + "[katowice2019_signature_aerial]sticker" "1" + "[katowice2019_signature_xseven]sticker" "1" + "[katowice2019_signature_aleksib]sticker" "1" + "[katowice2019_signature_sergej]sticker" "1" + "[katowice2019_signature_vini]sticker" "1" + "[katowice2019_signature_ablej]sticker" "1" + "[katowice2019_signature_art]sticker" "1" + "[katowice2019_signature_kscerato]sticker" "1" + "[katowice2019_signature_yuurih]sticker" "1" + "[katowice2019_signature_sterling]sticker" "1" + "[katowice2019_signature_dexter]sticker" "1" + "[katowice2019_signature_erkast]sticker" "1" + "[katowice2019_signature_malta]sticker" "1" + "[katowice2019_signature_dickstacy]sticker" "1" + "[katowice2019_signature_daps]sticker" "1" + "[katowice2019_signature_brehze]sticker" "1" + "[katowice2019_signature_fugly]sticker" "1" + "[katowice2019_signature_ethan]sticker" "1" + "[katowice2019_signature_cerq]sticker" "1" + "[katowice2019_signature_gratisfaction]sticker" "1" + "[katowice2019_signature_jks]sticker" "1" + "[katowice2019_signature_azr]sticker" "1" + "[katowice2019_signature_jkaem]sticker" "1" + "[katowice2019_signature_liazz]sticker" "1" + "[katowice2019_signature_davcost]sticker" "1" + "[katowice2019_signature_coldyy1]sticker" "1" + "[katowice2019_signature_dima]sticker" "1" + "[katowice2019_signature_sdy]sticker" "1" + "[katowice2019_signature_s0tf1k]sticker" "1" + "[katowice2019_signature_kaze]sticker" "1" + "[katowice2019_signature_advent]sticker" "1" + "[katowice2019_signature_auman]sticker" "1" + "[katowice2019_signature_zhoking]sticker" "1" + "[katowice2019_signature_freeman]sticker" "1" + "[katowice2019_signature_nbk]sticker" "1" + "[katowice2019_signature_apex]sticker" "1" + "[katowice2019_signature_alex]sticker" "1" + "[katowice2019_signature_rpk]sticker" "1" + "[katowice2019_signature_zywoo]sticker" "1" + "[katowice2019_signature_worldedit]sticker" "1" + "[katowice2019_signature_waylander]sticker" "1" + "[katowice2019_signature_kvik]sticker" "1" + "[katowice2019_signature_boombl4]sticker" "1" + "[katowice2019_signature_n0rb3r7]sticker" "1" + } + "crate_signature_pack_katowice2019_group_contenders_foil" + { + "[katowice2019_signature_fitch_foil]sticker" "1" + "[katowice2019_signature_jame_foil]sticker" "1" + "[katowice2019_signature_krizzen_foil]sticker" "1" + "[katowice2019_signature_qikert_foil]sticker" "1" + "[katowice2019_signature_buster_foil]sticker" "1" + "[katowice2019_signature_allu_foil]sticker" "1" + "[katowice2019_signature_aerial_foil]sticker" "1" + "[katowice2019_signature_xseven_foil]sticker" "1" + "[katowice2019_signature_aleksib_foil]sticker" "1" + "[katowice2019_signature_sergej_foil]sticker" "1" + "[katowice2019_signature_vini_foil]sticker" "1" + "[katowice2019_signature_ablej_foil]sticker" "1" + "[katowice2019_signature_art_foil]sticker" "1" + "[katowice2019_signature_kscerato_foil]sticker" "1" + "[katowice2019_signature_yuurih_foil]sticker" "1" + "[katowice2019_signature_sterling_foil]sticker" "1" + "[katowice2019_signature_dexter_foil]sticker" "1" + "[katowice2019_signature_erkast_foil]sticker" "1" + "[katowice2019_signature_malta_foil]sticker" "1" + "[katowice2019_signature_dickstacy_foil]sticker" "1" + "[katowice2019_signature_daps_foil]sticker" "1" + "[katowice2019_signature_brehze_foil]sticker" "1" + "[katowice2019_signature_fugly_foil]sticker" "1" + "[katowice2019_signature_ethan_foil]sticker" "1" + "[katowice2019_signature_cerq_foil]sticker" "1" + "[katowice2019_signature_gratisfaction_foil]sticker" "1" + "[katowice2019_signature_jks_foil]sticker" "1" + "[katowice2019_signature_azr_foil]sticker" "1" + "[katowice2019_signature_jkaem_foil]sticker" "1" + "[katowice2019_signature_liazz_foil]sticker" "1" + "[katowice2019_signature_davcost_foil]sticker" "1" + "[katowice2019_signature_coldyy1_foil]sticker" "1" + "[katowice2019_signature_dima_foil]sticker" "1" + "[katowice2019_signature_sdy_foil]sticker" "1" + "[katowice2019_signature_s0tf1k_foil]sticker" "1" + "[katowice2019_signature_kaze_foil]sticker" "1" + "[katowice2019_signature_advent_foil]sticker" "1" + "[katowice2019_signature_auman_foil]sticker" "1" + "[katowice2019_signature_zhoking_foil]sticker" "1" + "[katowice2019_signature_freeman_foil]sticker" "1" + "[katowice2019_signature_nbk_foil]sticker" "1" + "[katowice2019_signature_apex_foil]sticker" "1" + "[katowice2019_signature_alex_foil]sticker" "1" + "[katowice2019_signature_rpk_foil]sticker" "1" + "[katowice2019_signature_zywoo_foil]sticker" "1" + "[katowice2019_signature_worldedit_foil]sticker" "1" + "[katowice2019_signature_waylander_foil]sticker" "1" + "[katowice2019_signature_kvik_foil]sticker" "1" + "[katowice2019_signature_boombl4_foil]sticker" "1" + "[katowice2019_signature_n0rb3r7_foil]sticker" "1" + } + "crate_signature_pack_katowice2019_group_contenders_gold" + { + "[katowice2019_signature_fitch_gold]sticker" "1" + "[katowice2019_signature_jame_gold]sticker" "1" + "[katowice2019_signature_krizzen_gold]sticker" "1" + "[katowice2019_signature_qikert_gold]sticker" "1" + "[katowice2019_signature_buster_gold]sticker" "1" + "[katowice2019_signature_allu_gold]sticker" "1" + "[katowice2019_signature_aerial_gold]sticker" "1" + "[katowice2019_signature_xseven_gold]sticker" "1" + "[katowice2019_signature_aleksib_gold]sticker" "1" + "[katowice2019_signature_sergej_gold]sticker" "1" + "[katowice2019_signature_vini_gold]sticker" "1" + "[katowice2019_signature_ablej_gold]sticker" "1" + "[katowice2019_signature_art_gold]sticker" "1" + "[katowice2019_signature_kscerato_gold]sticker" "1" + "[katowice2019_signature_yuurih_gold]sticker" "1" + "[katowice2019_signature_sterling_gold]sticker" "1" + "[katowice2019_signature_dexter_gold]sticker" "1" + "[katowice2019_signature_erkast_gold]sticker" "1" + "[katowice2019_signature_malta_gold]sticker" "1" + "[katowice2019_signature_dickstacy_gold]sticker" "1" + "[katowice2019_signature_daps_gold]sticker" "1" + "[katowice2019_signature_brehze_gold]sticker" "1" + "[katowice2019_signature_fugly_gold]sticker" "1" + "[katowice2019_signature_ethan_gold]sticker" "1" + "[katowice2019_signature_cerq_gold]sticker" "1" + "[katowice2019_signature_gratisfaction_gold]sticker" "1" + "[katowice2019_signature_jks_gold]sticker" "1" + "[katowice2019_signature_azr_gold]sticker" "1" + "[katowice2019_signature_jkaem_gold]sticker" "1" + "[katowice2019_signature_liazz_gold]sticker" "1" + "[katowice2019_signature_davcost_gold]sticker" "1" + "[katowice2019_signature_coldyy1_gold]sticker" "1" + "[katowice2019_signature_dima_gold]sticker" "1" + "[katowice2019_signature_sdy_gold]sticker" "1" + "[katowice2019_signature_s0tf1k_gold]sticker" "1" + "[katowice2019_signature_kaze_gold]sticker" "1" + "[katowice2019_signature_advent_gold]sticker" "1" + "[katowice2019_signature_auman_gold]sticker" "1" + "[katowice2019_signature_zhoking_gold]sticker" "1" + "[katowice2019_signature_freeman_gold]sticker" "1" + "[katowice2019_signature_nbk_gold]sticker" "1" + "[katowice2019_signature_apex_gold]sticker" "1" + "[katowice2019_signature_alex_gold]sticker" "1" + "[katowice2019_signature_rpk_gold]sticker" "1" + "[katowice2019_signature_zywoo_gold]sticker" "1" + "[katowice2019_signature_worldedit_gold]sticker" "1" + "[katowice2019_signature_waylander_gold]sticker" "1" + "[katowice2019_signature_kvik_gold]sticker" "1" + "[katowice2019_signature_boombl4_gold]sticker" "1" + "[katowice2019_signature_n0rb3r7_gold]sticker" "1" + } + "crate_signature_pack_katowice2019_group_players_collection_legends" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_katowice2019_group_legends_rare" "1" + "crate_signature_pack_katowice2019_group_legends_foil" "1" + "crate_signature_pack_katowice2019_group_legends_gold" "1" + } + "crate_signature_pack_katowice2019_group_players_collection_challengers" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_katowice2019_group_challengers_rare" "1" + "crate_signature_pack_katowice2019_group_challengers_foil" "1" + "crate_signature_pack_katowice2019_group_challengers_gold" "1" + } + "crate_signature_pack_katowice2019_group_players_collection_contenders" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_katowice2019_group_contenders_rare" "1" + "crate_signature_pack_katowice2019_group_contenders_foil" "1" + "crate_signature_pack_katowice2019_group_contenders_gold" "1" + } + "crate_katowice2019_promo_de_inferno" + { + "set_inferno_2" "1" + } + "crate_katowice2019_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_katowice2019_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_katowice2019_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_katowice2019_promo_de_cache" + { + "set_cache" "1" + } + "crate_katowice2019_promo_de_train" + { + "set_train" "1" + } + "crate_katowice2019_promo_de_nuke" + { + "set_nuke_2" "1" + } + } + "items" + { + "4554" + { + "item_name" "#CSGO_TournamentPass_katowice2019" + "name" "tournament_pass_katowice2019" + "item_description" "#CSGO_TournamentPass_katowice2019_Desc" + "image_inventory" "econ/status_icons/katowice_pickem_2019_pass" + "first_sale_date" "2019-02-04" + "prefab" "katowice2019_tournament_pass_prefab" + } + "4555" + { + "name" "tournament_journal_katowice2019" + "item_name" "#CSGO_TournamentJournal_katowice2019" + "prefab" "katowice2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/katowice_pickem_2019_bronze" + "attributes" + { + "upgrade level" "0" + "upgrade threshold" "5" + "pedestal display model" "models/inventory_items/katowice_pickem_2019_bronze.mdl" + } + } + "4556" + { + "name" "tournament_journal_katowice2019_silver" + "item_name" "#CSGO_TournamentJournal_katowice2019_Silver" + "prefab" "katowice2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/katowice_pickem_2019_silver" + "attributes" + { + "upgrade level" "1" + "upgrade threshold" "7" + "pedestal display model" "models/inventory_items/katowice_pickem_2019_silver.mdl" + } + } + "4557" + { + "name" "tournament_journal_katowice2019_gold" + "item_name" "#CSGO_TournamentJournal_katowice2019_Gold" + "prefab" "katowice2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/katowice_pickem_2019_gold" + "attributes" + { + "upgrade level" "2" + "upgrade threshold" "11" + "pedestal display model" "models/inventory_items/katowice_pickem_2019_gold.mdl" + } + } + "4558" + { + "name" "tournament_journal_katowice2019_crystal" + "item_name" "#CSGO_TournamentJournal_katowice2019_Crystal" + "prefab" "katowice2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/katowice_pickem_2019_crystal" + "attributes" + { + "upgrade level" "3" + "pedestal display model" "models/inventory_items/katowice_pickem_2019_crystal.mdl" + } + } + "4559" + { + "item_name" "#StoreItem_katowice2019_team_astr_sticker" + "name" "crate_sticker_pack_katowice2019_astr" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/astr" + "loot_list_name" "katowice2019_rare_astr" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4560" + { + "item_name" "#StoreItem_katowice2019_team_avg_sticker" + "name" "crate_sticker_pack_katowice2019_avg" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/avg" + "loot_list_name" "katowice2019_rare_avg" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4561" + { + "item_name" "#StoreItem_katowice2019_team_big_sticker" + "name" "crate_sticker_pack_katowice2019_big" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/big" + "loot_list_name" "katowice2019_rare_big" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4562" + { + "item_name" "#StoreItem_katowice2019_team_c9_sticker" + "name" "crate_sticker_pack_katowice2019_c9" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/c9" + "loot_list_name" "katowice2019_rare_c9" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4563" + { + "item_name" "#StoreItem_katowice2019_team_col_sticker" + "name" "crate_sticker_pack_katowice2019_col" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/col" + "loot_list_name" "katowice2019_rare_col" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4564" + { + "item_name" "#StoreItem_katowice2019_team_ence_sticker" + "name" "crate_sticker_pack_katowice2019_ence" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/ence" + "loot_list_name" "katowice2019_rare_ence" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4565" + { + "item_name" "#StoreItem_katowice2019_team_faze_sticker" + "name" "crate_sticker_pack_katowice2019_faze" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/faze" + "loot_list_name" "katowice2019_rare_faze" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4566" + { + "item_name" "#StoreItem_katowice2019_team_fntc_sticker" + "name" "crate_sticker_pack_katowice2019_fntc" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/fntc" + "loot_list_name" "katowice2019_rare_fntc" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4567" + { + "item_name" "#StoreItem_katowice2019_team_furi_sticker" + "name" "crate_sticker_pack_katowice2019_furi" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/furi" + "loot_list_name" "katowice2019_rare_furi" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4568" + { + "item_name" "#StoreItem_katowice2019_team_g2_sticker" + "name" "crate_sticker_pack_katowice2019_g2" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/g2" + "loot_list_name" "katowice2019_rare_g2" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4569" + { + "item_name" "#StoreItem_katowice2019_team_gray_sticker" + "name" "crate_sticker_pack_katowice2019_gray" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/gray" + "loot_list_name" "katowice2019_rare_gray" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4570" + { + "item_name" "#StoreItem_katowice2019_team_hlr_sticker" + "name" "crate_sticker_pack_katowice2019_hlr" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/hlr" + "loot_list_name" "katowice2019_rare_hlr" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4571" + { + "item_name" "#StoreItem_katowice2019_team_mibr_sticker" + "name" "crate_sticker_pack_katowice2019_mibr" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/mibr" + "loot_list_name" "katowice2019_rare_mibr" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4572" + { + "item_name" "#StoreItem_katowice2019_team_navi_sticker" + "name" "crate_sticker_pack_katowice2019_navi" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/navi" + "loot_list_name" "katowice2019_rare_navi" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4573" + { + "item_name" "#StoreItem_katowice2019_team_nip_sticker" + "name" "crate_sticker_pack_katowice2019_nip" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/nip" + "loot_list_name" "katowice2019_rare_nip" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4574" + { + "item_name" "#StoreItem_katowice2019_team_nrg_sticker" + "name" "crate_sticker_pack_katowice2019_nrg" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/nrg" + "loot_list_name" "katowice2019_rare_nrg" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4575" + { + "item_name" "#StoreItem_katowice2019_team_ren_sticker" + "name" "crate_sticker_pack_katowice2019_ren" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/ren" + "loot_list_name" "katowice2019_rare_ren" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4576" + { + "item_name" "#StoreItem_katowice2019_team_liq_sticker" + "name" "crate_sticker_pack_katowice2019_liq" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/liq" + "loot_list_name" "katowice2019_rare_liq" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4577" + { + "item_name" "#StoreItem_katowice2019_team_spir_sticker" + "name" "crate_sticker_pack_katowice2019_spir" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/spir" + "loot_list_name" "katowice2019_rare_spir" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4578" + { + "item_name" "#StoreItem_katowice2019_team_tyl_sticker" + "name" "crate_sticker_pack_katowice2019_tyl" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/tyl" + "loot_list_name" "katowice2019_rare_tyl" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4579" + { + "item_name" "#StoreItem_katowice2019_team_vega_sticker" + "name" "crate_sticker_pack_katowice2019_vega" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/vega" + "loot_list_name" "katowice2019_rare_vega" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4580" + { + "item_name" "#StoreItem_katowice2019_team_vici_sticker" + "name" "crate_sticker_pack_katowice2019_vici" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/vici" + "loot_list_name" "katowice2019_rare_vici" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4581" + { + "item_name" "#StoreItem_katowice2019_team_vita_sticker" + "name" "crate_sticker_pack_katowice2019_vita" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/vita" + "loot_list_name" "katowice2019_rare_vita" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4582" + { + "item_name" "#StoreItem_katowice2019_team_wins_sticker" + "name" "crate_sticker_pack_katowice2019_wins" + "item_description" "#EventItemDesc_katowice2019_sticker_team" + "image_inventory" "econ/stickers/katowice2019/wins" + "loot_list_name" "katowice2019_rare_wins" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4583" + { + "item_name" "#StoreItem_katowice2019_team_iem_sticker" + "name" "crate_sticker_pack_katowice2019_iem" + "item_description" "#EventItemDesc_katowice2019_sticker_org" + "image_inventory" "econ/stickers/katowice2019/iem" + "loot_list_name" "katowice2019_rare_iem" + "prefab" "katowice2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4584" + { + "item_name" "#CSGO_crate_sticker_pack_katowice2019_legends" + "name" "crate_sticker_pack_katowice2019_legends" + "item_description" "#CSGO_crate_sticker_pack_katowice2019_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_katowice2019_legends" + "prefab" "katowice2019_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "260" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_katowice2019_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_katowice2019_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4585" + { + "item_name" "#CSGO_crate_sticker_pack_katowice2019_challengers" + "name" "crate_sticker_pack_katowice2019_challengers" + "item_description" "#CSGO_crate_sticker_pack_katowice2019_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_katowice2019_challengers" + "prefab" "katowice2019_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "261" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_katowice2019_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_katowice2019_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4586" + { + "item_name" "#CSGO_crate_sticker_pack_katowice2019_contenders" + "name" "crate_sticker_pack_katowice2019_contenders" + "item_description" "#CSGO_crate_sticker_pack_katowice2019_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_katowice2019_contenders" + "prefab" "katowice2019_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "262" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_katowice2019_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_katowice2019_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4587" + { + "item_name" "#CSGO_crate_signature_pack_katowice2019_group_legends" + "name" "crate_signature_pack_katowice2019_group_legends" + "item_description" "#CSGO_crate_signature_pack_katowice2019_group_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_katowice2019_group_legends" + "prefab" "katowice2019_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "263" + } + } + } + "4588" + { + "item_name" "#CSGO_crate_signature_pack_katowice2019_group_challengers" + "name" "crate_signature_pack_katowice2019_group_challengers" + "item_description" "#CSGO_crate_signature_pack_katowice2019_group_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_katowice2019_group_challengers" + "prefab" "katowice2019_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "264" + } + } + } + "4589" + { + "item_name" "#CSGO_crate_signature_pack_katowice2019_group_contenders" + "name" "crate_signature_pack_katowice2019_group_contenders" + "item_description" "#CSGO_crate_signature_pack_katowice2019_group_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_katowice2019_group_contenders" + "prefab" "katowice2019_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "265" + } + } + } + "4590" + { + "item_name" "#CSGO_crate_katowice2019_promo_de_inferno" + "name" "crate_katowice2019_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_katowice2019_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "266" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno_2" + "tag_text" "#CSGO_set_inferno_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4591" + { + "item_name" "#CSGO_crate_katowice2019_promo_de_mirage" + "name" "crate_katowice2019_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_katowice2019_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "267" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4592" + { + "item_name" "#CSGO_crate_katowice2019_promo_de_dust2" + "name" "crate_katowice2019_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_katowice2019_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "268" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4593" + { + "item_name" "#CSGO_crate_katowice2019_promo_de_overpass" + "name" "crate_katowice2019_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_katowice2019_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "269" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4594" + { + "item_name" "#CSGO_crate_katowice2019_promo_de_cache" + "name" "crate_katowice2019_promo_de_cache" + "image_inventory" "econ/weapon_cases/crate_katowice2019_promo_de_cache" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "270" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4595" + { + "item_name" "#CSGO_crate_katowice2019_promo_de_train" + "name" "crate_katowice2019_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_katowice2019_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "271" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4596" + { + "item_name" "#CSGO_crate_katowice2019_promo_de_nuke" + "name" "crate_katowice2019_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_katowice2019_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "272" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "15" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke_2" + "tag_text" "#CSGO_set_nuke_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "3460" + { + "name" "katowice2019_team_astr" + "item_name" "#StickerKit_katowice2019_team_astr" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/astr" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "60" + } + "3461" + { + "name" "katowice2019_team_astr_holo" + "item_name" "#StickerKit_katowice2019_team_astr_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "60" + } + "3462" + { + "name" "katowice2019_team_astr_foil" + "item_name" "#StickerKit_katowice2019_team_astr_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "60" + } + "3463" + { + "name" "katowice2019_team_astr_gold" + "item_name" "#StickerKit_katowice2019_team_astr_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "60" + } + "3464" + { + "name" "katowice2019_team_avg" + "item_name" "#StickerKit_katowice2019_team_avg" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/avg" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "75" + } + "3465" + { + "name" "katowice2019_team_avg_holo" + "item_name" "#StickerKit_katowice2019_team_avg_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/avg_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "75" + } + "3466" + { + "name" "katowice2019_team_avg_foil" + "item_name" "#StickerKit_katowice2019_team_avg_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/avg_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "75" + } + "3467" + { + "name" "katowice2019_team_avg_gold" + "item_name" "#StickerKit_katowice2019_team_avg_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/avg_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "75" + } + "3468" + { + "name" "katowice2019_team_big" + "item_name" "#StickerKit_katowice2019_team_big" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/big" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "69" + } + "3469" + { + "name" "katowice2019_team_big_holo" + "item_name" "#StickerKit_katowice2019_team_big_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/big_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "69" + } + "3470" + { + "name" "katowice2019_team_big_foil" + "item_name" "#StickerKit_katowice2019_team_big_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/big_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "69" + } + "3471" + { + "name" "katowice2019_team_big_gold" + "item_name" "#StickerKit_katowice2019_team_big_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/big_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "69" + } + "3472" + { + "name" "katowice2019_team_c9" + "item_name" "#StickerKit_katowice2019_team_c9" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/c9" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "33" + } + "3473" + { + "name" "katowice2019_team_c9_holo" + "item_name" "#StickerKit_katowice2019_team_c9_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/c9_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "33" + } + "3474" + { + "name" "katowice2019_team_c9_foil" + "item_name" "#StickerKit_katowice2019_team_c9_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/c9_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "33" + } + "3475" + { + "name" "katowice2019_team_c9_gold" + "item_name" "#StickerKit_katowice2019_team_c9_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/c9_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "33" + } + "3476" + { + "name" "katowice2019_team_col" + "item_name" "#StickerKit_katowice2019_team_col" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/col" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "3" + } + "3477" + { + "name" "katowice2019_team_col_holo" + "item_name" "#StickerKit_katowice2019_team_col_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/col_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "3" + } + "3478" + { + "name" "katowice2019_team_col_foil" + "item_name" "#StickerKit_katowice2019_team_col_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/col_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "3" + } + "3479" + { + "name" "katowice2019_team_col_gold" + "item_name" "#StickerKit_katowice2019_team_col_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/col_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "3" + } + "3480" + { + "name" "katowice2019_team_ence" + "item_name" "#StickerKit_katowice2019_team_ence" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ence" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "84" + } + "3481" + { + "name" "katowice2019_team_ence_holo" + "item_name" "#StickerKit_katowice2019_team_ence_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ence_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "84" + } + "3482" + { + "name" "katowice2019_team_ence_foil" + "item_name" "#StickerKit_katowice2019_team_ence_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ence_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "84" + } + "3483" + { + "name" "katowice2019_team_ence_gold" + "item_name" "#StickerKit_katowice2019_team_ence_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ence_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "84" + } + "3484" + { + "name" "katowice2019_team_faze" + "item_name" "#StickerKit_katowice2019_team_faze" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/faze" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "61" + } + "3485" + { + "name" "katowice2019_team_faze_holo" + "item_name" "#StickerKit_katowice2019_team_faze_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "61" + } + "3486" + { + "name" "katowice2019_team_faze_foil" + "item_name" "#StickerKit_katowice2019_team_faze_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "61" + } + "3487" + { + "name" "katowice2019_team_faze_gold" + "item_name" "#StickerKit_katowice2019_team_faze_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "61" + } + "3488" + { + "name" "katowice2019_team_fntc" + "item_name" "#StickerKit_katowice2019_team_fntc" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/fntc" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "6" + } + "3489" + { + "name" "katowice2019_team_fntc_holo" + "item_name" "#StickerKit_katowice2019_team_fntc_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "6" + } + "3490" + { + "name" "katowice2019_team_fntc_foil" + "item_name" "#StickerKit_katowice2019_team_fntc_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "6" + } + "3491" + { + "name" "katowice2019_team_fntc_gold" + "item_name" "#StickerKit_katowice2019_team_fntc_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/fntc_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "6" + } + "3492" + { + "name" "katowice2019_team_furi" + "item_name" "#StickerKit_katowice2019_team_furi" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/furi" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "85" + } + "3493" + { + "name" "katowice2019_team_furi_holo" + "item_name" "#StickerKit_katowice2019_team_furi_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/furi_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "85" + } + "3494" + { + "name" "katowice2019_team_furi_foil" + "item_name" "#StickerKit_katowice2019_team_furi_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/furi_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "85" + } + "3495" + { + "name" "katowice2019_team_furi_gold" + "item_name" "#StickerKit_katowice2019_team_furi_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/furi_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "85" + } + "3496" + { + "name" "katowice2019_team_g2" + "item_name" "#StickerKit_katowice2019_team_g2" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/g2" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "59" + } + "3497" + { + "name" "katowice2019_team_g2_holo" + "item_name" "#StickerKit_katowice2019_team_g2_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "59" + } + "3498" + { + "name" "katowice2019_team_g2_foil" + "item_name" "#StickerKit_katowice2019_team_g2_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "59" + } + "3499" + { + "name" "katowice2019_team_g2_gold" + "item_name" "#StickerKit_katowice2019_team_g2_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "59" + } + "3500" + { + "name" "katowice2019_team_gray" + "item_name" "#StickerKit_katowice2019_team_gray" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/gray" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "86" + } + "3501" + { + "name" "katowice2019_team_gray_holo" + "item_name" "#StickerKit_katowice2019_team_gray_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/gray_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "86" + } + "3502" + { + "name" "katowice2019_team_gray_foil" + "item_name" "#StickerKit_katowice2019_team_gray_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/gray_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "86" + } + "3503" + { + "name" "katowice2019_team_gray_gold" + "item_name" "#StickerKit_katowice2019_team_gray_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/gray_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "86" + } + "3504" + { + "name" "katowice2019_team_hlr" + "item_name" "#StickerKit_katowice2019_team_hlr" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/hlr" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "25" + } + "3505" + { + "name" "katowice2019_team_hlr_holo" + "item_name" "#StickerKit_katowice2019_team_hlr_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/hlr_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "25" + } + "3506" + { + "name" "katowice2019_team_hlr_foil" + "item_name" "#StickerKit_katowice2019_team_hlr_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/hlr_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "25" + } + "3507" + { + "name" "katowice2019_team_hlr_gold" + "item_name" "#StickerKit_katowice2019_team_hlr_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/hlr_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "25" + } + "3508" + { + "name" "katowice2019_team_mibr" + "item_name" "#StickerKit_katowice2019_team_mibr" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/mibr" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "80" + } + "3509" + { + "name" "katowice2019_team_mibr_holo" + "item_name" "#StickerKit_katowice2019_team_mibr_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/mibr_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "80" + } + "3510" + { + "name" "katowice2019_team_mibr_foil" + "item_name" "#StickerKit_katowice2019_team_mibr_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/mibr_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "80" + } + "3511" + { + "name" "katowice2019_team_mibr_gold" + "item_name" "#StickerKit_katowice2019_team_mibr_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/mibr_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "80" + } + "3512" + { + "name" "katowice2019_team_navi" + "item_name" "#StickerKit_katowice2019_team_navi" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/navi" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "12" + } + "3513" + { + "name" "katowice2019_team_navi_holo" + "item_name" "#StickerKit_katowice2019_team_navi_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "12" + } + "3514" + { + "name" "katowice2019_team_navi_foil" + "item_name" "#StickerKit_katowice2019_team_navi_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "12" + } + "3515" + { + "name" "katowice2019_team_navi_gold" + "item_name" "#StickerKit_katowice2019_team_navi_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "12" + } + "3516" + { + "name" "katowice2019_team_nip" + "item_name" "#StickerKit_katowice2019_team_nip" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nip" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "1" + } + "3517" + { + "name" "katowice2019_team_nip_holo" + "item_name" "#StickerKit_katowice2019_team_nip_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nip_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "1" + } + "3518" + { + "name" "katowice2019_team_nip_foil" + "item_name" "#StickerKit_katowice2019_team_nip_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nip_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "1" + } + "3519" + { + "name" "katowice2019_team_nip_gold" + "item_name" "#StickerKit_katowice2019_team_nip_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nip_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "1" + } + "3520" + { + "name" "katowice2019_team_nrg" + "item_name" "#StickerKit_katowice2019_team_nrg" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nrg" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "87" + } + "3521" + { + "name" "katowice2019_team_nrg_holo" + "item_name" "#StickerKit_katowice2019_team_nrg_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nrg_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "87" + } + "3522" + { + "name" "katowice2019_team_nrg_foil" + "item_name" "#StickerKit_katowice2019_team_nrg_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nrg_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "87" + } + "3523" + { + "name" "katowice2019_team_nrg_gold" + "item_name" "#StickerKit_katowice2019_team_nrg_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/nrg_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "87" + } + "3524" + { + "name" "katowice2019_team_ren" + "item_name" "#StickerKit_katowice2019_team_ren" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ren" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "53" + } + "3525" + { + "name" "katowice2019_team_ren_holo" + "item_name" "#StickerKit_katowice2019_team_ren_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ren_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "53" + } + "3526" + { + "name" "katowice2019_team_ren_foil" + "item_name" "#StickerKit_katowice2019_team_ren_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ren_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "53" + } + "3527" + { + "name" "katowice2019_team_ren_gold" + "item_name" "#StickerKit_katowice2019_team_ren_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/ren_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "53" + } + "3528" + { + "name" "katowice2019_team_liq" + "item_name" "#StickerKit_katowice2019_team_liq" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/liq" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "48" + } + "3529" + { + "name" "katowice2019_team_liq_holo" + "item_name" "#StickerKit_katowice2019_team_liq_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "48" + } + "3530" + { + "name" "katowice2019_team_liq_foil" + "item_name" "#StickerKit_katowice2019_team_liq_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "48" + } + "3531" + { + "name" "katowice2019_team_liq_gold" + "item_name" "#StickerKit_katowice2019_team_liq_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "48" + } + "3532" + { + "name" "katowice2019_team_spir" + "item_name" "#StickerKit_katowice2019_team_spir" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/spir" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "81" + } + "3533" + { + "name" "katowice2019_team_spir_holo" + "item_name" "#StickerKit_katowice2019_team_spir_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/spir_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "81" + } + "3534" + { + "name" "katowice2019_team_spir_foil" + "item_name" "#StickerKit_katowice2019_team_spir_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/spir_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "81" + } + "3535" + { + "name" "katowice2019_team_spir_gold" + "item_name" "#StickerKit_katowice2019_team_spir_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/spir_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "81" + } + "3536" + { + "name" "katowice2019_team_tyl" + "item_name" "#StickerKit_katowice2019_team_tyl" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/tyl" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "74" + } + "3537" + { + "name" "katowice2019_team_tyl_holo" + "item_name" "#StickerKit_katowice2019_team_tyl_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/tyl_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "74" + } + "3538" + { + "name" "katowice2019_team_tyl_foil" + "item_name" "#StickerKit_katowice2019_team_tyl_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/tyl_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "74" + } + "3539" + { + "name" "katowice2019_team_tyl_gold" + "item_name" "#StickerKit_katowice2019_team_tyl_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/tyl_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "74" + } + "3540" + { + "name" "katowice2019_team_vega" + "item_name" "#StickerKit_katowice2019_team_vega" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vega" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "70" + } + "3541" + { + "name" "katowice2019_team_vega_holo" + "item_name" "#StickerKit_katowice2019_team_vega_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vega_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "70" + } + "3542" + { + "name" "katowice2019_team_vega_foil" + "item_name" "#StickerKit_katowice2019_team_vega_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vega_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "70" + } + "3543" + { + "name" "katowice2019_team_vega_gold" + "item_name" "#StickerKit_katowice2019_team_vega_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vega_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "70" + } + "3544" + { + "name" "katowice2019_team_vici" + "item_name" "#StickerKit_katowice2019_team_vici" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vici" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "88" + } + "3545" + { + "name" "katowice2019_team_vici_holo" + "item_name" "#StickerKit_katowice2019_team_vici_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vici_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "88" + } + "3546" + { + "name" "katowice2019_team_vici_foil" + "item_name" "#StickerKit_katowice2019_team_vici_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vici_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "88" + } + "3547" + { + "name" "katowice2019_team_vici_gold" + "item_name" "#StickerKit_katowice2019_team_vici_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vici_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "88" + } + "3548" + { + "name" "katowice2019_team_vita" + "item_name" "#StickerKit_katowice2019_team_vita" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vita" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "89" + } + "3549" + { + "name" "katowice2019_team_vita_holo" + "item_name" "#StickerKit_katowice2019_team_vita_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vita_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "89" + } + "3550" + { + "name" "katowice2019_team_vita_foil" + "item_name" "#StickerKit_katowice2019_team_vita_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vita_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "89" + } + "3551" + { + "name" "katowice2019_team_vita_gold" + "item_name" "#StickerKit_katowice2019_team_vita_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/vita_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "89" + } + "3552" + { + "name" "katowice2019_team_wins" + "item_name" "#StickerKit_katowice2019_team_wins" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/wins" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "83" + } + "3553" + { + "name" "katowice2019_team_wins_holo" + "item_name" "#StickerKit_katowice2019_team_wins_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/wins_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "83" + } + "3554" + { + "name" "katowice2019_team_wins_foil" + "item_name" "#StickerKit_katowice2019_team_wins_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/wins_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "83" + } + "3555" + { + "name" "katowice2019_team_wins_gold" + "item_name" "#StickerKit_katowice2019_team_wins_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_team" + "sticker_material" "katowice2019/wins_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "83" + } + "3556" + { + "name" "katowice2019_team_iem" + "item_name" "#StickerKit_katowice2019_team_iem" + "description_string" "#EventItemDesc_katowice2019_sticker_org" + "sticker_material" "katowice2019/iem" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "0" + } + "3557" + { + "name" "katowice2019_team_iem_holo" + "item_name" "#StickerKit_katowice2019_team_iem_holo" + "description_string" "#EventItemDesc_katowice2019_sticker_org" + "sticker_material" "katowice2019/iem_holo" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "0" + } + "3558" + { + "name" "katowice2019_team_iem_foil" + "item_name" "#StickerKit_katowice2019_team_iem_foil" + "description_string" "#EventItemDesc_katowice2019_sticker_org" + "sticker_material" "katowice2019/iem_foil" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "0" + } + "3559" + { + "name" "katowice2019_team_iem_gold" + "item_name" "#StickerKit_katowice2019_team_iem_gold" + "description_string" "#EventItemDesc_katowice2019_sticker_org" + "sticker_material" "katowice2019/iem_gold" + "item_rarity" "legendary" + "tournament_event_id" "15" + "tournament_team_id" "0" + } + "3560" + { + "name" "katowice2019_team_astr_graffiti" + "item_name" "#StickerKit_katowice2019_team_astr" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/astr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "60" + } + "3561" + { + "name" "katowice2019_team_avg_graffiti" + "item_name" "#StickerKit_katowice2019_team_avg" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/avg_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "75" + } + "3562" + { + "name" "katowice2019_team_big_graffiti" + "item_name" "#StickerKit_katowice2019_team_big" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/big_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "69" + } + "3563" + { + "name" "katowice2019_team_c9_graffiti" + "item_name" "#StickerKit_katowice2019_team_c9" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/c9_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "33" + } + "3564" + { + "name" "katowice2019_team_col_graffiti" + "item_name" "#StickerKit_katowice2019_team_col" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/col_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "3" + } + "3565" + { + "name" "katowice2019_team_ence_graffiti" + "item_name" "#StickerKit_katowice2019_team_ence" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/ence_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "84" + } + "3566" + { + "name" "katowice2019_team_faze_graffiti" + "item_name" "#StickerKit_katowice2019_team_faze" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "61" + } + "3567" + { + "name" "katowice2019_team_fntc_graffiti" + "item_name" "#StickerKit_katowice2019_team_fntc" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/fntc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "6" + } + "3568" + { + "name" "katowice2019_team_furi_graffiti" + "item_name" "#StickerKit_katowice2019_team_furi" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/furi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "85" + } + "3569" + { + "name" "katowice2019_team_g2_graffiti" + "item_name" "#StickerKit_katowice2019_team_g2" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/g2_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "59" + } + "3570" + { + "name" "katowice2019_team_gray_graffiti" + "item_name" "#StickerKit_katowice2019_team_gray" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/gray_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "86" + } + "3571" + { + "name" "katowice2019_team_hlr_graffiti" + "item_name" "#StickerKit_katowice2019_team_hlr" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/hlr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "25" + } + "3572" + { + "name" "katowice2019_team_mibr_graffiti" + "item_name" "#StickerKit_katowice2019_team_mibr" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/mibr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "80" + } + "3573" + { + "name" "katowice2019_team_navi_graffiti" + "item_name" "#StickerKit_katowice2019_team_navi" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "12" + } + "3574" + { + "name" "katowice2019_team_nip_graffiti" + "item_name" "#StickerKit_katowice2019_team_nip" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/nip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "1" + } + "3575" + { + "name" "katowice2019_team_nrg_graffiti" + "item_name" "#StickerKit_katowice2019_team_nrg" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/nrg_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "87" + } + "3576" + { + "name" "katowice2019_team_ren_graffiti" + "item_name" "#StickerKit_katowice2019_team_ren" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/ren_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "53" + } + "3577" + { + "name" "katowice2019_team_liq_graffiti" + "item_name" "#StickerKit_katowice2019_team_liq" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "48" + } + "3578" + { + "name" "katowice2019_team_spir_graffiti" + "item_name" "#StickerKit_katowice2019_team_spir" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/spir_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "81" + } + "3579" + { + "name" "katowice2019_team_tyl_graffiti" + "item_name" "#StickerKit_katowice2019_team_tyl" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/tyl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "74" + } + "3580" + { + "name" "katowice2019_team_vega_graffiti" + "item_name" "#StickerKit_katowice2019_team_vega" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/vega_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "70" + } + "3581" + { + "name" "katowice2019_team_vici_graffiti" + "item_name" "#StickerKit_katowice2019_team_vici" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/vici_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "88" + } + "3582" + { + "name" "katowice2019_team_vita_graffiti" + "item_name" "#StickerKit_katowice2019_team_vita" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/vita_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "89" + } + "3583" + { + "name" "katowice2019_team_wins_graffiti" + "item_name" "#StickerKit_katowice2019_team_wins" + "description_string" "#EventItemDesc_katowice2019_graffiti_team" + "sticker_material" "katowice2019/wins_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "83" + } + "3584" + { + "name" "katowice2019_team_iem_graffiti" + "item_name" "#StickerKit_katowice2019_team_iem" + "description_string" "#EventItemDesc_katowice2019_graffiti_org" + "sticker_material" "katowice2019/iem_graffiti" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "0" + } + "3585" + { + "name" "katowice2019_signature_magisk" + "item_name" "#StickerKit_katowice2019_signature_magisk" + "description_string" "#StickerKit_desc_katowice2019_signature_magisk" + "sticker_material" "katowice2019/sig_magisk" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "3586" + { + "name" "katowice2019_signature_magisk_foil" + "item_name" "#StickerKit_katowice2019_signature_magisk_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_magisk_foil" + "sticker_material" "katowice2019/sig_magisk_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "3587" + { + "name" "katowice2019_signature_magisk_gold" + "item_name" "#StickerKit_katowice2019_signature_magisk_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_magisk_gold" + "sticker_material" "katowice2019/sig_magisk_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "3588" + { + "name" "katowice2019_signature_device" + "item_name" "#StickerKit_katowice2019_signature_device" + "description_string" "#StickerKit_desc_katowice2019_signature_device" + "sticker_material" "katowice2019/sig_device" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "3589" + { + "name" "katowice2019_signature_device_foil" + "item_name" "#StickerKit_katowice2019_signature_device_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_device_foil" + "sticker_material" "katowice2019/sig_device_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "3590" + { + "name" "katowice2019_signature_device_gold" + "item_name" "#StickerKit_katowice2019_signature_device_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_device_gold" + "sticker_material" "katowice2019/sig_device_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "3591" + { + "name" "katowice2019_signature_xyp9x" + "item_name" "#StickerKit_katowice2019_signature_xyp9x" + "description_string" "#StickerKit_desc_katowice2019_signature_xyp9x" + "sticker_material" "katowice2019/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "3592" + { + "name" "katowice2019_signature_xyp9x_foil" + "item_name" "#StickerKit_katowice2019_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_xyp9x_foil" + "sticker_material" "katowice2019/sig_xyp9x_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "3593" + { + "name" "katowice2019_signature_xyp9x_gold" + "item_name" "#StickerKit_katowice2019_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_xyp9x_gold" + "sticker_material" "katowice2019/sig_xyp9x_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "3594" + { + "name" "katowice2019_signature_dupreeh" + "item_name" "#StickerKit_katowice2019_signature_dupreeh" + "description_string" "#StickerKit_desc_katowice2019_signature_dupreeh" + "sticker_material" "katowice2019/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "3595" + { + "name" "katowice2019_signature_dupreeh_foil" + "item_name" "#StickerKit_katowice2019_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_dupreeh_foil" + "sticker_material" "katowice2019/sig_dupreeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "3596" + { + "name" "katowice2019_signature_dupreeh_gold" + "item_name" "#StickerKit_katowice2019_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_dupreeh_gold" + "sticker_material" "katowice2019/sig_dupreeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "3597" + { + "name" "katowice2019_signature_gla1ve" + "item_name" "#StickerKit_katowice2019_signature_gla1ve" + "description_string" "#StickerKit_desc_katowice2019_signature_gla1ve" + "sticker_material" "katowice2019/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "3598" + { + "name" "katowice2019_signature_gla1ve_foil" + "item_name" "#StickerKit_katowice2019_signature_gla1ve_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_gla1ve_foil" + "sticker_material" "katowice2019/sig_gla1ve_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "3599" + { + "name" "katowice2019_signature_gla1ve_gold" + "item_name" "#StickerKit_katowice2019_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_gla1ve_gold" + "sticker_material" "katowice2019/sig_gla1ve_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "3600" + { + "name" "katowice2019_signature_fitch" + "item_name" "#StickerKit_katowice2019_signature_fitch" + "description_string" "#StickerKit_desc_katowice2019_signature_fitch" + "sticker_material" "katowice2019/sig_fitch" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "33208850" + } + "3601" + { + "name" "katowice2019_signature_fitch_foil" + "item_name" "#StickerKit_katowice2019_signature_fitch_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_fitch_foil" + "sticker_material" "katowice2019/sig_fitch_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "33208850" + } + "3602" + { + "name" "katowice2019_signature_fitch_gold" + "item_name" "#StickerKit_katowice2019_signature_fitch_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_fitch_gold" + "sticker_material" "katowice2019/sig_fitch_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "33208850" + } + "3603" + { + "name" "katowice2019_signature_jame" + "item_name" "#StickerKit_katowice2019_signature_jame" + "description_string" "#StickerKit_desc_katowice2019_signature_jame" + "sticker_material" "katowice2019/sig_jame" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "3604" + { + "name" "katowice2019_signature_jame_foil" + "item_name" "#StickerKit_katowice2019_signature_jame_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_jame_foil" + "sticker_material" "katowice2019/sig_jame_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "3605" + { + "name" "katowice2019_signature_jame_gold" + "item_name" "#StickerKit_katowice2019_signature_jame_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_jame_gold" + "sticker_material" "katowice2019/sig_jame_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "3606" + { + "name" "katowice2019_signature_krizzen" + "item_name" "#StickerKit_katowice2019_signature_krizzen" + "description_string" "#StickerKit_desc_katowice2019_signature_krizzen" + "sticker_material" "katowice2019/sig_krizzen" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "107672171" + } + "3607" + { + "name" "katowice2019_signature_krizzen_foil" + "item_name" "#StickerKit_katowice2019_signature_krizzen_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_krizzen_foil" + "sticker_material" "katowice2019/sig_krizzen_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "107672171" + } + "3608" + { + "name" "katowice2019_signature_krizzen_gold" + "item_name" "#StickerKit_katowice2019_signature_krizzen_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_krizzen_gold" + "sticker_material" "katowice2019/sig_krizzen_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "107672171" + } + "3609" + { + "name" "katowice2019_signature_qikert" + "item_name" "#StickerKit_katowice2019_signature_qikert" + "description_string" "#StickerKit_desc_katowice2019_signature_qikert" + "sticker_material" "katowice2019/sig_qikert" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "3610" + { + "name" "katowice2019_signature_qikert_foil" + "item_name" "#StickerKit_katowice2019_signature_qikert_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_qikert_foil" + "sticker_material" "katowice2019/sig_qikert_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "3611" + { + "name" "katowice2019_signature_qikert_gold" + "item_name" "#StickerKit_katowice2019_signature_qikert_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_qikert_gold" + "sticker_material" "katowice2019/sig_qikert_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "3612" + { + "name" "katowice2019_signature_buster" + "item_name" "#StickerKit_katowice2019_signature_buster" + "description_string" "#StickerKit_desc_katowice2019_signature_buster" + "sticker_material" "katowice2019/sig_buster" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "3613" + { + "name" "katowice2019_signature_buster_foil" + "item_name" "#StickerKit_katowice2019_signature_buster_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_buster_foil" + "sticker_material" "katowice2019/sig_buster_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "3614" + { + "name" "katowice2019_signature_buster_gold" + "item_name" "#StickerKit_katowice2019_signature_buster_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_buster_gold" + "sticker_material" "katowice2019/sig_buster_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "3615" + { + "name" "katowice2019_signature_gobb" + "item_name" "#StickerKit_katowice2019_signature_gobb" + "description_string" "#StickerKit_desc_katowice2019_signature_gobb" + "sticker_material" "katowice2019/sig_gobb" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "3616" + { + "name" "katowice2019_signature_gobb_foil" + "item_name" "#StickerKit_katowice2019_signature_gobb_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_gobb_foil" + "sticker_material" "katowice2019/sig_gobb_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "3617" + { + "name" "katowice2019_signature_gobb_gold" + "item_name" "#StickerKit_katowice2019_signature_gobb_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_gobb_gold" + "sticker_material" "katowice2019/sig_gobb_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "1162165" + } + "3618" + { + "name" "katowice2019_signature_tabsen" + "item_name" "#StickerKit_katowice2019_signature_tabsen" + "description_string" "#StickerKit_desc_katowice2019_signature_tabsen" + "sticker_material" "katowice2019/sig_tabsen" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "3619" + { + "name" "katowice2019_signature_tabsen_foil" + "item_name" "#StickerKit_katowice2019_signature_tabsen_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_tabsen_foil" + "sticker_material" "katowice2019/sig_tabsen_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "3620" + { + "name" "katowice2019_signature_tabsen_gold" + "item_name" "#StickerKit_katowice2019_signature_tabsen_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_tabsen_gold" + "sticker_material" "katowice2019/sig_tabsen_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "1225952" + } + "3621" + { + "name" "katowice2019_signature_tizian" + "item_name" "#StickerKit_katowice2019_signature_tizian" + "description_string" "#StickerKit_desc_katowice2019_signature_tizian" + "sticker_material" "katowice2019/sig_tizian" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "37291208" + } + "3622" + { + "name" "katowice2019_signature_tizian_foil" + "item_name" "#StickerKit_katowice2019_signature_tizian_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_tizian_foil" + "sticker_material" "katowice2019/sig_tizian_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "37291208" + } + "3623" + { + "name" "katowice2019_signature_tizian_gold" + "item_name" "#StickerKit_katowice2019_signature_tizian_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_tizian_gold" + "sticker_material" "katowice2019/sig_tizian_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "37291208" + } + "3624" + { + "name" "katowice2019_signature_xantares" + "item_name" "#StickerKit_katowice2019_signature_xantares" + "description_string" "#StickerKit_desc_katowice2019_signature_xantares" + "sticker_material" "katowice2019/sig_xantares" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "83853068" + } + "3625" + { + "name" "katowice2019_signature_xantares_foil" + "item_name" "#StickerKit_katowice2019_signature_xantares_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_xantares_foil" + "sticker_material" "katowice2019/sig_xantares_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "83853068" + } + "3626" + { + "name" "katowice2019_signature_xantares_gold" + "item_name" "#StickerKit_katowice2019_signature_xantares_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_xantares_gold" + "sticker_material" "katowice2019/sig_xantares_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "83853068" + } + "3627" + { + "name" "katowice2019_signature_smooya" + "item_name" "#StickerKit_katowice2019_signature_smooya" + "description_string" "#StickerKit_desc_katowice2019_signature_smooya" + "sticker_material" "katowice2019/sig_smooya" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "211423593" + } + "3628" + { + "name" "katowice2019_signature_smooya_foil" + "item_name" "#StickerKit_katowice2019_signature_smooya_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_smooya_foil" + "sticker_material" "katowice2019/sig_smooya_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "211423593" + } + "3629" + { + "name" "katowice2019_signature_smooya_gold" + "item_name" "#StickerKit_katowice2019_signature_smooya_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_smooya_gold" + "sticker_material" "katowice2019/sig_smooya_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "69" + "tournament_player_id" "211423593" + } + "3630" + { + "name" "katowice2019_signature_flusha" + "item_name" "#StickerKit_katowice2019_signature_flusha" + "description_string" "#StickerKit_desc_katowice2019_signature_flusha" + "sticker_material" "katowice2019/sig_flusha" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "31082355" + } + "3631" + { + "name" "katowice2019_signature_flusha_foil" + "item_name" "#StickerKit_katowice2019_signature_flusha_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_flusha_foil" + "sticker_material" "katowice2019/sig_flusha_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "31082355" + } + "3632" + { + "name" "katowice2019_signature_flusha_gold" + "item_name" "#StickerKit_katowice2019_signature_flusha_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_flusha_gold" + "sticker_material" "katowice2019/sig_flusha_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "31082355" + } + "3633" + { + "name" "katowice2019_signature_kioshima" + "item_name" "#StickerKit_katowice2019_signature_kioshima" + "description_string" "#StickerKit_desc_katowice2019_signature_kioshima" + "sticker_material" "katowice2019/sig_kioshima" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "40517167" + } + "3634" + { + "name" "katowice2019_signature_kioshima_foil" + "item_name" "#StickerKit_katowice2019_signature_kioshima_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_kioshima_foil" + "sticker_material" "katowice2019/sig_kioshima_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "40517167" + } + "3635" + { + "name" "katowice2019_signature_kioshima_gold" + "item_name" "#StickerKit_katowice2019_signature_kioshima_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_kioshima_gold" + "sticker_material" "katowice2019/sig_kioshima_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "40517167" + } + "3636" + { + "name" "katowice2019_signature_rush" + "item_name" "#StickerKit_katowice2019_signature_rush" + "description_string" "#StickerKit_desc_katowice2019_signature_rush" + "sticker_material" "katowice2019/sig_rush" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "3637" + { + "name" "katowice2019_signature_rush_foil" + "item_name" "#StickerKit_katowice2019_signature_rush_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_rush_foil" + "sticker_material" "katowice2019/sig_rush_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "3638" + { + "name" "katowice2019_signature_rush_gold" + "item_name" "#StickerKit_katowice2019_signature_rush_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_rush_gold" + "sticker_material" "katowice2019/sig_rush_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "63326592" + } + "3639" + { + "name" "katowice2019_signature_autimatic" + "item_name" "#StickerKit_katowice2019_signature_autimatic" + "description_string" "#StickerKit_desc_katowice2019_signature_autimatic" + "sticker_material" "katowice2019/sig_autimatic" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "3640" + { + "name" "katowice2019_signature_autimatic_foil" + "item_name" "#StickerKit_katowice2019_signature_autimatic_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_autimatic_foil" + "sticker_material" "katowice2019/sig_autimatic_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "3641" + { + "name" "katowice2019_signature_autimatic_gold" + "item_name" "#StickerKit_katowice2019_signature_autimatic_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_autimatic_gold" + "sticker_material" "katowice2019/sig_autimatic_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "94605121" + } + "3642" + { + "name" "katowice2019_signature_golden" + "item_name" "#StickerKit_katowice2019_signature_golden" + "description_string" "#StickerKit_desc_katowice2019_signature_golden" + "sticker_material" "katowice2019/sig_golden" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "116509497" + } + "3643" + { + "name" "katowice2019_signature_golden_foil" + "item_name" "#StickerKit_katowice2019_signature_golden_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_golden_foil" + "sticker_material" "katowice2019/sig_golden_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "116509497" + } + "3644" + { + "name" "katowice2019_signature_golden_gold" + "item_name" "#StickerKit_katowice2019_signature_golden_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_golden_gold" + "sticker_material" "katowice2019/sig_golden_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "33" + "tournament_player_id" "116509497" + } + "3645" + { + "name" "katowice2019_signature_nothing" + "item_name" "#StickerKit_katowice2019_signature_nothing" + "description_string" "#StickerKit_desc_katowice2019_signature_nothing" + "sticker_material" "katowice2019/sig_nothing" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "755286" + } + "3646" + { + "name" "katowice2019_signature_nothing_foil" + "item_name" "#StickerKit_katowice2019_signature_nothing_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_nothing_foil" + "sticker_material" "katowice2019/sig_nothing_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "755286" + } + "3647" + { + "name" "katowice2019_signature_nothing_gold" + "item_name" "#StickerKit_katowice2019_signature_nothing_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_nothing_gold" + "sticker_material" "katowice2019/sig_nothing_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "755286" + } + "3648" + { + "name" "katowice2019_signature_rickeh" + "item_name" "#StickerKit_katowice2019_signature_rickeh" + "description_string" "#StickerKit_desc_katowice2019_signature_rickeh" + "sticker_material" "katowice2019/sig_rickeh" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "3215921" + } + "3649" + { + "name" "katowice2019_signature_rickeh_foil" + "item_name" "#StickerKit_katowice2019_signature_rickeh_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_rickeh_foil" + "sticker_material" "katowice2019/sig_rickeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "3215921" + } + "3650" + { + "name" "katowice2019_signature_rickeh_gold" + "item_name" "#StickerKit_katowice2019_signature_rickeh_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_rickeh_gold" + "sticker_material" "katowice2019/sig_rickeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "3215921" + } + "3651" + { + "name" "katowice2019_signature_stanislaw" + "item_name" "#StickerKit_katowice2019_signature_stanislaw" + "description_string" "#StickerKit_desc_katowice2019_signature_stanislaw" + "sticker_material" "katowice2019/sig_stanislaw" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "21583315" + } + "3652" + { + "name" "katowice2019_signature_stanislaw_foil" + "item_name" "#StickerKit_katowice2019_signature_stanislaw_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_stanislaw_foil" + "sticker_material" "katowice2019/sig_stanislaw_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "21583315" + } + "3653" + { + "name" "katowice2019_signature_stanislaw_gold" + "item_name" "#StickerKit_katowice2019_signature_stanislaw_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_stanislaw_gold" + "sticker_material" "katowice2019/sig_stanislaw_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "21583315" + } + "3654" + { + "name" "katowice2019_signature_dephh" + "item_name" "#StickerKit_katowice2019_signature_dephh" + "description_string" "#StickerKit_desc_katowice2019_signature_dephh" + "sticker_material" "katowice2019/sig_dephh" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "3655" + { + "name" "katowice2019_signature_dephh_foil" + "item_name" "#StickerKit_katowice2019_signature_dephh_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_dephh_foil" + "sticker_material" "katowice2019/sig_dephh_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "3656" + { + "name" "katowice2019_signature_dephh_gold" + "item_name" "#StickerKit_katowice2019_signature_dephh_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_dephh_gold" + "sticker_material" "katowice2019/sig_dephh_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "3657" + { + "name" "katowice2019_signature_shahzam" + "item_name" "#StickerKit_katowice2019_signature_shahzam" + "description_string" "#StickerKit_desc_katowice2019_signature_shahzam" + "sticker_material" "katowice2019/sig_shahzam" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "3658" + { + "name" "katowice2019_signature_shahzam_foil" + "item_name" "#StickerKit_katowice2019_signature_shahzam_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_shahzam_foil" + "sticker_material" "katowice2019/sig_shahzam_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "3659" + { + "name" "katowice2019_signature_shahzam_gold" + "item_name" "#StickerKit_katowice2019_signature_shahzam_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_shahzam_gold" + "sticker_material" "katowice2019/sig_shahzam_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "3660" + { + "name" "katowice2019_signature_allu" + "item_name" "#StickerKit_katowice2019_signature_allu" + "description_string" "#StickerKit_desc_katowice2019_signature_allu" + "sticker_material" "katowice2019/sig_allu" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "1345246" + } + "3661" + { + "name" "katowice2019_signature_allu_foil" + "item_name" "#StickerKit_katowice2019_signature_allu_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_allu_foil" + "sticker_material" "katowice2019/sig_allu_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "1345246" + } + "3662" + { + "name" "katowice2019_signature_allu_gold" + "item_name" "#StickerKit_katowice2019_signature_allu_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_allu_gold" + "sticker_material" "katowice2019/sig_allu_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "1345246" + } + "3663" + { + "name" "katowice2019_signature_aerial" + "item_name" "#StickerKit_katowice2019_signature_aerial" + "description_string" "#StickerKit_desc_katowice2019_signature_aerial" + "sticker_material" "katowice2019/sig_aerial" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "2445180" + } + "3664" + { + "name" "katowice2019_signature_aerial_foil" + "item_name" "#StickerKit_katowice2019_signature_aerial_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_aerial_foil" + "sticker_material" "katowice2019/sig_aerial_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "2445180" + } + "3665" + { + "name" "katowice2019_signature_aerial_gold" + "item_name" "#StickerKit_katowice2019_signature_aerial_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_aerial_gold" + "sticker_material" "katowice2019/sig_aerial_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "2445180" + } + "3666" + { + "name" "katowice2019_signature_xseven" + "item_name" "#StickerKit_katowice2019_signature_xseven" + "description_string" "#StickerKit_desc_katowice2019_signature_xseven" + "sticker_material" "katowice2019/sig_xseven" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "52906775" + } + "3667" + { + "name" "katowice2019_signature_xseven_foil" + "item_name" "#StickerKit_katowice2019_signature_xseven_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_xseven_foil" + "sticker_material" "katowice2019/sig_xseven_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "52906775" + } + "3668" + { + "name" "katowice2019_signature_xseven_gold" + "item_name" "#StickerKit_katowice2019_signature_xseven_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_xseven_gold" + "sticker_material" "katowice2019/sig_xseven_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "52906775" + } + "3669" + { + "name" "katowice2019_signature_aleksib" + "item_name" "#StickerKit_katowice2019_signature_aleksib" + "description_string" "#StickerKit_desc_katowice2019_signature_aleksib" + "sticker_material" "katowice2019/sig_aleksib" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "52977598" + } + "3670" + { + "name" "katowice2019_signature_aleksib_foil" + "item_name" "#StickerKit_katowice2019_signature_aleksib_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_aleksib_foil" + "sticker_material" "katowice2019/sig_aleksib_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "52977598" + } + "3671" + { + "name" "katowice2019_signature_aleksib_gold" + "item_name" "#StickerKit_katowice2019_signature_aleksib_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_aleksib_gold" + "sticker_material" "katowice2019/sig_aleksib_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "52977598" + } + "3672" + { + "name" "katowice2019_signature_sergej" + "item_name" "#StickerKit_katowice2019_signature_sergej" + "description_string" "#StickerKit_desc_katowice2019_signature_sergej" + "sticker_material" "katowice2019/sig_sergej" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "67574097" + } + "3673" + { + "name" "katowice2019_signature_sergej_foil" + "item_name" "#StickerKit_katowice2019_signature_sergej_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_sergej_foil" + "sticker_material" "katowice2019/sig_sergej_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "67574097" + } + "3674" + { + "name" "katowice2019_signature_sergej_gold" + "item_name" "#StickerKit_katowice2019_signature_sergej_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_sergej_gold" + "sticker_material" "katowice2019/sig_sergej_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "84" + "tournament_player_id" "67574097" + } + "3675" + { + "name" "katowice2019_signature_guardian" + "item_name" "#StickerKit_katowice2019_signature_guardian" + "description_string" "#StickerKit_desc_katowice2019_signature_guardian" + "sticker_material" "katowice2019/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "3676" + { + "name" "katowice2019_signature_guardian_foil" + "item_name" "#StickerKit_katowice2019_signature_guardian_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_guardian_foil" + "sticker_material" "katowice2019/sig_guardian_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "3677" + { + "name" "katowice2019_signature_guardian_gold" + "item_name" "#StickerKit_katowice2019_signature_guardian_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_guardian_gold" + "sticker_material" "katowice2019/sig_guardian_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "3678" + { + "name" "katowice2019_signature_olofmeister" + "item_name" "#StickerKit_katowice2019_signature_olofmeister" + "description_string" "#StickerKit_desc_katowice2019_signature_olofmeister" + "sticker_material" "katowice2019/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "3679" + { + "name" "katowice2019_signature_olofmeister_foil" + "item_name" "#StickerKit_katowice2019_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_olofmeister_foil" + "sticker_material" "katowice2019/sig_olofmeister_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "3680" + { + "name" "katowice2019_signature_olofmeister_gold" + "item_name" "#StickerKit_katowice2019_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_olofmeister_gold" + "sticker_material" "katowice2019/sig_olofmeister_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "3681" + { + "name" "katowice2019_signature_rain" + "item_name" "#StickerKit_katowice2019_signature_rain" + "description_string" "#StickerKit_desc_katowice2019_signature_rain" + "sticker_material" "katowice2019/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "3682" + { + "name" "katowice2019_signature_rain_foil" + "item_name" "#StickerKit_katowice2019_signature_rain_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_rain_foil" + "sticker_material" "katowice2019/sig_rain_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "3683" + { + "name" "katowice2019_signature_rain_gold" + "item_name" "#StickerKit_katowice2019_signature_rain_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_rain_gold" + "sticker_material" "katowice2019/sig_rain_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "3684" + { + "name" "katowice2019_signature_adrenkz" + "item_name" "#StickerKit_katowice2019_signature_adrenkz" + "description_string" "#StickerKit_desc_katowice2019_signature_adrenkz" + "sticker_material" "katowice2019/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "46200979" + } + "3685" + { + "name" "katowice2019_signature_adrenkz_foil" + "item_name" "#StickerKit_katowice2019_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_adrenkz_foil" + "sticker_material" "katowice2019/sig_adrenkz_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "46200979" + } + "3686" + { + "name" "katowice2019_signature_adrenkz_gold" + "item_name" "#StickerKit_katowice2019_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_adrenkz_gold" + "sticker_material" "katowice2019/sig_adrenkz_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "46200979" + } + "3687" + { + "name" "katowice2019_signature_niko" + "item_name" "#StickerKit_katowice2019_signature_niko" + "description_string" "#StickerKit_desc_katowice2019_signature_niko" + "sticker_material" "katowice2019/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "3688" + { + "name" "katowice2019_signature_niko_foil" + "item_name" "#StickerKit_katowice2019_signature_niko_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_niko_foil" + "sticker_material" "katowice2019/sig_niko_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "3689" + { + "name" "katowice2019_signature_niko_gold" + "item_name" "#StickerKit_katowice2019_signature_niko_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_niko_gold" + "sticker_material" "katowice2019/sig_niko_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "3690" + { + "name" "katowice2019_signature_twist" + "item_name" "#StickerKit_katowice2019_signature_twist" + "description_string" "#StickerKit_desc_katowice2019_signature_twist" + "sticker_material" "katowice2019/sig_twist" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "19979131" + } + "3691" + { + "name" "katowice2019_signature_twist_foil" + "item_name" "#StickerKit_katowice2019_signature_twist_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_twist_foil" + "sticker_material" "katowice2019/sig_twist_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "19979131" + } + "3692" + { + "name" "katowice2019_signature_twist_gold" + "item_name" "#StickerKit_katowice2019_signature_twist_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_twist_gold" + "sticker_material" "katowice2019/sig_twist_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "19979131" + } + "3693" + { + "name" "katowice2019_signature_xizt" + "item_name" "#StickerKit_katowice2019_signature_xizt" + "description_string" "#StickerKit_desc_katowice2019_signature_xizt" + "sticker_material" "katowice2019/sig_xizt" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "26224992" + } + "3694" + { + "name" "katowice2019_signature_xizt_foil" + "item_name" "#StickerKit_katowice2019_signature_xizt_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_xizt_foil" + "sticker_material" "katowice2019/sig_xizt_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "26224992" + } + "3695" + { + "name" "katowice2019_signature_xizt_gold" + "item_name" "#StickerKit_katowice2019_signature_xizt_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_xizt_gold" + "sticker_material" "katowice2019/sig_xizt_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "26224992" + } + "3696" + { + "name" "katowice2019_signature_jw" + "item_name" "#StickerKit_katowice2019_signature_jw" + "description_string" "#StickerKit_desc_katowice2019_signature_jw" + "sticker_material" "katowice2019/sig_jw" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "3697" + { + "name" "katowice2019_signature_jw_foil" + "item_name" "#StickerKit_katowice2019_signature_jw_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_jw_foil" + "sticker_material" "katowice2019/sig_jw_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "3698" + { + "name" "katowice2019_signature_jw_gold" + "item_name" "#StickerKit_katowice2019_signature_jw_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_jw_gold" + "sticker_material" "katowice2019/sig_jw_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "71288472" + } + "3699" + { + "name" "katowice2019_signature_krimz" + "item_name" "#StickerKit_katowice2019_signature_krimz" + "description_string" "#StickerKit_desc_katowice2019_signature_krimz" + "sticker_material" "katowice2019/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "3700" + { + "name" "katowice2019_signature_krimz_foil" + "item_name" "#StickerKit_katowice2019_signature_krimz_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_krimz_foil" + "sticker_material" "katowice2019/sig_krimz_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "3701" + { + "name" "katowice2019_signature_krimz_gold" + "item_name" "#StickerKit_katowice2019_signature_krimz_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_krimz_gold" + "sticker_material" "katowice2019/sig_krimz_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "71385856" + } + "3702" + { + "name" "katowice2019_signature_brollan" + "item_name" "#StickerKit_katowice2019_signature_brollan" + "description_string" "#StickerKit_desc_katowice2019_signature_brollan" + "sticker_material" "katowice2019/sig_brollan" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "178562747" + } + "3703" + { + "name" "katowice2019_signature_brollan_foil" + "item_name" "#StickerKit_katowice2019_signature_brollan_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_brollan_foil" + "sticker_material" "katowice2019/sig_brollan_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "178562747" + } + "3704" + { + "name" "katowice2019_signature_brollan_gold" + "item_name" "#StickerKit_katowice2019_signature_brollan_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_brollan_gold" + "sticker_material" "katowice2019/sig_brollan_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "6" + "tournament_player_id" "178562747" + } + "3705" + { + "name" "katowice2019_signature_vini" + "item_name" "#StickerKit_katowice2019_signature_vini" + "description_string" "#StickerKit_desc_katowice2019_signature_vini" + "sticker_material" "katowice2019/sig_vini" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "36104456" + } + "3706" + { + "name" "katowice2019_signature_vini_foil" + "item_name" "#StickerKit_katowice2019_signature_vini_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_vini_foil" + "sticker_material" "katowice2019/sig_vini_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "36104456" + } + "3707" + { + "name" "katowice2019_signature_vini_gold" + "item_name" "#StickerKit_katowice2019_signature_vini_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_vini_gold" + "sticker_material" "katowice2019/sig_vini_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "36104456" + } + "3708" + { + "name" "katowice2019_signature_ablej" + "item_name" "#StickerKit_katowice2019_signature_ablej" + "description_string" "#StickerKit_desc_katowice2019_signature_ablej" + "sticker_material" "katowice2019/sig_ablej" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "82940700" + } + "3709" + { + "name" "katowice2019_signature_ablej_foil" + "item_name" "#StickerKit_katowice2019_signature_ablej_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_ablej_foil" + "sticker_material" "katowice2019/sig_ablej_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "82940700" + } + "3710" + { + "name" "katowice2019_signature_ablej_gold" + "item_name" "#StickerKit_katowice2019_signature_ablej_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_ablej_gold" + "sticker_material" "katowice2019/sig_ablej_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "82940700" + } + "3711" + { + "name" "katowice2019_signature_art" + "item_name" "#StickerKit_katowice2019_signature_art" + "description_string" "#StickerKit_desc_katowice2019_signature_art" + "sticker_material" "katowice2019/sig_art" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "83503844" + } + "3712" + { + "name" "katowice2019_signature_art_foil" + "item_name" "#StickerKit_katowice2019_signature_art_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_art_foil" + "sticker_material" "katowice2019/sig_art_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "83503844" + } + "3713" + { + "name" "katowice2019_signature_art_gold" + "item_name" "#StickerKit_katowice2019_signature_art_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_art_gold" + "sticker_material" "katowice2019/sig_art_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "83503844" + } + "3714" + { + "name" "katowice2019_signature_kscerato" + "item_name" "#StickerKit_katowice2019_signature_kscerato" + "description_string" "#StickerKit_desc_katowice2019_signature_kscerato" + "sticker_material" "katowice2019/sig_kscerato" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "98234764" + } + "3715" + { + "name" "katowice2019_signature_kscerato_foil" + "item_name" "#StickerKit_katowice2019_signature_kscerato_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_kscerato_foil" + "sticker_material" "katowice2019/sig_kscerato_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "98234764" + } + "3716" + { + "name" "katowice2019_signature_kscerato_gold" + "item_name" "#StickerKit_katowice2019_signature_kscerato_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_kscerato_gold" + "sticker_material" "katowice2019/sig_kscerato_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "98234764" + } + "3717" + { + "name" "katowice2019_signature_yuurih" + "item_name" "#StickerKit_katowice2019_signature_yuurih" + "description_string" "#StickerKit_desc_katowice2019_signature_yuurih" + "sticker_material" "katowice2019/sig_yuurih" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "3718" + { + "name" "katowice2019_signature_yuurih_foil" + "item_name" "#StickerKit_katowice2019_signature_yuurih_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_yuurih_foil" + "sticker_material" "katowice2019/sig_yuurih_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "3719" + { + "name" "katowice2019_signature_yuurih_gold" + "item_name" "#StickerKit_katowice2019_signature_yuurih_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_yuurih_gold" + "sticker_material" "katowice2019/sig_yuurih_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "3720" + { + "name" "katowice2019_signature_jackz" + "item_name" "#StickerKit_katowice2019_signature_jackz" + "description_string" "#StickerKit_desc_katowice2019_signature_jackz" + "sticker_material" "katowice2019/sig_jackz" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "11977189" + } + "3721" + { + "name" "katowice2019_signature_jackz_foil" + "item_name" "#StickerKit_katowice2019_signature_jackz_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_jackz_foil" + "sticker_material" "katowice2019/sig_jackz_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "11977189" + } + "3722" + { + "name" "katowice2019_signature_jackz_gold" + "item_name" "#StickerKit_katowice2019_signature_jackz_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_jackz_gold" + "sticker_material" "katowice2019/sig_jackz_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "11977189" + } + "3723" + { + "name" "katowice2019_signature_shox" + "item_name" "#StickerKit_katowice2019_signature_shox" + "description_string" "#StickerKit_desc_katowice2019_signature_shox" + "sticker_material" "katowice2019/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "3724" + { + "name" "katowice2019_signature_shox_foil" + "item_name" "#StickerKit_katowice2019_signature_shox_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_shox_foil" + "sticker_material" "katowice2019/sig_shox_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "3725" + { + "name" "katowice2019_signature_shox_gold" + "item_name" "#StickerKit_katowice2019_signature_shox_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_shox_gold" + "sticker_material" "katowice2019/sig_shox_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "3726" + { + "name" "katowice2019_signature_bodyy" + "item_name" "#StickerKit_katowice2019_signature_bodyy" + "description_string" "#StickerKit_desc_katowice2019_signature_bodyy" + "sticker_material" "katowice2019/sig_bodyy" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "3727" + { + "name" "katowice2019_signature_bodyy_foil" + "item_name" "#StickerKit_katowice2019_signature_bodyy_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_bodyy_foil" + "sticker_material" "katowice2019/sig_bodyy_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "3728" + { + "name" "katowice2019_signature_bodyy_gold" + "item_name" "#StickerKit_katowice2019_signature_bodyy_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_bodyy_gold" + "sticker_material" "katowice2019/sig_bodyy_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "53029647" + } + "3729" + { + "name" "katowice2019_signature_kennys" + "item_name" "#StickerKit_katowice2019_signature_kennys" + "description_string" "#StickerKit_desc_katowice2019_signature_kennys" + "sticker_material" "katowice2019/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "3730" + { + "name" "katowice2019_signature_kennys_foil" + "item_name" "#StickerKit_katowice2019_signature_kennys_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_kennys_foil" + "sticker_material" "katowice2019/sig_kennys_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "3731" + { + "name" "katowice2019_signature_kennys_gold" + "item_name" "#StickerKit_katowice2019_signature_kennys_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_kennys_gold" + "sticker_material" "katowice2019/sig_kennys_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "3732" + { + "name" "katowice2019_signature_lucky" + "item_name" "#StickerKit_katowice2019_signature_lucky" + "description_string" "#StickerKit_desc_katowice2019_signature_lucky" + "sticker_material" "katowice2019/sig_lucky" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "71624387" + } + "3733" + { + "name" "katowice2019_signature_lucky_foil" + "item_name" "#StickerKit_katowice2019_signature_lucky_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_lucky_foil" + "sticker_material" "katowice2019/sig_lucky_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "71624387" + } + "3734" + { + "name" "katowice2019_signature_lucky_gold" + "item_name" "#StickerKit_katowice2019_signature_lucky_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_lucky_gold" + "sticker_material" "katowice2019/sig_lucky_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "59" + "tournament_player_id" "71624387" + } + "3735" + { + "name" "katowice2019_signature_sterling" + "item_name" "#StickerKit_katowice2019_signature_sterling" + "description_string" "#StickerKit_desc_katowice2019_signature_sterling" + "sticker_material" "katowice2019/sig_sterling" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "100224621" + } + "3736" + { + "name" "katowice2019_signature_sterling_foil" + "item_name" "#StickerKit_katowice2019_signature_sterling_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_sterling_foil" + "sticker_material" "katowice2019/sig_sterling_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "100224621" + } + "3737" + { + "name" "katowice2019_signature_sterling_gold" + "item_name" "#StickerKit_katowice2019_signature_sterling_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_sterling_gold" + "sticker_material" "katowice2019/sig_sterling_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "100224621" + } + "3738" + { + "name" "katowice2019_signature_dexter" + "item_name" "#StickerKit_katowice2019_signature_dexter" + "description_string" "#StickerKit_desc_katowice2019_signature_dexter" + "sticker_material" "katowice2019/sig_dexter" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "101535513" + } + "3739" + { + "name" "katowice2019_signature_dexter_foil" + "item_name" "#StickerKit_katowice2019_signature_dexter_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_dexter_foil" + "sticker_material" "katowice2019/sig_dexter_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "101535513" + } + "3740" + { + "name" "katowice2019_signature_dexter_gold" + "item_name" "#StickerKit_katowice2019_signature_dexter_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_dexter_gold" + "sticker_material" "katowice2019/sig_dexter_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "101535513" + } + "3741" + { + "name" "katowice2019_signature_erkast" + "item_name" "#StickerKit_katowice2019_signature_erkast" + "description_string" "#StickerKit_desc_katowice2019_signature_erkast" + "sticker_material" "katowice2019/sig_erkast" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "131305548" + } + "3742" + { + "name" "katowice2019_signature_erkast_foil" + "item_name" "#StickerKit_katowice2019_signature_erkast_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_erkast_foil" + "sticker_material" "katowice2019/sig_erkast_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "131305548" + } + "3743" + { + "name" "katowice2019_signature_erkast_gold" + "item_name" "#StickerKit_katowice2019_signature_erkast_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_erkast_gold" + "sticker_material" "katowice2019/sig_erkast_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "131305548" + } + "3744" + { + "name" "katowice2019_signature_malta" + "item_name" "#StickerKit_katowice2019_signature_malta" + "description_string" "#StickerKit_desc_katowice2019_signature_malta" + "sticker_material" "katowice2019/sig_malta" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "181905573" + } + "3745" + { + "name" "katowice2019_signature_malta_foil" + "item_name" "#StickerKit_katowice2019_signature_malta_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_malta_foil" + "sticker_material" "katowice2019/sig_malta_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "181905573" + } + "3746" + { + "name" "katowice2019_signature_malta_gold" + "item_name" "#StickerKit_katowice2019_signature_malta_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_malta_gold" + "sticker_material" "katowice2019/sig_malta_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "181905573" + } + "3747" + { + "name" "katowice2019_signature_dickstacy" + "item_name" "#StickerKit_katowice2019_signature_dickstacy" + "description_string" "#StickerKit_desc_katowice2019_signature_dickstacy" + "sticker_material" "katowice2019/sig_dickstacy" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "192019632" + } + "3748" + { + "name" "katowice2019_signature_dickstacy_foil" + "item_name" "#StickerKit_katowice2019_signature_dickstacy_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_dickstacy_foil" + "sticker_material" "katowice2019/sig_dickstacy_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "192019632" + } + "3749" + { + "name" "katowice2019_signature_dickstacy_gold" + "item_name" "#StickerKit_katowice2019_signature_dickstacy_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_dickstacy_gold" + "sticker_material" "katowice2019/sig_dickstacy_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "86" + "tournament_player_id" "192019632" + } + "3750" + { + "name" "katowice2019_signature_deadfox" + "item_name" "#StickerKit_katowice2019_signature_deadfox" + "description_string" "#StickerKit_desc_katowice2019_signature_deadfox" + "sticker_material" "katowice2019/sig_deadfox" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "3751" + { + "name" "katowice2019_signature_deadfox_foil" + "item_name" "#StickerKit_katowice2019_signature_deadfox_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_deadfox_foil" + "sticker_material" "katowice2019/sig_deadfox_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "3752" + { + "name" "katowice2019_signature_deadfox_gold" + "item_name" "#StickerKit_katowice2019_signature_deadfox_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_deadfox_gold" + "sticker_material" "katowice2019/sig_deadfox_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "3753" + { + "name" "katowice2019_signature_angel" + "item_name" "#StickerKit_katowice2019_signature_angel" + "description_string" "#StickerKit_desc_katowice2019_signature_angel" + "sticker_material" "katowice2019/sig_angel" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "3754" + { + "name" "katowice2019_signature_angel_foil" + "item_name" "#StickerKit_katowice2019_signature_angel_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_angel_foil" + "sticker_material" "katowice2019/sig_angel_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "3755" + { + "name" "katowice2019_signature_angel_gold" + "item_name" "#StickerKit_katowice2019_signature_angel_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_angel_gold" + "sticker_material" "katowice2019/sig_angel_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "3756" + { + "name" "katowice2019_signature_hobbit" + "item_name" "#StickerKit_katowice2019_signature_hobbit" + "description_string" "#StickerKit_desc_katowice2019_signature_hobbit" + "sticker_material" "katowice2019/sig_hobbit" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "68027030" + } + "3757" + { + "name" "katowice2019_signature_hobbit_foil" + "item_name" "#StickerKit_katowice2019_signature_hobbit_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_hobbit_foil" + "sticker_material" "katowice2019/sig_hobbit_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "68027030" + } + "3758" + { + "name" "katowice2019_signature_hobbit_gold" + "item_name" "#StickerKit_katowice2019_signature_hobbit_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_hobbit_gold" + "sticker_material" "katowice2019/sig_hobbit_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "68027030" + } + "3759" + { + "name" "katowice2019_signature_issaa" + "item_name" "#StickerKit_katowice2019_signature_issaa" + "description_string" "#StickerKit_desc_katowice2019_signature_issaa" + "sticker_material" "katowice2019/sig_issaa" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "3760" + { + "name" "katowice2019_signature_issaa_foil" + "item_name" "#StickerKit_katowice2019_signature_issaa_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_issaa_foil" + "sticker_material" "katowice2019/sig_issaa_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "3761" + { + "name" "katowice2019_signature_issaa_gold" + "item_name" "#StickerKit_katowice2019_signature_issaa_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_issaa_gold" + "sticker_material" "katowice2019/sig_issaa_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "3762" + { + "name" "katowice2019_signature_woxic" + "item_name" "#StickerKit_katowice2019_signature_woxic" + "description_string" "#StickerKit_desc_katowice2019_signature_woxic" + "sticker_material" "katowice2019/sig_woxic" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "123219778" + } + "3763" + { + "name" "katowice2019_signature_woxic_foil" + "item_name" "#StickerKit_katowice2019_signature_woxic_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_woxic_foil" + "sticker_material" "katowice2019/sig_woxic_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "123219778" + } + "3764" + { + "name" "katowice2019_signature_woxic_gold" + "item_name" "#StickerKit_katowice2019_signature_woxic_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_woxic_gold" + "sticker_material" "katowice2019/sig_woxic_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "25" + "tournament_player_id" "123219778" + } + "3765" + { + "name" "katowice2019_signature_fallen" + "item_name" "#StickerKit_katowice2019_signature_fallen" + "description_string" "#StickerKit_desc_katowice2019_signature_fallen" + "sticker_material" "katowice2019/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "3766" + { + "name" "katowice2019_signature_fallen_foil" + "item_name" "#StickerKit_katowice2019_signature_fallen_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_fallen_foil" + "sticker_material" "katowice2019/sig_fallen_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "3767" + { + "name" "katowice2019_signature_fallen_gold" + "item_name" "#StickerKit_katowice2019_signature_fallen_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_fallen_gold" + "sticker_material" "katowice2019/sig_fallen_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "3768" + { + "name" "katowice2019_signature_felps" + "item_name" "#StickerKit_katowice2019_signature_felps" + "description_string" "#StickerKit_desc_katowice2019_signature_felps" + "sticker_material" "katowice2019/sig_felps" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "22765766" + } + "3769" + { + "name" "katowice2019_signature_felps_foil" + "item_name" "#StickerKit_katowice2019_signature_felps_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_felps_foil" + "sticker_material" "katowice2019/sig_felps_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "22765766" + } + "3770" + { + "name" "katowice2019_signature_felps_gold" + "item_name" "#StickerKit_katowice2019_signature_felps_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_felps_gold" + "sticker_material" "katowice2019/sig_felps_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "22765766" + } + "3771" + { + "name" "katowice2019_signature_fer" + "item_name" "#StickerKit_katowice2019_signature_fer" + "description_string" "#StickerKit_desc_katowice2019_signature_fer" + "sticker_material" "katowice2019/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "3772" + { + "name" "katowice2019_signature_fer_foil" + "item_name" "#StickerKit_katowice2019_signature_fer_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_fer_foil" + "sticker_material" "katowice2019/sig_fer_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "3773" + { + "name" "katowice2019_signature_fer_gold" + "item_name" "#StickerKit_katowice2019_signature_fer_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_fer_gold" + "sticker_material" "katowice2019/sig_fer_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "3774" + { + "name" "katowice2019_signature_taco" + "item_name" "#StickerKit_katowice2019_signature_taco" + "description_string" "#StickerKit_desc_katowice2019_signature_taco" + "sticker_material" "katowice2019/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "52876568" + } + "3775" + { + "name" "katowice2019_signature_taco_foil" + "item_name" "#StickerKit_katowice2019_signature_taco_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_taco_foil" + "sticker_material" "katowice2019/sig_taco_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "52876568" + } + "3776" + { + "name" "katowice2019_signature_taco_gold" + "item_name" "#StickerKit_katowice2019_signature_taco_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_taco_gold" + "sticker_material" "katowice2019/sig_taco_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "52876568" + } + "3777" + { + "name" "katowice2019_signature_coldzera" + "item_name" "#StickerKit_katowice2019_signature_coldzera" + "description_string" "#StickerKit_desc_katowice2019_signature_coldzera" + "sticker_material" "katowice2019/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "3778" + { + "name" "katowice2019_signature_coldzera_foil" + "item_name" "#StickerKit_katowice2019_signature_coldzera_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_coldzera_foil" + "sticker_material" "katowice2019/sig_coldzera_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "3779" + { + "name" "katowice2019_signature_coldzera_gold" + "item_name" "#StickerKit_katowice2019_signature_coldzera_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_coldzera_gold" + "sticker_material" "katowice2019/sig_coldzera_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "3780" + { + "name" "katowice2019_signature_edward" + "item_name" "#StickerKit_katowice2019_signature_edward" + "description_string" "#StickerKit_desc_katowice2019_signature_edward" + "sticker_material" "katowice2019/sig_edward" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "3781" + { + "name" "katowice2019_signature_edward_foil" + "item_name" "#StickerKit_katowice2019_signature_edward_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_edward_foil" + "sticker_material" "katowice2019/sig_edward_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "3782" + { + "name" "katowice2019_signature_edward_gold" + "item_name" "#StickerKit_katowice2019_signature_edward_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_edward_gold" + "sticker_material" "katowice2019/sig_edward_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "23429534" + } + "3783" + { + "name" "katowice2019_signature_zeus" + "item_name" "#StickerKit_katowice2019_signature_zeus" + "description_string" "#StickerKit_desc_katowice2019_signature_zeus" + "sticker_material" "katowice2019/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "3784" + { + "name" "katowice2019_signature_zeus_foil" + "item_name" "#StickerKit_katowice2019_signature_zeus_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_zeus_foil" + "sticker_material" "katowice2019/sig_zeus_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "3785" + { + "name" "katowice2019_signature_zeus_gold" + "item_name" "#StickerKit_katowice2019_signature_zeus_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_zeus_gold" + "sticker_material" "katowice2019/sig_zeus_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "3786" + { + "name" "katowice2019_signature_s1mple" + "item_name" "#StickerKit_katowice2019_signature_s1mple" + "description_string" "#StickerKit_desc_katowice2019_signature_s1mple" + "sticker_material" "katowice2019/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "3787" + { + "name" "katowice2019_signature_s1mple_foil" + "item_name" "#StickerKit_katowice2019_signature_s1mple_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_s1mple_foil" + "sticker_material" "katowice2019/sig_s1mple_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "3788" + { + "name" "katowice2019_signature_s1mple_gold" + "item_name" "#StickerKit_katowice2019_signature_s1mple_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_s1mple_gold" + "sticker_material" "katowice2019/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "3789" + { + "name" "katowice2019_signature_electronic" + "item_name" "#StickerKit_katowice2019_signature_electronic" + "description_string" "#StickerKit_desc_katowice2019_signature_electronic" + "sticker_material" "katowice2019/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "3790" + { + "name" "katowice2019_signature_electronic_foil" + "item_name" "#StickerKit_katowice2019_signature_electronic_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_electronic_foil" + "sticker_material" "katowice2019/sig_electronic_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "3791" + { + "name" "katowice2019_signature_electronic_gold" + "item_name" "#StickerKit_katowice2019_signature_electronic_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_electronic_gold" + "sticker_material" "katowice2019/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "3792" + { + "name" "katowice2019_signature_flamie" + "item_name" "#StickerKit_katowice2019_signature_flamie" + "description_string" "#StickerKit_desc_katowice2019_signature_flamie" + "sticker_material" "katowice2019/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "3793" + { + "name" "katowice2019_signature_flamie_foil" + "item_name" "#StickerKit_katowice2019_signature_flamie_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_flamie_foil" + "sticker_material" "katowice2019/sig_flamie_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "3794" + { + "name" "katowice2019_signature_flamie_gold" + "item_name" "#StickerKit_katowice2019_signature_flamie_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_flamie_gold" + "sticker_material" "katowice2019/sig_flamie_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "3795" + { + "name" "katowice2019_signature_forest" + "item_name" "#StickerKit_katowice2019_signature_forest" + "description_string" "#StickerKit_desc_katowice2019_signature_forest" + "sticker_material" "katowice2019/sig_forest" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "3796" + { + "name" "katowice2019_signature_forest_foil" + "item_name" "#StickerKit_katowice2019_signature_forest_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_forest_foil" + "sticker_material" "katowice2019/sig_forest_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "3797" + { + "name" "katowice2019_signature_forest_gold" + "item_name" "#StickerKit_katowice2019_signature_forest_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_forest_gold" + "sticker_material" "katowice2019/sig_forest_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "3798" + { + "name" "katowice2019_signature_lekro" + "item_name" "#StickerKit_katowice2019_signature_lekro" + "description_string" "#StickerKit_desc_katowice2019_signature_lekro" + "sticker_material" "katowice2019/sig_lekro" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "3799" + { + "name" "katowice2019_signature_lekro_foil" + "item_name" "#StickerKit_katowice2019_signature_lekro_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_lekro_foil" + "sticker_material" "katowice2019/sig_lekro_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "3800" + { + "name" "katowice2019_signature_lekro_gold" + "item_name" "#StickerKit_katowice2019_signature_lekro_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_lekro_gold" + "sticker_material" "katowice2019/sig_lekro_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "3801" + { + "name" "katowice2019_signature_getright" + "item_name" "#StickerKit_katowice2019_signature_getright" + "description_string" "#StickerKit_desc_katowice2019_signature_getright" + "sticker_material" "katowice2019/sig_getright" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "3802" + { + "name" "katowice2019_signature_getright_foil" + "item_name" "#StickerKit_katowice2019_signature_getright_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_getright_foil" + "sticker_material" "katowice2019/sig_getright_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "3803" + { + "name" "katowice2019_signature_getright_gold" + "item_name" "#StickerKit_katowice2019_signature_getright_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_getright_gold" + "sticker_material" "katowice2019/sig_getright_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "3804" + { + "name" "katowice2019_signature_rez" + "item_name" "#StickerKit_katowice2019_signature_rez" + "description_string" "#StickerKit_desc_katowice2019_signature_rez" + "sticker_material" "katowice2019/sig_rez" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "3805" + { + "name" "katowice2019_signature_rez_foil" + "item_name" "#StickerKit_katowice2019_signature_rez_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_rez_foil" + "sticker_material" "katowice2019/sig_rez_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "3806" + { + "name" "katowice2019_signature_rez_gold" + "item_name" "#StickerKit_katowice2019_signature_rez_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_rez_gold" + "sticker_material" "katowice2019/sig_rez_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "3807" + { + "name" "katowice2019_signature_dennis" + "item_name" "#StickerKit_katowice2019_signature_dennis" + "description_string" "#StickerKit_desc_katowice2019_signature_dennis" + "sticker_material" "katowice2019/sig_dennis" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "108076825" + } + "3808" + { + "name" "katowice2019_signature_dennis_foil" + "item_name" "#StickerKit_katowice2019_signature_dennis_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_dennis_foil" + "sticker_material" "katowice2019/sig_dennis_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "108076825" + } + "3809" + { + "name" "katowice2019_signature_dennis_gold" + "item_name" "#StickerKit_katowice2019_signature_dennis_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_dennis_gold" + "sticker_material" "katowice2019/sig_dennis_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "1" + "tournament_player_id" "108076825" + } + "3810" + { + "name" "katowice2019_signature_daps" + "item_name" "#StickerKit_katowice2019_signature_daps" + "description_string" "#StickerKit_desc_katowice2019_signature_daps" + "sticker_material" "katowice2019/sig_daps" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "19892353" + } + "3811" + { + "name" "katowice2019_signature_daps_foil" + "item_name" "#StickerKit_katowice2019_signature_daps_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_daps_foil" + "sticker_material" "katowice2019/sig_daps_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "19892353" + } + "3812" + { + "name" "katowice2019_signature_daps_gold" + "item_name" "#StickerKit_katowice2019_signature_daps_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_daps_gold" + "sticker_material" "katowice2019/sig_daps_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "19892353" + } + "3813" + { + "name" "katowice2019_signature_brehze" + "item_name" "#StickerKit_katowice2019_signature_brehze" + "description_string" "#StickerKit_desc_katowice2019_signature_brehze" + "sticker_material" "katowice2019/sig_brehze" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "94595411" + } + "3814" + { + "name" "katowice2019_signature_brehze_foil" + "item_name" "#StickerKit_katowice2019_signature_brehze_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_brehze_foil" + "sticker_material" "katowice2019/sig_brehze_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "94595411" + } + "3815" + { + "name" "katowice2019_signature_brehze_gold" + "item_name" "#StickerKit_katowice2019_signature_brehze_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_brehze_gold" + "sticker_material" "katowice2019/sig_brehze_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "94595411" + } + "3816" + { + "name" "katowice2019_signature_fugly" + "item_name" "#StickerKit_katowice2019_signature_fugly" + "description_string" "#StickerKit_desc_katowice2019_signature_fugly" + "sticker_material" "katowice2019/sig_fugly" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "108760082" + } + "3817" + { + "name" "katowice2019_signature_fugly_foil" + "item_name" "#StickerKit_katowice2019_signature_fugly_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_fugly_foil" + "sticker_material" "katowice2019/sig_fugly_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "108760082" + } + "3818" + { + "name" "katowice2019_signature_fugly_gold" + "item_name" "#StickerKit_katowice2019_signature_fugly_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_fugly_gold" + "sticker_material" "katowice2019/sig_fugly_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "108760082" + } + "3819" + { + "name" "katowice2019_signature_ethan" + "item_name" "#StickerKit_katowice2019_signature_ethan" + "description_string" "#StickerKit_desc_katowice2019_signature_ethan" + "sticker_material" "katowice2019/sig_ethan" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "169177802" + } + "3820" + { + "name" "katowice2019_signature_ethan_foil" + "item_name" "#StickerKit_katowice2019_signature_ethan_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_ethan_foil" + "sticker_material" "katowice2019/sig_ethan_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "169177802" + } + "3821" + { + "name" "katowice2019_signature_ethan_gold" + "item_name" "#StickerKit_katowice2019_signature_ethan_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_ethan_gold" + "sticker_material" "katowice2019/sig_ethan_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "169177802" + } + "3822" + { + "name" "katowice2019_signature_cerq" + "item_name" "#StickerKit_katowice2019_signature_cerq" + "description_string" "#StickerKit_desc_katowice2019_signature_cerq" + "sticker_material" "katowice2019/sig_cerq" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "196088155" + } + "3823" + { + "name" "katowice2019_signature_cerq_foil" + "item_name" "#StickerKit_katowice2019_signature_cerq_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_cerq_foil" + "sticker_material" "katowice2019/sig_cerq_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "196088155" + } + "3824" + { + "name" "katowice2019_signature_cerq_gold" + "item_name" "#StickerKit_katowice2019_signature_cerq_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_cerq_gold" + "sticker_material" "katowice2019/sig_cerq_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "87" + "tournament_player_id" "196088155" + } + "3825" + { + "name" "katowice2019_signature_gratisfaction" + "item_name" "#StickerKit_katowice2019_signature_gratisfaction" + "description_string" "#StickerKit_desc_katowice2019_signature_gratisfaction" + "sticker_material" "katowice2019/sig_gratisfaction" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "5543683" + } + "3826" + { + "name" "katowice2019_signature_gratisfaction_foil" + "item_name" "#StickerKit_katowice2019_signature_gratisfaction_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_gratisfaction_foil" + "sticker_material" "katowice2019/sig_gratisfaction_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "5543683" + } + "3827" + { + "name" "katowice2019_signature_gratisfaction_gold" + "item_name" "#StickerKit_katowice2019_signature_gratisfaction_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_gratisfaction_gold" + "sticker_material" "katowice2019/sig_gratisfaction_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "5543683" + } + "3828" + { + "name" "katowice2019_signature_jks" + "item_name" "#StickerKit_katowice2019_signature_jks" + "description_string" "#StickerKit_desc_katowice2019_signature_jks" + "sticker_material" "katowice2019/sig_jks" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "3829" + { + "name" "katowice2019_signature_jks_foil" + "item_name" "#StickerKit_katowice2019_signature_jks_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_jks_foil" + "sticker_material" "katowice2019/sig_jks_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "3830" + { + "name" "katowice2019_signature_jks_gold" + "item_name" "#StickerKit_katowice2019_signature_jks_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_jks_gold" + "sticker_material" "katowice2019/sig_jks_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "3831" + { + "name" "katowice2019_signature_azr" + "item_name" "#StickerKit_katowice2019_signature_azr" + "description_string" "#StickerKit_desc_katowice2019_signature_azr" + "sticker_material" "katowice2019/sig_azr" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "3832" + { + "name" "katowice2019_signature_azr_foil" + "item_name" "#StickerKit_katowice2019_signature_azr_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_azr_foil" + "sticker_material" "katowice2019/sig_azr_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "3833" + { + "name" "katowice2019_signature_azr_gold" + "item_name" "#StickerKit_katowice2019_signature_azr_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_azr_gold" + "sticker_material" "katowice2019/sig_azr_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "3834" + { + "name" "katowice2019_signature_jkaem" + "item_name" "#StickerKit_katowice2019_signature_jkaem" + "description_string" "#StickerKit_desc_katowice2019_signature_jkaem" + "sticker_material" "katowice2019/sig_jkaem" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "3835" + { + "name" "katowice2019_signature_jkaem_foil" + "item_name" "#StickerKit_katowice2019_signature_jkaem_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_jkaem_foil" + "sticker_material" "katowice2019/sig_jkaem_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "3836" + { + "name" "katowice2019_signature_jkaem_gold" + "item_name" "#StickerKit_katowice2019_signature_jkaem_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_jkaem_gold" + "sticker_material" "katowice2019/sig_jkaem_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "3837" + { + "name" "katowice2019_signature_liazz" + "item_name" "#StickerKit_katowice2019_signature_liazz" + "description_string" "#StickerKit_desc_katowice2019_signature_liazz" + "sticker_material" "katowice2019/sig_liazz" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "3838" + { + "name" "katowice2019_signature_liazz_foil" + "item_name" "#StickerKit_katowice2019_signature_liazz_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_liazz_foil" + "sticker_material" "katowice2019/sig_liazz_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "3839" + { + "name" "katowice2019_signature_liazz_gold" + "item_name" "#StickerKit_katowice2019_signature_liazz_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_liazz_gold" + "sticker_material" "katowice2019/sig_liazz_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "3840" + { + "name" "katowice2019_signature_nitro" + "item_name" "#StickerKit_katowice2019_signature_nitro" + "description_string" "#StickerKit_desc_katowice2019_signature_nitro" + "sticker_material" "katowice2019/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "3841" + { + "name" "katowice2019_signature_nitro_foil" + "item_name" "#StickerKit_katowice2019_signature_nitro_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_nitro_foil" + "sticker_material" "katowice2019/sig_nitro_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "3842" + { + "name" "katowice2019_signature_nitro_gold" + "item_name" "#StickerKit_katowice2019_signature_nitro_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_nitro_gold" + "sticker_material" "katowice2019/sig_nitro_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "3843" + { + "name" "katowice2019_signature_stewie2k" + "item_name" "#StickerKit_katowice2019_signature_stewie2k" + "description_string" "#StickerKit_desc_katowice2019_signature_stewie2k" + "sticker_material" "katowice2019/sig_stewie2k" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "38738282" + } + "3844" + { + "name" "katowice2019_signature_stewie2k_foil" + "item_name" "#StickerKit_katowice2019_signature_stewie2k_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_stewie2k_foil" + "sticker_material" "katowice2019/sig_stewie2k_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "38738282" + } + "3845" + { + "name" "katowice2019_signature_stewie2k_gold" + "item_name" "#StickerKit_katowice2019_signature_stewie2k_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_stewie2k_gold" + "sticker_material" "katowice2019/sig_stewie2k_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "38738282" + } + "3846" + { + "name" "katowice2019_signature_naf" + "item_name" "#StickerKit_katowice2019_signature_naf" + "description_string" "#StickerKit_desc_katowice2019_signature_naf" + "sticker_material" "katowice2019/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "3847" + { + "name" "katowice2019_signature_naf_foil" + "item_name" "#StickerKit_katowice2019_signature_naf_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_naf_foil" + "sticker_material" "katowice2019/sig_naf_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "3848" + { + "name" "katowice2019_signature_naf_gold" + "item_name" "#StickerKit_katowice2019_signature_naf_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_naf_gold" + "sticker_material" "katowice2019/sig_naf_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "3849" + { + "name" "katowice2019_signature_twistzz" + "item_name" "#StickerKit_katowice2019_signature_twistzz" + "description_string" "#StickerKit_desc_katowice2019_signature_twistzz" + "sticker_material" "katowice2019/sig_twistzz" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "3850" + { + "name" "katowice2019_signature_twistzz_foil" + "item_name" "#StickerKit_katowice2019_signature_twistzz_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_twistzz_foil" + "sticker_material" "katowice2019/sig_twistzz_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "3851" + { + "name" "katowice2019_signature_twistzz_gold" + "item_name" "#StickerKit_katowice2019_signature_twistzz_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_twistzz_gold" + "sticker_material" "katowice2019/sig_twistzz_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "3852" + { + "name" "katowice2019_signature_elige" + "item_name" "#StickerKit_katowice2019_signature_elige" + "description_string" "#StickerKit_desc_katowice2019_signature_elige" + "sticker_material" "katowice2019/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "3853" + { + "name" "katowice2019_signature_elige_foil" + "item_name" "#StickerKit_katowice2019_signature_elige_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_elige_foil" + "sticker_material" "katowice2019/sig_elige_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "3854" + { + "name" "katowice2019_signature_elige_gold" + "item_name" "#StickerKit_katowice2019_signature_elige_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_elige_gold" + "sticker_material" "katowice2019/sig_elige_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "3855" + { + "name" "katowice2019_signature_davcost" + "item_name" "#StickerKit_katowice2019_signature_davcost" + "description_string" "#StickerKit_desc_katowice2019_signature_davcost" + "sticker_material" "katowice2019/sig_davcost" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "20273529" + } + "3856" + { + "name" "katowice2019_signature_davcost_foil" + "item_name" "#StickerKit_katowice2019_signature_davcost_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_davcost_foil" + "sticker_material" "katowice2019/sig_davcost_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "20273529" + } + "3857" + { + "name" "katowice2019_signature_davcost_gold" + "item_name" "#StickerKit_katowice2019_signature_davcost_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_davcost_gold" + "sticker_material" "katowice2019/sig_davcost_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "20273529" + } + "3858" + { + "name" "katowice2019_signature_coldyy1" + "item_name" "#StickerKit_katowice2019_signature_coldyy1" + "description_string" "#StickerKit_desc_katowice2019_signature_coldyy1" + "sticker_material" "katowice2019/sig_coldyy1" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "34364443" + } + "3859" + { + "name" "katowice2019_signature_coldyy1_foil" + "item_name" "#StickerKit_katowice2019_signature_coldyy1_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_coldyy1_foil" + "sticker_material" "katowice2019/sig_coldyy1_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "34364443" + } + "3860" + { + "name" "katowice2019_signature_coldyy1_gold" + "item_name" "#StickerKit_katowice2019_signature_coldyy1_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_coldyy1_gold" + "sticker_material" "katowice2019/sig_coldyy1_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "34364443" + } + "3861" + { + "name" "katowice2019_signature_dima" + "item_name" "#StickerKit_katowice2019_signature_dima" + "description_string" "#StickerKit_desc_katowice2019_signature_dima" + "sticker_material" "katowice2019/sig_dima" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "51718767" + } + "3862" + { + "name" "katowice2019_signature_dima_foil" + "item_name" "#StickerKit_katowice2019_signature_dima_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_dima_foil" + "sticker_material" "katowice2019/sig_dima_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "51718767" + } + "3863" + { + "name" "katowice2019_signature_dima_gold" + "item_name" "#StickerKit_katowice2019_signature_dima_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_dima_gold" + "sticker_material" "katowice2019/sig_dima_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "51718767" + } + "3864" + { + "name" "katowice2019_signature_sdy" + "item_name" "#StickerKit_katowice2019_signature_sdy" + "description_string" "#StickerKit_desc_katowice2019_signature_sdy" + "sticker_material" "katowice2019/sig_sdy" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "80311472" + } + "3865" + { + "name" "katowice2019_signature_sdy_foil" + "item_name" "#StickerKit_katowice2019_signature_sdy_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_sdy_foil" + "sticker_material" "katowice2019/sig_sdy_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "80311472" + } + "3866" + { + "name" "katowice2019_signature_sdy_gold" + "item_name" "#StickerKit_katowice2019_signature_sdy_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_sdy_gold" + "sticker_material" "katowice2019/sig_sdy_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "80311472" + } + "3867" + { + "name" "katowice2019_signature_s0tf1k" + "item_name" "#StickerKit_katowice2019_signature_s0tf1k" + "description_string" "#StickerKit_desc_katowice2019_signature_s0tf1k" + "sticker_material" "katowice2019/sig_s0tf1k" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "174857712" + } + "3868" + { + "name" "katowice2019_signature_s0tf1k_foil" + "item_name" "#StickerKit_katowice2019_signature_s0tf1k_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_s0tf1k_foil" + "sticker_material" "katowice2019/sig_s0tf1k_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "174857712" + } + "3869" + { + "name" "katowice2019_signature_s0tf1k_gold" + "item_name" "#StickerKit_katowice2019_signature_s0tf1k_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_s0tf1k_gold" + "sticker_material" "katowice2019/sig_s0tf1k_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "81" + "tournament_player_id" "174857712" + } + "3870" + { + "name" "katowice2019_signature_summer" + "item_name" "#StickerKit_katowice2019_signature_summer" + "description_string" "#StickerKit_desc_katowice2019_signature_summer" + "sticker_material" "katowice2019/sig_summer" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "52964519" + } + "3871" + { + "name" "katowice2019_signature_summer_foil" + "item_name" "#StickerKit_katowice2019_signature_summer_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_summer_foil" + "sticker_material" "katowice2019/sig_summer_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "52964519" + } + "3872" + { + "name" "katowice2019_signature_summer_gold" + "item_name" "#StickerKit_katowice2019_signature_summer_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_summer_gold" + "sticker_material" "katowice2019/sig_summer_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "52964519" + } + "3873" + { + "name" "katowice2019_signature_somebody" + "item_name" "#StickerKit_katowice2019_signature_somebody" + "description_string" "#StickerKit_desc_katowice2019_signature_somebody" + "sticker_material" "katowice2019/sig_somebody" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "3874" + { + "name" "katowice2019_signature_somebody_foil" + "item_name" "#StickerKit_katowice2019_signature_somebody_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_somebody_foil" + "sticker_material" "katowice2019/sig_somebody_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "3875" + { + "name" "katowice2019_signature_somebody_gold" + "item_name" "#StickerKit_katowice2019_signature_somebody_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_somebody_gold" + "sticker_material" "katowice2019/sig_somebody_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "3876" + { + "name" "katowice2019_signature_attacker" + "item_name" "#StickerKit_katowice2019_signature_attacker" + "description_string" "#StickerKit_desc_katowice2019_signature_attacker" + "sticker_material" "katowice2019/sig_attacker" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "88001036" + } + "3877" + { + "name" "katowice2019_signature_attacker_foil" + "item_name" "#StickerKit_katowice2019_signature_attacker_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_attacker_foil" + "sticker_material" "katowice2019/sig_attacker_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "88001036" + } + "3878" + { + "name" "katowice2019_signature_attacker_gold" + "item_name" "#StickerKit_katowice2019_signature_attacker_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_attacker_gold" + "sticker_material" "katowice2019/sig_attacker_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "88001036" + } + "3879" + { + "name" "katowice2019_signature_bntet" + "item_name" "#StickerKit_katowice2019_signature_bntet" + "description_string" "#StickerKit_desc_katowice2019_signature_bntet" + "sticker_material" "katowice2019/sig_bntet" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "3880" + { + "name" "katowice2019_signature_bntet_foil" + "item_name" "#StickerKit_katowice2019_signature_bntet_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_bntet_foil" + "sticker_material" "katowice2019/sig_bntet_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "3881" + { + "name" "katowice2019_signature_bntet_gold" + "item_name" "#StickerKit_katowice2019_signature_bntet_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_bntet_gold" + "sticker_material" "katowice2019/sig_bntet_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "3882" + { + "name" "katowice2019_signature_xccurate" + "item_name" "#StickerKit_katowice2019_signature_xccurate" + "description_string" "#StickerKit_desc_katowice2019_signature_xccurate" + "sticker_material" "katowice2019/sig_xccurate" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "177428807" + } + "3883" + { + "name" "katowice2019_signature_xccurate_foil" + "item_name" "#StickerKit_katowice2019_signature_xccurate_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_xccurate_foil" + "sticker_material" "katowice2019/sig_xccurate_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "177428807" + } + "3884" + { + "name" "katowice2019_signature_xccurate_gold" + "item_name" "#StickerKit_katowice2019_signature_xccurate_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_xccurate_gold" + "sticker_material" "katowice2019/sig_xccurate_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "74" + "tournament_player_id" "177428807" + } + "3885" + { + "name" "katowice2019_signature_tonyblack" + "item_name" "#StickerKit_katowice2019_signature_tonyblack" + "description_string" "#StickerKit_desc_katowice2019_signature_tonyblack" + "sticker_material" "katowice2019/sig_tonyblack" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "15738602" + } + "3886" + { + "name" "katowice2019_signature_tonyblack_foil" + "item_name" "#StickerKit_katowice2019_signature_tonyblack_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_tonyblack_foil" + "sticker_material" "katowice2019/sig_tonyblack_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "15738602" + } + "3887" + { + "name" "katowice2019_signature_tonyblack_gold" + "item_name" "#StickerKit_katowice2019_signature_tonyblack_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_tonyblack_gold" + "sticker_material" "katowice2019/sig_tonyblack_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "15738602" + } + "3888" + { + "name" "katowice2019_signature_crush" + "item_name" "#StickerKit_katowice2019_signature_crush" + "description_string" "#StickerKit_desc_katowice2019_signature_crush" + "sticker_material" "katowice2019/sig_crush" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "36981424" + } + "3889" + { + "name" "katowice2019_signature_crush_foil" + "item_name" "#StickerKit_katowice2019_signature_crush_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_crush_foil" + "sticker_material" "katowice2019/sig_crush_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "36981424" + } + "3890" + { + "name" "katowice2019_signature_crush_gold" + "item_name" "#StickerKit_katowice2019_signature_crush_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_crush_gold" + "sticker_material" "katowice2019/sig_crush_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "36981424" + } + "3891" + { + "name" "katowice2019_signature_jr" + "item_name" "#StickerKit_katowice2019_signature_jr" + "description_string" "#StickerKit_desc_katowice2019_signature_jr" + "sticker_material" "katowice2019/sig_jr" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "3892" + { + "name" "katowice2019_signature_jr_foil" + "item_name" "#StickerKit_katowice2019_signature_jr_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_jr_foil" + "sticker_material" "katowice2019/sig_jr_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "3893" + { + "name" "katowice2019_signature_jr_gold" + "item_name" "#StickerKit_katowice2019_signature_jr_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_jr_gold" + "sticker_material" "katowice2019/sig_jr_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "43490511" + } + "3894" + { + "name" "katowice2019_signature_hutji" + "item_name" "#StickerKit_katowice2019_signature_hutji" + "description_string" "#StickerKit_desc_katowice2019_signature_hutji" + "sticker_material" "katowice2019/sig_hutji" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "3895" + { + "name" "katowice2019_signature_hutji_foil" + "item_name" "#StickerKit_katowice2019_signature_hutji_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_hutji_foil" + "sticker_material" "katowice2019/sig_hutji_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "3896" + { + "name" "katowice2019_signature_hutji_gold" + "item_name" "#StickerKit_katowice2019_signature_hutji_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_hutji_gold" + "sticker_material" "katowice2019/sig_hutji_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "61587630" + } + "3897" + { + "name" "katowice2019_signature_chopper" + "item_name" "#StickerKit_katowice2019_signature_chopper" + "description_string" "#StickerKit_desc_katowice2019_signature_chopper" + "sticker_material" "katowice2019/sig_chopper" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "3898" + { + "name" "katowice2019_signature_chopper_foil" + "item_name" "#StickerKit_katowice2019_signature_chopper_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_chopper_foil" + "sticker_material" "katowice2019/sig_chopper_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "3899" + { + "name" "katowice2019_signature_chopper_gold" + "item_name" "#StickerKit_katowice2019_signature_chopper_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_chopper_gold" + "sticker_material" "katowice2019/sig_chopper_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "70" + "tournament_player_id" "85633136" + } + "3900" + { + "name" "katowice2019_signature_kaze" + "item_name" "#StickerKit_katowice2019_signature_kaze" + "description_string" "#StickerKit_desc_katowice2019_signature_kaze" + "sticker_material" "katowice2019/sig_kaze" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "16127541" + } + "3901" + { + "name" "katowice2019_signature_kaze_foil" + "item_name" "#StickerKit_katowice2019_signature_kaze_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_kaze_foil" + "sticker_material" "katowice2019/sig_kaze_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "16127541" + } + "3902" + { + "name" "katowice2019_signature_kaze_gold" + "item_name" "#StickerKit_katowice2019_signature_kaze_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_kaze_gold" + "sticker_material" "katowice2019/sig_kaze_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "16127541" + } + "3903" + { + "name" "katowice2019_signature_advent" + "item_name" "#StickerKit_katowice2019_signature_advent" + "description_string" "#StickerKit_desc_katowice2019_signature_advent" + "sticker_material" "katowice2019/sig_advent" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "41786057" + } + "3904" + { + "name" "katowice2019_signature_advent_foil" + "item_name" "#StickerKit_katowice2019_signature_advent_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_advent_foil" + "sticker_material" "katowice2019/sig_advent_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "41786057" + } + "3905" + { + "name" "katowice2019_signature_advent_gold" + "item_name" "#StickerKit_katowice2019_signature_advent_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_advent_gold" + "sticker_material" "katowice2019/sig_advent_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "41786057" + } + "3906" + { + "name" "katowice2019_signature_auman" + "item_name" "#StickerKit_katowice2019_signature_auman" + "description_string" "#StickerKit_desc_katowice2019_signature_auman" + "sticker_material" "katowice2019/sig_auman" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "46223698" + } + "3907" + { + "name" "katowice2019_signature_auman_foil" + "item_name" "#StickerKit_katowice2019_signature_auman_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_auman_foil" + "sticker_material" "katowice2019/sig_auman_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "46223698" + } + "3908" + { + "name" "katowice2019_signature_auman_gold" + "item_name" "#StickerKit_katowice2019_signature_auman_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_auman_gold" + "sticker_material" "katowice2019/sig_auman_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "46223698" + } + "3909" + { + "name" "katowice2019_signature_zhoking" + "item_name" "#StickerKit_katowice2019_signature_zhoking" + "description_string" "#StickerKit_desc_katowice2019_signature_zhoking" + "sticker_material" "katowice2019/sig_zhoking" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "99494192" + } + "3910" + { + "name" "katowice2019_signature_zhoking_foil" + "item_name" "#StickerKit_katowice2019_signature_zhoking_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_zhoking_foil" + "sticker_material" "katowice2019/sig_zhoking_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "99494192" + } + "3911" + { + "name" "katowice2019_signature_zhoking_gold" + "item_name" "#StickerKit_katowice2019_signature_zhoking_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_zhoking_gold" + "sticker_material" "katowice2019/sig_zhoking_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "99494192" + } + "3912" + { + "name" "katowice2019_signature_freeman" + "item_name" "#StickerKit_katowice2019_signature_freeman" + "description_string" "#StickerKit_desc_katowice2019_signature_freeman" + "sticker_material" "katowice2019/sig_freeman" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "208355715" + } + "3913" + { + "name" "katowice2019_signature_freeman_foil" + "item_name" "#StickerKit_katowice2019_signature_freeman_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_freeman_foil" + "sticker_material" "katowice2019/sig_freeman_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "208355715" + } + "3914" + { + "name" "katowice2019_signature_freeman_gold" + "item_name" "#StickerKit_katowice2019_signature_freeman_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_freeman_gold" + "sticker_material" "katowice2019/sig_freeman_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "88" + "tournament_player_id" "208355715" + } + "3915" + { + "name" "katowice2019_signature_nbk" + "item_name" "#StickerKit_katowice2019_signature_nbk" + "description_string" "#StickerKit_desc_katowice2019_signature_nbk" + "sticker_material" "katowice2019/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "444845" + } + "3916" + { + "name" "katowice2019_signature_nbk_foil" + "item_name" "#StickerKit_katowice2019_signature_nbk_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_nbk_foil" + "sticker_material" "katowice2019/sig_nbk_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "444845" + } + "3917" + { + "name" "katowice2019_signature_nbk_gold" + "item_name" "#StickerKit_katowice2019_signature_nbk_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_nbk_gold" + "sticker_material" "katowice2019/sig_nbk_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "444845" + } + "3918" + { + "name" "katowice2019_signature_apex" + "item_name" "#StickerKit_katowice2019_signature_apex" + "description_string" "#StickerKit_desc_katowice2019_signature_apex" + "sticker_material" "katowice2019/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "29478439" + } + "3919" + { + "name" "katowice2019_signature_apex_foil" + "item_name" "#StickerKit_katowice2019_signature_apex_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_apex_foil" + "sticker_material" "katowice2019/sig_apex_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "29478439" + } + "3920" + { + "name" "katowice2019_signature_apex_gold" + "item_name" "#StickerKit_katowice2019_signature_apex_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_apex_gold" + "sticker_material" "katowice2019/sig_apex_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "29478439" + } + "3921" + { + "name" "katowice2019_signature_alex" + "item_name" "#StickerKit_katowice2019_signature_alex" + "description_string" "#StickerKit_desc_katowice2019_signature_alex" + "sticker_material" "katowice2019/sig_alex" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "44605706" + } + "3922" + { + "name" "katowice2019_signature_alex_foil" + "item_name" "#StickerKit_katowice2019_signature_alex_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_alex_foil" + "sticker_material" "katowice2019/sig_alex_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "44605706" + } + "3923" + { + "name" "katowice2019_signature_alex_gold" + "item_name" "#StickerKit_katowice2019_signature_alex_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_alex_gold" + "sticker_material" "katowice2019/sig_alex_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "44605706" + } + "3924" + { + "name" "katowice2019_signature_rpk" + "item_name" "#StickerKit_katowice2019_signature_rpk" + "description_string" "#StickerKit_desc_katowice2019_signature_rpk" + "sticker_material" "katowice2019/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "53985773" + } + "3925" + { + "name" "katowice2019_signature_rpk_foil" + "item_name" "#StickerKit_katowice2019_signature_rpk_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_rpk_foil" + "sticker_material" "katowice2019/sig_rpk_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "53985773" + } + "3926" + { + "name" "katowice2019_signature_rpk_gold" + "item_name" "#StickerKit_katowice2019_signature_rpk_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_rpk_gold" + "sticker_material" "katowice2019/sig_rpk_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "53985773" + } + "3927" + { + "name" "katowice2019_signature_zywoo" + "item_name" "#StickerKit_katowice2019_signature_zywoo" + "description_string" "#StickerKit_desc_katowice2019_signature_zywoo" + "sticker_material" "katowice2019/sig_zywoo" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "153400465" + } + "3928" + { + "name" "katowice2019_signature_zywoo_foil" + "item_name" "#StickerKit_katowice2019_signature_zywoo_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_zywoo_foil" + "sticker_material" "katowice2019/sig_zywoo_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "153400465" + } + "3929" + { + "name" "katowice2019_signature_zywoo_gold" + "item_name" "#StickerKit_katowice2019_signature_zywoo_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_zywoo_gold" + "sticker_material" "katowice2019/sig_zywoo_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "89" + "tournament_player_id" "153400465" + } + "3930" + { + "name" "katowice2019_signature_worldedit" + "item_name" "#StickerKit_katowice2019_signature_worldedit" + "description_string" "#StickerKit_desc_katowice2019_signature_worldedit" + "sticker_material" "katowice2019/sig_worldedit" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "36732188" + } + "3931" + { + "name" "katowice2019_signature_worldedit_foil" + "item_name" "#StickerKit_katowice2019_signature_worldedit_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_worldedit_foil" + "sticker_material" "katowice2019/sig_worldedit_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "36732188" + } + "3932" + { + "name" "katowice2019_signature_worldedit_gold" + "item_name" "#StickerKit_katowice2019_signature_worldedit_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_worldedit_gold" + "sticker_material" "katowice2019/sig_worldedit_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "36732188" + } + "3933" + { + "name" "katowice2019_signature_waylander" + "item_name" "#StickerKit_katowice2019_signature_waylander" + "description_string" "#StickerKit_desc_katowice2019_signature_waylander" + "sticker_material" "katowice2019/sig_waylander" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "38340970" + } + "3934" + { + "name" "katowice2019_signature_waylander_foil" + "item_name" "#StickerKit_katowice2019_signature_waylander_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_waylander_foil" + "sticker_material" "katowice2019/sig_waylander_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "38340970" + } + "3935" + { + "name" "katowice2019_signature_waylander_gold" + "item_name" "#StickerKit_katowice2019_signature_waylander_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_waylander_gold" + "sticker_material" "katowice2019/sig_waylander_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "38340970" + } + "3936" + { + "name" "katowice2019_signature_kvik" + "item_name" "#StickerKit_katowice2019_signature_kvik" + "description_string" "#StickerKit_desc_katowice2019_signature_kvik" + "sticker_material" "katowice2019/sig_kvik" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "40982505" + } + "3937" + { + "name" "katowice2019_signature_kvik_foil" + "item_name" "#StickerKit_katowice2019_signature_kvik_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_kvik_foil" + "sticker_material" "katowice2019/sig_kvik_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "40982505" + } + "3938" + { + "name" "katowice2019_signature_kvik_gold" + "item_name" "#StickerKit_katowice2019_signature_kvik_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_kvik_gold" + "sticker_material" "katowice2019/sig_kvik_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "40982505" + } + "3939" + { + "name" "katowice2019_signature_boombl4" + "item_name" "#StickerKit_katowice2019_signature_boombl4" + "description_string" "#StickerKit_desc_katowice2019_signature_boombl4" + "sticker_material" "katowice2019/sig_boombl4" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "185941338" + } + "3940" + { + "name" "katowice2019_signature_boombl4_foil" + "item_name" "#StickerKit_katowice2019_signature_boombl4_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_boombl4_foil" + "sticker_material" "katowice2019/sig_boombl4_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "185941338" + } + "3941" + { + "name" "katowice2019_signature_boombl4_gold" + "item_name" "#StickerKit_katowice2019_signature_boombl4_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_boombl4_gold" + "sticker_material" "katowice2019/sig_boombl4_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "185941338" + } + "3942" + { + "name" "katowice2019_signature_n0rb3r7" + "item_name" "#StickerKit_katowice2019_signature_n0rb3r7" + "description_string" "#StickerKit_desc_katowice2019_signature_n0rb3r7" + "sticker_material" "katowice2019/sig_n0rb3r7" + "item_rarity" "rare" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "262176776" + } + "3943" + { + "name" "katowice2019_signature_n0rb3r7_foil" + "item_name" "#StickerKit_katowice2019_signature_n0rb3r7_foil" + "description_string" "#StickerKit_desc_katowice2019_signature_n0rb3r7_foil" + "sticker_material" "katowice2019/sig_n0rb3r7_foil" + "item_rarity" "mythical" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "262176776" + } + "3944" + { + "name" "katowice2019_signature_n0rb3r7_gold" + "item_name" "#StickerKit_katowice2019_signature_n0rb3r7_gold" + "description_string" "#StickerKit_desc_katowice2019_signature_n0rb3r7_gold" + "sticker_material" "katowice2019/sig_n0rb3r7_gold" + "item_rarity" "ancient" + "tournament_event_id" "15" + "tournament_team_id" "83" + "tournament_player_id" "262176776" + } + } + "quest_definitions" + { + "146" + { + "name" "quest_katowice2019_activate_pass" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_activate_pass" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_activate_pass" + "quest_icon" "pass" + "gamemode" "competitive" + } + "147" + { + "name" "quest_katowice2019_challengers_pickem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_challengers_pickem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_challengers_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "148" + { + "name" "quest_katowice2019_challengers_watchem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_challengers_watchem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_challengers_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + "149" + { + "name" "quest_katowice2019_legends_pickem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_legends_pickem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_legends_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "150" + { + "name" "quest_katowice2019_legends_watchem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_legends_watchem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_legends_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + "151" + { + "name" "quest_katowice2019_quarterfinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_quarterfinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_quarterfinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "152" + { + "name" "quest_katowice2019_quarterfinals_watchem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_quarterfinals_watchem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_quarterfinals_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + "153" + { + "name" "quest_katowice2019_semifinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_semifinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_semifinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "154" + { + "name" "quest_katowice2019_semifinals_watchem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_semifinals_watchem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_semifinals_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + "155" + { + "name" "quest_katowice2019_grandfinal_pickem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_grandfinal_pickem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_grandfinal_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "156" + { + "name" "quest_katowice2019_grandfinal_watchem" + "loc_name" "#CSGO_TournamentChallenge_katowice2019_grandfinal_watchem" + "loc_description" "#CSGO_TournamentChallenge_katowice2019_grandfinal_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + } + "campaign_definitions" + { + "10" + { + "loc_name" "#CSGO_TournamentJournal_katowice2019" + "loc_description" "#CSGO_TournamentJournal_katowice2019_Desc" + "1" + { + "quest_index" "146" + } + "2" + { + "quest_index" "147" + } + "3" + { + "quest_index" "148" + } + "4" + { + "quest_index" "149" + } + "5" + { + "quest_index" "150" + } + "6" + { + "quest_index" "151" + } + "7" + { + "quest_index" "152" + } + "8" + { + "quest_index" "153" + } + "9" + { + "quest_index" "154" + } + "10" + { + "quest_index" "155" + } + "11" + { + "quest_index" "156" + } + } + } + "prefabs" + { + "berlin2019_sticker_capsule_prefab" + { + "first_sale_date" "2019-08-08" + "prefab" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + } + "berlin2019_signature_capsule_prefab" + { + "first_sale_date" "2019-08-08" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_berlin2019_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_berlin2019_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "berlin2019_tournament_pass_prefab" + { + "first_sale_date" "2019-08-08" + "prefab" "fan_token" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + } + "berlin2019_tournament_journal_prefab" + { + "item_description" "#CSGO_TournamentJournal_berlin2019_Desc" + "first_sale_date" "2019-08-08" + "prefab" "fan_shield" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + "campaign id" + { + "attribute_class" "campaign_id" + "value" "11" + } + "sticker slot 0 id" + { + "attribute_class" "sticker_slot_id" + "value" "4143" + "force_gc_to_generate" "1" + } + "campaign completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "1" + "force_gc_to_generate" "1" + } + "operation drops awarded 0" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "operation drops awarded 1" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + } + } + } + "revolving_loot_lists" + { + "278" "crate_sticker_pack_berlin2019_legends" + "279" "crate_sticker_pack_berlin2019_challengers" + "280" "crate_sticker_pack_berlin2019_contenders" + "281" "crate_signature_pack_berlin2019_group_players_collection_legends" + "282" "crate_signature_pack_berlin2019_group_players_collection_challengers" + "283" "crate_signature_pack_berlin2019_group_players_collection_contenders" + "284" "crate_berlin2019_promo_de_inferno" + "285" "crate_berlin2019_promo_de_mirage" + "286" "crate_berlin2019_promo_de_dust2" + "287" "crate_berlin2019_promo_de_overpass" + "288" "crate_berlin2019_promo_de_train" + "289" "crate_berlin2019_promo_de_nuke" + "290" "crate_berlin2019_promo_de_vertigo" + } + "client_loot_lists" + { + "berlin2019_rare_astr" + { + "[berlin2019_team_astr]sticker" "1" + } + "berlin2019_rare_ence" + { + "[berlin2019_team_ence]sticker" "1" + } + "berlin2019_rare_mibr" + { + "[berlin2019_team_mibr]sticker" "1" + } + "berlin2019_rare_navi" + { + "[berlin2019_team_navi]sticker" "1" + } + "berlin2019_rare_nip" + { + "[berlin2019_team_nip]sticker" "1" + } + "berlin2019_rare_faze" + { + "[berlin2019_team_faze]sticker" "1" + } + "berlin2019_rare_liq" + { + "[berlin2019_team_liq]sticker" "1" + } + "berlin2019_rare_ren" + { + "[berlin2019_team_ren]sticker" "1" + } + "berlin2019_rare_col" + { + "[berlin2019_team_col]sticker" "1" + } + "berlin2019_rare_hlr" + { + "[berlin2019_team_hlr]sticker" "1" + } + "berlin2019_rare_avg" + { + "[berlin2019_team_avg]sticker" "1" + } + "berlin2019_rare_g2" + { + "[berlin2019_team_g2]sticker" "1" + } + "berlin2019_rare_vita" + { + "[berlin2019_team_vita]sticker" "1" + } + "berlin2019_rare_gray" + { + "[berlin2019_team_gray]sticker" "1" + } + "berlin2019_rare_mss" + { + "[berlin2019_team_mss]sticker" "1" + } + "berlin2019_rare_forz" + { + "[berlin2019_team_forz]sticker" "1" + } + "berlin2019_rare_nrg" + { + "[berlin2019_team_nrg]sticker" "1" + } + "berlin2019_rare_tyl" + { + "[berlin2019_team_tyl]sticker" "1" + } + "berlin2019_rare_furi" + { + "[berlin2019_team_furi]sticker" "1" + } + "berlin2019_rare_cr4z" + { + "[berlin2019_team_cr4z]sticker" "1" + } + "berlin2019_rare_syma" + { + "[berlin2019_team_syma]sticker" "1" + } + "berlin2019_rare_nor" + { + "[berlin2019_team_nor]sticker" "1" + } + "berlin2019_rare_drea" + { + "[berlin2019_team_drea]sticker" "1" + } + "berlin2019_rare_intz" + { + "[berlin2019_team_intz]sticker" "1" + } + "berlin2019_rare_star" + { + "[berlin2019_team_star]sticker" "1" + } + "crate_sticker_pack_berlin2019_legends_rare" + { + "[berlin2019_team_astr]sticker" "1" + "[berlin2019_team_ence]sticker" "1" + "[berlin2019_team_mibr]sticker" "1" + "[berlin2019_team_navi]sticker" "1" + "[berlin2019_team_nip]sticker" "1" + "[berlin2019_team_faze]sticker" "1" + "[berlin2019_team_liq]sticker" "1" + "[berlin2019_team_ren]sticker" "1" + "[berlin2019_team_star]sticker" "1" + } + "crate_sticker_pack_berlin2019_legends_mythical" + { + "[berlin2019_team_astr_holo]sticker" "1" + "[berlin2019_team_ence_holo]sticker" "1" + "[berlin2019_team_mibr_holo]sticker" "1" + "[berlin2019_team_navi_holo]sticker" "1" + "[berlin2019_team_nip_holo]sticker" "1" + "[berlin2019_team_faze_holo]sticker" "1" + "[berlin2019_team_liq_holo]sticker" "1" + "[berlin2019_team_ren_holo]sticker" "1" + "[berlin2019_team_star_holo]sticker" "1" + } + "crate_sticker_pack_berlin2019_legends_legendary" + { + "[berlin2019_team_astr_foil]sticker" "1" + "[berlin2019_team_ence_foil]sticker" "1" + "[berlin2019_team_mibr_foil]sticker" "1" + "[berlin2019_team_navi_foil]sticker" "1" + "[berlin2019_team_nip_foil]sticker" "1" + "[berlin2019_team_faze_foil]sticker" "1" + "[berlin2019_team_liq_foil]sticker" "1" + "[berlin2019_team_ren_foil]sticker" "1" + "[berlin2019_team_star_foil]sticker" "1" + } + "crate_sticker_pack_berlin2019_legends" + { + "crate_sticker_pack_berlin2019_legends_mythical" "1" + "crate_sticker_pack_berlin2019_legends_legendary" "1" + } + "crate_sticker_pack_berlin2019_challengers_rare" + { + "[berlin2019_team_col]sticker" "1" + "[berlin2019_team_hlr]sticker" "1" + "[berlin2019_team_avg]sticker" "1" + "[berlin2019_team_g2]sticker" "1" + "[berlin2019_team_vita]sticker" "1" + "[berlin2019_team_star]sticker" "1" + } + "crate_sticker_pack_berlin2019_challengers_mythical" + { + "[berlin2019_team_col_holo]sticker" "1" + "[berlin2019_team_hlr_holo]sticker" "1" + "[berlin2019_team_avg_holo]sticker" "1" + "[berlin2019_team_g2_holo]sticker" "1" + "[berlin2019_team_vita_holo]sticker" "1" + "[berlin2019_team_star_holo]sticker" "1" + } + "crate_sticker_pack_berlin2019_challengers_legendary" + { + "[berlin2019_team_col_foil]sticker" "1" + "[berlin2019_team_hlr_foil]sticker" "1" + "[berlin2019_team_avg_foil]sticker" "1" + "[berlin2019_team_g2_foil]sticker" "1" + "[berlin2019_team_vita_foil]sticker" "1" + "[berlin2019_team_star_foil]sticker" "1" + } + "crate_sticker_pack_berlin2019_challengers" + { + "crate_sticker_pack_berlin2019_challengers_mythical" "1" + "crate_sticker_pack_berlin2019_challengers_legendary" "1" + } + "crate_sticker_pack_berlin2019_contenders_rare" + { + "[berlin2019_team_gray]sticker" "1" + "[berlin2019_team_mss]sticker" "1" + "[berlin2019_team_forz]sticker" "1" + "[berlin2019_team_nrg]sticker" "1" + "[berlin2019_team_tyl]sticker" "1" + "[berlin2019_team_furi]sticker" "1" + "[berlin2019_team_cr4z]sticker" "1" + "[berlin2019_team_syma]sticker" "1" + "[berlin2019_team_nor]sticker" "1" + "[berlin2019_team_drea]sticker" "1" + "[berlin2019_team_intz]sticker" "1" + "[berlin2019_team_star]sticker" "1" + } + "crate_sticker_pack_berlin2019_contenders_mythical" + { + "[berlin2019_team_gray_holo]sticker" "1" + "[berlin2019_team_mss_holo]sticker" "1" + "[berlin2019_team_forz_holo]sticker" "1" + "[berlin2019_team_nrg_holo]sticker" "1" + "[berlin2019_team_tyl_holo]sticker" "1" + "[berlin2019_team_furi_holo]sticker" "1" + "[berlin2019_team_cr4z_holo]sticker" "1" + "[berlin2019_team_syma_holo]sticker" "1" + "[berlin2019_team_nor_holo]sticker" "1" + "[berlin2019_team_drea_holo]sticker" "1" + "[berlin2019_team_intz_holo]sticker" "1" + "[berlin2019_team_star_holo]sticker" "1" + } + "crate_sticker_pack_berlin2019_contenders_legendary" + { + "[berlin2019_team_gray_foil]sticker" "1" + "[berlin2019_team_mss_foil]sticker" "1" + "[berlin2019_team_forz_foil]sticker" "1" + "[berlin2019_team_nrg_foil]sticker" "1" + "[berlin2019_team_tyl_foil]sticker" "1" + "[berlin2019_team_furi_foil]sticker" "1" + "[berlin2019_team_cr4z_foil]sticker" "1" + "[berlin2019_team_syma_foil]sticker" "1" + "[berlin2019_team_nor_foil]sticker" "1" + "[berlin2019_team_drea_foil]sticker" "1" + "[berlin2019_team_intz_foil]sticker" "1" + "[berlin2019_team_star_foil]sticker" "1" + } + "crate_sticker_pack_berlin2019_contenders" + { + "crate_sticker_pack_berlin2019_contenders_mythical" "1" + "crate_sticker_pack_berlin2019_contenders_legendary" "1" + } + "crate_signature_pack_berlin2019_group_legends_rare" + { + "[berlin2019_signature_magisk]sticker" "1" + "[berlin2019_signature_device]sticker" "1" + "[berlin2019_signature_xyp9x]sticker" "1" + "[berlin2019_signature_dupreeh]sticker" "1" + "[berlin2019_signature_gla1ve]sticker" "1" + "[berlin2019_signature_allu]sticker" "1" + "[berlin2019_signature_aerial]sticker" "1" + "[berlin2019_signature_xseven]sticker" "1" + "[berlin2019_signature_aleksib]sticker" "1" + "[berlin2019_signature_sergej]sticker" "1" + "[berlin2019_signature_fallen]sticker" "1" + "[berlin2019_signature_lucas1]sticker" "1" + "[berlin2019_signature_fer]sticker" "1" + "[berlin2019_signature_taco]sticker" "1" + "[berlin2019_signature_coldzera]sticker" "1" + "[berlin2019_signature_zeus]sticker" "1" + "[berlin2019_signature_s1mple]sticker" "1" + "[berlin2019_signature_electronic]sticker" "1" + "[berlin2019_signature_flamie]sticker" "1" + "[berlin2019_signature_boombl4]sticker" "1" + "[berlin2019_signature_forest]sticker" "1" + "[berlin2019_signature_lekro]sticker" "1" + "[berlin2019_signature_getright]sticker" "1" + "[berlin2019_signature_rez]sticker" "1" + "[berlin2019_signature_golden]sticker" "1" + "[berlin2019_signature_neo]sticker" "1" + "[berlin2019_signature_guardian]sticker" "1" + "[berlin2019_signature_olofmeister]sticker" "1" + "[berlin2019_signature_rain]sticker" "1" + "[berlin2019_signature_niko]sticker" "1" + "[berlin2019_signature_nitro]sticker" "1" + "[berlin2019_signature_stewie2k]sticker" "1" + "[berlin2019_signature_naf]sticker" "1" + "[berlin2019_signature_twistzz]sticker" "1" + "[berlin2019_signature_elige]sticker" "1" + "[berlin2019_signature_gratisfaction]sticker" "1" + "[berlin2019_signature_jks]sticker" "1" + "[berlin2019_signature_azr]sticker" "1" + "[berlin2019_signature_jkaem]sticker" "1" + "[berlin2019_signature_liazz]sticker" "1" + } + "crate_signature_pack_berlin2019_group_legends_foil" + { + "[berlin2019_signature_magisk_foil]sticker" "1" + "[berlin2019_signature_device_foil]sticker" "1" + "[berlin2019_signature_xyp9x_foil]sticker" "1" + "[berlin2019_signature_dupreeh_foil]sticker" "1" + "[berlin2019_signature_gla1ve_foil]sticker" "1" + "[berlin2019_signature_allu_foil]sticker" "1" + "[berlin2019_signature_aerial_foil]sticker" "1" + "[berlin2019_signature_xseven_foil]sticker" "1" + "[berlin2019_signature_aleksib_foil]sticker" "1" + "[berlin2019_signature_sergej_foil]sticker" "1" + "[berlin2019_signature_fallen_foil]sticker" "1" + "[berlin2019_signature_lucas1_foil]sticker" "1" + "[berlin2019_signature_fer_foil]sticker" "1" + "[berlin2019_signature_taco_foil]sticker" "1" + "[berlin2019_signature_coldzera_foil]sticker" "1" + "[berlin2019_signature_zeus_foil]sticker" "1" + "[berlin2019_signature_s1mple_foil]sticker" "1" + "[berlin2019_signature_electronic_foil]sticker" "1" + "[berlin2019_signature_flamie_foil]sticker" "1" + "[berlin2019_signature_boombl4_foil]sticker" "1" + "[berlin2019_signature_forest_foil]sticker" "1" + "[berlin2019_signature_lekro_foil]sticker" "1" + "[berlin2019_signature_getright_foil]sticker" "1" + "[berlin2019_signature_rez_foil]sticker" "1" + "[berlin2019_signature_golden_foil]sticker" "1" + "[berlin2019_signature_neo_foil]sticker" "1" + "[berlin2019_signature_guardian_foil]sticker" "1" + "[berlin2019_signature_olofmeister_foil]sticker" "1" + "[berlin2019_signature_rain_foil]sticker" "1" + "[berlin2019_signature_niko_foil]sticker" "1" + "[berlin2019_signature_nitro_foil]sticker" "1" + "[berlin2019_signature_stewie2k_foil]sticker" "1" + "[berlin2019_signature_naf_foil]sticker" "1" + "[berlin2019_signature_twistzz_foil]sticker" "1" + "[berlin2019_signature_elige_foil]sticker" "1" + "[berlin2019_signature_gratisfaction_foil]sticker" "1" + "[berlin2019_signature_jks_foil]sticker" "1" + "[berlin2019_signature_azr_foil]sticker" "1" + "[berlin2019_signature_jkaem_foil]sticker" "1" + "[berlin2019_signature_liazz_foil]sticker" "1" + } + "crate_signature_pack_berlin2019_group_legends_gold" + { + "[berlin2019_signature_magisk_gold]sticker" "1" + "[berlin2019_signature_device_gold]sticker" "1" + "[berlin2019_signature_xyp9x_gold]sticker" "1" + "[berlin2019_signature_dupreeh_gold]sticker" "1" + "[berlin2019_signature_gla1ve_gold]sticker" "1" + "[berlin2019_signature_allu_gold]sticker" "1" + "[berlin2019_signature_aerial_gold]sticker" "1" + "[berlin2019_signature_xseven_gold]sticker" "1" + "[berlin2019_signature_aleksib_gold]sticker" "1" + "[berlin2019_signature_sergej_gold]sticker" "1" + "[berlin2019_signature_fallen_gold]sticker" "1" + "[berlin2019_signature_lucas1_gold]sticker" "1" + "[berlin2019_signature_fer_gold]sticker" "1" + "[berlin2019_signature_taco_gold]sticker" "1" + "[berlin2019_signature_coldzera_gold]sticker" "1" + "[berlin2019_signature_zeus_gold]sticker" "1" + "[berlin2019_signature_s1mple_gold]sticker" "1" + "[berlin2019_signature_electronic_gold]sticker" "1" + "[berlin2019_signature_flamie_gold]sticker" "1" + "[berlin2019_signature_boombl4_gold]sticker" "1" + "[berlin2019_signature_forest_gold]sticker" "1" + "[berlin2019_signature_lekro_gold]sticker" "1" + "[berlin2019_signature_getright_gold]sticker" "1" + "[berlin2019_signature_rez_gold]sticker" "1" + "[berlin2019_signature_golden_gold]sticker" "1" + "[berlin2019_signature_neo_gold]sticker" "1" + "[berlin2019_signature_guardian_gold]sticker" "1" + "[berlin2019_signature_olofmeister_gold]sticker" "1" + "[berlin2019_signature_rain_gold]sticker" "1" + "[berlin2019_signature_niko_gold]sticker" "1" + "[berlin2019_signature_nitro_gold]sticker" "1" + "[berlin2019_signature_stewie2k_gold]sticker" "1" + "[berlin2019_signature_naf_gold]sticker" "1" + "[berlin2019_signature_twistzz_gold]sticker" "1" + "[berlin2019_signature_elige_gold]sticker" "1" + "[berlin2019_signature_gratisfaction_gold]sticker" "1" + "[berlin2019_signature_jks_gold]sticker" "1" + "[berlin2019_signature_azr_gold]sticker" "1" + "[berlin2019_signature_jkaem_gold]sticker" "1" + "[berlin2019_signature_liazz_gold]sticker" "1" + } + "crate_signature_pack_berlin2019_group_challengers_rare" + { + "[berlin2019_signature_rickeh]sticker" "1" + "[berlin2019_signature_sick]sticker" "1" + "[berlin2019_signature_dephh]sticker" "1" + "[berlin2019_signature_shahzam]sticker" "1" + "[berlin2019_signature_obo]sticker" "1" + "[berlin2019_signature_deadfox]sticker" "1" + "[berlin2019_signature_lowel]sticker" "1" + "[berlin2019_signature_angel]sticker" "1" + "[berlin2019_signature_issaa]sticker" "1" + "[berlin2019_signature_oskar]sticker" "1" + "[berlin2019_signature_adrenkz]sticker" "1" + "[berlin2019_signature_jame]sticker" "1" + "[berlin2019_signature_qikert]sticker" "1" + "[berlin2019_signature_buster]sticker" "1" + "[berlin2019_signature_sanji]sticker" "1" + "[berlin2019_signature_jackz]sticker" "1" + "[berlin2019_signature_shox]sticker" "1" + "[berlin2019_signature_kennys]sticker" "1" + "[berlin2019_signature_lucky]sticker" "1" + "[berlin2019_signature_amanek]sticker" "1" + "[berlin2019_signature_nbk]sticker" "1" + "[berlin2019_signature_apex]sticker" "1" + "[berlin2019_signature_alex]sticker" "1" + "[berlin2019_signature_rpk]sticker" "1" + "[berlin2019_signature_zywoo]sticker" "1" + } + "crate_signature_pack_berlin2019_group_challengers_foil" + { + "[berlin2019_signature_rickeh_foil]sticker" "1" + "[berlin2019_signature_sick_foil]sticker" "1" + "[berlin2019_signature_dephh_foil]sticker" "1" + "[berlin2019_signature_shahzam_foil]sticker" "1" + "[berlin2019_signature_obo_foil]sticker" "1" + "[berlin2019_signature_deadfox_foil]sticker" "1" + "[berlin2019_signature_lowel_foil]sticker" "1" + "[berlin2019_signature_angel_foil]sticker" "1" + "[berlin2019_signature_issaa_foil]sticker" "1" + "[berlin2019_signature_oskar_foil]sticker" "1" + "[berlin2019_signature_adrenkz_foil]sticker" "1" + "[berlin2019_signature_jame_foil]sticker" "1" + "[berlin2019_signature_qikert_foil]sticker" "1" + "[berlin2019_signature_buster_foil]sticker" "1" + "[berlin2019_signature_sanji_foil]sticker" "1" + "[berlin2019_signature_jackz_foil]sticker" "1" + "[berlin2019_signature_shox_foil]sticker" "1" + "[berlin2019_signature_kennys_foil]sticker" "1" + "[berlin2019_signature_lucky_foil]sticker" "1" + "[berlin2019_signature_amanek_foil]sticker" "1" + "[berlin2019_signature_nbk_foil]sticker" "1" + "[berlin2019_signature_apex_foil]sticker" "1" + "[berlin2019_signature_alex_foil]sticker" "1" + "[berlin2019_signature_rpk_foil]sticker" "1" + "[berlin2019_signature_zywoo_foil]sticker" "1" + } + "crate_signature_pack_berlin2019_group_challengers_gold" + { + "[berlin2019_signature_rickeh_gold]sticker" "1" + "[berlin2019_signature_sick_gold]sticker" "1" + "[berlin2019_signature_dephh_gold]sticker" "1" + "[berlin2019_signature_shahzam_gold]sticker" "1" + "[berlin2019_signature_obo_gold]sticker" "1" + "[berlin2019_signature_deadfox_gold]sticker" "1" + "[berlin2019_signature_lowel_gold]sticker" "1" + "[berlin2019_signature_angel_gold]sticker" "1" + "[berlin2019_signature_issaa_gold]sticker" "1" + "[berlin2019_signature_oskar_gold]sticker" "1" + "[berlin2019_signature_adrenkz_gold]sticker" "1" + "[berlin2019_signature_jame_gold]sticker" "1" + "[berlin2019_signature_qikert_gold]sticker" "1" + "[berlin2019_signature_buster_gold]sticker" "1" + "[berlin2019_signature_sanji_gold]sticker" "1" + "[berlin2019_signature_jackz_gold]sticker" "1" + "[berlin2019_signature_shox_gold]sticker" "1" + "[berlin2019_signature_kennys_gold]sticker" "1" + "[berlin2019_signature_lucky_gold]sticker" "1" + "[berlin2019_signature_amanek_gold]sticker" "1" + "[berlin2019_signature_nbk_gold]sticker" "1" + "[berlin2019_signature_apex_gold]sticker" "1" + "[berlin2019_signature_alex_gold]sticker" "1" + "[berlin2019_signature_rpk_gold]sticker" "1" + "[berlin2019_signature_zywoo_gold]sticker" "1" + } + "crate_signature_pack_berlin2019_group_contenders_rare" + { + "[berlin2019_signature_sico]sticker" "1" + "[berlin2019_signature_dexter]sticker" "1" + "[berlin2019_signature_erkast]sticker" "1" + "[berlin2019_signature_malta]sticker" "1" + "[berlin2019_signature_dickstacy]sticker" "1" + "[berlin2019_signature_chrisj]sticker" "1" + "[berlin2019_signature_karrigan]sticker" "1" + "[berlin2019_signature_ropz]sticker" "1" + "[berlin2019_signature_frozen]sticker" "1" + "[berlin2019_signature_woxic]sticker" "1" + "[berlin2019_signature_fl1t]sticker" "1" + "[berlin2019_signature_jerry]sticker" "1" + "[berlin2019_signature_almazer]sticker" "1" + "[berlin2019_signature_xsepower]sticker" "1" + "[berlin2019_signature_facecrack]sticker" "1" + "[berlin2019_signature_tarik]sticker" "1" + "[berlin2019_signature_stanislaw]sticker" "1" + "[berlin2019_signature_brehze]sticker" "1" + "[berlin2019_signature_ethan]sticker" "1" + "[berlin2019_signature_cerq]sticker" "1" + "[berlin2019_signature_summer]sticker" "1" + "[berlin2019_signature_somebody]sticker" "1" + "[berlin2019_signature_attacker]sticker" "1" + "[berlin2019_signature_bntet]sticker" "1" + "[berlin2019_signature_freeman]sticker" "1" + "[berlin2019_signature_vini]sticker" "1" + "[berlin2019_signature_ablej]sticker" "1" + "[berlin2019_signature_art]sticker" "1" + "[berlin2019_signature_kscerato]sticker" "1" + "[berlin2019_signature_yuurih]sticker" "1" + "[berlin2019_signature_nexa]sticker" "1" + "[berlin2019_signature_hunter]sticker" "1" + "[berlin2019_signature_ottond]sticker" "1" + "[berlin2019_signature_letn1]sticker" "1" + "[berlin2019_signature_espiranto]sticker" "1" + "[berlin2019_signature_t0rick]sticker" "1" + "[berlin2019_signature_nealan]sticker" "1" + "[berlin2019_signature_keoz]sticker" "1" + "[berlin2019_signature_ramz1kboss]sticker" "1" + "[berlin2019_signature_perfecto]sticker" "1" + "[berlin2019_signature_gade]sticker" "1" + "[berlin2019_signature_kjaerbye]sticker" "1" + "[berlin2019_signature_jugi]sticker" "1" + "[berlin2019_signature_aizy]sticker" "1" + "[berlin2019_signature_v4lde]sticker" "1" + "[berlin2019_signature_svyat]sticker" "1" + "[berlin2019_signature_kinqie]sticker" "1" + "[berlin2019_signature_forester]sticker" "1" + "[berlin2019_signature_krad]sticker" "1" + "[berlin2019_signature_speed4k]sticker" "1" + "[berlin2019_signature_kngv]sticker" "1" + "[berlin2019_signature_destiny]sticker" "1" + "[berlin2019_signature_yel]sticker" "1" + "[berlin2019_signature_chelo]sticker" "1" + "[berlin2019_signature_xand]sticker" "1" + } + "crate_signature_pack_berlin2019_group_contenders_foil" + { + "[berlin2019_signature_sico_foil]sticker" "1" + "[berlin2019_signature_dexter_foil]sticker" "1" + "[berlin2019_signature_erkast_foil]sticker" "1" + "[berlin2019_signature_malta_foil]sticker" "1" + "[berlin2019_signature_dickstacy_foil]sticker" "1" + "[berlin2019_signature_chrisj_foil]sticker" "1" + "[berlin2019_signature_karrigan_foil]sticker" "1" + "[berlin2019_signature_ropz_foil]sticker" "1" + "[berlin2019_signature_frozen_foil]sticker" "1" + "[berlin2019_signature_woxic_foil]sticker" "1" + "[berlin2019_signature_fl1t_foil]sticker" "1" + "[berlin2019_signature_jerry_foil]sticker" "1" + "[berlin2019_signature_almazer_foil]sticker" "1" + "[berlin2019_signature_xsepower_foil]sticker" "1" + "[berlin2019_signature_facecrack_foil]sticker" "1" + "[berlin2019_signature_tarik_foil]sticker" "1" + "[berlin2019_signature_stanislaw_foil]sticker" "1" + "[berlin2019_signature_brehze_foil]sticker" "1" + "[berlin2019_signature_ethan_foil]sticker" "1" + "[berlin2019_signature_cerq_foil]sticker" "1" + "[berlin2019_signature_summer_foil]sticker" "1" + "[berlin2019_signature_somebody_foil]sticker" "1" + "[berlin2019_signature_attacker_foil]sticker" "1" + "[berlin2019_signature_bntet_foil]sticker" "1" + "[berlin2019_signature_freeman_foil]sticker" "1" + "[berlin2019_signature_vini_foil]sticker" "1" + "[berlin2019_signature_ablej_foil]sticker" "1" + "[berlin2019_signature_art_foil]sticker" "1" + "[berlin2019_signature_kscerato_foil]sticker" "1" + "[berlin2019_signature_yuurih_foil]sticker" "1" + "[berlin2019_signature_nexa_foil]sticker" "1" + "[berlin2019_signature_hunter_foil]sticker" "1" + "[berlin2019_signature_ottond_foil]sticker" "1" + "[berlin2019_signature_letn1_foil]sticker" "1" + "[berlin2019_signature_espiranto_foil]sticker" "1" + "[berlin2019_signature_t0rick_foil]sticker" "1" + "[berlin2019_signature_nealan_foil]sticker" "1" + "[berlin2019_signature_keoz_foil]sticker" "1" + "[berlin2019_signature_ramz1kboss_foil]sticker" "1" + "[berlin2019_signature_perfecto_foil]sticker" "1" + "[berlin2019_signature_gade_foil]sticker" "1" + "[berlin2019_signature_kjaerbye_foil]sticker" "1" + "[berlin2019_signature_jugi_foil]sticker" "1" + "[berlin2019_signature_aizy_foil]sticker" "1" + "[berlin2019_signature_v4lde_foil]sticker" "1" + "[berlin2019_signature_svyat_foil]sticker" "1" + "[berlin2019_signature_kinqie_foil]sticker" "1" + "[berlin2019_signature_forester_foil]sticker" "1" + "[berlin2019_signature_krad_foil]sticker" "1" + "[berlin2019_signature_speed4k_foil]sticker" "1" + "[berlin2019_signature_kngv_foil]sticker" "1" + "[berlin2019_signature_destiny_foil]sticker" "1" + "[berlin2019_signature_yel_foil]sticker" "1" + "[berlin2019_signature_chelo_foil]sticker" "1" + "[berlin2019_signature_xand_foil]sticker" "1" + } + "crate_signature_pack_berlin2019_group_contenders_gold" + { + "[berlin2019_signature_sico_gold]sticker" "1" + "[berlin2019_signature_dexter_gold]sticker" "1" + "[berlin2019_signature_erkast_gold]sticker" "1" + "[berlin2019_signature_malta_gold]sticker" "1" + "[berlin2019_signature_dickstacy_gold]sticker" "1" + "[berlin2019_signature_chrisj_gold]sticker" "1" + "[berlin2019_signature_karrigan_gold]sticker" "1" + "[berlin2019_signature_ropz_gold]sticker" "1" + "[berlin2019_signature_frozen_gold]sticker" "1" + "[berlin2019_signature_woxic_gold]sticker" "1" + "[berlin2019_signature_fl1t_gold]sticker" "1" + "[berlin2019_signature_jerry_gold]sticker" "1" + "[berlin2019_signature_almazer_gold]sticker" "1" + "[berlin2019_signature_xsepower_gold]sticker" "1" + "[berlin2019_signature_facecrack_gold]sticker" "1" + "[berlin2019_signature_tarik_gold]sticker" "1" + "[berlin2019_signature_stanislaw_gold]sticker" "1" + "[berlin2019_signature_brehze_gold]sticker" "1" + "[berlin2019_signature_ethan_gold]sticker" "1" + "[berlin2019_signature_cerq_gold]sticker" "1" + "[berlin2019_signature_summer_gold]sticker" "1" + "[berlin2019_signature_somebody_gold]sticker" "1" + "[berlin2019_signature_attacker_gold]sticker" "1" + "[berlin2019_signature_bntet_gold]sticker" "1" + "[berlin2019_signature_freeman_gold]sticker" "1" + "[berlin2019_signature_vini_gold]sticker" "1" + "[berlin2019_signature_ablej_gold]sticker" "1" + "[berlin2019_signature_art_gold]sticker" "1" + "[berlin2019_signature_kscerato_gold]sticker" "1" + "[berlin2019_signature_yuurih_gold]sticker" "1" + "[berlin2019_signature_nexa_gold]sticker" "1" + "[berlin2019_signature_hunter_gold]sticker" "1" + "[berlin2019_signature_ottond_gold]sticker" "1" + "[berlin2019_signature_letn1_gold]sticker" "1" + "[berlin2019_signature_espiranto_gold]sticker" "1" + "[berlin2019_signature_t0rick_gold]sticker" "1" + "[berlin2019_signature_nealan_gold]sticker" "1" + "[berlin2019_signature_keoz_gold]sticker" "1" + "[berlin2019_signature_ramz1kboss_gold]sticker" "1" + "[berlin2019_signature_perfecto_gold]sticker" "1" + "[berlin2019_signature_gade_gold]sticker" "1" + "[berlin2019_signature_kjaerbye_gold]sticker" "1" + "[berlin2019_signature_jugi_gold]sticker" "1" + "[berlin2019_signature_aizy_gold]sticker" "1" + "[berlin2019_signature_v4lde_gold]sticker" "1" + "[berlin2019_signature_svyat_gold]sticker" "1" + "[berlin2019_signature_kinqie_gold]sticker" "1" + "[berlin2019_signature_forester_gold]sticker" "1" + "[berlin2019_signature_krad_gold]sticker" "1" + "[berlin2019_signature_speed4k_gold]sticker" "1" + "[berlin2019_signature_kngv_gold]sticker" "1" + "[berlin2019_signature_destiny_gold]sticker" "1" + "[berlin2019_signature_yel_gold]sticker" "1" + "[berlin2019_signature_chelo_gold]sticker" "1" + "[berlin2019_signature_xand_gold]sticker" "1" + } + "crate_signature_pack_berlin2019_group_players_collection_legends" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_berlin2019_group_legends_rare" "1" + "crate_signature_pack_berlin2019_group_legends_foil" "1" + "crate_signature_pack_berlin2019_group_legends_gold" "1" + } + "crate_signature_pack_berlin2019_group_players_collection_challengers" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_berlin2019_group_challengers_rare" "1" + "crate_signature_pack_berlin2019_group_challengers_foil" "1" + "crate_signature_pack_berlin2019_group_challengers_gold" "1" + } + "crate_signature_pack_berlin2019_group_players_collection_contenders" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_berlin2019_group_contenders_rare" "1" + "crate_signature_pack_berlin2019_group_contenders_foil" "1" + "crate_signature_pack_berlin2019_group_contenders_gold" "1" + } + "crate_berlin2019_promo_de_inferno" + { + "set_inferno_2" "1" + } + "crate_berlin2019_promo_de_mirage" + { + "set_mirage" "1" + } + "crate_berlin2019_promo_de_dust2" + { + "set_dust_2" "1" + } + "crate_berlin2019_promo_de_overpass" + { + "set_overpass" "1" + } + "crate_berlin2019_promo_de_train" + { + "set_train" "1" + } + "crate_berlin2019_promo_de_nuke" + { + "set_nuke_2" "1" + } + "crate_berlin2019_promo_de_vertigo" + { + "set_vertigo" "1" + } + } + "items" + { + "4622" + { + "item_name" "#CSGO_TournamentPass_berlin2019" + "name" "tournament_pass_berlin2019" + "item_description" "#CSGO_TournamentPass_berlin2019_Desc" + "image_inventory" "econ/status_icons/starladder_pickem_2019_pass" + "prefab" "berlin2019_tournament_pass_prefab berlin2019_tournament_steamtv_items" + } + "4627" + { + "item_name" "#CSGO_TournamentPass_berlin2019_pack" + "name" "tournament_pass_berlin2019_pack" + "item_description" "#CSGO_TournamentPass_berlin2019_pack_Desc" + "image_inventory" "econ/status_icons/starladder_pickem_2019_pass_pack" + "prefab" "berlin2019_tournament_pass_prefab berlin2019_tournament_steamtv_items" + } + "4628" + { + "item_name" "#CSGO_TournamentPass_berlin2019_charge" + "name" "tournament_pass_berlin2019_charge" + "item_description" "#CSGO_TournamentPass_berlin2019_charge_Desc" + "image_inventory" "econ/status_icons/starladder_pickem_2019_pass_charge" + "prefab" "berlin2019_tournament_pass_prefab" + "attributes" + { + "cannot trade" "1" + } + } + "4623" + { + "name" "tournament_journal_berlin2019" + "item_name" "#CSGO_TournamentJournal_berlin2019" + "prefab" "berlin2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/starladder_pickem_2019_bronze" + "attributes" + { + "upgrade level" "0" + "upgrade threshold" "8" + "pedestal display model" "models/inventory_items/starladder_pickem_2019_bronze.mdl" + } + } + "4624" + { + "name" "tournament_journal_berlin2019_silver" + "item_name" "#CSGO_TournamentJournal_berlin2019_Silver" + "prefab" "berlin2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/starladder_pickem_2019_silver" + "attributes" + { + "upgrade level" "1" + "upgrade threshold" "12" + "pedestal display model" "models/inventory_items/starladder_pickem_2019_silver.mdl" + } + } + "4625" + { + "name" "tournament_journal_berlin2019_gold" + "item_name" "#CSGO_TournamentJournal_berlin2019_Gold" + "prefab" "berlin2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/starladder_pickem_2019_gold" + "attributes" + { + "upgrade level" "2" + "upgrade threshold" "16" + "pedestal display model" "models/inventory_items/starladder_pickem_2019_gold.mdl" + } + } + "4626" + { + "name" "tournament_journal_berlin2019_crystal" + "item_name" "#CSGO_TournamentJournal_berlin2019_Crystal" + "prefab" "berlin2019_tournament_journal_prefab" + "image_inventory" "econ/status_icons/starladder_pickem_2019_crystal" + "attributes" + { + "upgrade level" "3" + "pedestal display model" "models/inventory_items/starladder_pickem_2019_crystal.mdl" + } + } + "4629" + { + "item_name" "#StoreItem_berlin2019_team_astr_sticker" + "name" "crate_sticker_pack_berlin2019_astr" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/astr" + "loot_list_name" "berlin2019_rare_astr" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4630" + { + "item_name" "#StoreItem_berlin2019_team_ence_sticker" + "name" "crate_sticker_pack_berlin2019_ence" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/ence" + "loot_list_name" "berlin2019_rare_ence" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4631" + { + "item_name" "#StoreItem_berlin2019_team_mibr_sticker" + "name" "crate_sticker_pack_berlin2019_mibr" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/mibr" + "loot_list_name" "berlin2019_rare_mibr" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4632" + { + "item_name" "#StoreItem_berlin2019_team_navi_sticker" + "name" "crate_sticker_pack_berlin2019_navi" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/navi" + "loot_list_name" "berlin2019_rare_navi" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4633" + { + "item_name" "#StoreItem_berlin2019_team_nip_sticker" + "name" "crate_sticker_pack_berlin2019_nip" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/nip" + "loot_list_name" "berlin2019_rare_nip" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4634" + { + "item_name" "#StoreItem_berlin2019_team_faze_sticker" + "name" "crate_sticker_pack_berlin2019_faze" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/faze" + "loot_list_name" "berlin2019_rare_faze" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4635" + { + "item_name" "#StoreItem_berlin2019_team_liq_sticker" + "name" "crate_sticker_pack_berlin2019_liq" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/liq" + "loot_list_name" "berlin2019_rare_liq" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4636" + { + "item_name" "#StoreItem_berlin2019_team_ren_sticker" + "name" "crate_sticker_pack_berlin2019_ren" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/ren" + "loot_list_name" "berlin2019_rare_ren" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4637" + { + "item_name" "#StoreItem_berlin2019_team_col_sticker" + "name" "crate_sticker_pack_berlin2019_col" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/col" + "loot_list_name" "berlin2019_rare_col" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4638" + { + "item_name" "#StoreItem_berlin2019_team_hlr_sticker" + "name" "crate_sticker_pack_berlin2019_hlr" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/hlr" + "loot_list_name" "berlin2019_rare_hlr" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4639" + { + "item_name" "#StoreItem_berlin2019_team_avg_sticker" + "name" "crate_sticker_pack_berlin2019_avg" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/avg" + "loot_list_name" "berlin2019_rare_avg" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4640" + { + "item_name" "#StoreItem_berlin2019_team_g2_sticker" + "name" "crate_sticker_pack_berlin2019_g2" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/g2" + "loot_list_name" "berlin2019_rare_g2" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4641" + { + "item_name" "#StoreItem_berlin2019_team_vita_sticker" + "name" "crate_sticker_pack_berlin2019_vita" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/vita" + "loot_list_name" "berlin2019_rare_vita" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4642" + { + "item_name" "#StoreItem_berlin2019_team_gray_sticker" + "name" "crate_sticker_pack_berlin2019_gray" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/gray" + "loot_list_name" "berlin2019_rare_gray" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4643" + { + "item_name" "#StoreItem_berlin2019_team_mss_sticker" + "name" "crate_sticker_pack_berlin2019_mss" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/mss" + "loot_list_name" "berlin2019_rare_mss" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4644" + { + "item_name" "#StoreItem_berlin2019_team_forz_sticker" + "name" "crate_sticker_pack_berlin2019_forz" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/forz" + "loot_list_name" "berlin2019_rare_forz" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4645" + { + "item_name" "#StoreItem_berlin2019_team_nrg_sticker" + "name" "crate_sticker_pack_berlin2019_nrg" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/nrg" + "loot_list_name" "berlin2019_rare_nrg" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4646" + { + "item_name" "#StoreItem_berlin2019_team_tyl_sticker" + "name" "crate_sticker_pack_berlin2019_tyl" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/tyl" + "loot_list_name" "berlin2019_rare_tyl" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4647" + { + "item_name" "#StoreItem_berlin2019_team_furi_sticker" + "name" "crate_sticker_pack_berlin2019_furi" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/furi" + "loot_list_name" "berlin2019_rare_furi" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4648" + { + "item_name" "#StoreItem_berlin2019_team_cr4z_sticker" + "name" "crate_sticker_pack_berlin2019_cr4z" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/cr4z" + "loot_list_name" "berlin2019_rare_cr4z" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4649" + { + "item_name" "#StoreItem_berlin2019_team_syma_sticker" + "name" "crate_sticker_pack_berlin2019_syma" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/syma" + "loot_list_name" "berlin2019_rare_syma" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4650" + { + "item_name" "#StoreItem_berlin2019_team_nor_sticker" + "name" "crate_sticker_pack_berlin2019_nor" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/nor" + "loot_list_name" "berlin2019_rare_nor" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4651" + { + "item_name" "#StoreItem_berlin2019_team_drea_sticker" + "name" "crate_sticker_pack_berlin2019_drea" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/drea" + "loot_list_name" "berlin2019_rare_drea" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4652" + { + "item_name" "#StoreItem_berlin2019_team_intz_sticker" + "name" "crate_sticker_pack_berlin2019_intz" + "item_description" "#EventItemDesc_berlin2019_sticker_team" + "image_inventory" "econ/stickers/berlin2019/intz" + "loot_list_name" "berlin2019_rare_intz" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4653" + { + "item_name" "#StoreItem_berlin2019_team_star_sticker" + "name" "crate_sticker_pack_berlin2019_star" + "item_description" "#EventItemDesc_berlin2019_sticker_org" + "image_inventory" "econ/stickers/berlin2019/star" + "loot_list_name" "berlin2019_rare_star" + "prefab" "berlin2019_sticker_capsule_prefab" + "item_type" "self_opening_purchase" + } + "4654" + { + "item_name" "#CSGO_crate_sticker_pack_berlin2019_legends" + "name" "crate_sticker_pack_berlin2019_legends" + "item_description" "#CSGO_crate_sticker_pack_berlin2019_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_berlin2019_legends" + "prefab" "berlin2019_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "278" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_berlin2019_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_berlin2019_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4655" + { + "item_name" "#CSGO_crate_sticker_pack_berlin2019_challengers" + "name" "crate_sticker_pack_berlin2019_challengers" + "item_description" "#CSGO_crate_sticker_pack_berlin2019_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_berlin2019_challengers" + "prefab" "berlin2019_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "279" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_berlin2019_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_berlin2019_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4656" + { + "item_name" "#CSGO_crate_sticker_pack_berlin2019_contenders" + "name" "crate_sticker_pack_berlin2019_contenders" + "item_description" "#CSGO_crate_sticker_pack_berlin2019_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_berlin2019_contenders" + "prefab" "berlin2019_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "280" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_berlin2019_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_berlin2019_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4657" + { + "item_name" "#CSGO_crate_signature_pack_berlin2019_group_legends" + "name" "crate_signature_pack_berlin2019_group_legends" + "item_description" "#CSGO_crate_signature_pack_berlin2019_group_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_berlin2019_group_legends" + "prefab" "berlin2019_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "281" + } + } + } + "4658" + { + "item_name" "#CSGO_crate_signature_pack_berlin2019_group_challengers" + "name" "crate_signature_pack_berlin2019_group_challengers" + "item_description" "#CSGO_crate_signature_pack_berlin2019_group_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_berlin2019_group_challengers" + "prefab" "berlin2019_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "282" + } + } + } + "4659" + { + "item_name" "#CSGO_crate_signature_pack_berlin2019_group_contenders" + "name" "crate_signature_pack_berlin2019_group_contenders" + "item_description" "#CSGO_crate_signature_pack_berlin2019_group_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_berlin2019_group_contenders" + "prefab" "berlin2019_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "283" + } + } + } + "4660" + { + "item_name" "#CSGO_crate_berlin2019_promo_de_inferno" + "name" "crate_berlin2019_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_berlin2019_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "284" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno_2" + "tag_text" "#CSGO_set_inferno_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4661" + { + "item_name" "#CSGO_crate_berlin2019_promo_de_mirage" + "name" "crate_berlin2019_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_berlin2019_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "285" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage" + "tag_text" "#CSGO_set_mirage" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4662" + { + "item_name" "#CSGO_crate_berlin2019_promo_de_dust2" + "name" "crate_berlin2019_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_berlin2019_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "286" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2" + "tag_text" "#CSGO_set_dust_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4663" + { + "item_name" "#CSGO_crate_berlin2019_promo_de_overpass" + "name" "crate_berlin2019_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_berlin2019_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "287" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4664" + { + "item_name" "#CSGO_crate_berlin2019_promo_de_train" + "name" "crate_berlin2019_promo_de_train" + "image_inventory" "econ/weapon_cases/crate_berlin2019_promo_de_train" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "288" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_train" + "tag_text" "#CSGO_set_train" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4665" + { + "item_name" "#CSGO_crate_berlin2019_promo_de_nuke" + "name" "crate_berlin2019_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_berlin2019_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "289" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke_2" + "tag_text" "#CSGO_set_nuke_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + "4666" + { + "item_name" "#CSGO_crate_berlin2019_promo_de_vertigo" + "name" "crate_berlin2019_promo_de_vertigo" + "image_inventory" "econ/weapon_cases/crate_berlin2019_promo_de_vertigo" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "290" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "16" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_vertigo" + "tag_text" "#CSGO_set_vertigo" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "sticker_kits" + { + "4019" + { + "name" "berlin2019_team_astr" + "item_name" "#StickerKit_berlin2019_team_astr" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/astr" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "60" + } + "4020" + { + "name" "berlin2019_team_astr_holo" + "item_name" "#StickerKit_berlin2019_team_astr_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "60" + } + "4021" + { + "name" "berlin2019_team_astr_foil" + "item_name" "#StickerKit_berlin2019_team_astr_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "60" + } + "4022" + { + "name" "berlin2019_team_astr_gold" + "item_name" "#StickerKit_berlin2019_team_astr_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/astr_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "60" + } + "4023" + { + "name" "berlin2019_team_ence" + "item_name" "#StickerKit_berlin2019_team_ence" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ence" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "84" + } + "4024" + { + "name" "berlin2019_team_ence_holo" + "item_name" "#StickerKit_berlin2019_team_ence_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ence_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "84" + } + "4025" + { + "name" "berlin2019_team_ence_foil" + "item_name" "#StickerKit_berlin2019_team_ence_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ence_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "84" + } + "4026" + { + "name" "berlin2019_team_ence_gold" + "item_name" "#StickerKit_berlin2019_team_ence_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ence_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "84" + } + "4027" + { + "name" "berlin2019_team_mibr" + "item_name" "#StickerKit_berlin2019_team_mibr" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mibr" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "80" + } + "4028" + { + "name" "berlin2019_team_mibr_holo" + "item_name" "#StickerKit_berlin2019_team_mibr_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mibr_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "80" + } + "4029" + { + "name" "berlin2019_team_mibr_foil" + "item_name" "#StickerKit_berlin2019_team_mibr_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mibr_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "80" + } + "4030" + { + "name" "berlin2019_team_mibr_gold" + "item_name" "#StickerKit_berlin2019_team_mibr_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mibr_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "80" + } + "4031" + { + "name" "berlin2019_team_navi" + "item_name" "#StickerKit_berlin2019_team_navi" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/navi" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "12" + } + "4032" + { + "name" "berlin2019_team_navi_holo" + "item_name" "#StickerKit_berlin2019_team_navi_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "12" + } + "4033" + { + "name" "berlin2019_team_navi_foil" + "item_name" "#StickerKit_berlin2019_team_navi_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "12" + } + "4034" + { + "name" "berlin2019_team_navi_gold" + "item_name" "#StickerKit_berlin2019_team_navi_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/navi_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "12" + } + "4035" + { + "name" "berlin2019_team_nip" + "item_name" "#StickerKit_berlin2019_team_nip" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nip" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "1" + } + "4036" + { + "name" "berlin2019_team_nip_holo" + "item_name" "#StickerKit_berlin2019_team_nip_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nip_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "1" + } + "4037" + { + "name" "berlin2019_team_nip_foil" + "item_name" "#StickerKit_berlin2019_team_nip_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nip_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "1" + } + "4038" + { + "name" "berlin2019_team_nip_gold" + "item_name" "#StickerKit_berlin2019_team_nip_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nip_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "1" + } + "4039" + { + "name" "berlin2019_team_faze" + "item_name" "#StickerKit_berlin2019_team_faze" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/faze" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "61" + } + "4040" + { + "name" "berlin2019_team_faze_holo" + "item_name" "#StickerKit_berlin2019_team_faze_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "61" + } + "4041" + { + "name" "berlin2019_team_faze_foil" + "item_name" "#StickerKit_berlin2019_team_faze_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "61" + } + "4042" + { + "name" "berlin2019_team_faze_gold" + "item_name" "#StickerKit_berlin2019_team_faze_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/faze_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "61" + } + "4043" + { + "name" "berlin2019_team_liq" + "item_name" "#StickerKit_berlin2019_team_liq" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/liq" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "48" + } + "4044" + { + "name" "berlin2019_team_liq_holo" + "item_name" "#StickerKit_berlin2019_team_liq_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "48" + } + "4045" + { + "name" "berlin2019_team_liq_foil" + "item_name" "#StickerKit_berlin2019_team_liq_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "48" + } + "4046" + { + "name" "berlin2019_team_liq_gold" + "item_name" "#StickerKit_berlin2019_team_liq_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/liq_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "48" + } + "4047" + { + "name" "berlin2019_team_ren" + "item_name" "#StickerKit_berlin2019_team_ren" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ren" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "53" + } + "4048" + { + "name" "berlin2019_team_ren_holo" + "item_name" "#StickerKit_berlin2019_team_ren_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ren_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "53" + } + "4049" + { + "name" "berlin2019_team_ren_foil" + "item_name" "#StickerKit_berlin2019_team_ren_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ren_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "53" + } + "4050" + { + "name" "berlin2019_team_ren_gold" + "item_name" "#StickerKit_berlin2019_team_ren_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/ren_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "53" + } + "4051" + { + "name" "berlin2019_team_col" + "item_name" "#StickerKit_berlin2019_team_col" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/col" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "3" + } + "4052" + { + "name" "berlin2019_team_col_holo" + "item_name" "#StickerKit_berlin2019_team_col_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/col_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "3" + } + "4053" + { + "name" "berlin2019_team_col_foil" + "item_name" "#StickerKit_berlin2019_team_col_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/col_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "3" + } + "4054" + { + "name" "berlin2019_team_col_gold" + "item_name" "#StickerKit_berlin2019_team_col_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/col_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "3" + } + "4055" + { + "name" "berlin2019_team_hlr" + "item_name" "#StickerKit_berlin2019_team_hlr" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/hlr" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "25" + } + "4056" + { + "name" "berlin2019_team_hlr_holo" + "item_name" "#StickerKit_berlin2019_team_hlr_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/hlr_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "25" + } + "4057" + { + "name" "berlin2019_team_hlr_foil" + "item_name" "#StickerKit_berlin2019_team_hlr_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/hlr_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "25" + } + "4058" + { + "name" "berlin2019_team_hlr_gold" + "item_name" "#StickerKit_berlin2019_team_hlr_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/hlr_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "25" + } + "4059" + { + "name" "berlin2019_team_avg" + "item_name" "#StickerKit_berlin2019_team_avg" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/avg" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "75" + } + "4060" + { + "name" "berlin2019_team_avg_holo" + "item_name" "#StickerKit_berlin2019_team_avg_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/avg_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "75" + } + "4061" + { + "name" "berlin2019_team_avg_foil" + "item_name" "#StickerKit_berlin2019_team_avg_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/avg_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "75" + } + "4062" + { + "name" "berlin2019_team_avg_gold" + "item_name" "#StickerKit_berlin2019_team_avg_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/avg_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "75" + } + "4063" + { + "name" "berlin2019_team_g2" + "item_name" "#StickerKit_berlin2019_team_g2" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/g2" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "59" + } + "4064" + { + "name" "berlin2019_team_g2_holo" + "item_name" "#StickerKit_berlin2019_team_g2_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "59" + } + "4065" + { + "name" "berlin2019_team_g2_foil" + "item_name" "#StickerKit_berlin2019_team_g2_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "59" + } + "4066" + { + "name" "berlin2019_team_g2_gold" + "item_name" "#StickerKit_berlin2019_team_g2_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/g2_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "59" + } + "4067" + { + "name" "berlin2019_team_vita" + "item_name" "#StickerKit_berlin2019_team_vita" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/vita" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "89" + } + "4068" + { + "name" "berlin2019_team_vita_holo" + "item_name" "#StickerKit_berlin2019_team_vita_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/vita_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "89" + } + "4069" + { + "name" "berlin2019_team_vita_foil" + "item_name" "#StickerKit_berlin2019_team_vita_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/vita_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "89" + } + "4070" + { + "name" "berlin2019_team_vita_gold" + "item_name" "#StickerKit_berlin2019_team_vita_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/vita_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "89" + } + "4071" + { + "name" "berlin2019_team_gray" + "item_name" "#StickerKit_berlin2019_team_gray" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/gray" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "86" + } + "4072" + { + "name" "berlin2019_team_gray_holo" + "item_name" "#StickerKit_berlin2019_team_gray_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/gray_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "86" + } + "4073" + { + "name" "berlin2019_team_gray_foil" + "item_name" "#StickerKit_berlin2019_team_gray_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/gray_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "86" + } + "4074" + { + "name" "berlin2019_team_gray_gold" + "item_name" "#StickerKit_berlin2019_team_gray_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/gray_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "86" + } + "4075" + { + "name" "berlin2019_team_mss" + "item_name" "#StickerKit_berlin2019_team_mss" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mss" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "29" + } + "4076" + { + "name" "berlin2019_team_mss_holo" + "item_name" "#StickerKit_berlin2019_team_mss_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mss_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "29" + } + "4077" + { + "name" "berlin2019_team_mss_foil" + "item_name" "#StickerKit_berlin2019_team_mss_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mss_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "29" + } + "4078" + { + "name" "berlin2019_team_mss_gold" + "item_name" "#StickerKit_berlin2019_team_mss_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/mss_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "29" + } + "4079" + { + "name" "berlin2019_team_forz" + "item_name" "#StickerKit_berlin2019_team_forz" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/forz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "90" + } + "4080" + { + "name" "berlin2019_team_forz_holo" + "item_name" "#StickerKit_berlin2019_team_forz_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/forz_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "90" + } + "4081" + { + "name" "berlin2019_team_forz_foil" + "item_name" "#StickerKit_berlin2019_team_forz_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/forz_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "90" + } + "4082" + { + "name" "berlin2019_team_forz_gold" + "item_name" "#StickerKit_berlin2019_team_forz_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/forz_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "90" + } + "4083" + { + "name" "berlin2019_team_nrg" + "item_name" "#StickerKit_berlin2019_team_nrg" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nrg" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "87" + } + "4084" + { + "name" "berlin2019_team_nrg_holo" + "item_name" "#StickerKit_berlin2019_team_nrg_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nrg_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "87" + } + "4085" + { + "name" "berlin2019_team_nrg_foil" + "item_name" "#StickerKit_berlin2019_team_nrg_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nrg_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "87" + } + "4086" + { + "name" "berlin2019_team_nrg_gold" + "item_name" "#StickerKit_berlin2019_team_nrg_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nrg_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "87" + } + "4087" + { + "name" "berlin2019_team_tyl" + "item_name" "#StickerKit_berlin2019_team_tyl" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/tyl" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "74" + } + "4088" + { + "name" "berlin2019_team_tyl_holo" + "item_name" "#StickerKit_berlin2019_team_tyl_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/tyl_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "74" + } + "4089" + { + "name" "berlin2019_team_tyl_foil" + "item_name" "#StickerKit_berlin2019_team_tyl_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/tyl_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "74" + } + "4090" + { + "name" "berlin2019_team_tyl_gold" + "item_name" "#StickerKit_berlin2019_team_tyl_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/tyl_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "74" + } + "4091" + { + "name" "berlin2019_team_furi" + "item_name" "#StickerKit_berlin2019_team_furi" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/furi" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "85" + } + "4092" + { + "name" "berlin2019_team_furi_holo" + "item_name" "#StickerKit_berlin2019_team_furi_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/furi_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "85" + } + "4093" + { + "name" "berlin2019_team_furi_foil" + "item_name" "#StickerKit_berlin2019_team_furi_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/furi_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "85" + } + "4094" + { + "name" "berlin2019_team_furi_gold" + "item_name" "#StickerKit_berlin2019_team_furi_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/furi_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "85" + } + "4095" + { + "name" "berlin2019_team_cr4z" + "item_name" "#StickerKit_berlin2019_team_cr4z" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/cr4z" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "91" + } + "4096" + { + "name" "berlin2019_team_cr4z_holo" + "item_name" "#StickerKit_berlin2019_team_cr4z_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/cr4z_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "91" + } + "4097" + { + "name" "berlin2019_team_cr4z_foil" + "item_name" "#StickerKit_berlin2019_team_cr4z_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/cr4z_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "91" + } + "4098" + { + "name" "berlin2019_team_cr4z_gold" + "item_name" "#StickerKit_berlin2019_team_cr4z_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/cr4z_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "91" + } + "4099" + { + "name" "berlin2019_team_syma" + "item_name" "#StickerKit_berlin2019_team_syma" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/syma" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "92" + } + "4100" + { + "name" "berlin2019_team_syma_holo" + "item_name" "#StickerKit_berlin2019_team_syma_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/syma_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "92" + } + "4101" + { + "name" "berlin2019_team_syma_foil" + "item_name" "#StickerKit_berlin2019_team_syma_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/syma_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "92" + } + "4102" + { + "name" "berlin2019_team_syma_gold" + "item_name" "#StickerKit_berlin2019_team_syma_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/syma_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "92" + } + "4103" + { + "name" "berlin2019_team_nor" + "item_name" "#StickerKit_berlin2019_team_nor" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nor" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "68" + } + "4104" + { + "name" "berlin2019_team_nor_holo" + "item_name" "#StickerKit_berlin2019_team_nor_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nor_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "68" + } + "4105" + { + "name" "berlin2019_team_nor_foil" + "item_name" "#StickerKit_berlin2019_team_nor_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nor_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "68" + } + "4106" + { + "name" "berlin2019_team_nor_gold" + "item_name" "#StickerKit_berlin2019_team_nor_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/nor_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "68" + } + "4107" + { + "name" "berlin2019_team_drea" + "item_name" "#StickerKit_berlin2019_team_drea" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/drea" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "93" + } + "4108" + { + "name" "berlin2019_team_drea_holo" + "item_name" "#StickerKit_berlin2019_team_drea_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/drea_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "93" + } + "4109" + { + "name" "berlin2019_team_drea_foil" + "item_name" "#StickerKit_berlin2019_team_drea_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/drea_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "93" + } + "4110" + { + "name" "berlin2019_team_drea_gold" + "item_name" "#StickerKit_berlin2019_team_drea_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/drea_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "93" + } + "4111" + { + "name" "berlin2019_team_intz" + "item_name" "#StickerKit_berlin2019_team_intz" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/intz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "94" + } + "4112" + { + "name" "berlin2019_team_intz_holo" + "item_name" "#StickerKit_berlin2019_team_intz_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/intz_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "94" + } + "4113" + { + "name" "berlin2019_team_intz_foil" + "item_name" "#StickerKit_berlin2019_team_intz_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/intz_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "94" + } + "4114" + { + "name" "berlin2019_team_intz_gold" + "item_name" "#StickerKit_berlin2019_team_intz_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_team" + "sticker_material" "berlin2019/intz_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "94" + } + "4115" + { + "name" "berlin2019_team_star" + "item_name" "#StickerKit_berlin2019_team_star" + "description_string" "#EventItemDesc_berlin2019_sticker_org" + "sticker_material" "berlin2019/star" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "0" + } + "4116" + { + "name" "berlin2019_team_star_holo" + "item_name" "#StickerKit_berlin2019_team_star_holo" + "description_string" "#EventItemDesc_berlin2019_sticker_org" + "sticker_material" "berlin2019/star_holo" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "0" + } + "4117" + { + "name" "berlin2019_team_star_foil" + "item_name" "#StickerKit_berlin2019_team_star_foil" + "description_string" "#EventItemDesc_berlin2019_sticker_org" + "sticker_material" "berlin2019/star_foil" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "0" + } + "4118" + { + "name" "berlin2019_team_star_gold" + "item_name" "#StickerKit_berlin2019_team_star_gold" + "description_string" "#EventItemDesc_berlin2019_sticker_org" + "sticker_material" "berlin2019/star_gold" + "item_rarity" "legendary" + "tournament_event_id" "16" + "tournament_team_id" "0" + } + "4119" + { + "name" "berlin2019_team_astr_graffiti" + "item_name" "#StickerKit_berlin2019_team_astr" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/astr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "60" + } + "4120" + { + "name" "berlin2019_team_ence_graffiti" + "item_name" "#StickerKit_berlin2019_team_ence" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/ence_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "84" + } + "4121" + { + "name" "berlin2019_team_mibr_graffiti" + "item_name" "#StickerKit_berlin2019_team_mibr" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/mibr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "80" + } + "4122" + { + "name" "berlin2019_team_navi_graffiti" + "item_name" "#StickerKit_berlin2019_team_navi" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "12" + } + "4123" + { + "name" "berlin2019_team_nip_graffiti" + "item_name" "#StickerKit_berlin2019_team_nip" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/nip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "1" + } + "4124" + { + "name" "berlin2019_team_faze_graffiti" + "item_name" "#StickerKit_berlin2019_team_faze" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "61" + } + "4125" + { + "name" "berlin2019_team_liq_graffiti" + "item_name" "#StickerKit_berlin2019_team_liq" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "48" + } + "4126" + { + "name" "berlin2019_team_ren_graffiti" + "item_name" "#StickerKit_berlin2019_team_ren" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/ren_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "53" + } + "4127" + { + "name" "berlin2019_team_col_graffiti" + "item_name" "#StickerKit_berlin2019_team_col" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/col_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "3" + } + "4128" + { + "name" "berlin2019_team_hlr_graffiti" + "item_name" "#StickerKit_berlin2019_team_hlr" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/hlr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "25" + } + "4129" + { + "name" "berlin2019_team_avg_graffiti" + "item_name" "#StickerKit_berlin2019_team_avg" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/avg_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "75" + } + "4130" + { + "name" "berlin2019_team_g2_graffiti" + "item_name" "#StickerKit_berlin2019_team_g2" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/g2_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "59" + } + "4131" + { + "name" "berlin2019_team_vita_graffiti" + "item_name" "#StickerKit_berlin2019_team_vita" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/vita_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "89" + } + "4132" + { + "name" "berlin2019_team_gray_graffiti" + "item_name" "#StickerKit_berlin2019_team_gray" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/gray_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "86" + } + "4133" + { + "name" "berlin2019_team_mss_graffiti" + "item_name" "#StickerKit_berlin2019_team_mss" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/mss_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "29" + } + "4134" + { + "name" "berlin2019_team_forz_graffiti" + "item_name" "#StickerKit_berlin2019_team_forz" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/forz_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "90" + } + "4135" + { + "name" "berlin2019_team_nrg_graffiti" + "item_name" "#StickerKit_berlin2019_team_nrg" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/nrg_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "87" + } + "4136" + { + "name" "berlin2019_team_tyl_graffiti" + "item_name" "#StickerKit_berlin2019_team_tyl" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/tyl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "74" + } + "4137" + { + "name" "berlin2019_team_furi_graffiti" + "item_name" "#StickerKit_berlin2019_team_furi" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/furi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "85" + } + "4138" + { + "name" "berlin2019_team_cr4z_graffiti" + "item_name" "#StickerKit_berlin2019_team_cr4z" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/cr4z_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "91" + } + "4139" + { + "name" "berlin2019_team_syma_graffiti" + "item_name" "#StickerKit_berlin2019_team_syma" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/syma_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "92" + } + "4140" + { + "name" "berlin2019_team_nor_graffiti" + "item_name" "#StickerKit_berlin2019_team_nor" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/nor_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "68" + } + "4141" + { + "name" "berlin2019_team_drea_graffiti" + "item_name" "#StickerKit_berlin2019_team_drea" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/drea_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "93" + } + "4142" + { + "name" "berlin2019_team_intz_graffiti" + "item_name" "#StickerKit_berlin2019_team_intz" + "description_string" "#EventItemDesc_berlin2019_graffiti_team" + "sticker_material" "berlin2019/intz_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "94" + } + "4143" + { + "name" "berlin2019_team_star_graffiti" + "item_name" "#StickerKit_berlin2019_team_star" + "description_string" "#EventItemDesc_berlin2019_graffiti_org" + "sticker_material" "berlin2019/star_graffiti" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "0" + } + "4144" + { + "name" "berlin2019_signature_magisk" + "item_name" "#StickerKit_berlin2019_signature_magisk" + "description_string" "#StickerKit_desc_berlin2019_signature_magisk" + "sticker_material" "berlin2019/sig_magisk" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "4145" + { + "name" "berlin2019_signature_magisk_foil" + "item_name" "#StickerKit_berlin2019_signature_magisk_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_magisk_foil" + "sticker_material" "berlin2019/sig_magisk_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "4146" + { + "name" "berlin2019_signature_magisk_gold" + "item_name" "#StickerKit_berlin2019_signature_magisk_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_magisk_gold" + "sticker_material" "berlin2019/sig_magisk_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "23690923" + } + "4147" + { + "name" "berlin2019_signature_device" + "item_name" "#StickerKit_berlin2019_signature_device" + "description_string" "#StickerKit_desc_berlin2019_signature_device" + "sticker_material" "berlin2019/sig_device" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "4148" + { + "name" "berlin2019_signature_device_foil" + "item_name" "#StickerKit_berlin2019_signature_device_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_device_foil" + "sticker_material" "berlin2019/sig_device_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "4149" + { + "name" "berlin2019_signature_device_gold" + "item_name" "#StickerKit_berlin2019_signature_device_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_device_gold" + "sticker_material" "berlin2019/sig_device_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "27447936" + } + "4150" + { + "name" "berlin2019_signature_xyp9x" + "item_name" "#StickerKit_berlin2019_signature_xyp9x" + "description_string" "#StickerKit_desc_berlin2019_signature_xyp9x" + "sticker_material" "berlin2019/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "4151" + { + "name" "berlin2019_signature_xyp9x_foil" + "item_name" "#StickerKit_berlin2019_signature_xyp9x_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_xyp9x_foil" + "sticker_material" "berlin2019/sig_xyp9x_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "4152" + { + "name" "berlin2019_signature_xyp9x_gold" + "item_name" "#StickerKit_berlin2019_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_xyp9x_gold" + "sticker_material" "berlin2019/sig_xyp9x_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "30416534" + } + "4153" + { + "name" "berlin2019_signature_dupreeh" + "item_name" "#StickerKit_berlin2019_signature_dupreeh" + "description_string" "#StickerKit_desc_berlin2019_signature_dupreeh" + "sticker_material" "berlin2019/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "4154" + { + "name" "berlin2019_signature_dupreeh_foil" + "item_name" "#StickerKit_berlin2019_signature_dupreeh_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_dupreeh_foil" + "sticker_material" "berlin2019/sig_dupreeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "4155" + { + "name" "berlin2019_signature_dupreeh_gold" + "item_name" "#StickerKit_berlin2019_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_dupreeh_gold" + "sticker_material" "berlin2019/sig_dupreeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "44589228" + } + "4156" + { + "name" "berlin2019_signature_gla1ve" + "item_name" "#StickerKit_berlin2019_signature_gla1ve" + "description_string" "#StickerKit_desc_berlin2019_signature_gla1ve" + "sticker_material" "berlin2019/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "4157" + { + "name" "berlin2019_signature_gla1ve_foil" + "item_name" "#StickerKit_berlin2019_signature_gla1ve_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_gla1ve_foil" + "sticker_material" "berlin2019/sig_gla1ve_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "4158" + { + "name" "berlin2019_signature_gla1ve_gold" + "item_name" "#StickerKit_berlin2019_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_gla1ve_gold" + "sticker_material" "berlin2019/sig_gla1ve_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "60" + "tournament_player_id" "50245293" + } + "4159" + { + "name" "berlin2019_signature_allu" + "item_name" "#StickerKit_berlin2019_signature_allu" + "description_string" "#StickerKit_desc_berlin2019_signature_allu" + "sticker_material" "berlin2019/sig_allu" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "1345246" + } + "4160" + { + "name" "berlin2019_signature_allu_foil" + "item_name" "#StickerKit_berlin2019_signature_allu_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_allu_foil" + "sticker_material" "berlin2019/sig_allu_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "1345246" + } + "4161" + { + "name" "berlin2019_signature_allu_gold" + "item_name" "#StickerKit_berlin2019_signature_allu_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_allu_gold" + "sticker_material" "berlin2019/sig_allu_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "1345246" + } + "4162" + { + "name" "berlin2019_signature_aerial" + "item_name" "#StickerKit_berlin2019_signature_aerial" + "description_string" "#StickerKit_desc_berlin2019_signature_aerial" + "sticker_material" "berlin2019/sig_aerial" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "2445180" + } + "4163" + { + "name" "berlin2019_signature_aerial_foil" + "item_name" "#StickerKit_berlin2019_signature_aerial_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_aerial_foil" + "sticker_material" "berlin2019/sig_aerial_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "2445180" + } + "4164" + { + "name" "berlin2019_signature_aerial_gold" + "item_name" "#StickerKit_berlin2019_signature_aerial_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_aerial_gold" + "sticker_material" "berlin2019/sig_aerial_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "2445180" + } + "4165" + { + "name" "berlin2019_signature_xseven" + "item_name" "#StickerKit_berlin2019_signature_xseven" + "description_string" "#StickerKit_desc_berlin2019_signature_xseven" + "sticker_material" "berlin2019/sig_xseven" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "52906775" + } + "4166" + { + "name" "berlin2019_signature_xseven_foil" + "item_name" "#StickerKit_berlin2019_signature_xseven_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_xseven_foil" + "sticker_material" "berlin2019/sig_xseven_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "52906775" + } + "4167" + { + "name" "berlin2019_signature_xseven_gold" + "item_name" "#StickerKit_berlin2019_signature_xseven_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_xseven_gold" + "sticker_material" "berlin2019/sig_xseven_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "52906775" + } + "4168" + { + "name" "berlin2019_signature_aleksib" + "item_name" "#StickerKit_berlin2019_signature_aleksib" + "description_string" "#StickerKit_desc_berlin2019_signature_aleksib" + "sticker_material" "berlin2019/sig_aleksib" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "52977598" + } + "4169" + { + "name" "berlin2019_signature_aleksib_foil" + "item_name" "#StickerKit_berlin2019_signature_aleksib_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_aleksib_foil" + "sticker_material" "berlin2019/sig_aleksib_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "52977598" + } + "4170" + { + "name" "berlin2019_signature_aleksib_gold" + "item_name" "#StickerKit_berlin2019_signature_aleksib_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_aleksib_gold" + "sticker_material" "berlin2019/sig_aleksib_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "52977598" + } + "4171" + { + "name" "berlin2019_signature_sergej" + "item_name" "#StickerKit_berlin2019_signature_sergej" + "description_string" "#StickerKit_desc_berlin2019_signature_sergej" + "sticker_material" "berlin2019/sig_sergej" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "67574097" + } + "4172" + { + "name" "berlin2019_signature_sergej_foil" + "item_name" "#StickerKit_berlin2019_signature_sergej_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_sergej_foil" + "sticker_material" "berlin2019/sig_sergej_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "67574097" + } + "4173" + { + "name" "berlin2019_signature_sergej_gold" + "item_name" "#StickerKit_berlin2019_signature_sergej_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_sergej_gold" + "sticker_material" "berlin2019/sig_sergej_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "84" + "tournament_player_id" "67574097" + } + "4174" + { + "name" "berlin2019_signature_fallen" + "item_name" "#StickerKit_berlin2019_signature_fallen" + "description_string" "#StickerKit_desc_berlin2019_signature_fallen" + "sticker_material" "berlin2019/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "4175" + { + "name" "berlin2019_signature_fallen_foil" + "item_name" "#StickerKit_berlin2019_signature_fallen_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_fallen_foil" + "sticker_material" "berlin2019/sig_fallen_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "4176" + { + "name" "berlin2019_signature_fallen_gold" + "item_name" "#StickerKit_berlin2019_signature_fallen_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_fallen_gold" + "sticker_material" "berlin2019/sig_fallen_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "424467" + } + "4177" + { + "name" "berlin2019_signature_lucas1" + "item_name" "#StickerKit_berlin2019_signature_lucas1" + "description_string" "#StickerKit_desc_berlin2019_signature_lucas1" + "sticker_material" "berlin2019/sig_lucas1" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "4780624" + } + "4178" + { + "name" "berlin2019_signature_lucas1_foil" + "item_name" "#StickerKit_berlin2019_signature_lucas1_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_lucas1_foil" + "sticker_material" "berlin2019/sig_lucas1_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "4780624" + } + "4179" + { + "name" "berlin2019_signature_lucas1_gold" + "item_name" "#StickerKit_berlin2019_signature_lucas1_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_lucas1_gold" + "sticker_material" "berlin2019/sig_lucas1_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "4780624" + } + "4180" + { + "name" "berlin2019_signature_fer" + "item_name" "#StickerKit_berlin2019_signature_fer" + "description_string" "#StickerKit_desc_berlin2019_signature_fer" + "sticker_material" "berlin2019/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "4181" + { + "name" "berlin2019_signature_fer_foil" + "item_name" "#StickerKit_berlin2019_signature_fer_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_fer_foil" + "sticker_material" "berlin2019/sig_fer_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "4182" + { + "name" "berlin2019_signature_fer_gold" + "item_name" "#StickerKit_berlin2019_signature_fer_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_fer_gold" + "sticker_material" "berlin2019/sig_fer_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "38921219" + } + "4183" + { + "name" "berlin2019_signature_taco" + "item_name" "#StickerKit_berlin2019_signature_taco" + "description_string" "#StickerKit_desc_berlin2019_signature_taco" + "sticker_material" "berlin2019/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "52876568" + } + "4184" + { + "name" "berlin2019_signature_taco_foil" + "item_name" "#StickerKit_berlin2019_signature_taco_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_taco_foil" + "sticker_material" "berlin2019/sig_taco_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "52876568" + } + "4185" + { + "name" "berlin2019_signature_taco_gold" + "item_name" "#StickerKit_berlin2019_signature_taco_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_taco_gold" + "sticker_material" "berlin2019/sig_taco_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "52876568" + } + "4186" + { + "name" "berlin2019_signature_coldzera" + "item_name" "#StickerKit_berlin2019_signature_coldzera" + "description_string" "#StickerKit_desc_berlin2019_signature_coldzera" + "sticker_material" "berlin2019/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "4187" + { + "name" "berlin2019_signature_coldzera_foil" + "item_name" "#StickerKit_berlin2019_signature_coldzera_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_coldzera_foil" + "sticker_material" "berlin2019/sig_coldzera_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "4188" + { + "name" "berlin2019_signature_coldzera_gold" + "item_name" "#StickerKit_berlin2019_signature_coldzera_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_coldzera_gold" + "sticker_material" "berlin2019/sig_coldzera_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "80" + "tournament_player_id" "79720871" + } + "4189" + { + "name" "berlin2019_signature_zeus" + "item_name" "#StickerKit_berlin2019_signature_zeus" + "description_string" "#StickerKit_desc_berlin2019_signature_zeus" + "sticker_material" "berlin2019/sig_zeus" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "4190" + { + "name" "berlin2019_signature_zeus_foil" + "item_name" "#StickerKit_berlin2019_signature_zeus_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_zeus_foil" + "sticker_material" "berlin2019/sig_zeus_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "4191" + { + "name" "berlin2019_signature_zeus_gold" + "item_name" "#StickerKit_berlin2019_signature_zeus_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_zeus_gold" + "sticker_material" "berlin2019/sig_zeus_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "59062744" + } + "4192" + { + "name" "berlin2019_signature_s1mple" + "item_name" "#StickerKit_berlin2019_signature_s1mple" + "description_string" "#StickerKit_desc_berlin2019_signature_s1mple" + "sticker_material" "berlin2019/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "4193" + { + "name" "berlin2019_signature_s1mple_foil" + "item_name" "#StickerKit_berlin2019_signature_s1mple_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_s1mple_foil" + "sticker_material" "berlin2019/sig_s1mple_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "4194" + { + "name" "berlin2019_signature_s1mple_gold" + "item_name" "#StickerKit_berlin2019_signature_s1mple_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_s1mple_gold" + "sticker_material" "berlin2019/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "73936547" + } + "4195" + { + "name" "berlin2019_signature_electronic" + "item_name" "#StickerKit_berlin2019_signature_electronic" + "description_string" "#StickerKit_desc_berlin2019_signature_electronic" + "sticker_material" "berlin2019/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "4196" + { + "name" "berlin2019_signature_electronic_foil" + "item_name" "#StickerKit_berlin2019_signature_electronic_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_electronic_foil" + "sticker_material" "berlin2019/sig_electronic_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "4197" + { + "name" "berlin2019_signature_electronic_gold" + "item_name" "#StickerKit_berlin2019_signature_electronic_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_electronic_gold" + "sticker_material" "berlin2019/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "83779379" + } + "4198" + { + "name" "berlin2019_signature_flamie" + "item_name" "#StickerKit_berlin2019_signature_flamie" + "description_string" "#StickerKit_desc_berlin2019_signature_flamie" + "sticker_material" "berlin2019/sig_flamie" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "4199" + { + "name" "berlin2019_signature_flamie_foil" + "item_name" "#StickerKit_berlin2019_signature_flamie_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_flamie_foil" + "sticker_material" "berlin2019/sig_flamie_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "4200" + { + "name" "berlin2019_signature_flamie_gold" + "item_name" "#StickerKit_berlin2019_signature_flamie_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_flamie_gold" + "sticker_material" "berlin2019/sig_flamie_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "156257548" + } + "4201" + { + "name" "berlin2019_signature_boombl4" + "item_name" "#StickerKit_berlin2019_signature_boombl4" + "description_string" "#StickerKit_desc_berlin2019_signature_boombl4" + "sticker_material" "berlin2019/sig_boombl4" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "185941338" + } + "4202" + { + "name" "berlin2019_signature_boombl4_foil" + "item_name" "#StickerKit_berlin2019_signature_boombl4_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_boombl4_foil" + "sticker_material" "berlin2019/sig_boombl4_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "185941338" + } + "4203" + { + "name" "berlin2019_signature_boombl4_gold" + "item_name" "#StickerKit_berlin2019_signature_boombl4_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_boombl4_gold" + "sticker_material" "berlin2019/sig_boombl4_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "12" + "tournament_player_id" "185941338" + } + "4204" + { + "name" "berlin2019_signature_forest" + "item_name" "#StickerKit_berlin2019_signature_forest" + "description_string" "#StickerKit_desc_berlin2019_signature_forest" + "sticker_material" "berlin2019/sig_forest" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "4205" + { + "name" "berlin2019_signature_forest_foil" + "item_name" "#StickerKit_berlin2019_signature_forest_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_forest_foil" + "sticker_material" "berlin2019/sig_forest_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "4206" + { + "name" "berlin2019_signature_forest_gold" + "item_name" "#StickerKit_berlin2019_signature_forest_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_forest_gold" + "sticker_material" "berlin2019/sig_forest_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "93724" + } + "4207" + { + "name" "berlin2019_signature_lekro" + "item_name" "#StickerKit_berlin2019_signature_lekro" + "description_string" "#StickerKit_desc_berlin2019_signature_lekro" + "sticker_material" "berlin2019/sig_lekro" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "4208" + { + "name" "berlin2019_signature_lekro_foil" + "item_name" "#StickerKit_berlin2019_signature_lekro_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_lekro_foil" + "sticker_material" "berlin2019/sig_lekro_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "4209" + { + "name" "berlin2019_signature_lekro_gold" + "item_name" "#StickerKit_berlin2019_signature_lekro_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_lekro_gold" + "sticker_material" "berlin2019/sig_lekro_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "1093135" + } + "4210" + { + "name" "berlin2019_signature_getright" + "item_name" "#StickerKit_berlin2019_signature_getright" + "description_string" "#StickerKit_desc_berlin2019_signature_getright" + "sticker_material" "berlin2019/sig_getright" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "4211" + { + "name" "berlin2019_signature_getright_foil" + "item_name" "#StickerKit_berlin2019_signature_getright_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_getright_foil" + "sticker_material" "berlin2019/sig_getright_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "4212" + { + "name" "berlin2019_signature_getright_gold" + "item_name" "#StickerKit_berlin2019_signature_getright_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_getright_gold" + "sticker_material" "berlin2019/sig_getright_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "21771190" + } + "4213" + { + "name" "berlin2019_signature_rez" + "item_name" "#StickerKit_berlin2019_signature_rez" + "description_string" "#StickerKit_desc_berlin2019_signature_rez" + "sticker_material" "berlin2019/sig_rez" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "4214" + { + "name" "berlin2019_signature_rez_foil" + "item_name" "#StickerKit_berlin2019_signature_rez_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_rez_foil" + "sticker_material" "berlin2019/sig_rez_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "4215" + { + "name" "berlin2019_signature_rez_gold" + "item_name" "#StickerKit_berlin2019_signature_rez_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_rez_gold" + "sticker_material" "berlin2019/sig_rez_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "4216" + { + "name" "berlin2019_signature_golden" + "item_name" "#StickerKit_berlin2019_signature_golden" + "description_string" "#StickerKit_desc_berlin2019_signature_golden" + "sticker_material" "berlin2019/sig_golden" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "116509497" + } + "4217" + { + "name" "berlin2019_signature_golden_foil" + "item_name" "#StickerKit_berlin2019_signature_golden_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_golden_foil" + "sticker_material" "berlin2019/sig_golden_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "116509497" + } + "4218" + { + "name" "berlin2019_signature_golden_gold" + "item_name" "#StickerKit_berlin2019_signature_golden_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_golden_gold" + "sticker_material" "berlin2019/sig_golden_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "1" + "tournament_player_id" "116509497" + } + "4219" + { + "name" "berlin2019_signature_neo" + "item_name" "#StickerKit_berlin2019_signature_neo" + "description_string" "#StickerKit_desc_berlin2019_signature_neo" + "sticker_material" "berlin2019/sig_neo" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "460206" + } + "4220" + { + "name" "berlin2019_signature_neo_foil" + "item_name" "#StickerKit_berlin2019_signature_neo_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_neo_foil" + "sticker_material" "berlin2019/sig_neo_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "460206" + } + "4221" + { + "name" "berlin2019_signature_neo_gold" + "item_name" "#StickerKit_berlin2019_signature_neo_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_neo_gold" + "sticker_material" "berlin2019/sig_neo_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "460206" + } + "4222" + { + "name" "berlin2019_signature_guardian" + "item_name" "#StickerKit_berlin2019_signature_guardian" + "description_string" "#StickerKit_desc_berlin2019_signature_guardian" + "sticker_material" "berlin2019/sig_guardian" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "4223" + { + "name" "berlin2019_signature_guardian_foil" + "item_name" "#StickerKit_berlin2019_signature_guardian_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_guardian_foil" + "sticker_material" "berlin2019/sig_guardian_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "4224" + { + "name" "berlin2019_signature_guardian_gold" + "item_name" "#StickerKit_berlin2019_signature_guardian_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_guardian_gold" + "sticker_material" "berlin2019/sig_guardian_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "12065295" + } + "4225" + { + "name" "berlin2019_signature_olofmeister" + "item_name" "#StickerKit_berlin2019_signature_olofmeister" + "description_string" "#StickerKit_desc_berlin2019_signature_olofmeister" + "sticker_material" "berlin2019/sig_olofmeister" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "4226" + { + "name" "berlin2019_signature_olofmeister_foil" + "item_name" "#StickerKit_berlin2019_signature_olofmeister_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_olofmeister_foil" + "sticker_material" "berlin2019/sig_olofmeister_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "4227" + { + "name" "berlin2019_signature_olofmeister_gold" + "item_name" "#StickerKit_berlin2019_signature_olofmeister_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_olofmeister_gold" + "sticker_material" "berlin2019/sig_olofmeister_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "28361465" + } + "4228" + { + "name" "berlin2019_signature_rain" + "item_name" "#StickerKit_berlin2019_signature_rain" + "description_string" "#StickerKit_desc_berlin2019_signature_rain" + "sticker_material" "berlin2019/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "4229" + { + "name" "berlin2019_signature_rain_foil" + "item_name" "#StickerKit_berlin2019_signature_rain_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_rain_foil" + "sticker_material" "berlin2019/sig_rain_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "4230" + { + "name" "berlin2019_signature_rain_gold" + "item_name" "#StickerKit_berlin2019_signature_rain_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_rain_gold" + "sticker_material" "berlin2019/sig_rain_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "4231" + { + "name" "berlin2019_signature_niko" + "item_name" "#StickerKit_berlin2019_signature_niko" + "description_string" "#StickerKit_desc_berlin2019_signature_niko" + "sticker_material" "berlin2019/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "4232" + { + "name" "berlin2019_signature_niko_foil" + "item_name" "#StickerKit_berlin2019_signature_niko_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_niko_foil" + "sticker_material" "berlin2019/sig_niko_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "4233" + { + "name" "berlin2019_signature_niko_gold" + "item_name" "#StickerKit_berlin2019_signature_niko_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_niko_gold" + "sticker_material" "berlin2019/sig_niko_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "61" + "tournament_player_id" "81417650" + } + "4234" + { + "name" "berlin2019_signature_nitro" + "item_name" "#StickerKit_berlin2019_signature_nitro" + "description_string" "#StickerKit_desc_berlin2019_signature_nitro" + "sticker_material" "berlin2019/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "4235" + { + "name" "berlin2019_signature_nitro_foil" + "item_name" "#StickerKit_berlin2019_signature_nitro_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_nitro_foil" + "sticker_material" "berlin2019/sig_nitro_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "4236" + { + "name" "berlin2019_signature_nitro_gold" + "item_name" "#StickerKit_berlin2019_signature_nitro_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_nitro_gold" + "sticker_material" "berlin2019/sig_nitro_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "4237" + { + "name" "berlin2019_signature_stewie2k" + "item_name" "#StickerKit_berlin2019_signature_stewie2k" + "description_string" "#StickerKit_desc_berlin2019_signature_stewie2k" + "sticker_material" "berlin2019/sig_stewie2k" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "38738282" + } + "4238" + { + "name" "berlin2019_signature_stewie2k_foil" + "item_name" "#StickerKit_berlin2019_signature_stewie2k_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_stewie2k_foil" + "sticker_material" "berlin2019/sig_stewie2k_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "38738282" + } + "4239" + { + "name" "berlin2019_signature_stewie2k_gold" + "item_name" "#StickerKit_berlin2019_signature_stewie2k_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_stewie2k_gold" + "sticker_material" "berlin2019/sig_stewie2k_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "38738282" + } + "4240" + { + "name" "berlin2019_signature_naf" + "item_name" "#StickerKit_berlin2019_signature_naf" + "description_string" "#StickerKit_desc_berlin2019_signature_naf" + "sticker_material" "berlin2019/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "4241" + { + "name" "berlin2019_signature_naf_foil" + "item_name" "#StickerKit_berlin2019_signature_naf_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_naf_foil" + "sticker_material" "berlin2019/sig_naf_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "4242" + { + "name" "berlin2019_signature_naf_gold" + "item_name" "#StickerKit_berlin2019_signature_naf_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_naf_gold" + "sticker_material" "berlin2019/sig_naf_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "4243" + { + "name" "berlin2019_signature_twistzz" + "item_name" "#StickerKit_berlin2019_signature_twistzz" + "description_string" "#StickerKit_desc_berlin2019_signature_twistzz" + "sticker_material" "berlin2019/sig_twistzz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "4244" + { + "name" "berlin2019_signature_twistzz_foil" + "item_name" "#StickerKit_berlin2019_signature_twistzz_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_twistzz_foil" + "sticker_material" "berlin2019/sig_twistzz_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "4245" + { + "name" "berlin2019_signature_twistzz_gold" + "item_name" "#StickerKit_berlin2019_signature_twistzz_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_twistzz_gold" + "sticker_material" "berlin2019/sig_twistzz_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "55989477" + } + "4246" + { + "name" "berlin2019_signature_elige" + "item_name" "#StickerKit_berlin2019_signature_elige" + "description_string" "#StickerKit_desc_berlin2019_signature_elige" + "sticker_material" "berlin2019/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "4247" + { + "name" "berlin2019_signature_elige_foil" + "item_name" "#StickerKit_berlin2019_signature_elige_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_elige_foil" + "sticker_material" "berlin2019/sig_elige_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "4248" + { + "name" "berlin2019_signature_elige_gold" + "item_name" "#StickerKit_berlin2019_signature_elige_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_elige_gold" + "sticker_material" "berlin2019/sig_elige_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "4249" + { + "name" "berlin2019_signature_gratisfaction" + "item_name" "#StickerKit_berlin2019_signature_gratisfaction" + "description_string" "#StickerKit_desc_berlin2019_signature_gratisfaction" + "sticker_material" "berlin2019/sig_gratisfaction" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "5543683" + } + "4250" + { + "name" "berlin2019_signature_gratisfaction_foil" + "item_name" "#StickerKit_berlin2019_signature_gratisfaction_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_gratisfaction_foil" + "sticker_material" "berlin2019/sig_gratisfaction_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "5543683" + } + "4251" + { + "name" "berlin2019_signature_gratisfaction_gold" + "item_name" "#StickerKit_berlin2019_signature_gratisfaction_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_gratisfaction_gold" + "sticker_material" "berlin2019/sig_gratisfaction_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "5543683" + } + "4252" + { + "name" "berlin2019_signature_jks" + "item_name" "#StickerKit_berlin2019_signature_jks" + "description_string" "#StickerKit_desc_berlin2019_signature_jks" + "sticker_material" "berlin2019/sig_jks" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "4253" + { + "name" "berlin2019_signature_jks_foil" + "item_name" "#StickerKit_berlin2019_signature_jks_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_jks_foil" + "sticker_material" "berlin2019/sig_jks_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "4254" + { + "name" "berlin2019_signature_jks_gold" + "item_name" "#StickerKit_berlin2019_signature_jks_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_jks_gold" + "sticker_material" "berlin2019/sig_jks_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "16839456" + } + "4255" + { + "name" "berlin2019_signature_azr" + "item_name" "#StickerKit_berlin2019_signature_azr" + "description_string" "#StickerKit_desc_berlin2019_signature_azr" + "sticker_material" "berlin2019/sig_azr" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "4256" + { + "name" "berlin2019_signature_azr_foil" + "item_name" "#StickerKit_berlin2019_signature_azr_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_azr_foil" + "sticker_material" "berlin2019/sig_azr_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "4257" + { + "name" "berlin2019_signature_azr_gold" + "item_name" "#StickerKit_berlin2019_signature_azr_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_azr_gold" + "sticker_material" "berlin2019/sig_azr_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "24832266" + } + "4258" + { + "name" "berlin2019_signature_jkaem" + "item_name" "#StickerKit_berlin2019_signature_jkaem" + "description_string" "#StickerKit_desc_berlin2019_signature_jkaem" + "sticker_material" "berlin2019/sig_jkaem" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "4259" + { + "name" "berlin2019_signature_jkaem_foil" + "item_name" "#StickerKit_berlin2019_signature_jkaem_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_jkaem_foil" + "sticker_material" "berlin2019/sig_jkaem_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "4260" + { + "name" "berlin2019_signature_jkaem_gold" + "item_name" "#StickerKit_berlin2019_signature_jkaem_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_jkaem_gold" + "sticker_material" "berlin2019/sig_jkaem_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "42442914" + } + "4261" + { + "name" "berlin2019_signature_liazz" + "item_name" "#StickerKit_berlin2019_signature_liazz" + "description_string" "#StickerKit_desc_berlin2019_signature_liazz" + "sticker_material" "berlin2019/sig_liazz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "4262" + { + "name" "berlin2019_signature_liazz_foil" + "item_name" "#StickerKit_berlin2019_signature_liazz_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_liazz_foil" + "sticker_material" "berlin2019/sig_liazz_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "4263" + { + "name" "berlin2019_signature_liazz_gold" + "item_name" "#StickerKit_berlin2019_signature_liazz_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_liazz_gold" + "sticker_material" "berlin2019/sig_liazz_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "4264" + { + "name" "berlin2019_signature_rickeh" + "item_name" "#StickerKit_berlin2019_signature_rickeh" + "description_string" "#StickerKit_desc_berlin2019_signature_rickeh" + "sticker_material" "berlin2019/sig_rickeh" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "3215921" + } + "4265" + { + "name" "berlin2019_signature_rickeh_foil" + "item_name" "#StickerKit_berlin2019_signature_rickeh_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_rickeh_foil" + "sticker_material" "berlin2019/sig_rickeh_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "3215921" + } + "4266" + { + "name" "berlin2019_signature_rickeh_gold" + "item_name" "#StickerKit_berlin2019_signature_rickeh_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_rickeh_gold" + "sticker_material" "berlin2019/sig_rickeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "3215921" + } + "4267" + { + "name" "berlin2019_signature_sick" + "item_name" "#StickerKit_berlin2019_signature_sick" + "description_string" "#StickerKit_desc_berlin2019_signature_sick" + "sticker_material" "berlin2019/sig_sick" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "23556959" + } + "4268" + { + "name" "berlin2019_signature_sick_foil" + "item_name" "#StickerKit_berlin2019_signature_sick_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_sick_foil" + "sticker_material" "berlin2019/sig_sick_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "23556959" + } + "4269" + { + "name" "berlin2019_signature_sick_gold" + "item_name" "#StickerKit_berlin2019_signature_sick_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_sick_gold" + "sticker_material" "berlin2019/sig_sick_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "23556959" + } + "4270" + { + "name" "berlin2019_signature_dephh" + "item_name" "#StickerKit_berlin2019_signature_dephh" + "description_string" "#StickerKit_desc_berlin2019_signature_dephh" + "sticker_material" "berlin2019/sig_dephh" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "4271" + { + "name" "berlin2019_signature_dephh_foil" + "item_name" "#StickerKit_berlin2019_signature_dephh_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_dephh_foil" + "sticker_material" "berlin2019/sig_dephh_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "4272" + { + "name" "berlin2019_signature_dephh_gold" + "item_name" "#StickerKit_berlin2019_signature_dephh_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_dephh_gold" + "sticker_material" "berlin2019/sig_dephh_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "26995179" + } + "4273" + { + "name" "berlin2019_signature_shahzam" + "item_name" "#StickerKit_berlin2019_signature_shahzam" + "description_string" "#StickerKit_desc_berlin2019_signature_shahzam" + "sticker_material" "berlin2019/sig_shahzam" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "4274" + { + "name" "berlin2019_signature_shahzam_foil" + "item_name" "#StickerKit_berlin2019_signature_shahzam_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_shahzam_foil" + "sticker_material" "berlin2019/sig_shahzam_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "4275" + { + "name" "berlin2019_signature_shahzam_gold" + "item_name" "#StickerKit_berlin2019_signature_shahzam_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_shahzam_gold" + "sticker_material" "berlin2019/sig_shahzam_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "86003016" + } + "4276" + { + "name" "berlin2019_signature_obo" + "item_name" "#StickerKit_berlin2019_signature_obo" + "description_string" "#StickerKit_desc_berlin2019_signature_obo" + "sticker_material" "berlin2019/sig_obo" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "138156260" + } + "4277" + { + "name" "berlin2019_signature_obo_foil" + "item_name" "#StickerKit_berlin2019_signature_obo_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_obo_foil" + "sticker_material" "berlin2019/sig_obo_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "138156260" + } + "4278" + { + "name" "berlin2019_signature_obo_gold" + "item_name" "#StickerKit_berlin2019_signature_obo_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_obo_gold" + "sticker_material" "berlin2019/sig_obo_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "3" + "tournament_player_id" "138156260" + } + "4279" + { + "name" "berlin2019_signature_deadfox" + "item_name" "#StickerKit_berlin2019_signature_deadfox" + "description_string" "#StickerKit_desc_berlin2019_signature_deadfox" + "sticker_material" "berlin2019/sig_deadfox" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "4280" + { + "name" "berlin2019_signature_deadfox_foil" + "item_name" "#StickerKit_berlin2019_signature_deadfox_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_deadfox_foil" + "sticker_material" "berlin2019/sig_deadfox_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "4281" + { + "name" "berlin2019_signature_deadfox_gold" + "item_name" "#StickerKit_berlin2019_signature_deadfox_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_deadfox_gold" + "sticker_material" "berlin2019/sig_deadfox_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "29338592" + } + "4282" + { + "name" "berlin2019_signature_lowel" + "item_name" "#StickerKit_berlin2019_signature_lowel" + "description_string" "#StickerKit_desc_berlin2019_signature_lowel" + "sticker_material" "berlin2019/sig_lowel" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "34456844" + } + "4283" + { + "name" "berlin2019_signature_lowel_foil" + "item_name" "#StickerKit_berlin2019_signature_lowel_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_lowel_foil" + "sticker_material" "berlin2019/sig_lowel_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "34456844" + } + "4284" + { + "name" "berlin2019_signature_lowel_gold" + "item_name" "#StickerKit_berlin2019_signature_lowel_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_lowel_gold" + "sticker_material" "berlin2019/sig_lowel_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "34456844" + } + "4285" + { + "name" "berlin2019_signature_angel" + "item_name" "#StickerKit_berlin2019_signature_angel" + "description_string" "#StickerKit_desc_berlin2019_signature_angel" + "sticker_material" "berlin2019/sig_angel" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "4286" + { + "name" "berlin2019_signature_angel_foil" + "item_name" "#StickerKit_berlin2019_signature_angel_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_angel_foil" + "sticker_material" "berlin2019/sig_angel_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "4287" + { + "name" "berlin2019_signature_angel_gold" + "item_name" "#StickerKit_berlin2019_signature_angel_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_angel_gold" + "sticker_material" "berlin2019/sig_angel_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "58930363" + } + "4288" + { + "name" "berlin2019_signature_issaa" + "item_name" "#StickerKit_berlin2019_signature_issaa" + "description_string" "#StickerKit_desc_berlin2019_signature_issaa" + "sticker_material" "berlin2019/sig_issaa" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "4289" + { + "name" "berlin2019_signature_issaa_foil" + "item_name" "#StickerKit_berlin2019_signature_issaa_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_issaa_foil" + "sticker_material" "berlin2019/sig_issaa_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "4290" + { + "name" "berlin2019_signature_issaa_gold" + "item_name" "#StickerKit_berlin2019_signature_issaa_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_issaa_gold" + "sticker_material" "berlin2019/sig_issaa_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "77546728" + } + "4291" + { + "name" "berlin2019_signature_oskar" + "item_name" "#StickerKit_berlin2019_signature_oskar" + "description_string" "#StickerKit_desc_berlin2019_signature_oskar" + "sticker_material" "berlin2019/sig_oskar" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "171425088" + } + "4292" + { + "name" "berlin2019_signature_oskar_foil" + "item_name" "#StickerKit_berlin2019_signature_oskar_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_oskar_foil" + "sticker_material" "berlin2019/sig_oskar_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "171425088" + } + "4293" + { + "name" "berlin2019_signature_oskar_gold" + "item_name" "#StickerKit_berlin2019_signature_oskar_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_oskar_gold" + "sticker_material" "berlin2019/sig_oskar_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "25" + "tournament_player_id" "171425088" + } + "4294" + { + "name" "berlin2019_signature_adrenkz" + "item_name" "#StickerKit_berlin2019_signature_adrenkz" + "description_string" "#StickerKit_desc_berlin2019_signature_adrenkz" + "sticker_material" "berlin2019/sig_adrenkz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "46200979" + } + "4295" + { + "name" "berlin2019_signature_adrenkz_foil" + "item_name" "#StickerKit_berlin2019_signature_adrenkz_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_adrenkz_foil" + "sticker_material" "berlin2019/sig_adrenkz_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "46200979" + } + "4296" + { + "name" "berlin2019_signature_adrenkz_gold" + "item_name" "#StickerKit_berlin2019_signature_adrenkz_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_adrenkz_gold" + "sticker_material" "berlin2019/sig_adrenkz_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "46200979" + } + "4297" + { + "name" "berlin2019_signature_jame" + "item_name" "#StickerKit_berlin2019_signature_jame" + "description_string" "#StickerKit_desc_berlin2019_signature_jame" + "sticker_material" "berlin2019/sig_jame" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "4298" + { + "name" "berlin2019_signature_jame_foil" + "item_name" "#StickerKit_berlin2019_signature_jame_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_jame_foil" + "sticker_material" "berlin2019/sig_jame_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "4299" + { + "name" "berlin2019_signature_jame_gold" + "item_name" "#StickerKit_berlin2019_signature_jame_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_jame_gold" + "sticker_material" "berlin2019/sig_jame_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "75859856" + } + "4300" + { + "name" "berlin2019_signature_qikert" + "item_name" "#StickerKit_berlin2019_signature_qikert" + "description_string" "#StickerKit_desc_berlin2019_signature_qikert" + "sticker_material" "berlin2019/sig_qikert" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "4301" + { + "name" "berlin2019_signature_qikert_foil" + "item_name" "#StickerKit_berlin2019_signature_qikert_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_qikert_foil" + "sticker_material" "berlin2019/sig_qikert_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "4302" + { + "name" "berlin2019_signature_qikert_gold" + "item_name" "#StickerKit_berlin2019_signature_qikert_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_qikert_gold" + "sticker_material" "berlin2019/sig_qikert_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "166970562" + } + "4303" + { + "name" "berlin2019_signature_buster" + "item_name" "#StickerKit_berlin2019_signature_buster" + "description_string" "#StickerKit_desc_berlin2019_signature_buster" + "sticker_material" "berlin2019/sig_buster" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "4304" + { + "name" "berlin2019_signature_buster_foil" + "item_name" "#StickerKit_berlin2019_signature_buster_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_buster_foil" + "sticker_material" "berlin2019/sig_buster_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "4305" + { + "name" "berlin2019_signature_buster_gold" + "item_name" "#StickerKit_berlin2019_signature_buster_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_buster_gold" + "sticker_material" "berlin2019/sig_buster_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "212936195" + } + "4306" + { + "name" "berlin2019_signature_sanji" + "item_name" "#StickerKit_berlin2019_signature_sanji" + "description_string" "#StickerKit_desc_berlin2019_signature_sanji" + "sticker_material" "berlin2019/sig_sanji" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "357361556" + } + "4307" + { + "name" "berlin2019_signature_sanji_foil" + "item_name" "#StickerKit_berlin2019_signature_sanji_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_sanji_foil" + "sticker_material" "berlin2019/sig_sanji_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "357361556" + } + "4308" + { + "name" "berlin2019_signature_sanji_gold" + "item_name" "#StickerKit_berlin2019_signature_sanji_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_sanji_gold" + "sticker_material" "berlin2019/sig_sanji_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "75" + "tournament_player_id" "357361556" + } + "4309" + { + "name" "berlin2019_signature_jackz" + "item_name" "#StickerKit_berlin2019_signature_jackz" + "description_string" "#StickerKit_desc_berlin2019_signature_jackz" + "sticker_material" "berlin2019/sig_jackz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "11977189" + } + "4310" + { + "name" "berlin2019_signature_jackz_foil" + "item_name" "#StickerKit_berlin2019_signature_jackz_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_jackz_foil" + "sticker_material" "berlin2019/sig_jackz_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "11977189" + } + "4311" + { + "name" "berlin2019_signature_jackz_gold" + "item_name" "#StickerKit_berlin2019_signature_jackz_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_jackz_gold" + "sticker_material" "berlin2019/sig_jackz_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "11977189" + } + "4312" + { + "name" "berlin2019_signature_shox" + "item_name" "#StickerKit_berlin2019_signature_shox" + "description_string" "#StickerKit_desc_berlin2019_signature_shox" + "sticker_material" "berlin2019/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "4313" + { + "name" "berlin2019_signature_shox_foil" + "item_name" "#StickerKit_berlin2019_signature_shox_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_shox_foil" + "sticker_material" "berlin2019/sig_shox_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "4314" + { + "name" "berlin2019_signature_shox_gold" + "item_name" "#StickerKit_berlin2019_signature_shox_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_shox_gold" + "sticker_material" "berlin2019/sig_shox_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "46654567" + } + "4315" + { + "name" "berlin2019_signature_kennys" + "item_name" "#StickerKit_berlin2019_signature_kennys" + "description_string" "#StickerKit_desc_berlin2019_signature_kennys" + "sticker_material" "berlin2019/sig_kennys" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "4316" + { + "name" "berlin2019_signature_kennys_foil" + "item_name" "#StickerKit_berlin2019_signature_kennys_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_kennys_foil" + "sticker_material" "berlin2019/sig_kennys_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "4317" + { + "name" "berlin2019_signature_kennys_gold" + "item_name" "#StickerKit_berlin2019_signature_kennys_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_kennys_gold" + "sticker_material" "berlin2019/sig_kennys_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "64640068" + } + "4318" + { + "name" "berlin2019_signature_lucky" + "item_name" "#StickerKit_berlin2019_signature_lucky" + "description_string" "#StickerKit_desc_berlin2019_signature_lucky" + "sticker_material" "berlin2019/sig_lucky" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "71624387" + } + "4319" + { + "name" "berlin2019_signature_lucky_foil" + "item_name" "#StickerKit_berlin2019_signature_lucky_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_lucky_foil" + "sticker_material" "berlin2019/sig_lucky_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "71624387" + } + "4320" + { + "name" "berlin2019_signature_lucky_gold" + "item_name" "#StickerKit_berlin2019_signature_lucky_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_lucky_gold" + "sticker_material" "berlin2019/sig_lucky_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "71624387" + } + "4321" + { + "name" "berlin2019_signature_amanek" + "item_name" "#StickerKit_berlin2019_signature_amanek" + "description_string" "#StickerKit_desc_berlin2019_signature_amanek" + "sticker_material" "berlin2019/sig_amanek" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "108679223" + } + "4322" + { + "name" "berlin2019_signature_amanek_foil" + "item_name" "#StickerKit_berlin2019_signature_amanek_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_amanek_foil" + "sticker_material" "berlin2019/sig_amanek_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "108679223" + } + "4323" + { + "name" "berlin2019_signature_amanek_gold" + "item_name" "#StickerKit_berlin2019_signature_amanek_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_amanek_gold" + "sticker_material" "berlin2019/sig_amanek_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "59" + "tournament_player_id" "108679223" + } + "4324" + { + "name" "berlin2019_signature_nbk" + "item_name" "#StickerKit_berlin2019_signature_nbk" + "description_string" "#StickerKit_desc_berlin2019_signature_nbk" + "sticker_material" "berlin2019/sig_nbk" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "444845" + } + "4325" + { + "name" "berlin2019_signature_nbk_foil" + "item_name" "#StickerKit_berlin2019_signature_nbk_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_nbk_foil" + "sticker_material" "berlin2019/sig_nbk_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "444845" + } + "4326" + { + "name" "berlin2019_signature_nbk_gold" + "item_name" "#StickerKit_berlin2019_signature_nbk_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_nbk_gold" + "sticker_material" "berlin2019/sig_nbk_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "444845" + } + "4327" + { + "name" "berlin2019_signature_apex" + "item_name" "#StickerKit_berlin2019_signature_apex" + "description_string" "#StickerKit_desc_berlin2019_signature_apex" + "sticker_material" "berlin2019/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "29478439" + } + "4328" + { + "name" "berlin2019_signature_apex_foil" + "item_name" "#StickerKit_berlin2019_signature_apex_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_apex_foil" + "sticker_material" "berlin2019/sig_apex_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "29478439" + } + "4329" + { + "name" "berlin2019_signature_apex_gold" + "item_name" "#StickerKit_berlin2019_signature_apex_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_apex_gold" + "sticker_material" "berlin2019/sig_apex_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "29478439" + } + "4330" + { + "name" "berlin2019_signature_alex" + "item_name" "#StickerKit_berlin2019_signature_alex" + "description_string" "#StickerKit_desc_berlin2019_signature_alex" + "sticker_material" "berlin2019/sig_alex" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "44605706" + } + "4331" + { + "name" "berlin2019_signature_alex_foil" + "item_name" "#StickerKit_berlin2019_signature_alex_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_alex_foil" + "sticker_material" "berlin2019/sig_alex_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "44605706" + } + "4332" + { + "name" "berlin2019_signature_alex_gold" + "item_name" "#StickerKit_berlin2019_signature_alex_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_alex_gold" + "sticker_material" "berlin2019/sig_alex_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "44605706" + } + "4333" + { + "name" "berlin2019_signature_rpk" + "item_name" "#StickerKit_berlin2019_signature_rpk" + "description_string" "#StickerKit_desc_berlin2019_signature_rpk" + "sticker_material" "berlin2019/sig_rpk" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "53985773" + } + "4334" + { + "name" "berlin2019_signature_rpk_foil" + "item_name" "#StickerKit_berlin2019_signature_rpk_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_rpk_foil" + "sticker_material" "berlin2019/sig_rpk_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "53985773" + } + "4335" + { + "name" "berlin2019_signature_rpk_gold" + "item_name" "#StickerKit_berlin2019_signature_rpk_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_rpk_gold" + "sticker_material" "berlin2019/sig_rpk_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "53985773" + } + "4336" + { + "name" "berlin2019_signature_zywoo" + "item_name" "#StickerKit_berlin2019_signature_zywoo" + "description_string" "#StickerKit_desc_berlin2019_signature_zywoo" + "sticker_material" "berlin2019/sig_zywoo" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "153400465" + } + "4337" + { + "name" "berlin2019_signature_zywoo_foil" + "item_name" "#StickerKit_berlin2019_signature_zywoo_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_zywoo_foil" + "sticker_material" "berlin2019/sig_zywoo_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "153400465" + } + "4338" + { + "name" "berlin2019_signature_zywoo_gold" + "item_name" "#StickerKit_berlin2019_signature_zywoo_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_zywoo_gold" + "sticker_material" "berlin2019/sig_zywoo_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "89" + "tournament_player_id" "153400465" + } + "4339" + { + "name" "berlin2019_signature_sico" + "item_name" "#StickerKit_berlin2019_signature_sico" + "description_string" "#StickerKit_desc_berlin2019_signature_sico" + "sticker_material" "berlin2019/sig_sico" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "39266546" + } + "4340" + { + "name" "berlin2019_signature_sico_foil" + "item_name" "#StickerKit_berlin2019_signature_sico_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_sico_foil" + "sticker_material" "berlin2019/sig_sico_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "39266546" + } + "4341" + { + "name" "berlin2019_signature_sico_gold" + "item_name" "#StickerKit_berlin2019_signature_sico_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_sico_gold" + "sticker_material" "berlin2019/sig_sico_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "39266546" + } + "4342" + { + "name" "berlin2019_signature_dexter" + "item_name" "#StickerKit_berlin2019_signature_dexter" + "description_string" "#StickerKit_desc_berlin2019_signature_dexter" + "sticker_material" "berlin2019/sig_dexter" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "101535513" + } + "4343" + { + "name" "berlin2019_signature_dexter_foil" + "item_name" "#StickerKit_berlin2019_signature_dexter_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_dexter_foil" + "sticker_material" "berlin2019/sig_dexter_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "101535513" + } + "4344" + { + "name" "berlin2019_signature_dexter_gold" + "item_name" "#StickerKit_berlin2019_signature_dexter_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_dexter_gold" + "sticker_material" "berlin2019/sig_dexter_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "101535513" + } + "4345" + { + "name" "berlin2019_signature_erkast" + "item_name" "#StickerKit_berlin2019_signature_erkast" + "description_string" "#StickerKit_desc_berlin2019_signature_erkast" + "sticker_material" "berlin2019/sig_erkast" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "131305548" + } + "4346" + { + "name" "berlin2019_signature_erkast_foil" + "item_name" "#StickerKit_berlin2019_signature_erkast_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_erkast_foil" + "sticker_material" "berlin2019/sig_erkast_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "131305548" + } + "4347" + { + "name" "berlin2019_signature_erkast_gold" + "item_name" "#StickerKit_berlin2019_signature_erkast_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_erkast_gold" + "sticker_material" "berlin2019/sig_erkast_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "131305548" + } + "4348" + { + "name" "berlin2019_signature_malta" + "item_name" "#StickerKit_berlin2019_signature_malta" + "description_string" "#StickerKit_desc_berlin2019_signature_malta" + "sticker_material" "berlin2019/sig_malta" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "181905573" + } + "4349" + { + "name" "berlin2019_signature_malta_foil" + "item_name" "#StickerKit_berlin2019_signature_malta_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_malta_foil" + "sticker_material" "berlin2019/sig_malta_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "181905573" + } + "4350" + { + "name" "berlin2019_signature_malta_gold" + "item_name" "#StickerKit_berlin2019_signature_malta_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_malta_gold" + "sticker_material" "berlin2019/sig_malta_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "181905573" + } + "4351" + { + "name" "berlin2019_signature_dickstacy" + "item_name" "#StickerKit_berlin2019_signature_dickstacy" + "description_string" "#StickerKit_desc_berlin2019_signature_dickstacy" + "sticker_material" "berlin2019/sig_dickstacy" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "192019632" + } + "4352" + { + "name" "berlin2019_signature_dickstacy_foil" + "item_name" "#StickerKit_berlin2019_signature_dickstacy_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_dickstacy_foil" + "sticker_material" "berlin2019/sig_dickstacy_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "192019632" + } + "4353" + { + "name" "berlin2019_signature_dickstacy_gold" + "item_name" "#StickerKit_berlin2019_signature_dickstacy_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_dickstacy_gold" + "sticker_material" "berlin2019/sig_dickstacy_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "86" + "tournament_player_id" "192019632" + } + "4354" + { + "name" "berlin2019_signature_chrisj" + "item_name" "#StickerKit_berlin2019_signature_chrisj" + "description_string" "#StickerKit_desc_berlin2019_signature_chrisj" + "sticker_material" "berlin2019/sig_chrisj" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "4355" + { + "name" "berlin2019_signature_chrisj_foil" + "item_name" "#StickerKit_berlin2019_signature_chrisj_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_chrisj_foil" + "sticker_material" "berlin2019/sig_chrisj_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "4356" + { + "name" "berlin2019_signature_chrisj_gold" + "item_name" "#StickerKit_berlin2019_signature_chrisj_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_chrisj_gold" + "sticker_material" "berlin2019/sig_chrisj_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "28273376" + } + "4357" + { + "name" "berlin2019_signature_karrigan" + "item_name" "#StickerKit_berlin2019_signature_karrigan" + "description_string" "#StickerKit_desc_berlin2019_signature_karrigan" + "sticker_material" "berlin2019/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "29164525" + } + "4358" + { + "name" "berlin2019_signature_karrigan_foil" + "item_name" "#StickerKit_berlin2019_signature_karrigan_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_karrigan_foil" + "sticker_material" "berlin2019/sig_karrigan_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "29164525" + } + "4359" + { + "name" "berlin2019_signature_karrigan_gold" + "item_name" "#StickerKit_berlin2019_signature_karrigan_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_karrigan_gold" + "sticker_material" "berlin2019/sig_karrigan_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "29164525" + } + "4360" + { + "name" "berlin2019_signature_ropz" + "item_name" "#StickerKit_berlin2019_signature_ropz" + "description_string" "#StickerKit_desc_berlin2019_signature_ropz" + "sticker_material" "berlin2019/sig_ropz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "4361" + { + "name" "berlin2019_signature_ropz_foil" + "item_name" "#StickerKit_berlin2019_signature_ropz_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_ropz_foil" + "sticker_material" "berlin2019/sig_ropz_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "4362" + { + "name" "berlin2019_signature_ropz_gold" + "item_name" "#StickerKit_berlin2019_signature_ropz_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_ropz_gold" + "sticker_material" "berlin2019/sig_ropz_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "31006590" + } + "4363" + { + "name" "berlin2019_signature_frozen" + "item_name" "#StickerKit_berlin2019_signature_frozen" + "description_string" "#StickerKit_desc_berlin2019_signature_frozen" + "sticker_material" "berlin2019/sig_frozen" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "108157034" + } + "4364" + { + "name" "berlin2019_signature_frozen_foil" + "item_name" "#StickerKit_berlin2019_signature_frozen_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_frozen_foil" + "sticker_material" "berlin2019/sig_frozen_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "108157034" + } + "4365" + { + "name" "berlin2019_signature_frozen_gold" + "item_name" "#StickerKit_berlin2019_signature_frozen_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_frozen_gold" + "sticker_material" "berlin2019/sig_frozen_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "108157034" + } + "4366" + { + "name" "berlin2019_signature_woxic" + "item_name" "#StickerKit_berlin2019_signature_woxic" + "description_string" "#StickerKit_desc_berlin2019_signature_woxic" + "sticker_material" "berlin2019/sig_woxic" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "123219778" + } + "4367" + { + "name" "berlin2019_signature_woxic_foil" + "item_name" "#StickerKit_berlin2019_signature_woxic_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_woxic_foil" + "sticker_material" "berlin2019/sig_woxic_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "123219778" + } + "4368" + { + "name" "berlin2019_signature_woxic_gold" + "item_name" "#StickerKit_berlin2019_signature_woxic_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_woxic_gold" + "sticker_material" "berlin2019/sig_woxic_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "29" + "tournament_player_id" "123219778" + } + "4369" + { + "name" "berlin2019_signature_fl1t" + "item_name" "#StickerKit_berlin2019_signature_fl1t" + "description_string" "#StickerKit_desc_berlin2019_signature_fl1t" + "sticker_material" "berlin2019/sig_fl1t" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "35551773" + } + "4370" + { + "name" "berlin2019_signature_fl1t_foil" + "item_name" "#StickerKit_berlin2019_signature_fl1t_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_fl1t_foil" + "sticker_material" "berlin2019/sig_fl1t_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "35551773" + } + "4371" + { + "name" "berlin2019_signature_fl1t_gold" + "item_name" "#StickerKit_berlin2019_signature_fl1t_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_fl1t_gold" + "sticker_material" "berlin2019/sig_fl1t_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "35551773" + } + "4372" + { + "name" "berlin2019_signature_jerry" + "item_name" "#StickerKit_berlin2019_signature_jerry" + "description_string" "#StickerKit_desc_berlin2019_signature_jerry" + "sticker_material" "berlin2019/sig_jerry" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "65822428" + } + "4373" + { + "name" "berlin2019_signature_jerry_foil" + "item_name" "#StickerKit_berlin2019_signature_jerry_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_jerry_foil" + "sticker_material" "berlin2019/sig_jerry_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "65822428" + } + "4374" + { + "name" "berlin2019_signature_jerry_gold" + "item_name" "#StickerKit_berlin2019_signature_jerry_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_jerry_gold" + "sticker_material" "berlin2019/sig_jerry_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "65822428" + } + "4375" + { + "name" "berlin2019_signature_almazer" + "item_name" "#StickerKit_berlin2019_signature_almazer" + "description_string" "#StickerKit_desc_berlin2019_signature_almazer" + "sticker_material" "berlin2019/sig_almazer" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "83782305" + } + "4376" + { + "name" "berlin2019_signature_almazer_foil" + "item_name" "#StickerKit_berlin2019_signature_almazer_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_almazer_foil" + "sticker_material" "berlin2019/sig_almazer_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "83782305" + } + "4377" + { + "name" "berlin2019_signature_almazer_gold" + "item_name" "#StickerKit_berlin2019_signature_almazer_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_almazer_gold" + "sticker_material" "berlin2019/sig_almazer_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "83782305" + } + "4378" + { + "name" "berlin2019_signature_xsepower" + "item_name" "#StickerKit_berlin2019_signature_xsepower" + "description_string" "#StickerKit_desc_berlin2019_signature_xsepower" + "sticker_material" "berlin2019/sig_xsepower" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "112014226" + } + "4379" + { + "name" "berlin2019_signature_xsepower_foil" + "item_name" "#StickerKit_berlin2019_signature_xsepower_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_xsepower_foil" + "sticker_material" "berlin2019/sig_xsepower_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "112014226" + } + "4380" + { + "name" "berlin2019_signature_xsepower_gold" + "item_name" "#StickerKit_berlin2019_signature_xsepower_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_xsepower_gold" + "sticker_material" "berlin2019/sig_xsepower_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "112014226" + } + "4381" + { + "name" "berlin2019_signature_facecrack" + "item_name" "#StickerKit_berlin2019_signature_facecrack" + "description_string" "#StickerKit_desc_berlin2019_signature_facecrack" + "sticker_material" "berlin2019/sig_facecrack" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "115742145" + } + "4382" + { + "name" "berlin2019_signature_facecrack_foil" + "item_name" "#StickerKit_berlin2019_signature_facecrack_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_facecrack_foil" + "sticker_material" "berlin2019/sig_facecrack_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "115742145" + } + "4383" + { + "name" "berlin2019_signature_facecrack_gold" + "item_name" "#StickerKit_berlin2019_signature_facecrack_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_facecrack_gold" + "sticker_material" "berlin2019/sig_facecrack_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "90" + "tournament_player_id" "115742145" + } + "4384" + { + "name" "berlin2019_signature_tarik" + "item_name" "#StickerKit_berlin2019_signature_tarik" + "description_string" "#StickerKit_desc_berlin2019_signature_tarik" + "sticker_material" "berlin2019/sig_tarik" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "18216247" + } + "4385" + { + "name" "berlin2019_signature_tarik_foil" + "item_name" "#StickerKit_berlin2019_signature_tarik_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_tarik_foil" + "sticker_material" "berlin2019/sig_tarik_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "18216247" + } + "4386" + { + "name" "berlin2019_signature_tarik_gold" + "item_name" "#StickerKit_berlin2019_signature_tarik_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_tarik_gold" + "sticker_material" "berlin2019/sig_tarik_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "18216247" + } + "4387" + { + "name" "berlin2019_signature_stanislaw" + "item_name" "#StickerKit_berlin2019_signature_stanislaw" + "description_string" "#StickerKit_desc_berlin2019_signature_stanislaw" + "sticker_material" "berlin2019/sig_stanislaw" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "21583315" + } + "4388" + { + "name" "berlin2019_signature_stanislaw_foil" + "item_name" "#StickerKit_berlin2019_signature_stanislaw_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_stanislaw_foil" + "sticker_material" "berlin2019/sig_stanislaw_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "21583315" + } + "4389" + { + "name" "berlin2019_signature_stanislaw_gold" + "item_name" "#StickerKit_berlin2019_signature_stanislaw_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_stanislaw_gold" + "sticker_material" "berlin2019/sig_stanislaw_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "21583315" + } + "4390" + { + "name" "berlin2019_signature_brehze" + "item_name" "#StickerKit_berlin2019_signature_brehze" + "description_string" "#StickerKit_desc_berlin2019_signature_brehze" + "sticker_material" "berlin2019/sig_brehze" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "94595411" + } + "4391" + { + "name" "berlin2019_signature_brehze_foil" + "item_name" "#StickerKit_berlin2019_signature_brehze_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_brehze_foil" + "sticker_material" "berlin2019/sig_brehze_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "94595411" + } + "4392" + { + "name" "berlin2019_signature_brehze_gold" + "item_name" "#StickerKit_berlin2019_signature_brehze_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_brehze_gold" + "sticker_material" "berlin2019/sig_brehze_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "94595411" + } + "4393" + { + "name" "berlin2019_signature_ethan" + "item_name" "#StickerKit_berlin2019_signature_ethan" + "description_string" "#StickerKit_desc_berlin2019_signature_ethan" + "sticker_material" "berlin2019/sig_ethan" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "169177802" + } + "4394" + { + "name" "berlin2019_signature_ethan_foil" + "item_name" "#StickerKit_berlin2019_signature_ethan_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_ethan_foil" + "sticker_material" "berlin2019/sig_ethan_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "169177802" + } + "4395" + { + "name" "berlin2019_signature_ethan_gold" + "item_name" "#StickerKit_berlin2019_signature_ethan_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_ethan_gold" + "sticker_material" "berlin2019/sig_ethan_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "169177802" + } + "4396" + { + "name" "berlin2019_signature_cerq" + "item_name" "#StickerKit_berlin2019_signature_cerq" + "description_string" "#StickerKit_desc_berlin2019_signature_cerq" + "sticker_material" "berlin2019/sig_cerq" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "196088155" + } + "4397" + { + "name" "berlin2019_signature_cerq_foil" + "item_name" "#StickerKit_berlin2019_signature_cerq_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_cerq_foil" + "sticker_material" "berlin2019/sig_cerq_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "196088155" + } + "4398" + { + "name" "berlin2019_signature_cerq_gold" + "item_name" "#StickerKit_berlin2019_signature_cerq_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_cerq_gold" + "sticker_material" "berlin2019/sig_cerq_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "87" + "tournament_player_id" "196088155" + } + "4399" + { + "name" "berlin2019_signature_summer" + "item_name" "#StickerKit_berlin2019_signature_summer" + "description_string" "#StickerKit_desc_berlin2019_signature_summer" + "sticker_material" "berlin2019/sig_summer" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "52964519" + } + "4400" + { + "name" "berlin2019_signature_summer_foil" + "item_name" "#StickerKit_berlin2019_signature_summer_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_summer_foil" + "sticker_material" "berlin2019/sig_summer_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "52964519" + } + "4401" + { + "name" "berlin2019_signature_summer_gold" + "item_name" "#StickerKit_berlin2019_signature_summer_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_summer_gold" + "sticker_material" "berlin2019/sig_summer_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "52964519" + } + "4402" + { + "name" "berlin2019_signature_somebody" + "item_name" "#StickerKit_berlin2019_signature_somebody" + "description_string" "#StickerKit_desc_berlin2019_signature_somebody" + "sticker_material" "berlin2019/sig_somebody" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "4403" + { + "name" "berlin2019_signature_somebody_foil" + "item_name" "#StickerKit_berlin2019_signature_somebody_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_somebody_foil" + "sticker_material" "berlin2019/sig_somebody_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "4404" + { + "name" "berlin2019_signature_somebody_gold" + "item_name" "#StickerKit_berlin2019_signature_somebody_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_somebody_gold" + "sticker_material" "berlin2019/sig_somebody_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "85131873" + } + "4405" + { + "name" "berlin2019_signature_attacker" + "item_name" "#StickerKit_berlin2019_signature_attacker" + "description_string" "#StickerKit_desc_berlin2019_signature_attacker" + "sticker_material" "berlin2019/sig_attacker" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "88001036" + } + "4406" + { + "name" "berlin2019_signature_attacker_foil" + "item_name" "#StickerKit_berlin2019_signature_attacker_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_attacker_foil" + "sticker_material" "berlin2019/sig_attacker_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "88001036" + } + "4407" + { + "name" "berlin2019_signature_attacker_gold" + "item_name" "#StickerKit_berlin2019_signature_attacker_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_attacker_gold" + "sticker_material" "berlin2019/sig_attacker_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "88001036" + } + "4408" + { + "name" "berlin2019_signature_bntet" + "item_name" "#StickerKit_berlin2019_signature_bntet" + "description_string" "#StickerKit_desc_berlin2019_signature_bntet" + "sticker_material" "berlin2019/sig_bntet" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "4409" + { + "name" "berlin2019_signature_bntet_foil" + "item_name" "#StickerKit_berlin2019_signature_bntet_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_bntet_foil" + "sticker_material" "berlin2019/sig_bntet_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "4410" + { + "name" "berlin2019_signature_bntet_gold" + "item_name" "#StickerKit_berlin2019_signature_bntet_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_bntet_gold" + "sticker_material" "berlin2019/sig_bntet_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "111817512" + } + "4411" + { + "name" "berlin2019_signature_freeman" + "item_name" "#StickerKit_berlin2019_signature_freeman" + "description_string" "#StickerKit_desc_berlin2019_signature_freeman" + "sticker_material" "berlin2019/sig_freeman" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "208355715" + } + "4412" + { + "name" "berlin2019_signature_freeman_foil" + "item_name" "#StickerKit_berlin2019_signature_freeman_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_freeman_foil" + "sticker_material" "berlin2019/sig_freeman_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "208355715" + } + "4413" + { + "name" "berlin2019_signature_freeman_gold" + "item_name" "#StickerKit_berlin2019_signature_freeman_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_freeman_gold" + "sticker_material" "berlin2019/sig_freeman_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "74" + "tournament_player_id" "208355715" + } + "4414" + { + "name" "berlin2019_signature_vini" + "item_name" "#StickerKit_berlin2019_signature_vini" + "description_string" "#StickerKit_desc_berlin2019_signature_vini" + "sticker_material" "berlin2019/sig_vini" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "36104456" + } + "4415" + { + "name" "berlin2019_signature_vini_foil" + "item_name" "#StickerKit_berlin2019_signature_vini_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_vini_foil" + "sticker_material" "berlin2019/sig_vini_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "36104456" + } + "4416" + { + "name" "berlin2019_signature_vini_gold" + "item_name" "#StickerKit_berlin2019_signature_vini_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_vini_gold" + "sticker_material" "berlin2019/sig_vini_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "36104456" + } + "4417" + { + "name" "berlin2019_signature_ablej" + "item_name" "#StickerKit_berlin2019_signature_ablej" + "description_string" "#StickerKit_desc_berlin2019_signature_ablej" + "sticker_material" "berlin2019/sig_ablej" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "82940700" + } + "4418" + { + "name" "berlin2019_signature_ablej_foil" + "item_name" "#StickerKit_berlin2019_signature_ablej_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_ablej_foil" + "sticker_material" "berlin2019/sig_ablej_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "82940700" + } + "4419" + { + "name" "berlin2019_signature_ablej_gold" + "item_name" "#StickerKit_berlin2019_signature_ablej_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_ablej_gold" + "sticker_material" "berlin2019/sig_ablej_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "82940700" + } + "4420" + { + "name" "berlin2019_signature_art" + "item_name" "#StickerKit_berlin2019_signature_art" + "description_string" "#StickerKit_desc_berlin2019_signature_art" + "sticker_material" "berlin2019/sig_art" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "83503844" + } + "4421" + { + "name" "berlin2019_signature_art_foil" + "item_name" "#StickerKit_berlin2019_signature_art_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_art_foil" + "sticker_material" "berlin2019/sig_art_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "83503844" + } + "4422" + { + "name" "berlin2019_signature_art_gold" + "item_name" "#StickerKit_berlin2019_signature_art_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_art_gold" + "sticker_material" "berlin2019/sig_art_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "83503844" + } + "4423" + { + "name" "berlin2019_signature_kscerato" + "item_name" "#StickerKit_berlin2019_signature_kscerato" + "description_string" "#StickerKit_desc_berlin2019_signature_kscerato" + "sticker_material" "berlin2019/sig_kscerato" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "98234764" + } + "4424" + { + "name" "berlin2019_signature_kscerato_foil" + "item_name" "#StickerKit_berlin2019_signature_kscerato_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_kscerato_foil" + "sticker_material" "berlin2019/sig_kscerato_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "98234764" + } + "4425" + { + "name" "berlin2019_signature_kscerato_gold" + "item_name" "#StickerKit_berlin2019_signature_kscerato_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_kscerato_gold" + "sticker_material" "berlin2019/sig_kscerato_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "98234764" + } + "4426" + { + "name" "berlin2019_signature_yuurih" + "item_name" "#StickerKit_berlin2019_signature_yuurih" + "description_string" "#StickerKit_desc_berlin2019_signature_yuurih" + "sticker_material" "berlin2019/sig_yuurih" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "4427" + { + "name" "berlin2019_signature_yuurih_foil" + "item_name" "#StickerKit_berlin2019_signature_yuurih_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_yuurih_foil" + "sticker_material" "berlin2019/sig_yuurih_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "4428" + { + "name" "berlin2019_signature_yuurih_gold" + "item_name" "#StickerKit_berlin2019_signature_yuurih_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_yuurih_gold" + "sticker_material" "berlin2019/sig_yuurih_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "4429" + { + "name" "berlin2019_signature_nexa" + "item_name" "#StickerKit_berlin2019_signature_nexa" + "description_string" "#StickerKit_desc_berlin2019_signature_nexa" + "sticker_material" "berlin2019/sig_nexa" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "39559694" + } + "4430" + { + "name" "berlin2019_signature_nexa_foil" + "item_name" "#StickerKit_berlin2019_signature_nexa_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_nexa_foil" + "sticker_material" "berlin2019/sig_nexa_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "39559694" + } + "4431" + { + "name" "berlin2019_signature_nexa_gold" + "item_name" "#StickerKit_berlin2019_signature_nexa_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_nexa_gold" + "sticker_material" "berlin2019/sig_nexa_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "39559694" + } + "4432" + { + "name" "berlin2019_signature_hunter" + "item_name" "#StickerKit_berlin2019_signature_hunter" + "description_string" "#StickerKit_desc_berlin2019_signature_hunter" + "sticker_material" "berlin2019/sig_hunter" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "52606325" + } + "4433" + { + "name" "berlin2019_signature_hunter_foil" + "item_name" "#StickerKit_berlin2019_signature_hunter_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_hunter_foil" + "sticker_material" "berlin2019/sig_hunter_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "52606325" + } + "4434" + { + "name" "berlin2019_signature_hunter_gold" + "item_name" "#StickerKit_berlin2019_signature_hunter_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_hunter_gold" + "sticker_material" "berlin2019/sig_hunter_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "52606325" + } + "4435" + { + "name" "berlin2019_signature_ottond" + "item_name" "#StickerKit_berlin2019_signature_ottond" + "description_string" "#StickerKit_desc_berlin2019_signature_ottond" + "sticker_material" "berlin2019/sig_ottond" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "75069143" + } + "4436" + { + "name" "berlin2019_signature_ottond_foil" + "item_name" "#StickerKit_berlin2019_signature_ottond_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_ottond_foil" + "sticker_material" "berlin2019/sig_ottond_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "75069143" + } + "4437" + { + "name" "berlin2019_signature_ottond_gold" + "item_name" "#StickerKit_berlin2019_signature_ottond_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_ottond_gold" + "sticker_material" "berlin2019/sig_ottond_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "75069143" + } + "4438" + { + "name" "berlin2019_signature_letn1" + "item_name" "#StickerKit_berlin2019_signature_letn1" + "description_string" "#StickerKit_desc_berlin2019_signature_letn1" + "sticker_material" "berlin2019/sig_letn1" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "81826283" + } + "4439" + { + "name" "berlin2019_signature_letn1_foil" + "item_name" "#StickerKit_berlin2019_signature_letn1_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_letn1_foil" + "sticker_material" "berlin2019/sig_letn1_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "81826283" + } + "4440" + { + "name" "berlin2019_signature_letn1_gold" + "item_name" "#StickerKit_berlin2019_signature_letn1_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_letn1_gold" + "sticker_material" "berlin2019/sig_letn1_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "81826283" + } + "4441" + { + "name" "berlin2019_signature_espiranto" + "item_name" "#StickerKit_berlin2019_signature_espiranto" + "description_string" "#StickerKit_desc_berlin2019_signature_espiranto" + "sticker_material" "berlin2019/sig_espiranto" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "84772046" + } + "4442" + { + "name" "berlin2019_signature_espiranto_foil" + "item_name" "#StickerKit_berlin2019_signature_espiranto_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_espiranto_foil" + "sticker_material" "berlin2019/sig_espiranto_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "84772046" + } + "4443" + { + "name" "berlin2019_signature_espiranto_gold" + "item_name" "#StickerKit_berlin2019_signature_espiranto_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_espiranto_gold" + "sticker_material" "berlin2019/sig_espiranto_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "91" + "tournament_player_id" "84772046" + } + "4444" + { + "name" "berlin2019_signature_t0rick" + "item_name" "#StickerKit_berlin2019_signature_t0rick" + "description_string" "#StickerKit_desc_berlin2019_signature_t0rick" + "sticker_material" "berlin2019/sig_t0rick" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "47286907" + } + "4445" + { + "name" "berlin2019_signature_t0rick_foil" + "item_name" "#StickerKit_berlin2019_signature_t0rick_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_t0rick_foil" + "sticker_material" "berlin2019/sig_t0rick_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "47286907" + } + "4446" + { + "name" "berlin2019_signature_t0rick_gold" + "item_name" "#StickerKit_berlin2019_signature_t0rick_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_t0rick_gold" + "sticker_material" "berlin2019/sig_t0rick_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "47286907" + } + "4447" + { + "name" "berlin2019_signature_nealan" + "item_name" "#StickerKit_berlin2019_signature_nealan" + "description_string" "#StickerKit_desc_berlin2019_signature_nealan" + "sticker_material" "berlin2019/sig_nealan" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "93777050" + } + "4448" + { + "name" "berlin2019_signature_nealan_foil" + "item_name" "#StickerKit_berlin2019_signature_nealan_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_nealan_foil" + "sticker_material" "berlin2019/sig_nealan_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "93777050" + } + "4449" + { + "name" "berlin2019_signature_nealan_gold" + "item_name" "#StickerKit_berlin2019_signature_nealan_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_nealan_gold" + "sticker_material" "berlin2019/sig_nealan_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "93777050" + } + "4450" + { + "name" "berlin2019_signature_keoz" + "item_name" "#StickerKit_berlin2019_signature_keoz" + "description_string" "#StickerKit_desc_berlin2019_signature_keoz" + "sticker_material" "berlin2019/sig_keoz" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "138078516" + } + "4451" + { + "name" "berlin2019_signature_keoz_foil" + "item_name" "#StickerKit_berlin2019_signature_keoz_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_keoz_foil" + "sticker_material" "berlin2019/sig_keoz_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "138078516" + } + "4452" + { + "name" "berlin2019_signature_keoz_gold" + "item_name" "#StickerKit_berlin2019_signature_keoz_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_keoz_gold" + "sticker_material" "berlin2019/sig_keoz_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "138078516" + } + "4453" + { + "name" "berlin2019_signature_ramz1kboss" + "item_name" "#StickerKit_berlin2019_signature_ramz1kboss" + "description_string" "#StickerKit_desc_berlin2019_signature_ramz1kboss" + "sticker_material" "berlin2019/sig_ramz1kboss" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "147496118" + } + "4454" + { + "name" "berlin2019_signature_ramz1kboss_foil" + "item_name" "#StickerKit_berlin2019_signature_ramz1kboss_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_ramz1kboss_foil" + "sticker_material" "berlin2019/sig_ramz1kboss_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "147496118" + } + "4455" + { + "name" "berlin2019_signature_ramz1kboss_gold" + "item_name" "#StickerKit_berlin2019_signature_ramz1kboss_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_ramz1kboss_gold" + "sticker_material" "berlin2019/sig_ramz1kboss_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "147496118" + } + "4456" + { + "name" "berlin2019_signature_perfecto" + "item_name" "#StickerKit_berlin2019_signature_perfecto" + "description_string" "#StickerKit_desc_berlin2019_signature_perfecto" + "sticker_material" "berlin2019/sig_perfecto" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "160954758" + } + "4457" + { + "name" "berlin2019_signature_perfecto_foil" + "item_name" "#StickerKit_berlin2019_signature_perfecto_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_perfecto_foil" + "sticker_material" "berlin2019/sig_perfecto_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "160954758" + } + "4458" + { + "name" "berlin2019_signature_perfecto_gold" + "item_name" "#StickerKit_berlin2019_signature_perfecto_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_perfecto_gold" + "sticker_material" "berlin2019/sig_perfecto_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "92" + "tournament_player_id" "160954758" + } + "4459" + { + "name" "berlin2019_signature_gade" + "item_name" "#StickerKit_berlin2019_signature_gade" + "description_string" "#StickerKit_desc_berlin2019_signature_gade" + "sticker_material" "berlin2019/sig_gade" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "21355604" + } + "4460" + { + "name" "berlin2019_signature_gade_foil" + "item_name" "#StickerKit_berlin2019_signature_gade_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_gade_foil" + "sticker_material" "berlin2019/sig_gade_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "21355604" + } + "4461" + { + "name" "berlin2019_signature_gade_gold" + "item_name" "#StickerKit_berlin2019_signature_gade_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_gade_gold" + "sticker_material" "berlin2019/sig_gade_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "21355604" + } + "4462" + { + "name" "berlin2019_signature_kjaerbye" + "item_name" "#StickerKit_berlin2019_signature_kjaerbye" + "description_string" "#StickerKit_desc_berlin2019_signature_kjaerbye" + "sticker_material" "berlin2019/sig_kjaerbye" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "59614824" + } + "4463" + { + "name" "berlin2019_signature_kjaerbye_foil" + "item_name" "#StickerKit_berlin2019_signature_kjaerbye_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_kjaerbye_foil" + "sticker_material" "berlin2019/sig_kjaerbye_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "59614824" + } + "4464" + { + "name" "berlin2019_signature_kjaerbye_gold" + "item_name" "#StickerKit_berlin2019_signature_kjaerbye_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_kjaerbye_gold" + "sticker_material" "berlin2019/sig_kjaerbye_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "59614824" + } + "4465" + { + "name" "berlin2019_signature_jugi" + "item_name" "#StickerKit_berlin2019_signature_jugi" + "description_string" "#StickerKit_desc_berlin2019_signature_jugi" + "sticker_material" "berlin2019/sig_jugi" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "83626376" + } + "4466" + { + "name" "berlin2019_signature_jugi_foil" + "item_name" "#StickerKit_berlin2019_signature_jugi_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_jugi_foil" + "sticker_material" "berlin2019/sig_jugi_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "83626376" + } + "4467" + { + "name" "berlin2019_signature_jugi_gold" + "item_name" "#StickerKit_berlin2019_signature_jugi_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_jugi_gold" + "sticker_material" "berlin2019/sig_jugi_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "83626376" + } + "4468" + { + "name" "berlin2019_signature_aizy" + "item_name" "#StickerKit_berlin2019_signature_aizy" + "description_string" "#StickerKit_desc_berlin2019_signature_aizy" + "sticker_material" "berlin2019/sig_aizy" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "4469" + { + "name" "berlin2019_signature_aizy_foil" + "item_name" "#StickerKit_berlin2019_signature_aizy_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_aizy_foil" + "sticker_material" "berlin2019/sig_aizy_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "4470" + { + "name" "berlin2019_signature_aizy_gold" + "item_name" "#StickerKit_berlin2019_signature_aizy_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_aizy_gold" + "sticker_material" "berlin2019/sig_aizy_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "90685224" + } + "4471" + { + "name" "berlin2019_signature_v4lde" + "item_name" "#StickerKit_berlin2019_signature_v4lde" + "description_string" "#StickerKit_desc_berlin2019_signature_v4lde" + "sticker_material" "berlin2019/sig_v4lde" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "4472" + { + "name" "berlin2019_signature_v4lde_foil" + "item_name" "#StickerKit_berlin2019_signature_v4lde_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_v4lde_foil" + "sticker_material" "berlin2019/sig_v4lde_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "4473" + { + "name" "berlin2019_signature_v4lde_gold" + "item_name" "#StickerKit_berlin2019_signature_v4lde_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_v4lde_gold" + "sticker_material" "berlin2019/sig_v4lde_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "68" + "tournament_player_id" "154664140" + } + "4474" + { + "name" "berlin2019_signature_svyat" + "item_name" "#StickerKit_berlin2019_signature_svyat" + "description_string" "#StickerKit_desc_berlin2019_signature_svyat" + "sticker_material" "berlin2019/sig_svyat" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "35632848" + } + "4475" + { + "name" "berlin2019_signature_svyat_foil" + "item_name" "#StickerKit_berlin2019_signature_svyat_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_svyat_foil" + "sticker_material" "berlin2019/sig_svyat_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "35632848" + } + "4476" + { + "name" "berlin2019_signature_svyat_gold" + "item_name" "#StickerKit_berlin2019_signature_svyat_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_svyat_gold" + "sticker_material" "berlin2019/sig_svyat_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "35632848" + } + "4477" + { + "name" "berlin2019_signature_kinqie" + "item_name" "#StickerKit_berlin2019_signature_kinqie" + "description_string" "#StickerKit_desc_berlin2019_signature_kinqie" + "sticker_material" "berlin2019/sig_kinqie" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "42106423" + } + "4478" + { + "name" "berlin2019_signature_kinqie_foil" + "item_name" "#StickerKit_berlin2019_signature_kinqie_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_kinqie_foil" + "sticker_material" "berlin2019/sig_kinqie_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "42106423" + } + "4479" + { + "name" "berlin2019_signature_kinqie_gold" + "item_name" "#StickerKit_berlin2019_signature_kinqie_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_kinqie_gold" + "sticker_material" "berlin2019/sig_kinqie_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "42106423" + } + "4480" + { + "name" "berlin2019_signature_forester" + "item_name" "#StickerKit_berlin2019_signature_forester" + "description_string" "#StickerKit_desc_berlin2019_signature_forester" + "sticker_material" "berlin2019/sig_forester" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "67083025" + } + "4481" + { + "name" "berlin2019_signature_forester_foil" + "item_name" "#StickerKit_berlin2019_signature_forester_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_forester_foil" + "sticker_material" "berlin2019/sig_forester_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "67083025" + } + "4482" + { + "name" "berlin2019_signature_forester_gold" + "item_name" "#StickerKit_berlin2019_signature_forester_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_forester_gold" + "sticker_material" "berlin2019/sig_forester_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "67083025" + } + "4483" + { + "name" "berlin2019_signature_krad" + "item_name" "#StickerKit_berlin2019_signature_krad" + "description_string" "#StickerKit_desc_berlin2019_signature_krad" + "sticker_material" "berlin2019/sig_krad" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "71642904" + } + "4484" + { + "name" "berlin2019_signature_krad_foil" + "item_name" "#StickerKit_berlin2019_signature_krad_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_krad_foil" + "sticker_material" "berlin2019/sig_krad_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "71642904" + } + "4485" + { + "name" "berlin2019_signature_krad_gold" + "item_name" "#StickerKit_berlin2019_signature_krad_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_krad_gold" + "sticker_material" "berlin2019/sig_krad_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "71642904" + } + "4486" + { + "name" "berlin2019_signature_speed4k" + "item_name" "#StickerKit_berlin2019_signature_speed4k" + "description_string" "#StickerKit_desc_berlin2019_signature_speed4k" + "sticker_material" "berlin2019/sig_speed4k" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "79928921" + } + "4487" + { + "name" "berlin2019_signature_speed4k_foil" + "item_name" "#StickerKit_berlin2019_signature_speed4k_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_speed4k_foil" + "sticker_material" "berlin2019/sig_speed4k_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "79928921" + } + "4488" + { + "name" "berlin2019_signature_speed4k_gold" + "item_name" "#StickerKit_berlin2019_signature_speed4k_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_speed4k_gold" + "sticker_material" "berlin2019/sig_speed4k_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "93" + "tournament_player_id" "79928921" + } + "4489" + { + "name" "berlin2019_signature_kngv" + "item_name" "#StickerKit_berlin2019_signature_kngv" + "description_string" "#StickerKit_desc_berlin2019_signature_kngv" + "sticker_material" "berlin2019/sig_kngv" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "6732863" + } + "4490" + { + "name" "berlin2019_signature_kngv_foil" + "item_name" "#StickerKit_berlin2019_signature_kngv_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_kngv_foil" + "sticker_material" "berlin2019/sig_kngv_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "6732863" + } + "4491" + { + "name" "berlin2019_signature_kngv_gold" + "item_name" "#StickerKit_berlin2019_signature_kngv_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_kngv_gold" + "sticker_material" "berlin2019/sig_kngv_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "6732863" + } + "4492" + { + "name" "berlin2019_signature_destiny" + "item_name" "#StickerKit_berlin2019_signature_destiny" + "description_string" "#StickerKit_desc_berlin2019_signature_destiny" + "sticker_material" "berlin2019/sig_destiny" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "89528706" + } + "4493" + { + "name" "berlin2019_signature_destiny_foil" + "item_name" "#StickerKit_berlin2019_signature_destiny_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_destiny_foil" + "sticker_material" "berlin2019/sig_destiny_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "89528706" + } + "4494" + { + "name" "berlin2019_signature_destiny_gold" + "item_name" "#StickerKit_berlin2019_signature_destiny_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_destiny_gold" + "sticker_material" "berlin2019/sig_destiny_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "89528706" + } + "4495" + { + "name" "berlin2019_signature_yel" + "item_name" "#StickerKit_berlin2019_signature_yel" + "description_string" "#StickerKit_desc_berlin2019_signature_yel" + "sticker_material" "berlin2019/sig_yel" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "90069456" + } + "4496" + { + "name" "berlin2019_signature_yel_foil" + "item_name" "#StickerKit_berlin2019_signature_yel_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_yel_foil" + "sticker_material" "berlin2019/sig_yel_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "90069456" + } + "4497" + { + "name" "berlin2019_signature_yel_gold" + "item_name" "#StickerKit_berlin2019_signature_yel_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_yel_gold" + "sticker_material" "berlin2019/sig_yel_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "90069456" + } + "4498" + { + "name" "berlin2019_signature_chelo" + "item_name" "#StickerKit_berlin2019_signature_chelo" + "description_string" "#StickerKit_desc_berlin2019_signature_chelo" + "sticker_material" "berlin2019/sig_chelo" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "107498100" + } + "4499" + { + "name" "berlin2019_signature_chelo_foil" + "item_name" "#StickerKit_berlin2019_signature_chelo_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_chelo_foil" + "sticker_material" "berlin2019/sig_chelo_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "107498100" + } + "4500" + { + "name" "berlin2019_signature_chelo_gold" + "item_name" "#StickerKit_berlin2019_signature_chelo_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_chelo_gold" + "sticker_material" "berlin2019/sig_chelo_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "107498100" + } + "4501" + { + "name" "berlin2019_signature_xand" + "item_name" "#StickerKit_berlin2019_signature_xand" + "description_string" "#StickerKit_desc_berlin2019_signature_xand" + "sticker_material" "berlin2019/sig_xand" + "item_rarity" "rare" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "109826856" + } + "4502" + { + "name" "berlin2019_signature_xand_foil" + "item_name" "#StickerKit_berlin2019_signature_xand_foil" + "description_string" "#StickerKit_desc_berlin2019_signature_xand_foil" + "sticker_material" "berlin2019/sig_xand_foil" + "item_rarity" "mythical" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "109826856" + } + "4503" + { + "name" "berlin2019_signature_xand_gold" + "item_name" "#StickerKit_berlin2019_signature_xand_gold" + "description_string" "#StickerKit_desc_berlin2019_signature_xand_gold" + "sticker_material" "berlin2019/sig_xand_gold" + "item_rarity" "ancient" + "tournament_event_id" "16" + "tournament_team_id" "94" + "tournament_player_id" "109826856" + } + } + "quest_definitions" + { + "157" + { + "name" "quest_berlin2019_activate_pass" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_activate_pass" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_activate_pass" + "quest_icon" "pass" + "gamemode" "competitive" + } + "165" + { + "name" "quest_berlin2019_challengers_pickem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_challengers_pickem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_challengers_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "166" + { + "name" "quest_berlin2019_challengers_watchem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_challengers_watchem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_challengers_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + "167" + { + "name" "quest_berlin2019_legends_pickem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_legends_pickem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_legends_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "168" + { + "name" "quest_berlin2019_legends_watchem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_legends_watchem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_legends_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + "169" + { + "name" "quest_berlin2019_quarterfinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_quarterfinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_quarterfinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "170" + { + "name" "quest_berlin2019_semifinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_semifinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_semifinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "171" + { + "name" "quest_berlin2019_grandfinal_pickem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_grandfinal_pickem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_grandfinal_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "172" + { + "name" "quest_berlin2019_grandfinal_watchem" + "loc_name" "#CSGO_TournamentChallenge_berlin2019_grandfinal_watchem" + "loc_description" "#CSGO_TournamentChallenge_berlin2019_grandfinal_watchem" + "quest_icon" "watchem" + "gamemode" "competitive" + } + } + "campaign_definitions" + { + "11" + { + "loc_name" "#CSGO_TournamentJournal_berlin2019" + "loc_description" "#CSGO_TournamentJournal_berlin2019_Desc" + "1" + { + "quest_index" "157" + } + "2" + { + "quest_index" "158" + } + "3" + { + "quest_index" "159" + } + "4" + { + "quest_index" "160" + } + "5" + { + "quest_index" "161" + } + "6" + { + "quest_index" "162" + } + "7" + { + "quest_index" "163" + } + "8" + { + "quest_index" "164" + } + "9" + { + "quest_index" "165" + } + "10" + { + "quest_index" "166" + } + "11" + { + "quest_index" "167" + } + "12" + { + "quest_index" "168" + } + "13" + { + "quest_index" "169" + } + "14" + { + "quest_index" "170" + } + "15" + { + "quest_index" "171" + } + "16" + { + "quest_index" "172" + } + } + } + "prefabs" + { + "rmr2020_sticker_capsule_prefab" + { + "first_sale_date" "2021-01-19" + "prefab" "weapon_case_base" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "17" + } + } + } + } + "revolving_loot_lists" + { + "311" "crate_sticker_pack_rmr2020_legends" + "312" "crate_sticker_pack_rmr2020_challengers" + "313" "crate_sticker_pack_rmr2020_contenders" + } + "client_loot_lists" + { + "crate_sticker_pack_rmr2020_legends_rare" + { + "[rmr2020_team_vita]sticker" "1" + "[rmr2020_team_hero]sticker" "1" + "[rmr2020_team_nip]sticker" "1" + "[rmr2020_team_spir]sticker" "1" + "[rmr2020_team_navi]sticker" "1" + "[rmr2020_team_evl]sticker" "1" + "[rmr2020_team_thv]sticker" "1" + "[rmr2020_team_furi]sticker" "1" + } + "crate_sticker_pack_rmr2020_legends_mythical" + { + "[rmr2020_team_vita_holo]sticker" "1" + "[rmr2020_team_hero_holo]sticker" "1" + "[rmr2020_team_nip_holo]sticker" "1" + "[rmr2020_team_spir_holo]sticker" "1" + "[rmr2020_team_navi_holo]sticker" "1" + "[rmr2020_team_evl_holo]sticker" "1" + "[rmr2020_team_thv_holo]sticker" "1" + "[rmr2020_team_furi_holo]sticker" "1" + } + "crate_sticker_pack_rmr2020_legends_legendary" + { + "[rmr2020_team_vita_foil]sticker" "1" + "[rmr2020_team_hero_foil]sticker" "1" + "[rmr2020_team_nip_foil]sticker" "1" + "[rmr2020_team_spir_foil]sticker" "1" + "[rmr2020_team_navi_foil]sticker" "1" + "[rmr2020_team_evl_foil]sticker" "1" + "[rmr2020_team_thv_foil]sticker" "1" + "[rmr2020_team_furi_foil]sticker" "1" + } + "crate_sticker_pack_rmr2020_legends_ancient" + { + "[rmr2020_team_vita_gold]sticker" "1" + "[rmr2020_team_hero_gold]sticker" "1" + "[rmr2020_team_nip_gold]sticker" "1" + "[rmr2020_team_spir_gold]sticker" "1" + "[rmr2020_team_navi_gold]sticker" "1" + "[rmr2020_team_evl_gold]sticker" "1" + "[rmr2020_team_thv_gold]sticker" "1" + "[rmr2020_team_furi_gold]sticker" "1" + } + "crate_sticker_pack_rmr2020_legends" + { + "crate_sticker_pack_rmr2020_legends_rare" "1" + "crate_sticker_pack_rmr2020_legends_mythical" "1" + "crate_sticker_pack_rmr2020_legends_legendary" "1" + "crate_sticker_pack_rmr2020_legends_ancient" "1" + } + "crate_sticker_pack_rmr2020_challengers_rare" + { + "[rmr2020_team_astr]sticker" "1" + "[rmr2020_team_big]sticker" "1" + "[rmr2020_team_fntc]sticker" "1" + "[rmr2020_team_g2]sticker" "1" + "[rmr2020_team_og]sticker" "1" + "[rmr2020_team_god]sticker" "1" + "[rmr2020_team_nemi]sticker" "1" + "[rmr2020_team_liq]sticker" "1" + } + "crate_sticker_pack_rmr2020_challengers_mythical" + { + "[rmr2020_team_astr_holo]sticker" "1" + "[rmr2020_team_big_holo]sticker" "1" + "[rmr2020_team_fntc_holo]sticker" "1" + "[rmr2020_team_g2_holo]sticker" "1" + "[rmr2020_team_og_holo]sticker" "1" + "[rmr2020_team_god_holo]sticker" "1" + "[rmr2020_team_nemi_holo]sticker" "1" + "[rmr2020_team_liq_holo]sticker" "1" + } + "crate_sticker_pack_rmr2020_challengers_legendary" + { + "[rmr2020_team_astr_foil]sticker" "1" + "[rmr2020_team_big_foil]sticker" "1" + "[rmr2020_team_fntc_foil]sticker" "1" + "[rmr2020_team_g2_foil]sticker" "1" + "[rmr2020_team_og_foil]sticker" "1" + "[rmr2020_team_god_foil]sticker" "1" + "[rmr2020_team_nemi_foil]sticker" "1" + "[rmr2020_team_liq_foil]sticker" "1" + } + "crate_sticker_pack_rmr2020_challengers_ancient" + { + "[rmr2020_team_astr_gold]sticker" "1" + "[rmr2020_team_big_gold]sticker" "1" + "[rmr2020_team_fntc_gold]sticker" "1" + "[rmr2020_team_g2_gold]sticker" "1" + "[rmr2020_team_og_gold]sticker" "1" + "[rmr2020_team_god_gold]sticker" "1" + "[rmr2020_team_nemi_gold]sticker" "1" + "[rmr2020_team_liq_gold]sticker" "1" + } + "crate_sticker_pack_rmr2020_challengers" + { + "crate_sticker_pack_rmr2020_challengers_rare" "1" + "crate_sticker_pack_rmr2020_challengers_mythical" "1" + "crate_sticker_pack_rmr2020_challengers_legendary" "1" + "crate_sticker_pack_rmr2020_challengers_ancient" "1" + } + "crate_sticker_pack_rmr2020_contenders_rare" + { + "[rmr2020_team_faze]sticker" "1" + "[rmr2020_team_nor]sticker" "1" + "[rmr2020_team_vp]sticker" "1" + "[rmr2020_team_esp]sticker" "1" + "[rmr2020_team_geng]sticker" "1" + "[rmr2020_team_boom]sticker" "1" + "[rmr2020_team_ren]sticker" "1" + "[rmr2020_team_tyl]sticker" "1" + } + "crate_sticker_pack_rmr2020_contenders_mythical" + { + "[rmr2020_team_faze_holo]sticker" "1" + "[rmr2020_team_nor_holo]sticker" "1" + "[rmr2020_team_vp_holo]sticker" "1" + "[rmr2020_team_esp_holo]sticker" "1" + "[rmr2020_team_geng_holo]sticker" "1" + "[rmr2020_team_boom_holo]sticker" "1" + "[rmr2020_team_ren_holo]sticker" "1" + "[rmr2020_team_tyl_holo]sticker" "1" + } + "crate_sticker_pack_rmr2020_contenders_legendary" + { + "[rmr2020_team_faze_foil]sticker" "1" + "[rmr2020_team_nor_foil]sticker" "1" + "[rmr2020_team_vp_foil]sticker" "1" + "[rmr2020_team_esp_foil]sticker" "1" + "[rmr2020_team_geng_foil]sticker" "1" + "[rmr2020_team_boom_foil]sticker" "1" + "[rmr2020_team_ren_foil]sticker" "1" + "[rmr2020_team_tyl_foil]sticker" "1" + } + "crate_sticker_pack_rmr2020_contenders_ancient" + { + "[rmr2020_team_faze_gold]sticker" "1" + "[rmr2020_team_nor_gold]sticker" "1" + "[rmr2020_team_vp_gold]sticker" "1" + "[rmr2020_team_esp_gold]sticker" "1" + "[rmr2020_team_geng_gold]sticker" "1" + "[rmr2020_team_boom_gold]sticker" "1" + "[rmr2020_team_ren_gold]sticker" "1" + "[rmr2020_team_tyl_gold]sticker" "1" + } + "crate_sticker_pack_rmr2020_contenders" + { + "crate_sticker_pack_rmr2020_contenders_rare" "1" + "crate_sticker_pack_rmr2020_contenders_mythical" "1" + "crate_sticker_pack_rmr2020_contenders_legendary" "1" + "crate_sticker_pack_rmr2020_contenders_ancient" "1" + } + } + "items" + { + "4743" + { + "item_name" "#CSGO_crate_sticker_pack_rmr2020_legends" + "name" "crate_sticker_pack_rmr2020_legends" + "item_description" "#CSGO_crate_sticker_pack_rmr2020_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rmr2020_legends" + "prefab" "rmr2020_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "311" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_rmr2020_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_rmr2020_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4744" + { + "item_name" "#CSGO_crate_sticker_pack_rmr2020_challengers" + "name" "crate_sticker_pack_rmr2020_challengers" + "item_description" "#CSGO_crate_sticker_pack_rmr2020_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rmr2020_challengers" + "prefab" "rmr2020_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "312" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_rmr2020_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_rmr2020_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + "4745" + { + "item_name" "#CSGO_crate_sticker_pack_rmr2020_contenders" + "name" "crate_sticker_pack_rmr2020_contenders" + "item_description" "#CSGO_crate_sticker_pack_rmr2020_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rmr2020_contenders" + "prefab" "rmr2020_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "313" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_rmr2020_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_rmr2020_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "sticker_kits" + { + "4701" + { + "name" "rmr2020_team_vita" + "item_name" "#StickerKit_rmr2020_team_vita" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vita" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "89" + } + "4702" + { + "name" "rmr2020_team_vita_holo" + "item_name" "#StickerKit_rmr2020_team_vita_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vita_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "89" + } + "4703" + { + "name" "rmr2020_team_vita_foil" + "item_name" "#StickerKit_rmr2020_team_vita_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vita_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "89" + } + "4704" + { + "name" "rmr2020_team_vita_gold" + "item_name" "#StickerKit_rmr2020_team_vita_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vita_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "89" + } + "4705" + { + "name" "rmr2020_team_hero" + "item_name" "#StickerKit_rmr2020_team_hero" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/hero" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "95" + } + "4706" + { + "name" "rmr2020_team_hero_holo" + "item_name" "#StickerKit_rmr2020_team_hero_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/hero_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "95" + } + "4707" + { + "name" "rmr2020_team_hero_foil" + "item_name" "#StickerKit_rmr2020_team_hero_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/hero_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "95" + } + "4708" + { + "name" "rmr2020_team_hero_gold" + "item_name" "#StickerKit_rmr2020_team_hero_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/hero_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "95" + } + "4709" + { + "name" "rmr2020_team_nip" + "item_name" "#StickerKit_rmr2020_team_nip" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nip" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "1" + } + "4710" + { + "name" "rmr2020_team_nip_holo" + "item_name" "#StickerKit_rmr2020_team_nip_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nip_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "1" + } + "4711" + { + "name" "rmr2020_team_nip_foil" + "item_name" "#StickerKit_rmr2020_team_nip_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nip_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "1" + } + "4712" + { + "name" "rmr2020_team_nip_gold" + "item_name" "#StickerKit_rmr2020_team_nip_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nip_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "1" + } + "4713" + { + "name" "rmr2020_team_astr" + "item_name" "#StickerKit_rmr2020_team_astr" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/astr" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "60" + } + "4714" + { + "name" "rmr2020_team_astr_holo" + "item_name" "#StickerKit_rmr2020_team_astr_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "60" + } + "4715" + { + "name" "rmr2020_team_astr_foil" + "item_name" "#StickerKit_rmr2020_team_astr_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/astr_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "60" + } + "4716" + { + "name" "rmr2020_team_astr_gold" + "item_name" "#StickerKit_rmr2020_team_astr_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/astr_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "60" + } + "4717" + { + "name" "rmr2020_team_big" + "item_name" "#StickerKit_rmr2020_team_big" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/big" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "69" + } + "4718" + { + "name" "rmr2020_team_big_holo" + "item_name" "#StickerKit_rmr2020_team_big_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/big_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "69" + } + "4719" + { + "name" "rmr2020_team_big_foil" + "item_name" "#StickerKit_rmr2020_team_big_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/big_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "69" + } + "4720" + { + "name" "rmr2020_team_big_gold" + "item_name" "#StickerKit_rmr2020_team_big_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/big_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "69" + } + "4721" + { + "name" "rmr2020_team_fntc" + "item_name" "#StickerKit_rmr2020_team_fntc" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/fntc" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "6" + } + "4722" + { + "name" "rmr2020_team_fntc_holo" + "item_name" "#StickerKit_rmr2020_team_fntc_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/fntc_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "6" + } + "4723" + { + "name" "rmr2020_team_fntc_foil" + "item_name" "#StickerKit_rmr2020_team_fntc_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/fntc_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "6" + } + "4724" + { + "name" "rmr2020_team_fntc_gold" + "item_name" "#StickerKit_rmr2020_team_fntc_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/fntc_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "6" + } + "4725" + { + "name" "rmr2020_team_g2" + "item_name" "#StickerKit_rmr2020_team_g2" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/g2" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "59" + } + "4726" + { + "name" "rmr2020_team_g2_holo" + "item_name" "#StickerKit_rmr2020_team_g2_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "59" + } + "4727" + { + "name" "rmr2020_team_g2_foil" + "item_name" "#StickerKit_rmr2020_team_g2_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/g2_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "59" + } + "4728" + { + "name" "rmr2020_team_g2_gold" + "item_name" "#StickerKit_rmr2020_team_g2_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/g2_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "59" + } + "4729" + { + "name" "rmr2020_team_og" + "item_name" "#StickerKit_rmr2020_team_og" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/og" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "96" + } + "4730" + { + "name" "rmr2020_team_og_holo" + "item_name" "#StickerKit_rmr2020_team_og_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/og_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "96" + } + "4731" + { + "name" "rmr2020_team_og_foil" + "item_name" "#StickerKit_rmr2020_team_og_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/og_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "96" + } + "4732" + { + "name" "rmr2020_team_og_gold" + "item_name" "#StickerKit_rmr2020_team_og_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/og_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "96" + } + "4733" + { + "name" "rmr2020_team_god" + "item_name" "#StickerKit_rmr2020_team_god" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/god" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "67" + } + "4734" + { + "name" "rmr2020_team_god_holo" + "item_name" "#StickerKit_rmr2020_team_god_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/god_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "67" + } + "4735" + { + "name" "rmr2020_team_god_foil" + "item_name" "#StickerKit_rmr2020_team_god_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/god_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "67" + } + "4736" + { + "name" "rmr2020_team_god_gold" + "item_name" "#StickerKit_rmr2020_team_god_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/god_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "67" + } + "4737" + { + "name" "rmr2020_team_faze" + "item_name" "#StickerKit_rmr2020_team_faze" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/faze" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "61" + } + "4738" + { + "name" "rmr2020_team_faze_holo" + "item_name" "#StickerKit_rmr2020_team_faze_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "61" + } + "4739" + { + "name" "rmr2020_team_faze_foil" + "item_name" "#StickerKit_rmr2020_team_faze_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/faze_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "61" + } + "4740" + { + "name" "rmr2020_team_faze_gold" + "item_name" "#StickerKit_rmr2020_team_faze_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/faze_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "61" + } + "4741" + { + "name" "rmr2020_team_nor" + "item_name" "#StickerKit_rmr2020_team_nor" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nor" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "68" + } + "4742" + { + "name" "rmr2020_team_nor_holo" + "item_name" "#StickerKit_rmr2020_team_nor_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nor_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "68" + } + "4743" + { + "name" "rmr2020_team_nor_foil" + "item_name" "#StickerKit_rmr2020_team_nor_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nor_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "68" + } + "4744" + { + "name" "rmr2020_team_nor_gold" + "item_name" "#StickerKit_rmr2020_team_nor_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nor_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "68" + } + "4745" + { + "name" "rmr2020_team_spir" + "item_name" "#StickerKit_rmr2020_team_spir" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/spir" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "81" + } + "4746" + { + "name" "rmr2020_team_spir_holo" + "item_name" "#StickerKit_rmr2020_team_spir_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/spir_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "81" + } + "4747" + { + "name" "rmr2020_team_spir_foil" + "item_name" "#StickerKit_rmr2020_team_spir_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/spir_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "81" + } + "4748" + { + "name" "rmr2020_team_spir_gold" + "item_name" "#StickerKit_rmr2020_team_spir_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/spir_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "81" + } + "4749" + { + "name" "rmr2020_team_navi" + "item_name" "#StickerKit_rmr2020_team_navi" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/navi" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "12" + } + "4750" + { + "name" "rmr2020_team_navi_holo" + "item_name" "#StickerKit_rmr2020_team_navi_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "12" + } + "4751" + { + "name" "rmr2020_team_navi_foil" + "item_name" "#StickerKit_rmr2020_team_navi_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/navi_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "12" + } + "4752" + { + "name" "rmr2020_team_navi_gold" + "item_name" "#StickerKit_rmr2020_team_navi_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/navi_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "12" + } + "4753" + { + "name" "rmr2020_team_nemi" + "item_name" "#StickerKit_rmr2020_team_nemi" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nemi" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "107" + } + "4754" + { + "name" "rmr2020_team_nemi_holo" + "item_name" "#StickerKit_rmr2020_team_nemi_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nemi_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "107" + } + "4755" + { + "name" "rmr2020_team_nemi_foil" + "item_name" "#StickerKit_rmr2020_team_nemi_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nemi_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "107" + } + "4756" + { + "name" "rmr2020_team_nemi_gold" + "item_name" "#StickerKit_rmr2020_team_nemi_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/nemi_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "107" + } + "4757" + { + "name" "rmr2020_team_vp" + "item_name" "#StickerKit_rmr2020_team_vp" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vp" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "31" + } + "4758" + { + "name" "rmr2020_team_vp_holo" + "item_name" "#StickerKit_rmr2020_team_vp_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "31" + } + "4759" + { + "name" "rmr2020_team_vp_foil" + "item_name" "#StickerKit_rmr2020_team_vp_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vp_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "31" + } + "4760" + { + "name" "rmr2020_team_vp_gold" + "item_name" "#StickerKit_rmr2020_team_vp_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/vp_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "31" + } + "4761" + { + "name" "rmr2020_team_esp" + "item_name" "#StickerKit_rmr2020_team_esp" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/esp" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "97" + } + "4762" + { + "name" "rmr2020_team_esp_holo" + "item_name" "#StickerKit_rmr2020_team_esp_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/esp_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "97" + } + "4763" + { + "name" "rmr2020_team_esp_foil" + "item_name" "#StickerKit_rmr2020_team_esp_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/esp_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "97" + } + "4764" + { + "name" "rmr2020_team_esp_gold" + "item_name" "#StickerKit_rmr2020_team_esp_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/esp_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "97" + } + "4765" + { + "name" "rmr2020_team_evl" + "item_name" "#StickerKit_rmr2020_team_evl" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/evl" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "98" + } + "4766" + { + "name" "rmr2020_team_evl_holo" + "item_name" "#StickerKit_rmr2020_team_evl_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/evl_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "98" + } + "4767" + { + "name" "rmr2020_team_evl_foil" + "item_name" "#StickerKit_rmr2020_team_evl_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/evl_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "98" + } + "4768" + { + "name" "rmr2020_team_evl_gold" + "item_name" "#StickerKit_rmr2020_team_evl_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/evl_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "98" + } + "4769" + { + "name" "rmr2020_team_thv" + "item_name" "#StickerKit_rmr2020_team_thv" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/thv" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "78" + } + "4770" + { + "name" "rmr2020_team_thv_holo" + "item_name" "#StickerKit_rmr2020_team_thv_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/thv_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "78" + } + "4771" + { + "name" "rmr2020_team_thv_foil" + "item_name" "#StickerKit_rmr2020_team_thv_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/thv_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "78" + } + "4772" + { + "name" "rmr2020_team_thv_gold" + "item_name" "#StickerKit_rmr2020_team_thv_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/thv_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "78" + } + "4773" + { + "name" "rmr2020_team_furi" + "item_name" "#StickerKit_rmr2020_team_furi" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/furi" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "85" + } + "4774" + { + "name" "rmr2020_team_furi_holo" + "item_name" "#StickerKit_rmr2020_team_furi_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/furi_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "85" + } + "4775" + { + "name" "rmr2020_team_furi_foil" + "item_name" "#StickerKit_rmr2020_team_furi_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/furi_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "85" + } + "4776" + { + "name" "rmr2020_team_furi_gold" + "item_name" "#StickerKit_rmr2020_team_furi_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/furi_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "85" + } + "4777" + { + "name" "rmr2020_team_liq" + "item_name" "#StickerKit_rmr2020_team_liq" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/liq" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "48" + } + "4778" + { + "name" "rmr2020_team_liq_holo" + "item_name" "#StickerKit_rmr2020_team_liq_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "48" + } + "4779" + { + "name" "rmr2020_team_liq_foil" + "item_name" "#StickerKit_rmr2020_team_liq_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/liq_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "48" + } + "4780" + { + "name" "rmr2020_team_liq_gold" + "item_name" "#StickerKit_rmr2020_team_liq_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/liq_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "48" + } + "4781" + { + "name" "rmr2020_team_geng" + "item_name" "#StickerKit_rmr2020_team_geng" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/geng" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "99" + } + "4782" + { + "name" "rmr2020_team_geng_holo" + "item_name" "#StickerKit_rmr2020_team_geng_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/geng_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "99" + } + "4783" + { + "name" "rmr2020_team_geng_foil" + "item_name" "#StickerKit_rmr2020_team_geng_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/geng_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "99" + } + "4784" + { + "name" "rmr2020_team_geng_gold" + "item_name" "#StickerKit_rmr2020_team_geng_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/geng_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "99" + } + "4785" + { + "name" "rmr2020_team_boom" + "item_name" "#StickerKit_rmr2020_team_boom" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/boom" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "100" + } + "4786" + { + "name" "rmr2020_team_boom_holo" + "item_name" "#StickerKit_rmr2020_team_boom_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/boom_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "100" + } + "4787" + { + "name" "rmr2020_team_boom_foil" + "item_name" "#StickerKit_rmr2020_team_boom_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/boom_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "100" + } + "4788" + { + "name" "rmr2020_team_boom_gold" + "item_name" "#StickerKit_rmr2020_team_boom_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/boom_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "100" + } + "4789" + { + "name" "rmr2020_team_ren" + "item_name" "#StickerKit_rmr2020_team_ren" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/ren" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "53" + } + "4790" + { + "name" "rmr2020_team_ren_holo" + "item_name" "#StickerKit_rmr2020_team_ren_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/ren_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "53" + } + "4791" + { + "name" "rmr2020_team_ren_foil" + "item_name" "#StickerKit_rmr2020_team_ren_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/ren_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "53" + } + "4792" + { + "name" "rmr2020_team_ren_gold" + "item_name" "#StickerKit_rmr2020_team_ren_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/ren_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "53" + } + "4793" + { + "name" "rmr2020_team_tyl" + "item_name" "#StickerKit_rmr2020_team_tyl" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/tyl" + "item_rarity" "rare" + "tournament_event_id" "17" + "tournament_team_id" "74" + } + "4794" + { + "name" "rmr2020_team_tyl_holo" + "item_name" "#StickerKit_rmr2020_team_tyl_holo" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/tyl_holo" + "item_rarity" "mythical" + "tournament_event_id" "17" + "tournament_team_id" "74" + } + "4795" + { + "name" "rmr2020_team_tyl_foil" + "item_name" "#StickerKit_rmr2020_team_tyl_foil" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/tyl_foil" + "item_rarity" "legendary" + "tournament_event_id" "17" + "tournament_team_id" "74" + } + "4796" + { + "name" "rmr2020_team_tyl_gold" + "item_name" "#StickerKit_rmr2020_team_tyl_gold" + "description_string" "#EventItemDesc_rmr2020_sticker_team" + "sticker_material" "rmr2020/tyl_gold" + "item_rarity" "ancient" + "tournament_event_id" "17" + "tournament_team_id" "74" + } + } + "items" + { + "4549" + { + "name" "CommunitySeasonNine2019" + "first_sale_date" "2019/05/23" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonNine2019" + "item_description" "#CSGO_Ticket_CommunitySeasonNine2019_Desc" + "image_inventory" "econ/status_icons/operation_9_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "8" + } + } + "4550" + { + "name" "CommunitySeasonNine2019 Coin 1" + "prefab" "season9_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonNine2019_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonNine2019_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_9_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_9_bronze.mdl" + "upgrade threshold" "33" + } + } + "4551" + { + "name" "CommunitySeasonNine2019 Coin 2" + "prefab" "season9_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonNine2019_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonNine2019_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_9_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_9_silver.mdl" + "upgrade threshold" "66" + } + } + "4552" + { + "name" "CommunitySeasonNine2019 Coin 3" + "prefab" "season9_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonNine2019_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonNine2019_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_9_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_9_gold.mdl" + "upgrade threshold" "100" + } + } + "4553" + { + "name" "CommunitySeasonNine2019 Coin 4" + "prefab" "season9_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonNine2019_Coin4" + "item_description" "#CSGO_Collectible_CommunitySeasonNine2019_Coin4_Desc" + "image_inventory" "econ/status_icons/operation_9_platinum" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_9_platinum.mdl" + } + } + "4671" + { + "name" "CommunitySeasonNine2019_PlusStars1" + "first_sale_date" "2019/05/23" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars1" + "item_description" "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars1_Desc" + "image_inventory" "econ/status_icons/operation_9_plusstars1" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "8" + "upgrade level" "1" + } + } + "4672" + { + "name" "CommunitySeasonNine2019_PlusStars10" + "first_sale_date" "2019/05/23" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars10" + "item_description" "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars10_Desc" + "image_inventory" "econ/status_icons/operation_9_plusstars10" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "8" + "upgrade level" "10" + } + } + "4673" + { + "name" "CommunitySeasonNine2019_PlusStars100" + "first_sale_date" "2019/05/23" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars100" + "item_description" "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars100_Desc" + "image_inventory" "econ/status_icons/operation_9_plusstars100" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "8" + "upgrade level" "100" + } + } + } + "client_loot_lists" + { + "lootlist_xpgrant" + { + "xpgrant" "1" + } + } + "seasonaloperations" + { + "8" + { + "quest_looping_track" "1" + "quest_reward" + { + "[0]" + { + "item_name" "CommunitySeasonNine2019 Coin 1" + "ui_order" "3" + } + "[*]" + { + "none" "none" + } + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_1" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_02" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_02_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_02_thumbnail" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_2" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_01" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_01_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_norse" + "ui_order" "2" + "callout" "#CSGO_set_norse_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_1" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_02" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_02_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_02_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_canals" + "ui_order" "2" + "callout" "#CSGO_set_canals_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_2" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_01" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_01_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_stmarc" + "ui_order" "2" + "callout" "#CSGO_set_stmarc_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "character_operator_dossier_op09_rare" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_rare_short" + "ui_image" "operations/op9/char_pack_op09_rare" + "ui_image_thumbnail" "operations/op9/char_pack_thumbnail_op09_rare" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_1" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_02" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_02_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_02_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_norse" + "ui_order" "2" + "callout" "#CSGO_set_norse_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_2" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_01" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_01_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_1" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_02" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_02_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_02_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_stmarc" + "ui_order" "2" + "callout" "#CSGO_set_stmarc_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "character_operator_dossier_op09_mythical" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_mythical_short" + "ui_image" "operations/op9/char_pack_op09_mythical" + "ui_image_thumbnail" "operations/op9/char_pack_thumbnail_op09_mythical" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_2" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_01" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_01_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_canals" + "ui_order" "2" + "callout" "#CSGO_set_canals_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_1" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_02" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_02_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_02_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_2" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_01" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_01_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_norse" + "ui_order" "2" + "callout" "#CSGO_set_norse_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "character_operator_dossier_op09_legendary" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_legendary_short" + "ui_image" "operations/op9/char_pack_op09_legendary" + "ui_image_thumbnail" "operations/op9/char_pack_thumbnail_op09_legendary" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_1" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_02" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_02_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_02_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_sticker_pack_shattered_web" + "ui_order" "3" + "ui_image_thumbnail" "operations/op9/op9_sticker_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_crate_spray_std2_2" + "ui_order" "3" + "ui_image" "operations/op9/op9_graffiti_pack_01" + "ui_image_inspect" "operations/op9/op9_graffiti_pack_01_inspect" + "ui_image_thumbnail" "operations/op9/op9_graffiti_pack_01_thumbnail" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_stmarc" + "ui_order" "2" + "callout" "#CSGO_set_stmarc_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "crate_community_23" + "ui_order" "2" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "selfopeningitem_set_canals" + "ui_order" "2" + "callout" "#CSGO_set_canals_short" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "none" "none" + } + "quest_reward" + { + "item_name" "character_operator_dossier_op09_ancient" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_ancient_short" + "ui_image" "operations/op9/char_pack_op09_ancient" + "ui_image_thumbnail" "operations/op9/char_pack_thumbnail_op09_ancient" + } + "quest_mission_card" + { + "id" "8001" + "name" "#UI_Operation09_MissionCard_04" + "quests" "1030,949-952,1027-1029,953-954" + "operational_points" "10" + } + "quest_mission_card" + { + "id" "8002" + "name" "#UI_Operation09_MissionCard_02" + "quests" "937-942" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8003" + "name" "#UI_Operation09_MissionCard_03" + "quests" "943-948" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8004" + "name" "#UI_Operation09_MissionCard_01" + "quests" "931-936" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8005" + "name" "#UI_Operation09_MissionCard_05" + "quests" "955-960" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8006" + "name" "#UI_Operation09_MissionCard_06" + "quests" "961-966" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8007" + "name" "#UI_Operation09_MissionCard_07" + "quests" "967-972" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8008" + "name" "#UI_Operation09_MissionCard_08" + "quests" "973-978" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8009" + "name" "#UI_Operation09_MissionCard_09" + "quests" "979-984" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8010" + "name" "#UI_Operation09_MissionCard_10" + "quests" "985-990" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8011" + "name" "#UI_Operation09_MissionCard_11" + "quests" "991-996" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8012" + "name" "#UI_Operation09_MissionCard_12" + "quests" "997-1002" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8013" + "name" "#UI_Operation09_MissionCard_13" + "quests" "1003-1008" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8014" + "name" "#UI_Operation09_MissionCard_14" + "quests" "1009-1014" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8015" + "name" "#UI_Operation09_MissionCard_15" + "quests" "1015-1020" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "8016" + "name" "#UI_Operation09_MissionCard_16" + "quests" "1021-1025,1031" + "operational_points" "6" + } + "xp_reward" "5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100" + "xp_reward" "lootlist_xpgrant" + } + } + "items" + { + "4699" + { + "name" "CommunitySeasonTen2020" + "first_sale_date" "2020/10/01" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonTen2020" + "item_description" "#CSGO_Ticket_CommunitySeasonTen2020_Desc" + "image_inventory" "econ/status_icons/operation_10_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "9" + } + } + "4700" + { + "name" "CommunitySeasonTen2020 Coin 1" + "prefab" "season10_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonTen2020_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonTen2020_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_10_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_10_bronze.mdl" + "upgrade threshold" "33" + } + } + "4701" + { + "name" "CommunitySeasonTen2020 Coin 2" + "prefab" "season10_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonTen2020_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonTen2020_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_10_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_10_silver.mdl" + "upgrade threshold" "66" + } + } + "4702" + { + "name" "CommunitySeasonTen2020 Coin 3" + "prefab" "season10_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonTen2020_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonTen2020_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_10_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_10_gold.mdl" + "upgrade threshold" "100" + } + } + "4703" + { + "name" "CommunitySeasonTen2020 Coin 4" + "prefab" "season10_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonTen2020_Coin4" + "item_description" "#CSGO_Collectible_CommunitySeasonTen2020_Coin4_Desc" + "image_inventory" "econ/status_icons/operation_10_platinum" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_10_platinum.mdl" + } + } + "4704" + { + "name" "CommunitySeasonTen2020_PlusStars1" + "first_sale_date" "2020/10/01" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars1" + "item_description" "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars1_Desc" + "image_inventory" "econ/status_icons/operation_10_plusstars1" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "9" + "upgrade level" "1" + } + } + "4705" + { + "name" "CommunitySeasonTen2020_PlusStars10" + "first_sale_date" "2020/10/01" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars10" + "item_description" "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars10_Desc" + "image_inventory" "econ/status_icons/operation_10_plusstars10" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "9" + "upgrade level" "10" + } + } + "4706" + { + "name" "CommunitySeasonTen2020_PlusStars100" + "first_sale_date" "2020/10/01" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars100" + "item_description" "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars100_Desc" + "image_inventory" "econ/status_icons/operation_10_plusstars100" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "9" + "upgrade level" "100" + } + } + } + "seasonaloperations" + { + "9" + { + "quest_mission_card" + { + "id" "9001" + "name" "#UI_Operation10_MissionCard_01" + "quests" "1098,1032-1037" + "operational_points" "10" + } + "quest_mission_card" + { + "id" "9002" + "name" "#UI_Operation10_MissionCard_02" + "quests" "1099,1038-1041" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9003" + "name" "#UI_Operation10_MissionCard_03" + "quests" "1042-1045" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9004" + "name" "#UI_Operation10_MissionCard_04" + "quests" "1046-1049" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9005" + "name" "#UI_Operation10_MissionCard_05" + "quests" "1050-1053" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9006" + "name" "#UI_Operation10_MissionCard_06" + "quests" "1054-1057" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9007" + "name" "#UI_Operation10_MissionCard_07" + "quests" "1058-1061" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9008" + "name" "#UI_Operation10_MissionCard_08" + "quests" "1062-1065" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9009" + "name" "#UI_Operation10_MissionCard_09" + "quests" "1100,1066-1069" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9010" + "name" "#UI_Operation10_MissionCard_10" + "quests" "1101,1070-1073" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9011" + "name" "#UI_Operation10_MissionCard_11" + "quests" "1074-1077" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9012" + "name" "#UI_Operation10_MissionCard_12" + "quests" "1102,1078-1081" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9013" + "name" "#UI_Operation10_MissionCard_13" + "quests" "1082-1085" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9014" + "name" "#UI_Operation10_MissionCard_14" + "quests" "1086-1089" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9015" + "name" "#UI_Operation10_MissionCard_15" + "quests" "1090-1093" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9016" + "name" "#UI_Operation10_MissionCard_16" + "quests" "1094-1097,1103" + "operational_points" "6" + } + "xp_reward" "8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160" + "xp_reward" "lootlist_xpgrant" + "operational_point_redeemable" + { + "points" "2" + "item_name" "crate_patch_pack02" + "ui_order" "3" + "ui_image_thumbnail" "operations/op10/op10_patch_pack02_thumbnail" + } + "operational_point_redeemable" + { + "points" "1" + "item_name" "selfopeningitem_crate_spray_std3" + "ui_order" "3" + "ui_image" "operations/op10/op10_graffiti_pack" + "ui_image_inspect" "operations/op10/op10_graffiti_pack_inspect" + "ui_image_thumbnail" "operations/op10/op10_graffiti_pack_thumbnail" + } + "operational_point_redeemable" + { + "points" "1" + "item_name" "crate_sticker_pack_broken_fang" + "ui_order" "3" + "ui_image_thumbnail" "operations/op10/op10_sticker_pack_broken_fang_thumbnail" + } + "operational_point_redeemable" + { + "points" "1" + "item_name" "crate_sticker_pack_recoil" + "ui_order" "3" + "ui_image_thumbnail" "operations/op10/op10_sticker_pack_recoil_thumbnail" + } + "operational_point_redeemable" + { + "points" "2" + "flags" "2" + "item_name" "crate_community_27" + "ui_order" "2" + } + "operational_point_redeemable" + { + "points" "4" + "item_name" "selfopeningitem_set_op10_ct" + "ui_order" "2" + "callout" "#CSGO_set_op10_ct_short" + } + "operational_point_redeemable" + { + "points" "4" + "item_name" "selfopeningitem_set_op10_t" + "ui_order" "2" + "callout" "#CSGO_set_op10_t_short" + } + "operational_point_redeemable" + { + "points" "4" + "item_name" "selfopeningitem_set_op10_ancient" + "ui_order" "2" + "callout" "#CSGO_set_op10_ancient_short" + } + "operational_point_redeemable" + { + "points" "25" + "item_name" "character_operator_dossier_op10_ancient1" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_ancient_short" + "ui_image" "operations/op10/char_pack_op10_ancient" + "ui_image_thumbnail" "operations/op10/char_pack_thumbnail_op10_ancient" + } + "operational_point_redeemable" + { + "points" "25" + "item_name" "character_operator_dossier_op10_ancient2" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_ancient_short" + "ui_image" "operations/op10/char_pack_op10_ancient" + "ui_image_thumbnail" "operations/op10/char_pack_thumbnail_op10_ancient" + } + "operational_point_redeemable" + { + "points" "10" + "item_name" "character_operator_dossier_op10_legendary" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_legendary_short" + "ui_image" "operations/op10/char_pack_op10_legendary" + "ui_image_thumbnail" "operations/op10/char_pack_thumbnail_op10_legendary" + } + "operational_point_redeemable" + { + "points" "7" + "item_name" "character_operator_dossier_op10_mythical" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_mythical_short" + "ui_image" "operations/op10/char_pack_op10_mythical" + "ui_image_thumbnail" "operations/op10/char_pack_thumbnail_op10_mythical" + } + "operational_point_redeemable" + { + "points" "5" + "item_name" "character_operator_dossier_op10_rare" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_rare_short" + "ui_image" "operations/op10/char_pack_op10_rare" + "ui_image_thumbnail" "operations/op10/char_pack_thumbnail_op10_rare" + } + } + } + "items" + { + "4758" + { + "name" "CommunitySeasonEleven2021" + "first_sale_date" "2021/10/01" + "prefab" "season_pass" + "item_name" "#CSGO_Ticket_CommunitySeasonEleven2021" + "item_description" "#CSGO_Ticket_CommunitySeasonEleven2021_Desc" + "image_inventory" "econ/status_icons/operation_11_pass" + "capabilities" + { + "usable_gc" "1" + "usable_out_of_game" "1" + } + "tool" + { + "type" "season_pass" + "use_string" "#ConsumeItem" + } + "attributes" + { + "season access" "10" + } + } + "4759" + { + "name" "CommunitySeasonEleven2021 Coin 1" + "prefab" "season11_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin1" + "item_description" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin1_Desc" + "image_inventory" "econ/status_icons/operation_11_bronze" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_11_bronze.mdl" + "upgrade threshold" "33" + } + } + "4760" + { + "name" "CommunitySeasonEleven2021 Coin 2" + "prefab" "season11_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin2" + "item_description" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin2_Desc" + "image_inventory" "econ/status_icons/operation_11_silver" + "min_ilevel" "2" + "max_ilevel" "2" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_11_silver.mdl" + "upgrade threshold" "66" + } + } + "4761" + { + "name" "CommunitySeasonEleven2021 Coin 3" + "prefab" "season11_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin3" + "item_description" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin3_Desc" + "image_inventory" "econ/status_icons/operation_11_gold" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_11_gold.mdl" + "upgrade threshold" "100" + } + } + "4762" + { + "name" "CommunitySeasonEleven2021 Coin 4" + "prefab" "season11_coin" + "item_name" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin4" + "item_description" "#CSGO_Collectible_CommunitySeasonEleven2021_Coin4_Desc" + "image_inventory" "econ/status_icons/operation_11_platinum" + "min_ilevel" "3" + "max_ilevel" "3" + "attributes" + { + "pedestal display model" "models/inventory_items/operation_11_platinum.mdl" + } + } + "4763" + { + "name" "CommunitySeasonEleven2021_PlusStars1" + "first_sale_date" "2021/10/01" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars1" + "item_description" "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars1_Desc" + "image_inventory" "econ/status_icons/operation_11_plusstars1" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "10" + "upgrade level" "1" + } + } + "4764" + { + "name" "CommunitySeasonEleven2021_PlusStars10" + "first_sale_date" "2021/10/01" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars10" + "item_description" "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars10_Desc" + "image_inventory" "econ/status_icons/operation_11_plusstars10" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "10" + "upgrade level" "10" + } + } + "4765" + { + "name" "CommunitySeasonEleven2021_PlusStars100" + "first_sale_date" "2021/10/01" + "prefab" "valve season_tiers" + "item_name" "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars100" + "item_description" "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars100_Desc" + "image_inventory" "econ/status_icons/operation_11_plusstars100" + "min_ilevel" "1" + "max_ilevel" "1" + "attributes" + { + "season access" "10" + "upgrade level" "100" + } + } + } + "seasonaloperations" + { + "10" + { + "quest_mission_card" + { + "id" "9051" + "name" "#UI_Operation11_MissionCard_01" + "quests" "1104-1109" + "operational_points" "10" + } + "quest_mission_card" + { + "id" "9052" + "name" "#UI_Operation11_MissionCard_02" + "quests" "1110-1113" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9053" + "name" "#UI_Operation11_MissionCard_03" + "quests" "1114-1117" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9054" + "name" "#UI_Operation11_MissionCard_04" + "quests" "1118-1121" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9055" + "name" "#UI_Operation11_MissionCard_05" + "quests" "1122-1125" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9056" + "name" "#UI_Operation11_MissionCard_06" + "quests" "1126-1129" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9057" + "name" "#UI_Operation11_MissionCard_07" + "quests" "1130-1133" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9058" + "name" "#UI_Operation11_MissionCard_08" + "quests" "1134-1137" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9059" + "name" "#UI_Operation11_MissionCard_09" + "quests" "1138-1141" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9060" + "name" "#UI_Operation11_MissionCard_10" + "quests" "1142-1145" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9061" + "name" "#UI_Operation11_MissionCard_11" + "quests" "1146-1149" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9062" + "name" "#UI_Operation11_MissionCard_12" + "quests" "1150-1153" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9063" + "name" "#UI_Operation11_MissionCard_13" + "quests" "1154-1157" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9064" + "name" "#UI_Operation11_MissionCard_14" + "quests" "1158-1161" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9065" + "name" "#UI_Operation11_MissionCard_15" + "quests" "1162-1165" + "operational_points" "6" + } + "quest_mission_card" + { + "id" "9066" + "name" "#UI_Operation11_MissionCard_16" + "quests" "1166-1169" + "operational_points" "6" + } + "xp_reward" "7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83" + "xp_reward" "lootlist_xpgrant" + "operational_point_redeemable" + { + "points" "2" + "item_name" "crate_patch_pack03" + "ui_order" "3" + "ui_image_thumbnail" "operations/op11/op11_patch_pack03_thumbnail" + } + "operational_point_redeemable" + { + "points" "1" + "item_name" "crate_sticker_pack_op_riptide_capsule" + "ui_order" "3" + "ui_image_thumbnail" "operations/op11/op11_sticker_pack_op_riptide_capsule_thumbnail" + } + "operational_point_redeemable" + { + "points" "1" + "item_name" "crate_sticker_pack_riptide_surfshop" + "item_name_groups" "crate_sticker_pack_riptide_surfshop_rewardgroup_17" + "ui_order" "3" + "ui_image_thumbnail" "operations/op11/op11_sticker_pack_riptide_surfshop_thumbnail" + } + "operational_point_redeemable" + { + "points" "2" + "flags" "2" + "item_name" "crate_community_29" + "ui_order" "2" + } + "operational_point_redeemable" + { + "points" "100" + "item_name" "selfopeningitem_set_train_2021_ancient_standalone" + "ui_order" "2" + "callout" "#CSGO_set_train_2021_short" + } + "operational_point_redeemable" + { + "points" "20" + "item_name" "selfopeningitem_set_train_2021_legendary_standalone" + "ui_order" "2" + "callout" "#CSGO_set_train_2021_short" + } + "operational_point_redeemable" + { + "points" "4" + "item_name" "selfopeningitem_set_train_2021_mythical_standalone" + "ui_order" "2" + "callout" "#CSGO_set_train_2021_short" + } + "operational_point_redeemable" + { + "points" "1" + "item_name" "selfopeningitem_set_train_2021_rare_standalone" + "ui_order" "2" + "callout" "#CSGO_set_train_2021_short" + } + "operational_point_redeemable" + { + "points" "4" + "item_name" "selfopeningitem_set_mirage_2021" + "ui_order" "2" + "callout" "#CSGO_set_mirage_2021_short" + } + "operational_point_redeemable" + { + "points" "4" + "item_name" "selfopeningitem_set_dust_2_2021" + "ui_order" "2" + "callout" "#CSGO_set_dust_2_2021_short" + } + "operational_point_redeemable" + { + "points" "4" + "item_name" "selfopeningitem_set_vertigo_2021" + "ui_order" "2" + "callout" "#CSGO_set_vertigo_2021_short" + } + "operational_point_redeemable" + { + "points" "25" + "item_name" "character_operator_dossier_op11_ancient1" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_ancient_short" + "ui_image" "operations/op10/char_pack_op11_ancient" + "ui_image_thumbnail" "operations/op11/char_pack_thumbnail_op11_ancient" + } + "operational_point_redeemable" + { + "points" "25" + "item_name" "character_operator_dossier_op11_ancient2" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_ancient_short" + "ui_image" "operations/op10/char_pack_op11_ancient" + "ui_image_thumbnail" "operations/op11/char_pack_thumbnail_op11_ancient" + } + "operational_point_redeemable" + { + "points" "10" + "item_name" "character_operator_dossier_op11_legendary" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_legendary_short" + "ui_image" "operations/op10/char_pack_op11_legendary" + "ui_image_thumbnail" "operations/op11/char_pack_thumbnail_op11_legendary" + } + "operational_point_redeemable" + { + "points" "7" + "item_name" "character_operator_dossier_op11_mythical" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_mythical_short" + "ui_image" "operations/op10/char_pack_op11_mythical" + "ui_image_thumbnail" "operations/op11/char_pack_thumbnail_op11_mythical" + } + "operational_point_redeemable" + { + "points" "5" + "item_name" "character_operator_dossier_op11_rare" + "ui_order" "1" + "callout" "#CSGO_character_operator_dossier_op09_rare_short" + "ui_image" "operations/op10/char_pack_op11_rare" + "ui_image_thumbnail" "operations/op11/char_pack_thumbnail_op11_rare" + } + } + } + "pro_event_results" + { + "1" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "06" "1" + "01" "2" + "04" "3" + "03" "3" + "09" "4" + "10" "4" + "08" "4" + "02" "4" + "07" "5" + "11" "5" + "13" "5" + "16" "5" + "12" "6" + "05" "6" + "15" "6" + "14" "6" + } + } + "3" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "31" "1" + "01" "2" + "24" "3" + "09" "3" + "03" "4" + "25" "4" + "26" "4" + "06" "4" + "27" "5" + "28" "5" + "30" "5" + "07" "5" + "29" "6" + "32" "6" + "05" "6" + "12" "6" + } + } + "4" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "01" "1" + "06" "2" + "24" "3" + "26" "3" + "12" "4" + "35" "4" + "31" "4" + "33" "4" + "25" "5" + "10" "5" + "05" "5" + "27" "5" + "37" "6" + "36" "6" + "34" "6" + "32" "6" + } + } + "5" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "26" "1" + "01" "2" + "31" "3" + "12" "3" + "25" "4" + "39" "4" + "06" "4" + "24" "4" + "33" "5" + "05" "5" + "42" "5" + "43" "5" + "40" "6" + "10" "6" + "41" "6" + "38" "6" + } + } + "6" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "06" "1" + "01" "2" + "31" "3" + "46" "3" + "39" "4" + "50" "4" + "12" "4" + "51" "4" + "32" "5" + "09" "5" + "49" "5" + "52" "5" + "43" "6" + "27" "6" + "25" "6" + "28" "6" + } + } + "7" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "06" "1" + "46" "2" + "58" "3" + "31" "3" + "12" "4" + "55" "4" + "01" "4" + "57" "4" + "49" "5" + "52" "5" + "53" "5" + "43" "5" + "56" "6" + "54" "6" + "27" "6" + "29" "6" + } + } + "8" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "46" "1" + "12" "2" + "59" "3" + "01" "3" + "06" "4" + "31" "4" + "58" "4" + "57" "4" + "33" "5" + "29" "5" + "27" "5" + "49" "5" + "47" "6" + "43" "6" + "48" "6" + "24" "6" + } + } + "9" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "57" "1" + "12" "2" + "60" "3" + "48" "3" + "01" "4" + "06" "4" + "49" "4" + "31" "4" + "29" "5" + "61" "5" + "63" "5" + "59" "5" + "43" "6" + "62" "6" + "46" "6" + "33" "6" + } + } + "10" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "14" "1" + "48" "2" + "31" "3" + "06" "3" + "60" "4" + "43" "4" + "12" "4" + "63" "4" + "24" "5" + "01" "5" + "29" "5" + "61" "5" + "49" "6" + "66" "6" + "46" "6" + "59" "6" + } + } + "11" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "60" "1" + "31" "2" + "06" "3" + "14" "3" + "12" "4" + "63" "4" + "68" "4" + "61" "4" + "46" "5" + "67" "5" + "48" "5" + "66" "5" + "59" "6" + "29" "6" + "43" "6" + "25" "6" + } + } + "12" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-12th" + "6" "#Place_Name_13th-16th" + } + "team_places" + { + "63" "1" + "71" "2" + "60" "3" + "31" "3" + "06" "4" + "14" "4" + "69" "4" + "68" "4" + "33" "5" + "43" "5" + "59" "5" + "12" "5" + "29" "6" + "39" "6" + "61" "6" + "70" "6" + } + } + "13" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-11th" + "6" "#Place_Name_12th-14th" + "7" "#Place_Name_15th-16th" + "8" "#Place_Name_17th" + "9" "#Place_Name_18th" + "10" "#Place_Name_19th-21st" + "11" "#Place_Name_22nd-24th" + } + "team_places" + { + "33" "1" + "61" "2" + "12" "3" + "14" "3" + "29" "4" + "76" "4" + "59" "4" + "06" "4" + "63" "5" + "70" "5" + "73" "5" + "69" "6" + "60" "6" + "48" "6" + "68" "7" + "31" "7" + "75" "8" + "53" "9" + "72" "10" + "46" "10" + "77" "10" + "79" "11" + "43" "11" + } + } + "14" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-11th" + "6" "#Place_Name_12th-14th" + "7" "#Place_Name_15th-16th" + "8" "#Place_Name_17th-19th" + "9" "#Place_Name_20th-22nd" + "10" "#Place_Name_23rd-24th" + } + "team_places" + { + "60" "1" + "12" "2" + "80" "3" + "48" "3" + "03" "4" + "69" "4" + "25" "4" + "61" "4" + "01" "5" + "06" "5" + "59" "5" + "70" "6" + "33" "6" + "74" "6" + "83" "7" + "29" "7" + "81" "8" + "66" "8" + "68" "8" + "53" "9" + "63" "9" + "82" "9" + "73" "10" + "31" "10" + } + } + "15" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-11th" + "6" "#Place_Name_12th-14th" + "7" "#Place_Name_15th-16th" + "8" "#Place_Name_17th-19th" + "9" "#Place_Name_20th-22nd" + "10" "#Place_Name_23rd-24th" + } + "team_places" + { + "60" "1" + "84" "2" + "12" "3" + "80" "3" + "61" "4" + "48" "4" + "53" "4" + "01" "4" + "89" "5" + "33" "5" + "75" "5" + "25" "6" + "59" "6" + "03" "6" + "69" "7" + "87" "7" + "74" "8" + "88" "8" + "83" "8" + "06" "9" + "70" "9" + "85" "9" + "81" "10" + "86" "10" + } + } + "16" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_9th-11th" + "6" "#Place_Name_12th-14th" + "7" "#Place_Name_15th-16th" + "8" "#Place_Name_17th-19th" + "9" "#Place_Name_20th-22nd" + "10" "#Place_Name_23rd-24th" + } + "team_places" + { + "60" "1" + "75" "2" + "87" "3" + "53" "3" + "84" "4" + "89" "4" + "48" "4" + "12" "4" + "29" "5" + "59" "5" + "91" "5" + "80" "6" + "61" "6" + "68" "6" + "01" "7" + "93" "7" + "90" "8" + "86" "8" + "92" "8" + "85" "9" + "25" "9" + "03" "9" + "74" "10" + "94" "10" + } + } + "18" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_09" + "6" "#Place_Name_10" + "7" "#Place_Name_11" + "8" "#Place_Name_12" + "9" "#Place_Name_13" + "10" "#Place_Name_14" + "11" "#Place_Name_15" + "12" "#Place_Name_16" + "13" "#Place_Name_17" + "14" "#Place_Name_18" + "15" "#Place_Name_19" + "16" "#Place_Name_20" + "17" "#Place_Name_21" + "18" "#Place_Name_22" + "19" "#Place_Name_23" + "20" "#Place_Name_24" + } + "team_places" + { + "12" "1" + "59" "2" + "95" "3" + "63" "3" + "85" "4" + "31" "4" + "1" "4" + "89" "4" + "105" "5" + "101" "6" + "61" "7" + "60" "8" + "106" "9" + "48" "10" + "98" "11" + "84" "12" + "69" "13" + "81" "14" + "103" "15" + "102" "16" + "53" "17" + "74" "18" + "67" "19" + "104" "20" + } + } + "19" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_09" + "6" "#Place_Name_10" + "7" "#Place_Name_11" + "8" "#Place_Name_12" + "9" "#Place_Name_13" + "10" "#Place_Name_14" + "11" "#Place_Name_15" + "12" "#Place_Name_16" + "13" "#Place_Name_17" + "14" "#Place_Name_18" + "15" "#Place_Name_19" + "16" "#Place_Name_20" + "17" "#Place_Name_21" + "18" "#Place_Name_22" + "19" "#Place_Name_23" + "20" "#Place_Name_24" + } + "team_places" + { + "61" "1" + "12" "2" + "81" "3" + "84" "3" + "85" "4" + "101" "4" + "1" "4" + "95" "4" + "59" "5" + "89" "6" + "113" "7" + "69" "8" + "33" "9" + "109" "10" + "114" "11" + "48" "12" + "90" "13" + "60" "14" + "80" "15" + "111" "16" + "110" "17" + "108" "18" + "112" "19" + "53" "20" + } + } + "20" + { + "place_names" + { + "1" "#Place_Name_1st" + "2" "#Place_Name_2nd" + "3" "#Place_Name_3rd-4th" + "4" "#Place_Name_5th-8th" + "5" "#Place_Name_09" + "6" "#Place_Name_10" + "7" "#Place_Name_11" + "8" "#Place_Name_12" + "9" "#Place_Name_13" + "10" "#Place_Name_14" + "11" "#Place_Name_15" + "12" "#Place_Name_16" + "13" "#Place_Name_17" + "14" "#Place_Name_18" + "15" "#Place_Name_19" + "16" "#Place_Name_20" + "17" "#Place_Name_21" + "18" "#Place_Name_22" + "19" "#Place_Name_23" + "20" "#Place_Name_24" + } + "team_places" + { + "109" "1" + "95" "2" + "106" "3" + "85" "3" + "33" "4" + "06" "4" + "81" "4" + "12" "4" + "69" "5" + "48" "6" + "84" "7" + "114" "8" + "89" "9" + "72" "10" + "1" "11" + "61" "12" + "115" "13" + "96" "14" + "112" "15" + "86" "16" + "98" "17" + "108" "18" + "113" "19" + "116" "20" + } + } + } + "pro_players" + { + "9419182" + { + "name" "pronax" + "code" "pronax" + "dob" "1991-06-24" + "geo" "SE" + "events" + { + "7" + { + "team" "6" + "clutch_kills" "6" + "pistol_kills" "15" + "opening_kills" "20" + "sniper_kills" "1" + "KDR" "0.992000" + "enemy_kills" "131" + "deaths" "132" + "matches_played" "9" + } + "8" + { + "team" "6" + "clutch_kills" "5" + "pistol_kills" "16" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "0.836066" + "enemy_kills" "102" + "deaths" "122" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.250000" + "enemy_kills" "20" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.700000" + "enemy_kills" "14" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.300000" + "enemy_kills" "39" + "deaths" "30" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "8" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.517857" + "enemy_kills" "29" + "deaths" "56" + "matches_played" "3" + } + } + "11" + { + "team" "67" + } + "1" + { + "team" "6" + } + "3" + { + "team" "6" + } + "4" + { + "team" "6" + } + "5" + { + "team" "6" + } + "6" + { + "team" "6" + } + } + } + "31082355" + { + "name" "flusha" + "code" "flusha" + "dob" "1993-08-12" + "geo" "SE" + "events" + { + "7" + { + "team" "6" + "clutch_kills" "18" + "pistol_kills" "39" + "opening_kills" "21" + "sniper_kills" "5" + "KDR" "1.716000" + "enemy_kills" "199" + "deaths" "116" + "matches_played" "9" + } + "8" + { + "team" "6" + "clutch_kills" "10" + "pistol_kills" "26" + "opening_kills" "18" + "sniper_kills" "9" + "KDR" "1.099174" + "enemy_kills" "133" + "deaths" "121" + "matches_played" "7" + "stage0" + { + "clutch_kills" "6" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.800000" + "enemy_kills" "27" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "2" + "KDR" "1.200000" + "enemy_kills" "24" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "7" + "sniper_kills" "6" + "KDR" "1.151515" + "enemy_kills" "38" + "deaths" "33" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "12" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.830189" + "enemy_kills" "44" + "deaths" "53" + "matches_played" "3" + } + } + "9" + { + "team" "6" + "clutch_kills" "13" + "pistol_kills" "25" + "opening_kills" "13" + "sniper_kills" "2" + "KDR" "1.125000" + "enemy_kills" "108" + "deaths" "96" + "matches_played" "6" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "2.250000" + "enemy_kills" "18" + "deaths" "8" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.961538" + "enemy_kills" "25" + "deaths" "26" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.185185" + "enemy_kills" "32" + "deaths" "27" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "9" + "pistol_kills" "14" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.942857" + "enemy_kills" "33" + "deaths" "35" + "matches_played" "2" + } + } + "10" + { + "team" "6" + "clutch_kills" "13" + "pistol_kills" "34" + "opening_kills" "13" + "sniper_kills" "12" + "KDR" "1.217742" + "enemy_kills" "151" + "deaths" "124" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "2" + "sniper_kills" "3" + "KDR" "0.739130" + "enemy_kills" "17" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "1" + "sniper_kills" "4" + "KDR" "1.157895" + "enemy_kills" "22" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "2" + "sniper_kills" "4" + "KDR" "1.653846" + "enemy_kills" "43" + "deaths" "26" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "11" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "2.117647" + "enemy_kills" "36" + "deaths" "17" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.846154" + "enemy_kills" "33" + "deaths" "39" + "matches_played" "2" + } + } + "11" + { + "team" "67" + } + "12" + { + "team" "6" + } + "13" + { + "team" "6" + } + "14" + { + "team" "6" + } + "15" + { + "team" "33" + } + "1" + { + "team" "6" + } + "3" + { + "team" "6" + } + "4" + { + "team" "6" + } + "5" + { + "team" "6" + } + "6" + { + "team" "6" + } + } + } + "71288472" + { + "name" "JW" + "code" "jw" + "dob" "1995-02-23" + "geo" "SE" + "events" + { + "7" + { + "team" "6" + "clutch_kills" "1" + "pistol_kills" "27" + "opening_kills" "29" + "sniper_kills" "73" + "KDR" "1.065000" + "enemy_kills" "147" + "deaths" "138" + "matches_played" "9" + } + "8" + { + "team" "6" + "clutch_kills" "8" + "pistol_kills" "30" + "opening_kills" "19" + "sniper_kills" "29" + "KDR" "0.755906" + "enemy_kills" "96" + "deaths" "127" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "5" + "KDR" "0.941176" + "enemy_kills" "16" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "6" + "KDR" "0.850000" + "enemy_kills" "17" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "11" + "KDR" "0.818182" + "enemy_kills" "27" + "deaths" "33" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "12" + "opening_kills" "6" + "sniper_kills" "7" + "KDR" "0.631579" + "enemy_kills" "36" + "deaths" "57" + "matches_played" "3" + } + } + "9" + { + "team" "6" + "clutch_kills" "15" + "pistol_kills" "18" + "opening_kills" "22" + "sniper_kills" "43" + "KDR" "1.036364" + "enemy_kills" "114" + "deaths" "110" + "matches_played" "6" + "stage0" + { + "clutch_kills" "5" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "8" + "KDR" "1.250000" + "enemy_kills" "15" + "deaths" "12" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "5" + "sniper_kills" "11" + "KDR" "0.933333" + "enemy_kills" "28" + "deaths" "30" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "11" + "sniper_kills" "15" + "KDR" "1.300000" + "enemy_kills" "39" + "deaths" "30" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "6" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "9" + "KDR" "0.842105" + "enemy_kills" "32" + "deaths" "38" + "matches_played" "2" + } + } + "10" + { + "team" "6" + "clutch_kills" "16" + "pistol_kills" "20" + "opening_kills" "22" + "sniper_kills" "37" + "KDR" "1" + "enemy_kills" "135" + "deaths" "135" + "matches_played" "8" + "stage0" + { + "clutch_kills" "5" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "4" + "KDR" "0.684211" + "enemy_kills" "13" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "5" + "KDR" "0.863636" + "enemy_kills" "19" + "deaths" "22" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "6" + "opening_kills" "8" + "sniper_kills" "15" + "KDR" "1.250000" + "enemy_kills" "40" + "deaths" "32" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "11" + "KDR" "1.318182" + "enemy_kills" "29" + "deaths" "22" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "7" + "sniper_kills" "2" + "KDR" "0.850000" + "enemy_kills" "34" + "deaths" "40" + "matches_played" "2" + } + } + "11" + { + "team" "67" + } + "12" + { + "team" "6" + } + "13" + { + "team" "6" + } + "14" + { + "team" "6" + } + "15" + { + "team" "6" + } + "1" + { + "team" "6" + } + "3" + { + "team" "6" + } + "4" + { + "team" "6" + } + "5" + { + "team" "6" + } + "6" + { + "team" "6" + } + } + } + "71385856" + { + "name" "KRIMZ" + "code" "krimz" + "dob" "1994-04-25" + "geo" "SE" + "events" + { + "7" + { + "team" "6" + "clutch_kills" "13" + "pistol_kills" "19" + "opening_kills" "25" + "sniper_kills" "1" + "KDR" "1.364000" + "enemy_kills" "165" + "deaths" "121" + "matches_played" "9" + } + "8" + { + "team" "6" + "clutch_kills" "15" + "pistol_kills" "22" + "opening_kills" "10" + "sniper_kills" "7" + "KDR" "1.257143" + "enemy_kills" "132" + "deaths" "105" + "matches_played" "7" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.437500" + "enemy_kills" "23" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.052632" + "enemy_kills" "20" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "8" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "1.692308" + "enemy_kills" "44" + "deaths" "26" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "7" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "6" + "KDR" "1.022727" + "enemy_kills" "45" + "deaths" "44" + "matches_played" "3" + } + } + "9" + { + "team" "6" + "clutch_kills" "14" + "pistol_kills" "18" + "opening_kills" "14" + "sniper_kills" "1" + "KDR" "1.080808" + "enemy_kills" "107" + "deaths" "99" + "matches_played" "6" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.777778" + "enemy_kills" "16" + "deaths" "9" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "5" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "1.037037" + "enemy_kills" "28" + "deaths" "27" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "9" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.680000" + "enemy_kills" "42" + "deaths" "25" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.552632" + "enemy_kills" "21" + "deaths" "38" + "matches_played" "2" + } + } + "10" + { + "team" "6" + "clutch_kills" "10" + "pistol_kills" "24" + "opening_kills" "21" + "sniper_kills" "4" + "KDR" "1.415929" + "enemy_kills" "160" + "deaths" "113" + "matches_played" "8" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.166667" + "enemy_kills" "21" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.294118" + "enemy_kills" "22" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "2" + "KDR" "1.440000" + "enemy_kills" "36" + "deaths" "25" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "2.571429" + "enemy_kills" "36" + "deaths" "14" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "4" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "1.153846" + "enemy_kills" "45" + "deaths" "39" + "matches_played" "2" + } + } + "11" + { + "team" "6" + } + "12" + { + "team" "6" + } + "13" + { + "team" "6" + } + "14" + { + "team" "6" + } + "15" + { + "team" "6" + } + "1" + { + "team" "9" + } + "3" + { + "team" "9" + } + "4" + { + "team" "6" + } + "5" + { + "team" "6" + } + "6" + { + "team" "6" + } + "20" + { + "team" "6" + } + } + } + "28361465" + { + "name" "olofmeister" + "code" "olofmeister" + "dob" "1992-01-31" + "geo" "SE" + "events" + { + "7" + { + "team" "6" + "clutch_kills" "4" + "pistol_kills" "25" + "opening_kills" "26" + "sniper_kills" "15" + "KDR" "1.387000" + "enemy_kills" "190" + "deaths" "137" + "matches_played" "9" + } + "8" + { + "team" "6" + "clutch_kills" "6" + "pistol_kills" "26" + "opening_kills" "27" + "sniper_kills" "10" + "KDR" "0.983740" + "enemy_kills" "121" + "deaths" "123" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "12" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "3" + "KDR" "1.250000" + "enemy_kills" "25" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "1.300000" + "enemy_kills" "39" + "deaths" "30" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "8" + "opening_kills" "10" + "sniper_kills" "7" + "KDR" "0.818182" + "enemy_kills" "45" + "deaths" "55" + "matches_played" "3" + } + } + "9" + { + "team" "6" + "clutch_kills" "8" + "pistol_kills" "15" + "opening_kills" "14" + "sniper_kills" "21" + "KDR" "1" + "enemy_kills" "107" + "deaths" "107" + "matches_played" "6" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "0" + "opening_kills" "4" + "sniper_kills" "3" + "KDR" "2" + "enemy_kills" "20" + "deaths" "10" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "0.655172" + "enemy_kills" "19" + "deaths" "29" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "8" + "opening_kills" "4" + "sniper_kills" "7" + "KDR" "1.413793" + "enemy_kills" "41" + "deaths" "29" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "8" + "KDR" "0.692308" + "enemy_kills" "27" + "deaths" "39" + "matches_played" "2" + } + } + "10" + { + "team" "6" + "clutch_kills" "9" + "pistol_kills" "19" + "opening_kills" "28" + "sniper_kills" "23" + "KDR" "1.083969" + "enemy_kills" "142" + "deaths" "131" + "matches_played" "8" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "4" + "KDR" "0.695652" + "enemy_kills" "16" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "0.652174" + "enemy_kills" "15" + "deaths" "23" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "6" + "opening_kills" "7" + "sniper_kills" "8" + "KDR" "1.360000" + "enemy_kills" "34" + "deaths" "25" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "8" + "opening_kills" "5" + "sniper_kills" "9" + "KDR" "2.277778" + "enemy_kills" "41" + "deaths" "18" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "1" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.857143" + "enemy_kills" "36" + "deaths" "42" + "matches_played" "2" + } + } + "11" + { + "team" "6" + } + "12" + { + "team" "6" + } + "13" + { + "team" "61" + } + "14" + { + "team" "61" + } + "15" + { + "team" "61" + } + "16" + { + "team" "61" + } + "1" + { + "team" "9" + } + "3" + { + "team" "9" + } + "4" + { + "team" "6" + } + "5" + { + "team" "6" + } + "6" + { + "team" "6" + } + "18" + { + "team" "61" + } + } + } + "424467" + { + "name" "FalleN" + "code" "fallen" + "dob" "1991-05-30" + "geo" "BR" + "events" + { + "7" + { + "team" "57" + "clutch_kills" "10" + "pistol_kills" "7" + "opening_kills" "19" + "sniper_kills" "84" + "KDR" "1.117000" + "enemy_kills" "115" + "deaths" "103" + "matches_played" "5" + } + "8" + { + "team" "57" + "clutch_kills" "4" + "pistol_kills" "14" + "opening_kills" "12" + "sniper_kills" "27" + "KDR" "0.746988" + "enemy_kills" "62" + "deaths" "83" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "9" + "KDR" "0.812500" + "enemy_kills" "13" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "4" + "KDR" "1.210526" + "enemy_kills" "23" + "deaths" "19" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "8" + "sniper_kills" "14" + "KDR" "0.541667" + "enemy_kills" "26" + "deaths" "48" + "matches_played" "2" + } + } + "9" + { + "team" "57" + "clutch_kills" "20" + "pistol_kills" "29" + "opening_kills" "36" + "sniper_kills" "117" + "KDR" "1.331035" + "enemy_kills" "193" + "deaths" "145" + "matches_played" "9" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "10" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "10" + "KDR" "3" + "enemy_kills" "18" + "deaths" "6" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "9" + "opening_kills" "14" + "sniper_kills" "32" + "KDR" "1.051724" + "enemy_kills" "61" + "deaths" "58" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "9" + "pistol_kills" "7" + "opening_kills" "9" + "sniper_kills" "34" + "KDR" "1.444444" + "enemy_kills" "52" + "deaths" "36" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "8" + "pistol_kills" "6" + "opening_kills" "7" + "sniper_kills" "31" + "KDR" "1.807692" + "enemy_kills" "47" + "deaths" "26" + "matches_played" "2" + } + } + "10" + { + "team" "14" + "clutch_kills" "9" + "pistol_kills" "21" + "opening_kills" "33" + "sniper_kills" "101" + "KDR" "1.257353" + "enemy_kills" "171" + "deaths" "136" + "matches_played" "9" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "12" + "KDR" "1.428571" + "enemy_kills" "20" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "6" + "KDR" "1.800000" + "enemy_kills" "18" + "deaths" "10" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "11" + "sniper_kills" "21" + "KDR" "0.972973" + "enemy_kills" "36" + "deaths" "37" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "10" + "sniper_kills" "35" + "KDR" "1.312500" + "enemy_kills" "63" + "deaths" "48" + "matches_played" "3" + } + "stage5" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "6" + "sniper_kills" "27" + "KDR" "1.259259" + "enemy_kills" "34" + "deaths" "27" + "matches_played" "2" + } + } + "11" + { + "team" "14" + } + "12" + { + "team" "14" + } + "13" + { + "team" "14" + } + "14" + { + "team" "80" + } + "15" + { + "team" "80" + } + "16" + { + "team" "80" + } + "6" + { + "team" "50" + } + "18" + { + "team" "48" + } + "19" + { + "team" "113" + } + "20" + { + "team" "113" + } + } + } + "54512474" + { + "name" "steel" + "code" "steel" + "dob" "1992-03-08" + "geo" "BR" + "events" + { + "7" + { + "team" "57" + "clutch_kills" "5" + "pistol_kills" "13" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.648000" + "enemy_kills" "68" + "deaths" "105" + "matches_played" "5" + } + "8" + { + "team" "57" + "clutch_kills" "8" + "pistol_kills" "15" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "0.890411" + "enemy_kills" "65" + "deaths" "73" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "1" + "KDR" "1.454545" + "enemy_kills" "16" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.454545" + "enemy_kills" "10" + "deaths" "22" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "6" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.975000" + "enemy_kills" "39" + "deaths" "40" + "matches_played" "2" + } + } + "12" + { + "team" "71" + } + "6" + { + "team" "50" + } + } + } + "38921219" + { + "name" "fer" + "code" "fer" + "dob" "1991-10-30" + "geo" "BR" + "events" + { + "7" + { + "team" "57" + "clutch_kills" "5" + "pistol_kills" "28" + "opening_kills" "24" + "sniper_kills" "2" + "KDR" "1.092000" + "enemy_kills" "119" + "deaths" "109" + "matches_played" "5" + } + "8" + { + "team" "57" + "clutch_kills" "11" + "pistol_kills" "16" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "0.976471" + "enemy_kills" "83" + "deaths" "85" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "12" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "20" + "deaths" "20" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "10" + "pistol_kills" "9" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.085106" + "enemy_kills" "51" + "deaths" "47" + "matches_played" "2" + } + } + "9" + { + "team" "57" + "clutch_kills" "6" + "pistol_kills" "32" + "opening_kills" "42" + "sniper_kills" "0" + "KDR" "1.010870" + "enemy_kills" "186" + "deaths" "184" + "matches_played" "9" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.235294" + "enemy_kills" "21" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.692308" + "enemy_kills" "9" + "deaths" "13" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "16" + "sniper_kills" "0" + "KDR" "0.859155" + "enemy_kills" "61" + "deaths" "71" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "9" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "44" + "deaths" "44" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "12" + "sniper_kills" "0" + "KDR" "1.307692" + "enemy_kills" "51" + "deaths" "39" + "matches_played" "2" + } + } + "10" + { + "team" "14" + "clutch_kills" "9" + "pistol_kills" "33" + "opening_kills" "34" + "sniper_kills" "0" + "KDR" "1.050955" + "enemy_kills" "165" + "deaths" "157" + "matches_played" "9" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.384615" + "enemy_kills" "18" + "deaths" "13" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.973684" + "enemy_kills" "37" + "deaths" "38" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "12" + "sniper_kills" "0" + "KDR" "1.181818" + "enemy_kills" "65" + "deaths" "55" + "matches_played" "3" + } + "stage5" + { + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.870968" + "enemy_kills" "27" + "deaths" "31" + "matches_played" "2" + } + } + "11" + { + "team" "14" + } + "12" + { + "team" "14" + } + "13" + { + "team" "14" + } + "14" + { + "team" "80" + } + "15" + { + "team" "80" + } + "16" + { + "team" "80" + } + "6" + { + "team" "50" + } + "19" + { + "team" "113" + } + "20" + { + "team" "113" + } + } + } + "58113672" + { + "name" "boltz" + "code" "boltz" + "dob" "1997-04-10" + "geo" "BR" + "events" + { + "7" + { + "team" "57" + "clutch_kills" "7" + "pistol_kills" "20" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "0.895000" + "enemy_kills" "94" + "deaths" "105" + "matches_played" "5" + } + "8" + { + "team" "57" + "clutch_kills" "3" + "pistol_kills" "13" + "opening_kills" "10" + "sniper_kills" "1" + "KDR" "1.012500" + "enemy_kills" "81" + "deaths" "80" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.058824" + "enemy_kills" "18" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.904762" + "enemy_kills" "19" + "deaths" "21" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "1.047619" + "enemy_kills" "44" + "deaths" "42" + "matches_played" "2" + } + } + "12" + { + "team" "71" + } + "6" + { + "team" "50" + } + "19" + { + "team" "113" + } + "20" + { + "team" "113" + } + } + } + "79720871" + { + "name" "coldzera" + "code" "coldzera" + "dob" "1994-10-31" + "geo" "BR" + "events" + { + "7" + { + "team" "57" + "clutch_kills" "11" + "pistol_kills" "21" + "opening_kills" "10" + "sniper_kills" "6" + "KDR" "1.099000" + "enemy_kills" "111" + "deaths" "101" + "matches_played" "5" + } + "8" + { + "team" "57" + "clutch_kills" "8" + "pistol_kills" "24" + "opening_kills" "12" + "sniper_kills" "13" + "KDR" "1.226667" + "enemy_kills" "92" + "deaths" "75" + "matches_played" "4" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "6" + "opening_kills" "7" + "sniper_kills" "6" + "KDR" "2.066667" + "enemy_kills" "31" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "8" + "opening_kills" "2" + "sniper_kills" "4" + "KDR" "1.444444" + "enemy_kills" "26" + "deaths" "18" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "0.833333" + "enemy_kills" "35" + "deaths" "42" + "matches_played" "2" + } + } + "9" + { + "team" "57" + "clutch_kills" "21" + "pistol_kills" "36" + "opening_kills" "22" + "sniper_kills" "53" + "KDR" "1.546053" + "enemy_kills" "235" + "deaths" "152" + "matches_played" "9" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "7" + "KDR" "1.411765" + "enemy_kills" "24" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "2.200000" + "enemy_kills" "22" + "deaths" "10" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "6" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "18" + "KDR" "1.377358" + "enemy_kills" "73" + "deaths" "53" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "5" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "13" + "KDR" "1.523810" + "enemy_kills" "64" + "deaths" "42" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "7" + "sniper_kills" "14" + "KDR" "1.733333" + "enemy_kills" "52" + "deaths" "30" + "matches_played" "2" + } + } + "10" + { + "team" "14" + "clutch_kills" "23" + "pistol_kills" "49" + "opening_kills" "16" + "sniper_kills" "60" + "KDR" "1.717742" + "enemy_kills" "213" + "deaths" "124" + "matches_played" "9" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "2" + "sniper_kills" "7" + "KDR" "2.166667" + "enemy_kills" "26" + "deaths" "12" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "14" + "KDR" "2.777778" + "enemy_kills" "25" + "deaths" "9" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "4" + "KDR" "1.243243" + "enemy_kills" "46" + "deaths" "37" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "15" + "pistol_kills" "15" + "opening_kills" "3" + "sniper_kills" "20" + "KDR" "1.565217" + "enemy_kills" "72" + "deaths" "46" + "matches_played" "3" + } + "stage5" + { + "clutch_kills" "4" + "pistol_kills" "14" + "opening_kills" "3" + "sniper_kills" "15" + "KDR" "2.200000" + "enemy_kills" "44" + "deaths" "20" + "matches_played" "2" + } + } + "11" + { + "team" "14" + } + "12" + { + "team" "14" + } + "13" + { + "team" "14" + } + "14" + { + "team" "80" + } + "15" + { + "team" "80" + } + "16" + { + "team" "80" + } + "20" + { + "team" "116" + } + } + } + "12065295" + { + "name" "GuardiaN" + "code" "guardian" + "dob" "1991-07-19" + "geo" "SK" + "events" + { + "7" + { + "team" "12" + "clutch_kills" "8" + "pistol_kills" "10" + "opening_kills" "20" + "sniper_kills" "44" + "KDR" "0.968000" + "enemy_kills" "91" + "deaths" "94" + "matches_played" "5" + } + "8" + { + "team" "12" + "clutch_kills" "14" + "pistol_kills" "36" + "opening_kills" "56" + "sniper_kills" "152" + "KDR" "1.509202" + "enemy_kills" "246" + "deaths" "163" + "matches_played" "11" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "14" + "KDR" "1.733333" + "enemy_kills" "26" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "11" + "KDR" "0.619048" + "enemy_kills" "13" + "deaths" "21" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "0" + "pistol_kills" "12" + "opening_kills" "15" + "sniper_kills" "36" + "KDR" "1.418605" + "enemy_kills" "61" + "deaths" "43" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "17" + "sniper_kills" "31" + "KDR" "1.400000" + "enemy_kills" "56" + "deaths" "40" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "9" + "pistol_kills" "10" + "opening_kills" "14" + "sniper_kills" "60" + "KDR" "2.045455" + "enemy_kills" "90" + "deaths" "44" + "matches_played" "4" + } + } + "9" + { + "team" "12" + "clutch_kills" "6" + "pistol_kills" "20" + "opening_kills" "23" + "sniper_kills" "67" + "KDR" "0.890625" + "enemy_kills" "114" + "deaths" "128" + "matches_played" "8" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "7" + "KDR" "1.454545" + "enemy_kills" "16" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "14" + "KDR" "2.375000" + "enemy_kills" "19" + "deaths" "8" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "9" + "sniper_kills" "16" + "KDR" "0.888889" + "enemy_kills" "32" + "deaths" "36" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "7" + "sniper_kills" "15" + "KDR" "0.800000" + "enemy_kills" "24" + "deaths" "30" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "15" + "KDR" "0.534884" + "enemy_kills" "23" + "deaths" "43" + "matches_played" "2" + } + } + "10" + { + "team" "12" + "clutch_kills" "12" + "pistol_kills" "18" + "opening_kills" "15" + "sniper_kills" "44" + "KDR" "1.103896" + "enemy_kills" "85" + "deaths" "77" + "matches_played" "5" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "16" + "KDR" "1.909091" + "enemy_kills" "21" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "10" + "KDR" "1.187500" + "enemy_kills" "19" + "deaths" "16" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "7" + "pistol_kills" "9" + "opening_kills" "7" + "sniper_kills" "18" + "KDR" "0.900000" + "enemy_kills" "45" + "deaths" "50" + "matches_played" "3" + } + } + "11" + { + "team" "12" + } + "12" + { + "team" "12" + } + "13" + { + "team" "61" + } + "14" + { + "team" "61" + } + "15" + { + "team" "61" + } + "16" + { + "team" "61" + } + "3" + { + "team" "12" + } + "4" + { + "team" "12" + } + "5" + { + "team" "12" + } + "6" + { + "team" "12" + } + } + } + "59062744" + { + "name" "Zeus" + "code" "zeus" + "dob" "1987-08-10" + "geo" "UA" + "events" + { + "7" + { + "team" "12" + "clutch_kills" "7" + "pistol_kills" "23" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.938000" + "enemy_kills" "90" + "deaths" "96" + "matches_played" "5" + } + "8" + { + "team" "12" + "clutch_kills" "7" + "pistol_kills" "31" + "opening_kills" "18" + "sniper_kills" "6" + "KDR" "1.042328" + "enemy_kills" "197" + "deaths" "189" + "matches_played" "11" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.947368" + "enemy_kills" "18" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.681818" + "enemy_kills" "15" + "deaths" "22" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "11" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "52" + "deaths" "52" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "1.135135" + "enemy_kills" "42" + "deaths" "37" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "1" + "pistol_kills" "12" + "opening_kills" "8" + "sniper_kills" "3" + "KDR" "1.186441" + "enemy_kills" "70" + "deaths" "59" + "matches_played" "4" + } + } + "9" + { + "team" "12" + "clutch_kills" "5" + "pistol_kills" "17" + "opening_kills" "10" + "sniper_kills" "3" + "KDR" "0.938462" + "enemy_kills" "122" + "deaths" "130" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.142857" + "enemy_kills" "16" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.272727" + "enemy_kills" "14" + "deaths" "11" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.903226" + "enemy_kills" "28" + "deaths" "31" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.933333" + "enemy_kills" "28" + "deaths" "30" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "5" + "pistol_kills" "7" + "opening_kills" "1" + "sniper_kills" "3" + "KDR" "0.818182" + "enemy_kills" "36" + "deaths" "44" + "matches_played" "2" + } + } + "10" + { + "team" "12" + "clutch_kills" "5" + "pistol_kills" "15" + "opening_kills" "9" + "sniper_kills" "1" + "KDR" "1" + "enemy_kills" "88" + "deaths" "88" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.357143" + "enemy_kills" "19" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "19" + "deaths" "19" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.909091" + "enemy_kills" "50" + "deaths" "55" + "matches_played" "3" + } + } + "11" + { + "team" "63" + } + "12" + { + "team" "63" + } + "13" + { + "team" "12" + } + "14" + { + "team" "12" + } + "15" + { + "team" "12" + } + "16" + { + "team" "12" + } + "1" + { + "team" "12" + } + "3" + { + "team" "12" + } + "4" + { + "team" "12" + } + "5" + { + "team" "12" + } + "6" + { + "team" "12" + } + } + } + "3648428" + { + "name" "seized" + "code" "seized" + "dob" "1994-09-09" + "geo" "RU" + "events" + { + "7" + { + "team" "12" + "clutch_kills" "7" + "pistol_kills" "19" + "opening_kills" "15" + "sniper_kills" "1" + "KDR" "0.887000" + "enemy_kills" "86" + "deaths" "97" + "matches_played" "5" + } + "8" + { + "team" "12" + "clutch_kills" "26" + "pistol_kills" "32" + "opening_kills" "30" + "sniper_kills" "15" + "KDR" "1.120219" + "enemy_kills" "205" + "deaths" "183" + "matches_played" "11" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.066667" + "enemy_kills" "16" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "6" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.850000" + "enemy_kills" "17" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "9" + "pistol_kills" "11" + "opening_kills" "10" + "sniper_kills" "3" + "KDR" "1.533333" + "enemy_kills" "69" + "deaths" "45" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "7" + "sniper_kills" "7" + "KDR" "0.818182" + "enemy_kills" "36" + "deaths" "44" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "6" + "pistol_kills" "11" + "opening_kills" "11" + "sniper_kills" "4" + "KDR" "1.135593" + "enemy_kills" "67" + "deaths" "59" + "matches_played" "4" + } + } + "9" + { + "team" "12" + "clutch_kills" "15" + "pistol_kills" "29" + "opening_kills" "21" + "sniper_kills" "10" + "KDR" "1.091603" + "enemy_kills" "143" + "deaths" "131" + "matches_played" "8" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "1.117647" + "enemy_kills" "19" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.700000" + "enemy_kills" "17" + "deaths" "10" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "6" + "pistol_kills" "11" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "1.785714" + "enemy_kills" "50" + "deaths" "28" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "0.965517" + "enemy_kills" "28" + "deaths" "29" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "5" + "sniper_kills" "4" + "KDR" "0.617021" + "enemy_kills" "29" + "deaths" "47" + "matches_played" "2" + } + } + "10" + { + "team" "12" + "clutch_kills" "8" + "pistol_kills" "21" + "opening_kills" "19" + "sniper_kills" "16" + "KDR" "1.070588" + "enemy_kills" "91" + "deaths" "85" + "matches_played" "5" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "8" + "KDR" "1.666667" + "enemy_kills" "20" + "deaths" "12" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.277778" + "enemy_kills" "23" + "deaths" "18" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "12" + "opening_kills" "10" + "sniper_kills" "8" + "KDR" "0.872727" + "enemy_kills" "48" + "deaths" "55" + "matches_played" "3" + } + } + "11" + { + "team" "12" + } + "12" + { + "team" "12" + } + "13" + { + "team" "43" + } + "1" + { + "team" "12" + } + "3" + { + "team" "12" + } + "4" + { + "team" "12" + } + "5" + { + "team" "12" + } + "6" + { + "team" "12" + } + } + } + "23429534" + { + "name" "Edward" + "code" "edward" + "dob" "1987-12-28" + "geo" "UA" + "events" + { + "7" + { + "team" "12" + "clutch_kills" "8" + "pistol_kills" "17" + "opening_kills" "12" + "sniper_kills" "1" + "KDR" "0.870000" + "enemy_kills" "87" + "deaths" "100" + "matches_played" "5" + } + "8" + { + "team" "12" + "clutch_kills" "13" + "pistol_kills" "34" + "opening_kills" "28" + "sniper_kills" "3" + "KDR" "0.956044" + "enemy_kills" "174" + "deaths" "182" + "matches_played" "11" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "20" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.636364" + "enemy_kills" "14" + "deaths" "22" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "12" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.020408" + "enemy_kills" "50" + "deaths" "49" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "1.027778" + "enemy_kills" "37" + "deaths" "36" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "8" + "sniper_kills" "2" + "KDR" "0.963636" + "enemy_kills" "53" + "deaths" "55" + "matches_played" "4" + } + } + "9" + { + "team" "12" + "clutch_kills" "16" + "pistol_kills" "27" + "opening_kills" "20" + "sniper_kills" "1" + "KDR" "1.393443" + "enemy_kills" "170" + "deaths" "122" + "matches_played" "8" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.909091" + "enemy_kills" "21" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "2.125000" + "enemy_kills" "17" + "deaths" "8" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.600000" + "enemy_kills" "40" + "deaths" "25" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "1.785714" + "enemy_kills" "50" + "deaths" "28" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "8" + "pistol_kills" "6" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "0.840000" + "enemy_kills" "42" + "deaths" "50" + "matches_played" "2" + } + } + "10" + { + "team" "12" + "clutch_kills" "5" + "pistol_kills" "18" + "opening_kills" "14" + "sniper_kills" "2" + "KDR" "1.325000" + "enemy_kills" "106" + "deaths" "80" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.200000" + "enemy_kills" "18" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.125000" + "enemy_kills" "18" + "deaths" "16" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "15" + "opening_kills" "9" + "sniper_kills" "2" + "KDR" "1.428571" + "enemy_kills" "70" + "deaths" "49" + "matches_played" "3" + } + } + "11" + { + "team" "12" + } + "12" + { + "team" "12" + } + "13" + { + "team" "12" + } + "14" + { + "team" "12" + } + "15" + { + "team" "12" + } + "3" + { + "team" "12" + } + "4" + { + "team" "12" + } + "5" + { + "team" "12" + } + "6" + { + "team" "12" + } + } + } + "156257548" + { + "name" "flamie" + "code" "flamie" + "dob" "1997-04-05" + "geo" "RU" + "events" + { + "7" + { + "team" "12" + "clutch_kills" "7" + "pistol_kills" "18" + "opening_kills" "12" + "sniper_kills" "1" + "KDR" "0.907000" + "enemy_kills" "97" + "deaths" "107" + "matches_played" "5" + } + "8" + { + "team" "12" + "clutch_kills" "18" + "pistol_kills" "32" + "opening_kills" "27" + "sniper_kills" "4" + "KDR" "1.076503" + "enemy_kills" "197" + "deaths" "183" + "matches_played" "11" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "1.210526" + "enemy_kills" "23" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.684211" + "enemy_kills" "13" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "11" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.918367" + "enemy_kills" "45" + "deaths" "49" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "1.263158" + "enemy_kills" "48" + "deaths" "38" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "6" + "pistol_kills" "10" + "opening_kills" "14" + "sniper_kills" "1" + "KDR" "1.172414" + "enemy_kills" "68" + "deaths" "58" + "matches_played" "4" + } + } + "9" + { + "team" "12" + "clutch_kills" "10" + "pistol_kills" "22" + "opening_kills" "25" + "sniper_kills" "2" + "KDR" "1.244444" + "enemy_kills" "168" + "deaths" "135" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.235294" + "enemy_kills" "21" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.333333" + "enemy_kills" "16" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.424242" + "enemy_kills" "47" + "deaths" "33" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "8" + "sniper_kills" "1" + "KDR" "1.620690" + "enemy_kills" "47" + "deaths" "29" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "6" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.840909" + "enemy_kills" "37" + "deaths" "44" + "matches_played" "2" + } + } + "10" + { + "team" "12" + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "14" + "sniper_kills" "3" + "KDR" "0.977528" + "enemy_kills" "87" + "deaths" "89" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.384615" + "enemy_kills" "18" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.333333" + "enemy_kills" "24" + "deaths" "18" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "8" + "opening_kills" "11" + "sniper_kills" "3" + "KDR" "0.775862" + "enemy_kills" "45" + "deaths" "58" + "matches_played" "3" + } + } + "11" + { + "team" "12" + } + "12" + { + "team" "12" + } + "13" + { + "team" "12" + } + "14" + { + "team" "12" + } + "15" + { + "team" "12" + } + "16" + { + "team" "12" + } + "4" + { + "team" "34" + } + "6" + { + "team" "25" + } + } + } + "26224992" + { + "name" "Xizt" + "code" "xizt" + "dob" "1991-02-22" + "geo" "SE" + "events" + { + "7" + { + "team" "1" + "clutch_kills" "5" + "pistol_kills" "16" + "opening_kills" "12" + "sniper_kills" "6" + "KDR" "0.915000" + "enemy_kills" "75" + "deaths" "82" + "matches_played" "5" + } + "8" + { + "team" "1" + "clutch_kills" "10" + "pistol_kills" "32" + "opening_kills" "20" + "sniper_kills" "12" + "KDR" "0.955882" + "enemy_kills" "130" + "deaths" "136" + "matches_played" "8" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "20" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.562500" + "enemy_kills" "25" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "7" + "sniper_kills" "8" + "KDR" "1.137931" + "enemy_kills" "33" + "deaths" "29" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.125000" + "enemy_kills" "36" + "deaths" "32" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "4" + "KDR" "0.410256" + "enemy_kills" "16" + "deaths" "39" + "matches_played" "2" + } + } + "9" + { + "team" "1" + "clutch_kills" "10" + "pistol_kills" "13" + "opening_kills" "13" + "sniper_kills" "7" + "KDR" "0.843972" + "enemy_kills" "119" + "deaths" "141" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.777778" + "enemy_kills" "21" + "deaths" "27" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.684211" + "enemy_kills" "13" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "7" + "KDR" "0.907407" + "enemy_kills" "49" + "deaths" "54" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.878049" + "enemy_kills" "36" + "deaths" "41" + "matches_played" "2" + } + } + "10" + { + "team" "1" + "clutch_kills" "6" + "pistol_kills" "12" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "0.902439" + "enemy_kills" "74" + "deaths" "82" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.777778" + "enemy_kills" "16" + "deaths" "9" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.650000" + "enemy_kills" "13" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "11" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.849057" + "enemy_kills" "45" + "deaths" "53" + "matches_played" "3" + } + } + "14" + { + "team" "6" + } + "15" + { + "team" "6" + } + "1" + { + "team" "1" + } + "3" + { + "team" "1" + } + "4" + { + "team" "1" + } + "5" + { + "team" "1" + } + "6" + { + "team" "1" + } + } + } + "93724" + { + "name" "f0rest" + "code" "forest" + "dob" "1988-06-10" + "geo" "SE" + "events" + { + "7" + { + "team" "1" + "clutch_kills" "3" + "pistol_kills" "21" + "opening_kills" "14" + "sniper_kills" "7" + "KDR" "1.080000" + "enemy_kills" "95" + "deaths" "88" + "matches_played" "5" + } + "8" + { + "team" "1" + "clutch_kills" "10" + "pistol_kills" "26" + "opening_kills" "27" + "sniper_kills" "44" + "KDR" "1.103704" + "enemy_kills" "149" + "deaths" "135" + "matches_played" "8" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "3" + "KDR" "1.105263" + "enemy_kills" "21" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "1.750000" + "enemy_kills" "28" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "10" + "opening_kills" "9" + "sniper_kills" "17" + "KDR" "1.777778" + "enemy_kills" "48" + "deaths" "27" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "8" + "sniper_kills" "15" + "KDR" "0.783784" + "enemy_kills" "29" + "deaths" "37" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "5" + "pistol_kills" "6" + "opening_kills" "0" + "sniper_kills" "8" + "KDR" "0.638889" + "enemy_kills" "23" + "deaths" "36" + "matches_played" "2" + } + } + "9" + { + "team" "1" + "clutch_kills" "14" + "pistol_kills" "25" + "opening_kills" "19" + "sniper_kills" "25" + "KDR" "1.055556" + "enemy_kills" "133" + "deaths" "126" + "matches_played" "7" + "stage0" + { + "clutch_kills" "7" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "4" + "KDR" "1.636364" + "enemy_kills" "36" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "4" + "KDR" "0.611111" + "enemy_kills" "11" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "6" + "sniper_kills" "6" + "KDR" "1" + "enemy_kills" "48" + "deaths" "48" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "8" + "opening_kills" "8" + "sniper_kills" "11" + "KDR" "1" + "enemy_kills" "38" + "deaths" "38" + "matches_played" "2" + } + } + "10" + { + "team" "1" + "clutch_kills" "6" + "pistol_kills" "28" + "opening_kills" "13" + "sniper_kills" "23" + "KDR" "1.011628" + "enemy_kills" "87" + "deaths" "86" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "8" + "KDR" "2.750000" + "enemy_kills" "22" + "deaths" "8" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "2" + "sniper_kills" "5" + "KDR" "1.105263" + "enemy_kills" "21" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "14" + "opening_kills" "9" + "sniper_kills" "10" + "KDR" "0.745763" + "enemy_kills" "44" + "deaths" "59" + "matches_played" "3" + } + } + "14" + { + "team" "1" + } + "15" + { + "team" "1" + } + "16" + { + "team" "1" + } + "1" + { + "team" "1" + } + "3" + { + "team" "1" + } + "4" + { + "team" "1" + } + "5" + { + "team" "1" + } + "6" + { + "team" "1" + } + } + } + "21771190" + { + "name" "GeT_RiGhT" + "code" "getright" + "dob" "1990-05-29" + "geo" "SE" + "events" + { + "7" + { + "team" "1" + "clutch_kills" "5" + "pistol_kills" "12" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.000000" + "enemy_kills" "78" + "deaths" "78" + "matches_played" "5" + } + "8" + { + "team" "1" + "clutch_kills" "7" + "pistol_kills" "20" + "opening_kills" "13" + "sniper_kills" "4" + "KDR" "1" + "enemy_kills" "124" + "deaths" "124" + "matches_played" "8" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.809524" + "enemy_kills" "17" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "3" + "KDR" "1.357143" + "enemy_kills" "19" + "deaths" "14" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.120000" + "enemy_kills" "28" + "deaths" "25" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.500000" + "enemy_kills" "42" + "deaths" "28" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "1" + "pistol_kills" "8" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "18" + "deaths" "36" + "matches_played" "2" + } + } + "9" + { + "team" "1" + "clutch_kills" "18" + "pistol_kills" "23" + "opening_kills" "34" + "sniper_kills" "15" + "KDR" "1.048485" + "enemy_kills" "173" + "deaths" "165" + "matches_played" "8" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "3" + "KDR" "1.178571" + "enemy_kills" "33" + "deaths" "28" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.470588" + "enemy_kills" "8" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "1.274510" + "enemy_kills" "65" + "deaths" "51" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "6" + "sniper_kills" "9" + "KDR" "0.707317" + "enemy_kills" "29" + "deaths" "41" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "8" + "pistol_kills" "1" + "opening_kills" "6" + "sniper_kills" "3" + "KDR" "1.357143" + "enemy_kills" "38" + "deaths" "28" + "matches_played" "1" + } + } + "10" + { + "team" "1" + "clutch_kills" "2" + "pistol_kills" "18" + "opening_kills" "8" + "sniper_kills" "1" + "KDR" "1.049383" + "enemy_kills" "85" + "deaths" "81" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "3.166667" + "enemy_kills" "19" + "deaths" "6" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.958333" + "enemy_kills" "23" + "deaths" "24" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.843137" + "enemy_kills" "43" + "deaths" "51" + "matches_played" "3" + } + } + "14" + { + "team" "1" + } + "15" + { + "team" "1" + } + "16" + { + "team" "1" + } + "1" + { + "team" "1" + } + "3" + { + "team" "1" + } + "4" + { + "team" "1" + } + "5" + { + "team" "1" + } + "6" + { + "team" "1" + } + } + } + "24295201" + { + "name" "friberg" + "code" "friberg" + "dob" "1991-10-19" + "geo" "SE" + "events" + { + "7" + { + "team" "1" + "clutch_kills" "7" + "pistol_kills" "12" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.685000" + "enemy_kills" "61" + "deaths" "89" + "matches_played" "5" + } + "8" + { + "team" "1" + "clutch_kills" "9" + "pistol_kills" "29" + "opening_kills" "16" + "sniper_kills" "0" + "KDR" "0.955224" + "enemy_kills" "128" + "deaths" "134" + "matches_played" "8" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.625000" + "enemy_kills" "15" + "deaths" "24" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.062500" + "enemy_kills" "17" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.222222" + "enemy_kills" "33" + "deaths" "27" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.533333" + "enemy_kills" "46" + "deaths" "30" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.459459" + "enemy_kills" "17" + "deaths" "37" + "matches_played" "2" + } + } + "9" + { + "team" "1" + "clutch_kills" "11" + "pistol_kills" "25" + "opening_kills" "14" + "sniper_kills" "0" + "KDR" "0.867188" + "enemy_kills" "111" + "deaths" "128" + "matches_played" "7" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.642857" + "enemy_kills" "18" + "deaths" "28" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "12" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.111111" + "enemy_kills" "50" + "deaths" "45" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.837838" + "enemy_kills" "31" + "deaths" "37" + "matches_played" "2" + } + } + "10" + { + "team" "1" + "clutch_kills" "9" + "pistol_kills" "16" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "0.822222" + "enemy_kills" "74" + "deaths" "90" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "0" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.538462" + "enemy_kills" "7" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.947368" + "enemy_kills" "18" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "8" + "pistol_kills" "13" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.844828" + "enemy_kills" "49" + "deaths" "58" + "matches_played" "3" + } + } + "1" + { + "team" "1" + } + "3" + { + "team" "1" + } + "4" + { + "team" "1" + } + "5" + { + "team" "1" + } + "6" + { + "team" "1" + } + } + } + "1345246" + { + "name" "allu" + "code" "allu" + "dob" "1992-05-20" + "geo" "FI" + "events" + { + "7" + { + "team" "1" + "clutch_kills" "12" + "pistol_kills" "20" + "opening_kills" "13" + "sniper_kills" "38" + "KDR" "1.216000" + "enemy_kills" "90" + "deaths" "74" + "matches_played" "5" + } + "8" + { + "team" "1" + "clutch_kills" "13" + "pistol_kills" "30" + "opening_kills" "17" + "sniper_kills" "78" + "KDR" "0.948148" + "enemy_kills" "128" + "deaths" "135" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "10" + "KDR" "0.863636" + "enemy_kills" "19" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "7" + "KDR" "0.578947" + "enemy_kills" "11" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "25" + "KDR" "1.379310" + "enemy_kills" "40" + "deaths" "29" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "12" + "opening_kills" "3" + "sniper_kills" "15" + "KDR" "1.166667" + "enemy_kills" "35" + "deaths" "30" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "6" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "21" + "KDR" "0.657143" + "enemy_kills" "23" + "deaths" "35" + "matches_played" "2" + } + } + "11" + { + "team" "61" + } + "12" + { + "team" "61" + } + "15" + { + "team" "84" + } + "16" + { + "team" "84" + } + "6" + { + "team" "1" + } + } + } + "64640068" + { + "name" "kennyS" + "code" "kennys" + "dob" "1995-05-19" + "geo" "FR" + "events" + { + "7" + { + "team" "46" + "clutch_kills" "11" + "pistol_kills" "28" + "opening_kills" "17" + "sniper_kills" "83" + "KDR" "1.000000" + "enemy_kills" "156" + "deaths" "156" + "matches_played" "9" + } + "8" + { + "team" "46" + "clutch_kills" "22" + "pistol_kills" "36" + "opening_kills" "31" + "sniper_kills" "103" + "KDR" "1.471429" + "enemy_kills" "206" + "deaths" "140" + "matches_played" "10" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "4" + "KDR" "2.142857" + "enemy_kills" "15" + "deaths" "7" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "12" + "KDR" "1.833333" + "enemy_kills" "22" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "11" + "opening_kills" "7" + "sniper_kills" "18" + "KDR" "1.250000" + "enemy_kills" "50" + "deaths" "40" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "15" + "pistol_kills" "18" + "opening_kills" "19" + "sniper_kills" "69" + "KDR" "1.469136" + "enemy_kills" "119" + "deaths" "81" + "matches_played" "5" + } + } + "9" + { + "team" "46" + "clutch_kills" "12" + "pistol_kills" "9" + "opening_kills" "11" + "sniper_kills" "34" + "KDR" "0.875000" + "enemy_kills" "56" + "deaths" "64" + "matches_played" "3" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "8" + "KDR" "0.833333" + "enemy_kills" "15" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "5" + "KDR" "0.500000" + "enemy_kills" "10" + "deaths" "20" + "matches_played" "1" + } + "stage5" + { + "clutch_kills" "6" + "pistol_kills" "4" + "opening_kills" "8" + "sniper_kills" "21" + "KDR" "1.192308" + "enemy_kills" "31" + "deaths" "26" + "matches_played" "1" + } + } + "10" + { + "team" "46" + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "24" + "KDR" "1.205882" + "enemy_kills" "41" + "deaths" "34" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "3" + "sniper_kills" "12" + "KDR" "1.055556" + "enemy_kills" "19" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "12" + "KDR" "1.375000" + "enemy_kills" "22" + "deaths" "16" + "matches_played" "1" + } + } + "11" + { + "team" "46" + } + "12" + { + "team" "59" + } + "13" + { + "team" "59" + } + "14" + { + "team" "59" + } + "15" + { + "team" "59" + } + "16" + { + "team" "59" + } + "1" + { + "team" "8" + } + "3" + { + "team" "7" + } + "4" + { + "team" "27" + } + "6" + { + "team" "27" + } + } + } + "40517167" + { + "name" "kioShiMa" + "code" "kioshima" + "dob" "1994-07-26" + "geo" "FR" + "events" + { + "7" + { + "team" "46" + "clutch_kills" "22" + "pistol_kills" "32" + "opening_kills" "25" + "sniper_kills" "2" + "KDR" "1.013000" + "enemy_kills" "156" + "deaths" "154" + "matches_played" "9" + } + "8" + { + "team" "46" + "clutch_kills" "6" + "pistol_kills" "36" + "opening_kills" "20" + "sniper_kills" "3" + "KDR" "1.133758" + "enemy_kills" "178" + "deaths" "157" + "matches_played" "10" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.909091" + "enemy_kills" "21" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.142857" + "enemy_kills" "16" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "6" + "sniper_kills" "2" + "KDR" "1.400000" + "enemy_kills" "49" + "deaths" "35" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "4" + "pistol_kills" "13" + "opening_kills" "10" + "sniper_kills" "1" + "KDR" "0.948454" + "enemy_kills" "92" + "deaths" "97" + "matches_played" "5" + } + } + "10" + { + "team" "61" + "clutch_kills" "8" + "pistol_kills" "12" + "opening_kills" "7" + "sniper_kills" "4" + "KDR" "0.810811" + "enemy_kills" "60" + "deaths" "74" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "1.176471" + "enemy_kills" "20" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.300000" + "enemy_kills" "6" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "8" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.918919" + "enemy_kills" "34" + "deaths" "37" + "matches_played" "2" + } + } + "11" + { + "team" "61" + } + "12" + { + "team" "61" + } + "15" + { + "team" "33" + } + "1" + { + "team" "7" + } + "3" + { + "team" "7" + } + "4" + { + "team" "35" + } + "5" + { + "team" "26" + } + "6" + { + "team" "46" + } + } + } + "17975624" + { + "name" "Happy" + "code" "happy" + "dob" "1991-11-23" + "geo" "FR" + "events" + { + "7" + { + "team" "46" + "clutch_kills" "14" + "pistol_kills" "37" + "opening_kills" "25" + "sniper_kills" "19" + "KDR" "1.024000" + "enemy_kills" "173" + "deaths" "169" + "matches_played" "9" + } + "8" + { + "team" "46" + "clutch_kills" "20" + "pistol_kills" "45" + "opening_kills" "33" + "sniper_kills" "32" + "KDR" "1.234286" + "enemy_kills" "216" + "deaths" "175" + "matches_played" "10" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "7" + "KDR" "2.100000" + "enemy_kills" "21" + "deaths" "10" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "3" + "KDR" "1.055556" + "enemy_kills" "19" + "deaths" "18" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "13" + "opening_kills" "12" + "sniper_kills" "4" + "KDR" "1.295455" + "enemy_kills" "57" + "deaths" "44" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "14" + "pistol_kills" "22" + "opening_kills" "13" + "sniper_kills" "18" + "KDR" "1.155340" + "enemy_kills" "119" + "deaths" "103" + "matches_played" "5" + } + } + "9" + { + "team" "46" + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "5" + "sniper_kills" "2" + "KDR" "1.108108" + "enemy_kills" "41" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "0.888889" + "enemy_kills" "16" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.315789" + "enemy_kills" "25" + "deaths" "19" + "matches_played" "1" + } + } + "10" + { + "team" "46" + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.777778" + "enemy_kills" "28" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "1.062500" + "enemy_kills" "17" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.550000" + "enemy_kills" "11" + "deaths" "20" + "matches_played" "1" + } + } + "11" + { + "team" "46" + } + "13" + { + "team" "46" + } + "1" + { + "team" "8" + } + "3" + { + "team" "26" + } + "4" + { + "team" "26" + } + "5" + { + "team" "26" + } + "6" + { + "team" "46" + } + } + } + "29478439" + { + "name" "apEX" + "code" "apex" + "dob" "1993-02-22" + "geo" "FR" + "events" + { + "7" + { + "team" "46" + "clutch_kills" "2" + "pistol_kills" "38" + "opening_kills" "30" + "sniper_kills" "0" + "KDR" "1.098000" + "enemy_kills" "190" + "deaths" "173" + "matches_played" "9" + } + "8" + { + "team" "46" + "clutch_kills" "3" + "pistol_kills" "48" + "opening_kills" "37" + "sniper_kills" "1" + "KDR" "1.112360" + "enemy_kills" "198" + "deaths" "178" + "matches_played" "10" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.636364" + "enemy_kills" "18" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.411765" + "enemy_kills" "24" + "deaths" "17" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "12" + "sniper_kills" "1" + "KDR" "1.463415" + "enemy_kills" "60" + "deaths" "41" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "0" + "pistol_kills" "30" + "opening_kills" "19" + "sniper_kills" "0" + "KDR" "0.880734" + "enemy_kills" "96" + "deaths" "109" + "matches_played" "5" + } + } + "9" + { + "team" "46" + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.975610" + "enemy_kills" "40" + "deaths" "41" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.684211" + "enemy_kills" "13" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.227273" + "enemy_kills" "27" + "deaths" "22" + "matches_played" "1" + } + } + "10" + { + "team" "46" + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "8" + "sniper_kills" "1" + "KDR" "0.891892" + "enemy_kills" "33" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.833333" + "enemy_kills" "15" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.947368" + "enemy_kills" "18" + "deaths" "19" + "matches_played" "1" + } + } + "11" + { + "team" "46" + } + "12" + { + "team" "59" + } + "13" + { + "team" "59" + } + "15" + { + "team" "89" + } + "16" + { + "team" "89" + } + "1" + { + "team" "7" + } + "3" + { + "team" "26" + } + "4" + { + "team" "26" + } + "6" + { + "team" "27" + } + "18" + { + "team" "89" + } + "19" + { + "team" "89" + } + "20" + { + "team" "89" + } + } + } + "444845" + { + "name" "NBK-" + "code" "nbk" + "dob" "1994-06-05" + "geo" "FR" + "events" + { + "7" + { + "team" "46" + "clutch_kills" "18" + "pistol_kills" "33" + "opening_kills" "34" + "sniper_kills" "8" + "KDR" "1.045000" + "enemy_kills" "163" + "deaths" "156" + "matches_played" "9" + } + "8" + { + "team" "46" + "clutch_kills" "12" + "pistol_kills" "37" + "opening_kills" "17" + "sniper_kills" "9" + "KDR" "1.214286" + "enemy_kills" "187" + "deaths" "154" + "matches_played" "10" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.636364" + "enemy_kills" "18" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "2.090909" + "enemy_kills" "23" + "deaths" "11" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.256410" + "enemy_kills" "49" + "deaths" "39" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "5" + "pistol_kills" "19" + "opening_kills" "9" + "sniper_kills" "9" + "KDR" "1.043011" + "enemy_kills" "97" + "deaths" "93" + "matches_played" "5" + } + } + "9" + { + "team" "46" + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.750000" + "enemy_kills" "30" + "deaths" "40" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.526316" + "enemy_kills" "10" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.952381" + "enemy_kills" "20" + "deaths" "21" + "matches_played" "1" + } + } + "10" + { + "team" "46" + "clutch_kills" "0" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.684211" + "enemy_kills" "26" + "deaths" "38" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.388889" + "enemy_kills" "7" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.950000" + "enemy_kills" "19" + "deaths" "20" + "matches_played" "1" + } + } + "11" + { + "team" "46" + } + "12" + { + "team" "59" + } + "13" + { + "team" "59" + } + "15" + { + "team" "89" + } + "16" + { + "team" "89" + } + "1" + { + "team" "4" + } + "3" + { + "team" "27" + } + "4" + { + "team" "27" + } + "5" + { + "team" "26" + } + "6" + { + "team" "46" + } + } + } + "29164525" + { + "name" "karrigan" + "code" "karrigan" + "dob" "1990-04-14" + "geo" "DK" + "events" + { + "7" + { + "team" "58" + "clutch_kills" "7" + "pistol_kills" "24" + "opening_kills" "27" + "sniper_kills" "6" + "KDR" "1.140000" + "enemy_kills" "138" + "deaths" "121" + "matches_played" "7" + } + "8" + { + "team" "58" + "clutch_kills" "9" + "pistol_kills" "21" + "opening_kills" "10" + "sniper_kills" "15" + "KDR" "0.937500" + "enemy_kills" "60" + "deaths" "64" + "matches_played" "4" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "1.187500" + "enemy_kills" "19" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "4" + "KDR" "1.333333" + "enemy_kills" "12" + "deaths" "9" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "10" + "opening_kills" "5" + "sniper_kills" "9" + "KDR" "0.743590" + "enemy_kills" "29" + "deaths" "39" + "matches_played" "2" + } + } + "9" + { + "team" "60" + "clutch_kills" "6" + "pistol_kills" "11" + "opening_kills" "12" + "sniper_kills" "2" + "KDR" "0.823529" + "enemy_kills" "84" + "deaths" "102" + "matches_played" "6" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.590909" + "enemy_kills" "13" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.933333" + "enemy_kills" "14" + "deaths" "15" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.967742" + "enemy_kills" "30" + "deaths" "31" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "4" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.794118" + "enemy_kills" "27" + "deaths" "34" + "matches_played" "2" + } + } + "10" + { + "team" "60" + "clutch_kills" "9" + "pistol_kills" "28" + "opening_kills" "40" + "sniper_kills" "84" + "KDR" "1.029197" + "enemy_kills" "141" + "deaths" "137" + "matches_played" "7" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "7" + "sniper_kills" "15" + "KDR" "1.058824" + "enemy_kills" "18" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "6" + "KDR" "0.500000" + "enemy_kills" "8" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "20" + "opening_kills" "22" + "sniper_kills" "45" + "KDR" "1.362069" + "enemy_kills" "79" + "deaths" "58" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "10" + "sniper_kills" "18" + "KDR" "0.782609" + "enemy_kills" "36" + "deaths" "46" + "matches_played" "2" + } + } + "11" + { + "team" "61" + } + "12" + { + "team" "61" + } + "13" + { + "team" "61" + } + "14" + { + "team" "61" + } + "16" + { + "team" "29" + } + "1" + { + "team" "13" + } + "3" + { + "team" "30" + } + "4" + { + "team" "10" + } + "6" + { + "team" "51" + } + "18" + { + "team" "61" + } + "19" + { + "team" "61" + } + "20" + { + "team" "61" + } + } + } + "27447936" + { + "name" "device" + "code" "device" + "dob" "1995-08-09" + "geo" "DK" + "events" + { + "7" + { + "team" "58" + "clutch_kills" "16" + "pistol_kills" "40" + "opening_kills" "13" + "sniper_kills" "39" + "KDR" "1.461000" + "enemy_kills" "130" + "deaths" "89" + "matches_played" "7" + } + "8" + { + "team" "58" + "clutch_kills" "12" + "pistol_kills" "15" + "opening_kills" "7" + "sniper_kills" "12" + "KDR" "0.968750" + "enemy_kills" "62" + "deaths" "64" + "matches_played" "4" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "0" + "sniper_kills" "5" + "KDR" "1.416667" + "enemy_kills" "17" + "deaths" "12" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "2" + "KDR" "1.071429" + "enemy_kills" "15" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "7" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "5" + "KDR" "0.789474" + "enemy_kills" "30" + "deaths" "38" + "matches_played" "2" + } + } + "9" + { + "team" "60" + "clutch_kills" "10" + "pistol_kills" "23" + "opening_kills" "20" + "sniper_kills" "63" + "KDR" "1.260870" + "enemy_kills" "116" + "deaths" "92" + "matches_played" "6" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "14" + "KDR" "1.750000" + "enemy_kills" "28" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "5" + "sniper_kills" "11" + "KDR" "1.666667" + "enemy_kills" "20" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "11" + "opening_kills" "7" + "sniper_kills" "19" + "KDR" "1.480000" + "enemy_kills" "37" + "deaths" "25" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "19" + "KDR" "0.794872" + "enemy_kills" "31" + "deaths" "39" + "matches_played" "2" + } + } + "10" + { + "team" "60" + "clutch_kills" "24" + "pistol_kills" "32" + "opening_kills" "25" + "sniper_kills" "42" + "KDR" "1.353383" + "enemy_kills" "180" + "deaths" "133" + "matches_played" "7" + "stage0" + { + "clutch_kills" "6" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "1.687500" + "enemy_kills" "27" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.888889" + "enemy_kills" "16" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "7" + "pistol_kills" "14" + "opening_kills" "10" + "sniper_kills" "7" + "KDR" "1.232143" + "enemy_kills" "69" + "deaths" "56" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "8" + "pistol_kills" "9" + "opening_kills" "12" + "sniper_kills" "34" + "KDR" "1.581395" + "enemy_kills" "68" + "deaths" "43" + "matches_played" "2" + } + } + "11" + { + "team" "60" + } + "12" + { + "team" "60" + } + "13" + { + "team" "60" + } + "14" + { + "team" "60" + } + "15" + { + "team" "60" + } + "16" + { + "team" "60" + } + "1" + { + "team" "10" + } + "3" + { + "team" "24" + } + "4" + { + "team" "24" + } + "5" + { + "team" "24" + } + "6" + { + "team" "51" + } + "18" + { + "team" "1" + } + } + } + "44589228" + { + "name" "dupreeh" + "code" "dupreeh" + "dob" "1993-03-26" + "geo" "DK" + "events" + { + "7" + { + "team" "58" + "clutch_kills" "5" + "pistol_kills" "26" + "opening_kills" "18" + "sniper_kills" "0" + "KDR" "1.208000" + "enemy_kills" "122" + "deaths" "101" + "matches_played" "7" + } + "8" + { + "team" "58" + "clutch_kills" "6" + "pistol_kills" "13" + "opening_kills" "15" + "sniper_kills" "6" + "KDR" "1.203125" + "enemy_kills" "77" + "deaths" "64" + "matches_played" "4" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.714286" + "enemy_kills" "24" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "1.750000" + "enemy_kills" "21" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "7" + "sniper_kills" "5" + "KDR" "0.842105" + "enemy_kills" "32" + "deaths" "38" + "matches_played" "2" + } + } + "9" + { + "team" "60" + "clutch_kills" "6" + "pistol_kills" "21" + "opening_kills" "27" + "sniper_kills" "1" + "KDR" "1.189474" + "enemy_kills" "113" + "deaths" "95" + "matches_played" "6" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.888889" + "enemy_kills" "16" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.416667" + "enemy_kills" "17" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "10" + "opening_kills" "12" + "sniper_kills" "0" + "KDR" "1.857143" + "enemy_kills" "52" + "deaths" "28" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "7" + "sniper_kills" "1" + "KDR" "0.756757" + "enemy_kills" "28" + "deaths" "37" + "matches_played" "2" + } + } + "10" + { + "team" "60" + "clutch_kills" "3" + "pistol_kills" "11" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.825000" + "enemy_kills" "33" + "deaths" "40" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.952381" + "enemy_kills" "20" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.684211" + "enemy_kills" "13" + "deaths" "19" + "matches_played" "1" + } + } + "11" + { + "team" "60" + } + "12" + { + "team" "60" + } + "13" + { + "team" "60" + } + "14" + { + "team" "60" + } + "15" + { + "team" "60" + } + "16" + { + "team" "60" + } + "1" + { + "team" "10" + } + "3" + { + "team" "24" + } + "4" + { + "team" "24" + } + "5" + { + "team" "24" + } + "6" + { + "team" "51" + } + "18" + { + "team" "60" + } + "19" + { + "team" "89" + } + "20" + { + "team" "89" + } + } + } + "30416534" + { + "name" "Xyp9x" + "code" "xyp9x" + "dob" "1995-09-11" + "geo" "DK" + "events" + { + "7" + { + "team" "58" + "clutch_kills" "10" + "pistol_kills" "18" + "opening_kills" "15" + "sniper_kills" "0" + "KDR" "1.263000" + "enemy_kills" "125" + "deaths" "99" + "matches_played" "7" + } + "8" + { + "team" "58" + "clutch_kills" "3" + "pistol_kills" "16" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "1.044776" + "enemy_kills" "70" + "deaths" "67" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.125000" + "enemy_kills" "18" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.214286" + "enemy_kills" "17" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "10" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.945946" + "enemy_kills" "35" + "deaths" "37" + "matches_played" "2" + } + } + "9" + { + "team" "60" + "clutch_kills" "14" + "pistol_kills" "18" + "opening_kills" "12" + "sniper_kills" "0" + "KDR" "1.125000" + "enemy_kills" "99" + "deaths" "88" + "matches_played" "6" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.277778" + "enemy_kills" "23" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.454545" + "enemy_kills" "16" + "deaths" "11" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.076923" + "enemy_kills" "28" + "deaths" "26" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.969697" + "enemy_kills" "32" + "deaths" "33" + "matches_played" "2" + } + } + "10" + { + "team" "60" + "clutch_kills" "21" + "pistol_kills" "22" + "opening_kills" "11" + "sniper_kills" "4" + "KDR" "1.109489" + "enemy_kills" "152" + "deaths" "137" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.882353" + "enemy_kills" "15" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.529412" + "enemy_kills" "9" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "12" + "pistol_kills" "13" + "opening_kills" "5" + "sniper_kills" "4" + "KDR" "1.537037" + "enemy_kills" "83" + "deaths" "54" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "7" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.918367" + "enemy_kills" "45" + "deaths" "49" + "matches_played" "2" + } + } + "11" + { + "team" "60" + } + "12" + { + "team" "60" + } + "13" + { + "team" "60" + } + "14" + { + "team" "60" + } + "15" + { + "team" "60" + } + "16" + { + "team" "60" + } + "1" + { + "team" "10" + } + "3" + { + "team" "24" + } + "4" + { + "team" "24" + } + "5" + { + "team" "24" + } + "6" + { + "team" "51" + } + "18" + { + "team" "60" + } + "19" + { + "team" "60" + } + } + } + "18062315" + { + "name" "cajunb" + "code" "cajunb" + "dob" "1989-12-13" + "geo" "DK" + "events" + { + "7" + { + "team" "58" + "clutch_kills" "5" + "pistol_kills" "18" + "opening_kills" "15" + "sniper_kills" "17" + "KDR" "1.000000" + "enemy_kills" "101" + "deaths" "101" + "matches_played" "7" + } + "8" + { + "team" "58" + "clutch_kills" "6" + "pistol_kills" "14" + "opening_kills" "12" + "sniper_kills" "21" + "KDR" "1.166667" + "enemy_kills" "70" + "deaths" "60" + "matches_played" "4" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "15" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "10" + "KDR" "2.666667" + "enemy_kills" "24" + "deaths" "9" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "6" + "sniper_kills" "11" + "KDR" "0.861111" + "enemy_kills" "31" + "deaths" "36" + "matches_played" "2" + } + } + "9" + { + "team" "60" + "clutch_kills" "4" + "pistol_kills" "18" + "opening_kills" "11" + "sniper_kills" "12" + "KDR" "1.170213" + "enemy_kills" "110" + "deaths" "94" + "matches_played" "6" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "4" + "KDR" "1.600000" + "enemy_kills" "24" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "2" + "KDR" "1.461538" + "enemy_kills" "19" + "deaths" "13" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "8" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.218750" + "enemy_kills" "39" + "deaths" "32" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "6" + "KDR" "0.823529" + "enemy_kills" "28" + "deaths" "34" + "matches_played" "2" + } + } + "10" + { + "team" "24" + "clutch_kills" "5" + "pistol_kills" "30" + "opening_kills" "17" + "sniper_kills" "43" + "KDR" "1.157303" + "enemy_kills" "103" + "deaths" "89" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "1" + "sniper_kills" "11" + "KDR" "1.105263" + "enemy_kills" "21" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "5" + "KDR" "4.333333" + "enemy_kills" "13" + "deaths" "3" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "20" + "opening_kills" "15" + "sniper_kills" "27" + "KDR" "1.029851" + "enemy_kills" "69" + "deaths" "67" + "matches_played" "3" + } + } + "11" + { + "team" "68" + } + "12" + { + "team" "68" + } + "13" + { + "team" "68" + } + "14" + { + "team" "66" + } + "1" + { + "team" "13" + } + "3" + { + "team" "24" + } + "4" + { + "team" "10" + } + "5" + { + "team" "24" + } + "6" + { + "team" "51" + } + } + } + "460206" + { + "name" "NEO" + "code" "neo" + "dob" "1987-06-15" + "geo" "PL" + "events" + { + "7" + { + "team" "31" + "clutch_kills" "13" + "pistol_kills" "33" + "opening_kills" "13" + "sniper_kills" "32" + "KDR" "1.204000" + "enemy_kills" "118" + "deaths" "98" + "matches_played" "7" + } + "8" + { + "team" "31" + "clutch_kills" "9" + "pistol_kills" "14" + "opening_kills" "18" + "sniper_kills" "24" + "KDR" "0.848101" + "enemy_kills" "67" + "deaths" "79" + "matches_played" "4" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "3" + "KDR" "1" + "enemy_kills" "18" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.714286" + "enemy_kills" "10" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "7" + "opening_kills" "11" + "sniper_kills" "20" + "KDR" "0.829787" + "enemy_kills" "39" + "deaths" "47" + "matches_played" "2" + } + } + "9" + { + "team" "31" + "clutch_kills" "16" + "pistol_kills" "23" + "opening_kills" "25" + "sniper_kills" "38" + "KDR" "1.030534" + "enemy_kills" "135" + "deaths" "131" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.454545" + "enemy_kills" "16" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "1" + "KDR" "0.470588" + "enemy_kills" "8" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "7" + "pistol_kills" "13" + "opening_kills" "11" + "sniper_kills" "9" + "KDR" "1.295455" + "enemy_kills" "57" + "deaths" "44" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "8" + "pistol_kills" "7" + "opening_kills" "10" + "sniper_kills" "28" + "KDR" "0.915254" + "enemy_kills" "54" + "deaths" "59" + "matches_played" "3" + } + } + "10" + { + "team" "31" + "clutch_kills" "16" + "pistol_kills" "27" + "opening_kills" "18" + "sniper_kills" "13" + "KDR" "0.907895" + "enemy_kills" "138" + "deaths" "152" + "matches_played" "7" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "1.266667" + "enemy_kills" "19" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.869565" + "enemy_kills" "20" + "deaths" "23" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "11" + "opening_kills" "6" + "sniper_kills" "4" + "KDR" "1" + "enemy_kills" "46" + "deaths" "46" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "7" + "pistol_kills" "12" + "opening_kills" "5" + "sniper_kills" "7" + "KDR" "0.779412" + "enemy_kills" "53" + "deaths" "68" + "matches_played" "3" + } + } + "11" + { + "team" "31" + } + "12" + { + "team" "31" + } + "13" + { + "team" "31" + } + "14" + { + "team" "31" + } + "16" + { + "team" "61" + } + "1" + { + "team" "11" + } + "3" + { + "team" "31" + } + "4" + { + "team" "31" + } + "5" + { + "team" "31" + } + "6" + { + "team" "31" + } + } + } + "13580090" + { + "name" "pashaBiceps" + "code" "pasha" + "dob" "1988-04-11" + "geo" "PL" + "events" + { + "7" + { + "team" "31" + "clutch_kills" "5" + "pistol_kills" "13" + "opening_kills" "21" + "sniper_kills" "1" + "KDR" "0.900000" + "enemy_kills" "108" + "deaths" "120" + "matches_played" "7" + } + "8" + { + "team" "31" + "clutch_kills" "8" + "pistol_kills" "17" + "opening_kills" "13" + "sniper_kills" "4" + "KDR" "1.011494" + "enemy_kills" "88" + "deaths" "87" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.925926" + "enemy_kills" "25" + "deaths" "27" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.357143" + "enemy_kills" "19" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "7" + "pistol_kills" "13" + "opening_kills" "5" + "sniper_kills" "3" + "KDR" "0.956522" + "enemy_kills" "44" + "deaths" "46" + "matches_played" "2" + } + } + "9" + { + "team" "31" + "clutch_kills" "10" + "pistol_kills" "19" + "opening_kills" "20" + "sniper_kills" "11" + "KDR" "0.910345" + "enemy_kills" "132" + "deaths" "145" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.153846" + "enemy_kills" "15" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.600000" + "enemy_kills" "9" + "deaths" "15" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "5" + "opening_kills" "9" + "sniper_kills" "7" + "KDR" "1.106383" + "enemy_kills" "52" + "deaths" "47" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "6" + "pistol_kills" "11" + "opening_kills" "6" + "sniper_kills" "3" + "KDR" "0.800000" + "enemy_kills" "56" + "deaths" "70" + "matches_played" "3" + } + } + "10" + { + "team" "31" + "clutch_kills" "11" + "pistol_kills" "24" + "opening_kills" "24" + "sniper_kills" "28" + "KDR" "0.957747" + "enemy_kills" "136" + "deaths" "142" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "6" + "KDR" "0.866667" + "enemy_kills" "13" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "2" + "KDR" "0.833333" + "enemy_kills" "15" + "deaths" "18" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "8" + "sniper_kills" "17" + "KDR" "1.191489" + "enemy_kills" "56" + "deaths" "47" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "7" + "pistol_kills" "13" + "opening_kills" "14" + "sniper_kills" "3" + "KDR" "0.838710" + "enemy_kills" "52" + "deaths" "62" + "matches_played" "3" + } + } + "11" + { + "team" "31" + } + "12" + { + "team" "31" + } + "13" + { + "team" "31" + } + "14" + { + "team" "31" + } + "1" + { + "team" "11" + } + "3" + { + "team" "31" + } + "4" + { + "team" "31" + } + "5" + { + "team" "31" + } + "6" + { + "team" "31" + } + } + } + "234052" + { + "name" "TaZ" + "code" "taz" + "dob" "1986-06-06" + "geo" "PL" + "events" + { + "7" + { + "team" "31" + "clutch_kills" "8" + "pistol_kills" "28" + "opening_kills" "23" + "sniper_kills" "0" + "KDR" "1.311000" + "enemy_kills" "135" + "deaths" "103" + "matches_played" "7" + } + "8" + { + "team" "31" + "clutch_kills" "5" + "pistol_kills" "13" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.915663" + "enemy_kills" "76" + "deaths" "83" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.300000" + "enemy_kills" "26" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.142857" + "enemy_kills" "16" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "0.693878" + "enemy_kills" "34" + "deaths" "49" + "matches_played" "2" + } + } + "9" + { + "team" "31" + "clutch_kills" "16" + "pistol_kills" "19" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "1.023622" + "enemy_kills" "130" + "deaths" "127" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.125000" + "enemy_kills" "9" + "deaths" "8" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.705882" + "enemy_kills" "12" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "9" + "pistol_kills" "5" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.227273" + "enemy_kills" "54" + "deaths" "44" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.948276" + "enemy_kills" "55" + "deaths" "58" + "matches_played" "3" + } + } + "10" + { + "team" "31" + "clutch_kills" "8" + "pistol_kills" "35" + "opening_kills" "30" + "sniper_kills" "0" + "KDR" "1.026316" + "enemy_kills" "156" + "deaths" "152" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.166667" + "enemy_kills" "21" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.150000" + "enemy_kills" "23" + "deaths" "20" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "14" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.127660" + "enemy_kills" "53" + "deaths" "47" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "10" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "0.880597" + "enemy_kills" "59" + "deaths" "67" + "matches_played" "3" + } + } + "11" + { + "team" "31" + } + "12" + { + "team" "31" + } + "13" + { + "team" "31" + } + "1" + { + "team" "11" + } + "3" + { + "team" "31" + } + "4" + { + "team" "31" + } + "5" + { + "team" "31" + } + "6" + { + "team" "31" + } + } + } + "21875845" + { + "name" "Snax" + "code" "snax" + "dob" "1993-07-05" + "geo" "PL" + "events" + { + "7" + { + "team" "31" + "clutch_kills" "3" + "pistol_kills" "17" + "opening_kills" "24" + "sniper_kills" "0" + "KDR" "1.176000" + "enemy_kills" "127" + "deaths" "108" + "matches_played" "7" + } + "8" + { + "team" "31" + "clutch_kills" "6" + "pistol_kills" "20" + "opening_kills" "18" + "sniper_kills" "11" + "KDR" "1.402597" + "enemy_kills" "108" + "deaths" "77" + "matches_played" "4" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.700000" + "enemy_kills" "34" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "5" + "KDR" "2.083333" + "enemy_kills" "25" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "11" + "opening_kills" "9" + "sniper_kills" "6" + "KDR" "1.088889" + "enemy_kills" "49" + "deaths" "45" + "matches_played" "2" + } + } + "9" + { + "team" "31" + "clutch_kills" "11" + "pistol_kills" "30" + "opening_kills" "19" + "sniper_kills" "45" + "KDR" "1.037037" + "enemy_kills" "140" + "deaths" "135" + "matches_played" "8" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "11" + "KDR" "2.125000" + "enemy_kills" "17" + "deaths" "8" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "9" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "13" + "opening_kills" "6" + "sniper_kills" "20" + "KDR" "1.261905" + "enemy_kills" "53" + "deaths" "42" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "11" + "sniper_kills" "14" + "KDR" "0.910448" + "enemy_kills" "61" + "deaths" "67" + "matches_played" "3" + } + } + "10" + { + "team" "31" + "clutch_kills" "19" + "pistol_kills" "32" + "opening_kills" "21" + "sniper_kills" "70" + "KDR" "1.116279" + "enemy_kills" "144" + "deaths" "129" + "matches_played" "7" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "6" + "sniper_kills" "13" + "KDR" "2" + "enemy_kills" "28" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "0" + "sniper_kills" "9" + "KDR" "1.533333" + "enemy_kills" "23" + "deaths" "15" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "8" + "sniper_kills" "25" + "KDR" "0.976744" + "enemy_kills" "42" + "deaths" "43" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "8" + "pistol_kills" "13" + "opening_kills" "7" + "sniper_kills" "23" + "KDR" "0.894737" + "enemy_kills" "51" + "deaths" "57" + "matches_played" "3" + } + } + "11" + { + "team" "31" + } + "12" + { + "team" "31" + } + "13" + { + "team" "31" + } + "14" + { + "team" "29" + } + "1" + { + "team" "11" + } + "3" + { + "team" "31" + } + "4" + { + "team" "31" + } + "5" + { + "team" "31" + } + "6" + { + "team" "31" + } + } + } + "18860354" + { + "name" "byali" + "code" "byali" + "dob" "1994-04-30" + "geo" "PL" + "events" + { + "7" + { + "team" "31" + "clutch_kills" "10" + "pistol_kills" "19" + "opening_kills" "20" + "sniper_kills" "0" + "KDR" "1.182000" + "enemy_kills" "130" + "deaths" "110" + "matches_played" "7" + } + "8" + { + "team" "31" + "clutch_kills" "9" + "pistol_kills" "11" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.118421" + "enemy_kills" "85" + "deaths" "76" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.043478" + "enemy_kills" "24" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.916667" + "enemy_kills" "23" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.926829" + "enemy_kills" "38" + "deaths" "41" + "matches_played" "2" + } + } + "9" + { + "team" "31" + "clutch_kills" "12" + "pistol_kills" "31" + "opening_kills" "18" + "sniper_kills" "0" + "KDR" "1.097744" + "enemy_kills" "146" + "deaths" "133" + "matches_played" "8" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "2.571429" + "enemy_kills" "18" + "deaths" "7" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.687500" + "enemy_kills" "11" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.041667" + "enemy_kills" "50" + "deaths" "48" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "9" + "pistol_kills" "15" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.080645" + "enemy_kills" "67" + "deaths" "62" + "matches_played" "3" + } + } + "10" + { + "team" "31" + "clutch_kills" "5" + "pistol_kills" "27" + "opening_kills" "22" + "sniper_kills" "0" + "KDR" "0.863946" + "enemy_kills" "127" + "deaths" "147" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.125000" + "enemy_kills" "18" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.978261" + "enemy_kills" "45" + "deaths" "46" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "5" + "pistol_kills" "11" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.707692" + "enemy_kills" "46" + "deaths" "65" + "matches_played" "3" + } + } + "11" + { + "team" "31" + } + "12" + { + "team" "31" + } + "13" + { + "team" "31" + } + "14" + { + "team" "31" + } + "1" + { + "team" "11" + } + "3" + { + "team" "31" + } + "4" + { + "team" "31" + } + "5" + { + "team" "31" + } + "6" + { + "team" "31" + } + } + } + "28273376" + { + "name" "chrisJ" + "code" "chrisj" + "dob" "1990-05-25" + "geo" "NL" + "events" + { + "7" + { + "team" "29" + "clutch_kills" "6" + "pistol_kills" "10" + "opening_kills" "8" + "sniper_kills" "1" + "KDR" "0.818000" + "enemy_kills" "36" + "deaths" "44" + "matches_played" "2" + } + "8" + { + "team" "29" + "clutch_kills" "11" + "pistol_kills" "28" + "opening_kills" "22" + "sniper_kills" "46" + "KDR" "1.010989" + "enemy_kills" "92" + "deaths" "91" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "3" + "KDR" "0.750000" + "enemy_kills" "15" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "6" + "sniper_kills" "11" + "KDR" "1.363636" + "enemy_kills" "15" + "deaths" "11" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "9" + "pistol_kills" "22" + "opening_kills" "15" + "sniper_kills" "32" + "KDR" "1.033333" + "enemy_kills" "62" + "deaths" "60" + "matches_played" "3" + } + } + "9" + { + "team" "29" + "clutch_kills" "12" + "pistol_kills" "24" + "opening_kills" "18" + "sniper_kills" "61" + "KDR" "1.064815" + "enemy_kills" "115" + "deaths" "108" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "6" + "sniper_kills" "12" + "KDR" "1.136364" + "enemy_kills" "25" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "7" + "pistol_kills" "8" + "opening_kills" "6" + "sniper_kills" "27" + "KDR" "1.282051" + "enemy_kills" "50" + "deaths" "39" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "22" + "KDR" "0.851064" + "enemy_kills" "40" + "deaths" "47" + "matches_played" "3" + } + } + "10" + { + "team" "29" + "clutch_kills" "6" + "pistol_kills" "17" + "opening_kills" "10" + "sniper_kills" "44" + "KDR" "1.042857" + "enemy_kills" "73" + "deaths" "70" + "matches_played" "4" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "11" + "KDR" "1" + "enemy_kills" "20" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "13" + "KDR" "1.400000" + "enemy_kills" "21" + "deaths" "15" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "4" + "sniper_kills" "20" + "KDR" "0.914286" + "enemy_kills" "32" + "deaths" "35" + "matches_played" "2" + } + } + "11" + { + "team" "29" + } + "12" + { + "team" "29" + } + "13" + { + "team" "29" + } + "14" + { + "team" "29" + } + "16" + { + "team" "29" + } + "3" + { + "team" "29" + } + } + } + "1162165" + { + "name" "gob b" + "code" "gobb" + "dob" "1987-07-10" + "geo" "DE" + "events" + { + "7" + { + "team" "29" + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.833000" + "enemy_kills" "35" + "deaths" "42" + "matches_played" "2" + } + "8" + { + "team" "29" + "clutch_kills" "4" + "pistol_kills" "14" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.616162" + "enemy_kills" "61" + "deaths" "99" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.894737" + "enemy_kills" "17" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.764706" + "enemy_kills" "13" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.492063" + "enemy_kills" "31" + "deaths" "63" + "matches_played" "3" + } + } + "12" + { + "team" "69" + } + "13" + { + "team" "69" + } + "14" + { + "team" "69" + } + "15" + { + "team" "69" + } + } + } + "31185376" + { + "name" "denis" + "code" "denis" + "dob" "1994-08-18" + "geo" "DE" + "events" + { + "7" + { + "team" "29" + "clutch_kills" "3" + "pistol_kills" "11" + "opening_kills" "7" + "sniper_kills" "2" + "KDR" "1.154000" + "enemy_kills" "45" + "deaths" "39" + "matches_played" "2" + } + "8" + { + "team" "29" + "clutch_kills" "1" + "pistol_kills" "17" + "opening_kills" "14" + "sniper_kills" "0" + "KDR" "0.745098" + "enemy_kills" "76" + "deaths" "102" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "11" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.750000" + "enemy_kills" "12" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "0.828125" + "enemy_kills" "53" + "deaths" "64" + "matches_played" "3" + } + } + "9" + { + "team" "29" + "clutch_kills" "9" + "pistol_kills" "20" + "opening_kills" "16" + "sniper_kills" "3" + "KDR" "0.842975" + "enemy_kills" "102" + "deaths" "121" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "3" + "KDR" "1.062500" + "enemy_kills" "17" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "1" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.720000" + "enemy_kills" "36" + "deaths" "50" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "15" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "0.890909" + "enemy_kills" "49" + "deaths" "55" + "matches_played" "3" + } + } + "10" + { + "team" "29" + "clutch_kills" "2" + "pistol_kills" "14" + "opening_kills" "12" + "sniper_kills" "3" + "KDR" "0.650602" + "enemy_kills" "54" + "deaths" "83" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "12" + "deaths" "24" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "3" + "KDR" "1.055556" + "enemy_kills" "19" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "8" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.560976" + "enemy_kills" "23" + "deaths" "41" + "matches_played" "2" + } + } + "11" + { + "team" "29" + } + "12" + { + "team" "29" + } + "13" + { + "team" "72" + } + "5" + { + "team" "39" + } + "6" + { + "team" "39" + } + } + } + "90378773" + { + "name" "nex" + "code" "nex" + "dob" "1992-06-20" + "geo" "DE" + "events" + { + "7" + { + "team" "29" + "clutch_kills" "4" + "pistol_kills" "13" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.927000" + "enemy_kills" "38" + "deaths" "41" + "matches_played" "2" + } + "8" + { + "team" "29" + "clutch_kills" "6" + "pistol_kills" "30" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "1.031579" + "enemy_kills" "98" + "deaths" "95" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.681818" + "enemy_kills" "15" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.928571" + "enemy_kills" "27" + "deaths" "14" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "19" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.949153" + "enemy_kills" "56" + "deaths" "59" + "matches_played" "3" + } + } + "9" + { + "team" "29" + "clutch_kills" "9" + "pistol_kills" "19" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.741667" + "enemy_kills" "89" + "deaths" "120" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.600000" + "enemy_kills" "12" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.800000" + "enemy_kills" "36" + "deaths" "45" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.745455" + "enemy_kills" "41" + "deaths" "55" + "matches_played" "3" + } + } + "10" + { + "team" "29" + "clutch_kills" "4" + "pistol_kills" "16" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.805556" + "enemy_kills" "58" + "deaths" "72" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.722222" + "enemy_kills" "13" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.941176" + "enemy_kills" "16" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "11" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.783784" + "enemy_kills" "29" + "deaths" "37" + "matches_played" "2" + } + } + "12" + { + "team" "69" + } + "13" + { + "team" "69" + } + "14" + { + "team" "69" + } + "5" + { + "team" "41" + } + "6" + { + "team" "39" + } + } + } + "13465075" + { + "name" "Spiidi" + "code" "spiidi" + "dob" "1995-09-13" + "geo" "DE" + "events" + { + "7" + { + "team" "29" + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.692000" + "enemy_kills" "27" + "deaths" "39" + "matches_played" "2" + } + "9" + { + "team" "29" + "clutch_kills" "7" + "pistol_kills" "10" + "opening_kills" "14" + "sniper_kills" "0" + "KDR" "0.929204" + "enemy_kills" "105" + "deaths" "113" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.813953" + "enemy_kills" "35" + "deaths" "43" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.078431" + "enemy_kills" "55" + "deaths" "51" + "matches_played" "3" + } + } + "10" + { + "team" "29" + "clutch_kills" "12" + "pistol_kills" "11" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.955882" + "enemy_kills" "65" + "deaths" "68" + "matches_played" "4" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "0" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.882353" + "enemy_kills" "15" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.400000" + "enemy_kills" "21" + "deaths" "15" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.805556" + "enemy_kills" "29" + "deaths" "36" + "matches_played" "2" + } + } + "11" + { + "team" "29" + } + "13" + { + "team" "72" + } + "5" + { + "team" "39" + } + "6" + { + "team" "39" + } + } + } + "24832266" + { + "name" "AZR" + "code" "azr" + "dob" "1992-10-02" + "geo" "AU" + "events" + { + "7" + { + "team" "53" + "clutch_kills" "6" + "pistol_kills" "7" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "0.947000" + "enemy_kills" "54" + "deaths" "57" + "matches_played" "3" + } + "13" + { + "team" "53" + } + "14" + { + "team" "53" + } + "15" + { + "team" "53" + } + "16" + { + "team" "53" + } + "3" + { + "team" "32" + } + "4" + { + "team" "32" + } + "6" + { + "team" "32" + } + } + } + "10025211" + { + "name" "Havoc" + "code" "havoc" + "dob" "1990-06-25" + "geo" "AU" + "events" + { + "7" + { + "team" "53" + "clutch_kills" "3" + "pistol_kills" "12" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.571000" + "enemy_kills" "32" + "deaths" "56" + "matches_played" "3" + } + "3" + { + "team" "32" + } + "4" + { + "team" "32" + } + "6" + { + "team" "32" + } + } + } + "16839456" + { + "name" "jks" + "code" "jks" + "dob" "1995-12-12" + "geo" "AU" + "events" + { + "7" + { + "team" "53" + "clutch_kills" "5" + "pistol_kills" "13" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "0.865000" + "enemy_kills" "45" + "deaths" "52" + "matches_played" "3" + } + "13" + { + "team" "53" + } + "14" + { + "team" "53" + } + "15" + { + "team" "53" + } + "16" + { + "team" "53" + } + "4" + { + "team" "32" + } + "6" + { + "team" "32" + } + } + } + "34303888" + { + "name" "SPUNJ" + "code" "spunj" + "dob" "1989-07-24" + "geo" "AU" + "events" + { + "7" + { + "team" "53" + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "10" + "sniper_kills" "2" + "KDR" "1.140000" + "enemy_kills" "57" + "deaths" "50" + "matches_played" "3" + } + "3" + { + "team" "32" + } + "4" + { + "team" "32" + } + "6" + { + "team" "32" + } + } + } + "30659" + { + "name" "yam" + "code" "yam" + "dob" "1988-12-07" + "geo" "AU" + "events" + { + "7" + { + "team" "53" + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "7" + "sniper_kills" "9" + "KDR" "0.643000" + "enemy_kills" "36" + "deaths" "56" + "matches_played" "3" + } + } + } + "18903255" + { + "name" "USTILO" + "code" "ustilo" + "dob" "1993-08-10" + "geo" "AU" + "events" + { + "7" + { + "team" "54" + "clutch_kills" "0" + "pistol_kills" "13" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.026000" + "enemy_kills" "40" + "deaths" "39" + "matches_played" "2" + } + "13" + { + "team" "53" + } + "14" + { + "team" "53" + } + } + } + "3215921" + { + "name" "Rickeh" + "code" "rickeh" + "dob" "1991-11-22" + "geo" "AU" + "events" + { + "7" + { + "team" "54" + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "6" + "sniper_kills" "18" + "KDR" "1.118000" + "enemy_kills" "38" + "deaths" "34" + "matches_played" "2" + } + "14" + { + "team" "82" + } + "15" + { + "team" "3" + } + "16" + { + "team" "3" + } + } + } + "19633654" + { + "name" "emagine" + "code" "emagine" + "dob" "1991-04-16" + "geo" "AU" + "events" + { + "7" + { + "team" "54" + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.750000" + "enemy_kills" "30" + "deaths" "40" + "matches_played" "2" + } + } + } + "7436549" + { + "name" "SnypeR" + "code" "snyper" + "dob" "1986-09-12" + "geo" "AU" + "events" + { + "7" + { + "team" "54" + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.421000" + "enemy_kills" "16" + "deaths" "38" + "matches_played" "2" + } + "3" + { + "team" "32" + } + } + } + "35336006" + { + "name" "James" + "code" "james" + "dob" "1994-03-22" + "geo" "AU" + "events" + { + "7" + { + "team" "54" + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.514000" + "enemy_kills" "19" + "deaths" "37" + "matches_played" "2" + } + } + } + "5667261" + { + "name" "markeloff" + "code" "markeloff" + "dob" "1988-02-12" + "geo" "UA" + "events" + { + "7" + { + "team" "43" + "clutch_kills" "8" + "pistol_kills" "17" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.127000" + "enemy_kills" "71" + "deaths" "63" + "matches_played" "3" + } + "8" + { + "team" "43" + "clutch_kills" "8" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.833333" + "enemy_kills" "30" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.578947" + "enemy_kills" "11" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "7" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.117647" + "enemy_kills" "19" + "deaths" "17" + "matches_played" "1" + } + } + "9" + { + "team" "43" + "clutch_kills" "8" + "pistol_kills" "10" + "opening_kills" "11" + "sniper_kills" "2" + "KDR" "1.059701" + "enemy_kills" "71" + "deaths" "67" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "2" + "KDR" "0.769231" + "enemy_kills" "20" + "deaths" "26" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "6" + "pistol_kills" "8" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.243902" + "enemy_kills" "51" + "deaths" "41" + "matches_played" "1" + } + } + "10" + { + "team" "43" + "clutch_kills" "21" + "pistol_kills" "29" + "opening_kills" "11" + "sniper_kills" "14" + "KDR" "1.144144" + "enemy_kills" "127" + "deaths" "111" + "matches_played" "7" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.421053" + "enemy_kills" "8" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "3" + "KDR" "1.384615" + "enemy_kills" "18" + "deaths" "13" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "10" + "pistol_kills" "14" + "opening_kills" "3" + "sniper_kills" "8" + "KDR" "1.400000" + "enemy_kills" "56" + "deaths" "40" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "6" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "3" + "KDR" "1.153846" + "enemy_kills" "45" + "deaths" "39" + "matches_played" "2" + } + } + "11" + { + "team" "43" + } + "12" + { + "team" "43" + } + "13" + { + "team" "43" + } + "1" + { + "team" "2" + } + "3" + { + "team" "25" + } + "4" + { + "team" "25" + } + "5" + { + "team" "25" + } + "6" + { + "team" "43" + } + } + } + "53258137" + { + "name" "B1ad3" + "code" "b1ad3" + "dob" "1986-11-11" + "geo" "UA" + "events" + { + "7" + { + "team" "43" + "clutch_kills" "11" + "pistol_kills" "12" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.015000" + "enemy_kills" "68" + "deaths" "67" + "matches_played" "3" + } + "8" + { + "team" "43" + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.575000" + "enemy_kills" "23" + "deaths" "40" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.380952" + "enemy_kills" "8" + "deaths" "21" + "matches_played" "1" + } + } + "9" + { + "team" "43" + "clutch_kills" "7" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.869565" + "enemy_kills" "60" + "deaths" "69" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "0" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.846154" + "enemy_kills" "22" + "deaths" "26" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "6" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.883721" + "enemy_kills" "38" + "deaths" "43" + "matches_played" "1" + } + } + "10" + { + "team" "43" + "clutch_kills" "4" + "pistol_kills" "22" + "opening_kills" "22" + "sniper_kills" "1" + "KDR" "0.873134" + "enemy_kills" "117" + "deaths" "134" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.315789" + "enemy_kills" "25" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.166667" + "enemy_kills" "21" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "0.687500" + "enemy_kills" "33" + "deaths" "48" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "0.775510" + "enemy_kills" "38" + "deaths" "49" + "matches_played" "2" + } + } + "11" + { + "team" "43" + } + "12" + { + "team" "43" + } + "13" + { + "team" "43" + } + "4" + { + "team" "34" + } + "6" + { + "team" "43" + } + } + } + "46918643" + { + "name" "bondik" + "code" "bondik" + "dob" "1993-07-02" + "geo" "UA" + "events" + { + "7" + { + "team" "43" + "clutch_kills" "9" + "pistol_kills" "12" + "opening_kills" "12" + "sniper_kills" "0" + "KDR" "0.986000" + "enemy_kills" "68" + "deaths" "69" + "matches_played" "3" + } + "8" + { + "team" "43" + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.833333" + "enemy_kills" "30" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.062500" + "enemy_kills" "17" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.650000" + "enemy_kills" "13" + "deaths" "20" + "matches_played" "1" + } + } + "9" + { + "team" "43" + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "15" + "sniper_kills" "0" + "KDR" "1.125000" + "enemy_kills" "72" + "deaths" "64" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "1.636364" + "enemy_kills" "36" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.857143" + "enemy_kills" "36" + "deaths" "42" + "matches_played" "1" + } + } + "11" + { + "team" "25" + } + "13" + { + "team" "74" + } + "14" + { + "team" "25" + } + "4" + { + "team" "34" + } + "6" + { + "team" "43" + } + } + } + "36732188" + { + "name" "WorldEdit" + "code" "worldedit" + "dob" "1991-10-16" + "geo" "RU" + "events" + { + "7" + { + "team" "43" + "clutch_kills" "2" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.563000" + "enemy_kills" "36" + "deaths" "64" + "matches_played" "3" + } + "8" + { + "team" "43" + "clutch_kills" "7" + "pistol_kills" "9" + "opening_kills" "9" + "sniper_kills" "22" + "KDR" "1.153846" + "enemy_kills" "45" + "deaths" "39" + "matches_played" "2" + "stage0" + { + "clutch_kills" "6" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "12" + "KDR" "1.150000" + "enemy_kills" "23" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "6" + "sniper_kills" "10" + "KDR" "1.157895" + "enemy_kills" "22" + "deaths" "19" + "matches_played" "1" + } + } + "9" + { + "team" "43" + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "11" + "sniper_kills" "33" + "KDR" "0.984615" + "enemy_kills" "64" + "deaths" "65" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "6" + "KDR" "0.840000" + "enemy_kills" "21" + "deaths" "25" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "3" + "opening_kills" "7" + "sniper_kills" "27" + "KDR" "1.075000" + "enemy_kills" "43" + "deaths" "40" + "matches_played" "1" + } + } + "10" + { + "team" "43" + "clutch_kills" "10" + "pistol_kills" "30" + "opening_kills" "29" + "sniper_kills" "86" + "KDR" "1.163934" + "enemy_kills" "142" + "deaths" "122" + "matches_played" "7" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "5" + "KDR" "0.555556" + "enemy_kills" "10" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "5" + "sniper_kills" "21" + "KDR" "1.750000" + "enemy_kills" "28" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "16" + "opening_kills" "17" + "sniper_kills" "40" + "KDR" "1.444444" + "enemy_kills" "65" + "deaths" "45" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "10" + "opening_kills" "6" + "sniper_kills" "20" + "KDR" "0.906977" + "enemy_kills" "39" + "deaths" "43" + "matches_played" "2" + } + } + "11" + { + "team" "43" + } + "12" + { + "team" "43" + } + "13" + { + "team" "43" + } + "15" + { + "team" "83" + } + "4" + { + "team" "34" + } + "6" + { + "team" "43" + } + } + } + "20273529" + { + "name" "DavCost" + "code" "davcost" + "dob" "1996-05-18" + "geo" "RU" + "events" + { + "7" + { + "team" "43" + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "12" + "sniper_kills" "32" + "KDR" "0.757000" + "enemy_kills" "53" + "deaths" "70" + "matches_played" "3" + } + "8" + { + "team" "43" + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.513514" + "enemy_kills" "19" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.368421" + "enemy_kills" "7" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "12" + "deaths" "18" + "matches_played" "1" + } + } + "14" + { + "team" "81" + } + "15" + { + "team" "81" + } + "6" + { + "team" "43" + } + } + } + "108076825" + { + "name" "dennis" + "code" "dennis" + "dob" "1991-07-01" + "geo" "SE" + "events" + { + "7" + { + "team" "55" + "clutch_kills" "6" + "pistol_kills" "18" + "opening_kills" "14" + "sniper_kills" "1" + "KDR" "0.892000" + "enemy_kills" "83" + "deaths" "93" + "matches_played" "5" + } + "8" + { + "team" "59" + "clutch_kills" "10" + "pistol_kills" "43" + "opening_kills" "30" + "sniper_kills" "10" + "KDR" "1.056410" + "enemy_kills" "206" + "deaths" "195" + "matches_played" "10" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.846154" + "enemy_kills" "24" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.736842" + "enemy_kills" "14" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "14" + "opening_kills" "6" + "sniper_kills" "2" + "KDR" "0.962264" + "enemy_kills" "51" + "deaths" "53" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "9" + "sniper_kills" "7" + "KDR" "0.975610" + "enemy_kills" "40" + "deaths" "41" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "5" + "pistol_kills" "17" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "1.115942" + "enemy_kills" "77" + "deaths" "69" + "matches_played" "3" + } + } + "9" + { + "team" "6" + "clutch_kills" "5" + "pistol_kills" "23" + "opening_kills" "12" + "sniper_kills" "4" + "KDR" "1.091743" + "enemy_kills" "119" + "deaths" "109" + "matches_played" "6" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.818182" + "enemy_kills" "20" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.823529" + "enemy_kills" "28" + "deaths" "34" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "2" + "sniper_kills" "3" + "KDR" "1.500000" + "enemy_kills" "42" + "deaths" "28" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.805556" + "enemy_kills" "29" + "deaths" "36" + "matches_played" "2" + } + } + "10" + { + "team" "6" + "clutch_kills" "8" + "pistol_kills" "37" + "opening_kills" "22" + "sniper_kills" "12" + "KDR" "1.080292" + "enemy_kills" "148" + "deaths" "137" + "matches_played" "8" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "3" + "KDR" "0.818182" + "enemy_kills" "18" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "4" + "sniper_kills" "2" + "KDR" "1" + "enemy_kills" "24" + "deaths" "24" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "0" + "pistol_kills" "8" + "opening_kills" "7" + "sniper_kills" "4" + "KDR" "1.206897" + "enemy_kills" "35" + "deaths" "29" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.318182" + "enemy_kills" "29" + "deaths" "22" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "16" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "1.050000" + "enemy_kills" "42" + "deaths" "40" + "matches_played" "2" + } + } + "11" + { + "team" "6" + } + "12" + { + "team" "6" + } + "14" + { + "team" "1" + } + "15" + { + "team" "1" + } + "1" + { + "team" "9" + } + "3" + { + "team" "9" + } + } + } + "28502520" + { + "name" "ScreaM" + "code" "scream" + "dob" "1993-07-02" + "geo" "BE" + "events" + { + "7" + { + "team" "55" + "clutch_kills" "6" + "pistol_kills" "20" + "opening_kills" "16" + "sniper_kills" "0" + "KDR" "1.056000" + "enemy_kills" "94" + "deaths" "89" + "matches_played" "5" + } + "8" + { + "team" "27" + "clutch_kills" "4" + "pistol_kills" "11" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.736842" + "enemy_kills" "56" + "deaths" "76" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.222222" + "enemy_kills" "22" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.421053" + "enemy_kills" "8" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "26" + "deaths" "39" + "matches_played" "2" + } + } + "9" + { + "team" "59" + "clutch_kills" "7" + "pistol_kills" "16" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "0.925000" + "enemy_kills" "74" + "deaths" "80" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "7" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.933333" + "enemy_kills" "14" + "deaths" "15" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "7" + "pistol_kills" "9" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "1.039216" + "enemy_kills" "53" + "deaths" "51" + "matches_played" "3" + } + } + "10" + { + "team" "59" + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.024390" + "enemy_kills" "42" + "deaths" "41" + "matches_played" "2" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.681818" + "enemy_kills" "15" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.421053" + "enemy_kills" "27" + "deaths" "19" + "matches_played" "1" + } + } + "11" + { + "team" "59" + } + "13" + { + "team" "46" + } + "1" + { + "team" "4" + } + "3" + { + "team" "27" + } + "4" + { + "team" "27" + } + } + } + "37085479" + { + "name" "rain" + "code" "rain" + "dob" "1994-08-27" + "geo" "NO" + "events" + { + "7" + { + "team" "55" + "clutch_kills" "8" + "pistol_kills" "19" + "opening_kills" "17" + "sniper_kills" "1" + "KDR" "0.852000" + "enemy_kills" "75" + "deaths" "88" + "matches_played" "5" + } + "8" + { + "team" "59" + "clutch_kills" "20" + "pistol_kills" "30" + "opening_kills" "25" + "sniper_kills" "0" + "KDR" "0.858491" + "enemy_kills" "182" + "deaths" "212" + "matches_played" "10" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.833333" + "enemy_kills" "15" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "12" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "10" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.900000" + "enemy_kills" "54" + "deaths" "60" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "43" + "deaths" "43" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "14" + "pistol_kills" "9" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.794521" + "enemy_kills" "58" + "deaths" "73" + "matches_played" "3" + } + } + "9" + { + "team" "61" + "clutch_kills" "4" + "pistol_kills" "26" + "opening_kills" "20" + "sniper_kills" "0" + "KDR" "0.933333" + "enemy_kills" "98" + "deaths" "105" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.210526" + "enemy_kills" "23" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.384615" + "enemy_kills" "18" + "deaths" "13" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "14" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.720930" + "enemy_kills" "31" + "deaths" "43" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.866667" + "enemy_kills" "26" + "deaths" "30" + "matches_played" "1" + } + } + "10" + { + "team" "61" + "clutch_kills" "8" + "pistol_kills" "16" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.815789" + "enemy_kills" "62" + "deaths" "76" + "matches_played" "4" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.111111" + "enemy_kills" "20" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "8" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.736842" + "enemy_kills" "14" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.717949" + "enemy_kills" "28" + "deaths" "39" + "matches_played" "2" + } + } + "11" + { + "team" "61" + } + "12" + { + "team" "61" + } + "13" + { + "team" "61" + } + "14" + { + "team" "61" + } + "15" + { + "team" "61" + } + "16" + { + "team" "61" + } + "4" + { + "team" "36" + } + "6" + { + "team" "9" + } + "18" + { + "team" "61" + } + "19" + { + "team" "61" + } + "20" + { + "team" "61" + } + } + } + "925972" + { + "name" "Maikelele" + "code" "maikelele" + "dob" "1991-03-05" + "geo" "SE" + "events" + { + "7" + { + "team" "55" + "clutch_kills" "17" + "pistol_kills" "21" + "opening_kills" "11" + "sniper_kills" "28" + "KDR" "0.933000" + "enemy_kills" "83" + "deaths" "89" + "matches_played" "5" + } + "8" + { + "team" "59" + "clutch_kills" "32" + "pistol_kills" "32" + "opening_kills" "20" + "sniper_kills" "9" + "KDR" "0.978378" + "enemy_kills" "181" + "deaths" "185" + "matches_played" "10" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.545455" + "enemy_kills" "17" + "deaths" "11" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.937500" + "enemy_kills" "15" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "12" + "pistol_kills" "10" + "opening_kills" "7" + "sniper_kills" "2" + "KDR" "1.173077" + "enemy_kills" "61" + "deaths" "52" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "7" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "7" + "KDR" "0.975000" + "enemy_kills" "39" + "deaths" "40" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "8" + "pistol_kills" "7" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.742424" + "enemy_kills" "49" + "deaths" "66" + "matches_played" "3" + } + } + "9" + { + "team" "61" + "clutch_kills" "2" + "pistol_kills" "11" + "opening_kills" "7" + "sniper_kills" "6" + "KDR" "0.695652" + "enemy_kills" "64" + "deaths" "92" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "1" + "KDR" "1.428571" + "enemy_kills" "10" + "deaths" "7" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.564103" + "enemy_kills" "22" + "deaths" "39" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "5" + "KDR" "0.629630" + "enemy_kills" "17" + "deaths" "27" + "matches_played" "1" + } + } + "1" + { + "team" "9" + } + "5" + { + "team" "1" + } + } + } + "1939536" + { + "name" "fox" + "code" "fox" + "dob" "1986-11-15" + "geo" "PT" + "events" + { + "7" + { + "team" "55" + "clutch_kills" "7" + "pistol_kills" "10" + "opening_kills" "7" + "sniper_kills" "4" + "KDR" "0.682000" + "enemy_kills" "60" + "deaths" "88" + "matches_played" "5" + } + "8" + { + "team" "59" + "clutch_kills" "16" + "pistol_kills" "40" + "opening_kills" "41" + "sniper_kills" "72" + "KDR" "1.078534" + "enemy_kills" "206" + "deaths" "191" + "matches_played" "10" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "1.846154" + "enemy_kills" "24" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "5" + "KDR" "0.555556" + "enemy_kills" "10" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "8" + "pistol_kills" "14" + "opening_kills" "12" + "sniper_kills" "19" + "KDR" "1.148148" + "enemy_kills" "62" + "deaths" "54" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "7" + "sniper_kills" "19" + "KDR" "1.073171" + "enemy_kills" "44" + "deaths" "41" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "15" + "sniper_kills" "26" + "KDR" "1.015385" + "enemy_kills" "66" + "deaths" "65" + "matches_played" "3" + } + } + "9" + { + "team" "61" + "clutch_kills" "6" + "pistol_kills" "6" + "opening_kills" "10" + "sniper_kills" "30" + "KDR" "0.938462" + "enemy_kills" "61" + "deaths" "65" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "0" + "opening_kills" "1" + "sniper_kills" "10" + "KDR" "1" + "enemy_kills" "17" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "9" + "KDR" "1.500000" + "enemy_kills" "15" + "deaths" "10" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "11" + "KDR" "0.763158" + "enemy_kills" "29" + "deaths" "38" + "matches_played" "2" + } + } + "10" + { + "team" "61" + "clutch_kills" "7" + "pistol_kills" "15" + "opening_kills" "6" + "sniper_kills" "32" + "KDR" "0.736842" + "enemy_kills" "56" + "deaths" "76" + "matches_played" "4" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "16" + "KDR" "1.052632" + "enemy_kills" "20" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "0" + "sniper_kills" "2" + "KDR" "0.380952" + "enemy_kills" "8" + "deaths" "21" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "6" + "sniper_kills" "14" + "KDR" "0.777778" + "enemy_kills" "28" + "deaths" "36" + "matches_played" "2" + } + } + "11" + { + "team" "14" + } + } + } + "31166738" + { + "name" "rallen" + "code" "rallen" + "dob" "1994-06-08" + "geo" "PL" + "events" + { + "7" + { + "team" "56" + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.575000" + "enemy_kills" "23" + "deaths" "40" + "matches_played" "2" + } + "8" + { + "team" "47" + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "6" + "sniper_kills" "3" + "KDR" "0.756098" + "enemy_kills" "31" + "deaths" "41" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.619048" + "enemy_kills" "13" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "3" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + } + "5" + { + "team" "42" + } + } + } + "10357481" + { + "name" "Hyper" + "code" "hyper" + "dob" "1990-01-01" + "geo" "PL" + "events" + { + "7" + { + "team" "56" + "clutch_kills" "5" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.892000" + "enemy_kills" "33" + "deaths" "37" + "matches_played" "2" + } + "8" + { + "team" "47" + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "37" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.842105" + "enemy_kills" "16" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.166667" + "enemy_kills" "21" + "deaths" "18" + "matches_played" "1" + } + } + } + } + "104340617" + { + "name" "peet" + "code" "peet" + "dob" "1990-11-14" + "geo" "PL" + "events" + { + "7" + { + "team" "56" + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "12" + "KDR" "0.795000" + "enemy_kills" "31" + "deaths" "39" + "matches_played" "2" + } + "8" + { + "team" "47" + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "5" + "KDR" "0.742857" + "enemy_kills" "26" + "deaths" "35" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.611111" + "enemy_kills" "11" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "3" + "sniper_kills" "5" + "KDR" "0.882353" + "enemy_kills" "15" + "deaths" "17" + "matches_played" "1" + } + } + } + } + "177495873" + { + "name" "Furlan" + "code" "furlan" + "dob" "1994-12-29" + "geo" "PL" + "events" + { + "7" + { + "team" "56" + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.415000" + "enemy_kills" "17" + "deaths" "41" + "matches_played" "2" + } + "8" + { + "team" "47" + "clutch_kills" "6" + "pistol_kills" "7" + "opening_kills" "5" + "sniper_kills" "11" + "KDR" "1.157895" + "enemy_kills" "44" + "deaths" "38" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "11" + "KDR" "1.150000" + "enemy_kills" "23" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.166667" + "enemy_kills" "21" + "deaths" "18" + "matches_played" "1" + } + } + } + } + "44752530" + { + "name" "GruBy" + "code" "gruby" + "dob" "1995-02-28" + "geo" "PL" + "events" + { + "7" + { + "team" "56" + "clutch_kills" "0" + "pistol_kills" "10" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.784000" + "enemy_kills" "29" + "deaths" "37" + "matches_played" "2" + } + "8" + { + "team" "47" + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.840909" + "enemy_kills" "37" + "deaths" "44" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.904762" + "enemy_kills" "19" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.782609" + "enemy_kills" "18" + "deaths" "23" + "matches_played" "1" + } + } + } + } + "35761" + { + "name" "Maniac" + "code" "maniac" + "dob" "1990-06-29" + "geo" "CH" + "events" + { + "7" + { + "team" "27" + "clutch_kills" "10" + "pistol_kills" "10" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.956000" + "enemy_kills" "43" + "deaths" "45" + "matches_played" "2" + } + "1" + { + "team" "8" + } + "3" + { + "team" "26" + } + "4" + { + "team" "26" + } + "6" + { + "team" "27" + } + } + } + "11737333" + { + "name" "Ex6TenZ" + "code" "ex6tenz" + "dob" "1990-04-30" + "geo" "BE" + "events" + { + "7" + { + "team" "27" + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.711000" + "enemy_kills" "32" + "deaths" "45" + "matches_played" "2" + } + "8" + { + "team" "27" + "clutch_kills" "3" + "pistol_kills" "13" + "opening_kills" "11" + "sniper_kills" "2" + "KDR" "0.680556" + "enemy_kills" "49" + "deaths" "72" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.944444" + "enemy_kills" "17" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.485714" + "enemy_kills" "17" + "deaths" "35" + "matches_played" "2" + } + } + "9" + { + "team" "59" + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "11" + "sniper_kills" "4" + "KDR" "0.800000" + "enemy_kills" "60" + "deaths" "75" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "8" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "3" + "KDR" "3.333333" + "enemy_kills" "20" + "deaths" "6" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "0.603774" + "enemy_kills" "32" + "deaths" "53" + "matches_played" "3" + } + } + "14" + { + "team" "59" + } + "1" + { + "team" "4" + } + "3" + { + "team" "27" + } + "4" + { + "team" "27" + } + "6" + { + "team" "27" + } + } + } + "46654567" + { + "name" "shox" + "code" "shox" + "dob" "1992-05-27" + "geo" "FR" + "events" + { + "7" + { + "team" "27" + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.023000" + "enemy_kills" "44" + "deaths" "43" + "matches_played" "2" + } + "8" + { + "team" "27" + "clutch_kills" "15" + "pistol_kills" "20" + "opening_kills" "12" + "sniper_kills" "12" + "KDR" "1.086957" + "enemy_kills" "75" + "deaths" "69" + "matches_played" "4" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "8" + "KDR" "1.533333" + "enemy_kills" "23" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "5" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.647059" + "enemy_kills" "11" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "7" + "pistol_kills" "15" + "opening_kills" "9" + "sniper_kills" "4" + "KDR" "1.108108" + "enemy_kills" "41" + "deaths" "37" + "matches_played" "2" + } + } + "9" + { + "team" "59" + "clutch_kills" "12" + "pistol_kills" "16" + "opening_kills" "7" + "sniper_kills" "2" + "KDR" "1.083333" + "enemy_kills" "78" + "deaths" "72" + "matches_played" "5" + "stage0" + { + "clutch_kills" "5" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.785714" + "enemy_kills" "11" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "2.111111" + "enemy_kills" "19" + "deaths" "9" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "7" + "pistol_kills" "10" + "opening_kills" "5" + "sniper_kills" "2" + "KDR" "0.979592" + "enemy_kills" "48" + "deaths" "49" + "matches_played" "3" + } + } + "10" + { + "team" "59" + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "14" + "KDR" "0.833333" + "enemy_kills" "35" + "deaths" "42" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "4" + "KDR" "0.714286" + "enemy_kills" "15" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "10" + "KDR" "0.952381" + "enemy_kills" "20" + "deaths" "21" + "matches_played" "1" + } + } + "11" + { + "team" "59" + } + "12" + { + "team" "59" + } + "13" + { + "team" "59" + } + "14" + { + "team" "59" + } + "15" + { + "team" "59" + } + "16" + { + "team" "59" + } + "1" + { + "team" "4" + } + "3" + { + "team" "27" + } + "4" + { + "team" "35" + } + "5" + { + "team" "26" + } + "6" + { + "team" "46" + } + "18" + { + "team" "89" + } + "19" + { + "team" "48" + } + } + } + "14321919" + { + "name" "SmithZz" + "code" "smithzz" + "dob" "1988-12-17" + "geo" "FR" + "events" + { + "7" + { + "team" "27" + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "9" + "sniper_kills" "2" + "KDR" "0.787000" + "enemy_kills" "37" + "deaths" "47" + "matches_played" "2" + } + "8" + { + "team" "27" + "clutch_kills" "6" + "pistol_kills" "14" + "opening_kills" "10" + "sniper_kills" "23" + "KDR" "0.714286" + "enemy_kills" "55" + "deaths" "77" + "matches_played" "4" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "5" + "sniper_kills" "7" + "KDR" "1.100000" + "enemy_kills" "22" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "12" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "4" + "KDR" "0.405405" + "enemy_kills" "15" + "deaths" "37" + "matches_played" "2" + } + } + "9" + { + "team" "59" + "clutch_kills" "6" + "pistol_kills" "11" + "opening_kills" "16" + "sniper_kills" "39" + "KDR" "0.869048" + "enemy_kills" "73" + "deaths" "84" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.235294" + "enemy_kills" "4" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "18" + "KDR" "2.666667" + "enemy_kills" "24" + "deaths" "9" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "4" + "opening_kills" "10" + "sniper_kills" "20" + "KDR" "0.775862" + "enemy_kills" "45" + "deaths" "58" + "matches_played" "3" + } + } + "10" + { + "team" "59" + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "28" + "KDR" "0.925000" + "enemy_kills" "37" + "deaths" "40" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "12" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "16" + "KDR" "1.047619" + "enemy_kills" "22" + "deaths" "21" + "matches_played" "1" + } + } + "11" + { + "team" "59" + } + "14" + { + "team" "59" + } + "1" + { + "team" "4" + } + "3" + { + "team" "27" + } + "4" + { + "team" "27" + } + "5" + { + "team" "26" + } + "6" + { + "team" "46" + } + } + } + "53985773" + { + "name" "RpK" + "code" "rpk" + "dob" "1989-08-12" + "geo" "FR" + "events" + { + "7" + { + "team" "27" + "clutch_kills" "3" + "pistol_kills" "10" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.723000" + "enemy_kills" "34" + "deaths" "47" + "matches_played" "2" + } + "8" + { + "team" "27" + "clutch_kills" "8" + "pistol_kills" "20" + "opening_kills" "6" + "sniper_kills" "2" + "KDR" "1" + "enemy_kills" "74" + "deaths" "74" + "matches_played" "4" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.047619" + "enemy_kills" "22" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.736842" + "enemy_kills" "14" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "1.117647" + "enemy_kills" "38" + "deaths" "34" + "matches_played" "2" + } + } + "9" + { + "team" "59" + "clutch_kills" "3" + "pistol_kills" "17" + "opening_kills" "8" + "sniper_kills" "1" + "KDR" "0.960526" + "enemy_kills" "73" + "deaths" "76" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.071429" + "enemy_kills" "15" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.833333" + "enemy_kills" "11" + "deaths" "6" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.839286" + "enemy_kills" "47" + "deaths" "56" + "matches_played" "3" + } + } + "10" + { + "team" "59" + "clutch_kills" "7" + "pistol_kills" "11" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.131579" + "enemy_kills" "43" + "deaths" "38" + "matches_played" "2" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.235294" + "enemy_kills" "21" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.047619" + "enemy_kills" "22" + "deaths" "21" + "matches_played" "1" + } + } + "11" + { + "team" "59" + } + "13" + { + "team" "46" + } + "15" + { + "team" "89" + } + "16" + { + "team" "89" + } + "6" + { + "team" "27" + } + } + } + "30305781" + { + "name" "hazed" + "code" "hazed" + "dob" "1989-05-22" + "geo" "US" + "events" + { + "7" + { + "team" "49" + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "0.797000" + "enemy_kills" "51" + "deaths" "64" + "matches_played" "3" + } + "8" + { + "team" "49" + "clutch_kills" "3" + "pistol_kills" "13" + "opening_kills" "17" + "sniper_kills" "0" + "KDR" "0.644860" + "enemy_kills" "69" + "deaths" "107" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.458333" + "enemy_kills" "11" + "deaths" "24" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.521739" + "enemy_kills" "12" + "deaths" "23" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.766667" + "enemy_kills" "46" + "deaths" "60" + "matches_played" "3" + } + } + "9" + { + "team" "49" + "clutch_kills" "7" + "pistol_kills" "38" + "opening_kills" "18" + "sniper_kills" "1" + "KDR" "1.007874" + "enemy_kills" "128" + "deaths" "127" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.214286" + "enemy_kills" "17" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "10" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.111111" + "enemy_kills" "20" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "19" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.160714" + "enemy_kills" "65" + "deaths" "56" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.666667" + "enemy_kills" "26" + "deaths" "39" + "matches_played" "2" + } + } + "10" + { + "team" "49" + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "9" + "KDR" "0.970588" + "enemy_kills" "33" + "deaths" "34" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "9" + "KDR" "1.578947" + "enemy_kills" "30" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.200000" + "enemy_kills" "3" + "deaths" "15" + "matches_played" "1" + } + } + "6" + { + "team" "49" + } + } + } + "17564706" + { + "name" "FNS" + "code" "fns" + "dob" "1992-03-19" + "geo" "CA" + "events" + { + "7" + { + "team" "49" + "clutch_kills" "4" + "pistol_kills" "16" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "0.844000" + "enemy_kills" "54" + "deaths" "64" + "matches_played" "3" + } + "8" + { + "team" "49" + "clutch_kills" "9" + "pistol_kills" "24" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "0.936842" + "enemy_kills" "89" + "deaths" "95" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.526316" + "enemy_kills" "29" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "14" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.750000" + "enemy_kills" "42" + "deaths" "56" + "matches_played" "3" + } + } + "6" + { + "team" "49" + } + } + } + "7223652" + { + "name" "jdm64" + "code" "jdm64" + "dob" "1990-05-20" + "geo" "US" + "events" + { + "7" + { + "team" "49" + "clutch_kills" "12" + "pistol_kills" "12" + "opening_kills" "9" + "sniper_kills" "48" + "KDR" "1.140000" + "enemy_kills" "65" + "deaths" "57" + "matches_played" "3" + } + "8" + { + "team" "49" + "clutch_kills" "16" + "pistol_kills" "13" + "opening_kills" "13" + "sniper_kills" "58" + "KDR" "1.084337" + "enemy_kills" "90" + "deaths" "83" + "matches_played" "5" + "stage0" + { + "clutch_kills" "5" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "17" + "KDR" "1.466667" + "enemy_kills" "22" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "12" + "KDR" "1.111111" + "enemy_kills" "20" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "8" + "pistol_kills" "10" + "opening_kills" "7" + "sniper_kills" "29" + "KDR" "0.960000" + "enemy_kills" "48" + "deaths" "50" + "matches_played" "3" + } + } + "9" + { + "team" "49" + "clutch_kills" "10" + "pistol_kills" "19" + "opening_kills" "28" + "sniper_kills" "97" + "KDR" "1.159664" + "enemy_kills" "138" + "deaths" "119" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "13" + "KDR" "1.384615" + "enemy_kills" "18" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "4" + "KDR" "0.705882" + "enemy_kills" "12" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "8" + "pistol_kills" "8" + "opening_kills" "18" + "sniper_kills" "58" + "KDR" "1.461538" + "enemy_kills" "76" + "deaths" "52" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "22" + "KDR" "0.864865" + "enemy_kills" "32" + "deaths" "37" + "matches_played" "2" + } + } + "10" + { + "team" "48" + "clutch_kills" "17" + "pistol_kills" "28" + "opening_kills" "25" + "sniper_kills" "122" + "KDR" "1" + "enemy_kills" "176" + "deaths" "176" + "matches_played" "11" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "13" + "KDR" "1.666667" + "enemy_kills" "20" + "deaths" "12" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "4" + "opening_kills" "5" + "sniper_kills" "14" + "KDR" "0.947368" + "enemy_kills" "18" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "17" + "KDR" "1.076923" + "enemy_kills" "28" + "deaths" "26" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "6" + "pistol_kills" "8" + "opening_kills" "8" + "sniper_kills" "28" + "KDR" "0.979167" + "enemy_kills" "47" + "deaths" "48" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "29" + "KDR" "0.944444" + "enemy_kills" "34" + "deaths" "36" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "21" + "KDR" "0.828571" + "enemy_kills" "29" + "deaths" "35" + "matches_played" "2" + } + } + "11" + { + "team" "48" + } + "13" + { + "team" "48" + } + } + } + "518760" + { + "name" "reltuC" + "code" "reltuc" + "dob" "1988-11-27" + "geo" "US" + "events" + { + "7" + { + "team" "49" + "clutch_kills" "4" + "pistol_kills" "14" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "0.735000" + "enemy_kills" "50" + "deaths" "68" + "matches_played" "3" + } + "8" + { + "team" "49" + "clutch_kills" "6" + "pistol_kills" "15" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "0.818182" + "enemy_kills" "81" + "deaths" "99" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.772727" + "enemy_kills" "17" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.050000" + "enemy_kills" "21" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.754386" + "enemy_kills" "43" + "deaths" "57" + "matches_played" "3" + } + } + "9" + { + "team" "49" + "clutch_kills" "15" + "pistol_kills" "16" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "0.907563" + "enemy_kills" "108" + "deaths" "119" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "2" + "enemy_kills" "28" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "10" + "deaths" "15" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "10" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.833333" + "enemy_kills" "45" + "deaths" "54" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.694444" + "enemy_kills" "25" + "deaths" "36" + "matches_played" "2" + } + } + "10" + { + "team" "49" + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.611111" + "enemy_kills" "22" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.631579" + "enemy_kills" "12" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.588235" + "enemy_kills" "10" + "deaths" "17" + "matches_played" "1" + } + } + "6" + { + "team" "49" + } + } + } + "18216247" + { + "name" "tarik" + "code" "tarik" + "dob" "1996-02-18" + "geo" "US" + "events" + { + "7" + { + "team" "49" + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.106000" + "enemy_kills" "73" + "deaths" "66" + "matches_played" "3" + } + "8" + { + "team" "49" + "clutch_kills" "8" + "pistol_kills" "23" + "opening_kills" "13" + "sniper_kills" "2" + "KDR" "0.990000" + "enemy_kills" "99" + "deaths" "100" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.909091" + "enemy_kills" "20" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.875000" + "enemy_kills" "21" + "deaths" "24" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "7" + "sniper_kills" "2" + "KDR" "1.074074" + "enemy_kills" "58" + "deaths" "54" + "matches_played" "3" + } + } + "9" + { + "team" "49" + "clutch_kills" "10" + "pistol_kills" "32" + "opening_kills" "24" + "sniper_kills" "18" + "KDR" "1.111842" + "enemy_kills" "169" + "deaths" "152" + "matches_played" "8" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.538462" + "enemy_kills" "20" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "0" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.578947" + "enemy_kills" "11" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "14" + "opening_kills" "12" + "sniper_kills" "6" + "KDR" "1.185185" + "enemy_kills" "64" + "deaths" "54" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "4" + "sniper_kills" "11" + "KDR" "1.189189" + "enemy_kills" "44" + "deaths" "37" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "1.034483" + "enemy_kills" "30" + "deaths" "29" + "matches_played" "1" + } + } + "10" + { + "team" "49" + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.567568" + "enemy_kills" "21" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.695652" + "enemy_kills" "16" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.357143" + "enemy_kills" "5" + "deaths" "14" + "matches_played" "1" + } + } + "11" + { + "team" "66" + } + "13" + { + "team" "33" + } + "14" + { + "team" "80" + } + "16" + { + "team" "87" + } + "6" + { + "team" "49" + } + } + } + "755286" + { + "name" "n0thing" + "code" "nothing" + "dob" "1990-10-25" + "geo" "US" + "events" + { + "7" + { + "team" "52" + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.719000" + "enemy_kills" "41" + "deaths" "57" + "matches_played" "3" + } + "8" + { + "team" "33" + "clutch_kills" "5" + "pistol_kills" "12" + "opening_kills" "11" + "sniper_kills" "1" + "KDR" "0.846154" + "enemy_kills" "66" + "deaths" "78" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.941176" + "enemy_kills" "16" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.714286" + "enemy_kills" "15" + "deaths" "21" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.875000" + "enemy_kills" "35" + "deaths" "40" + "matches_played" "2" + } + } + "9" + { + "team" "33" + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.648649" + "enemy_kills" "24" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.736842" + "enemy_kills" "14" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.555556" + "enemy_kills" "10" + "deaths" "18" + "matches_played" "1" + } + } + "12" + { + "team" "33" + } + "15" + { + "team" "3" + } + "1" + { + "team" "3" + } + "3" + { + "team" "3" + } + "4" + { + "team" "33" + } + "5" + { + "team" "33" + } + "6" + { + "team" "52" + } + } + } + "164004" + { + "name" "seang@res" + "code" "sgares" + "dob" "1988-06-10" + "geo" "US" + "events" + { + "7" + { + "team" "52" + "clutch_kills" "4" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.689000" + "enemy_kills" "42" + "deaths" "61" + "matches_played" "3" + } + "8" + { + "team" "33" + "clutch_kills" "2" + "pistol_kills" "17" + "opening_kills" "7" + "sniper_kills" "7" + "KDR" "0.902439" + "enemy_kills" "74" + "deaths" "82" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "3" + "KDR" "1.111111" + "enemy_kills" "20" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.869565" + "enemy_kills" "20" + "deaths" "23" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "10" + "opening_kills" "1" + "sniper_kills" "4" + "KDR" "0.829268" + "enemy_kills" "34" + "deaths" "41" + "matches_played" "2" + } + } + "13" + { + "team" "77" + } + "1" + { + "team" "3" + } + "3" + { + "team" "3" + } + "4" + { + "team" "33" + } + "5" + { + "team" "33" + } + "6" + { + "team" "52" + } + } + } + "4515926" + { + "name" "shroud" + "code" "shroud" + "dob" "1994-06-02" + "geo" "CA" + "events" + { + "7" + { + "team" "52" + "clutch_kills" "3" + "pistol_kills" "10" + "opening_kills" "10" + "sniper_kills" "1" + "KDR" "0.909000" + "enemy_kills" "50" + "deaths" "55" + "matches_played" "3" + } + "8" + { + "team" "33" + "clutch_kills" "6" + "pistol_kills" "14" + "opening_kills" "10" + "sniper_kills" "1" + "KDR" "0.864865" + "enemy_kills" "64" + "deaths" "74" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.250000" + "enemy_kills" "25" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.685714" + "enemy_kills" "24" + "deaths" "35" + "matches_played" "2" + } + } + "9" + { + "team" "33" + "clutch_kills" "4" + "pistol_kills" "12" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.865672" + "enemy_kills" "58" + "deaths" "67" + "matches_played" "3" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.800000" + "enemy_kills" "16" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.529412" + "enemy_kills" "9" + "deaths" "17" + "matches_played" "1" + } + "stage5" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.100000" + "enemy_kills" "33" + "deaths" "30" + "matches_played" "1" + } + } + "12" + { + "team" "33" + } + "4" + { + "team" "33" + } + "5" + { + "team" "33" + } + "6" + { + "team" "52" + } + } + } + "16883071" + { + "name" "freakazoid" + "code" "freakazoid" + "dob" "1992-11-25" + "geo" "US" + "events" + { + "7" + { + "team" "52" + "clutch_kills" "3" + "pistol_kills" "10" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.845000" + "enemy_kills" "49" + "deaths" "58" + "matches_played" "3" + } + "8" + { + "team" "33" + "clutch_kills" "2" + "pistol_kills" "9" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "0.955224" + "enemy_kills" "64" + "deaths" "67" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.611111" + "enemy_kills" "11" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.600000" + "enemy_kills" "24" + "deaths" "15" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.852941" + "enemy_kills" "29" + "deaths" "34" + "matches_played" "2" + } + } + "9" + { + "team" "33" + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "18" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.777778" + "enemy_kills" "14" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.222222" + "enemy_kills" "4" + "deaths" "18" + "matches_played" "1" + } + } + } + } + "21075725" + { + "name" "Skadoodle" + "code" "skadoodle" + "dob" "1993-07-21" + "geo" "US" + "events" + { + "7" + { + "team" "52" + "clutch_kills" "5" + "pistol_kills" "10" + "opening_kills" "8" + "sniper_kills" "35" + "KDR" "1.106000" + "enemy_kills" "52" + "deaths" "47" + "matches_played" "3" + } + "8" + { + "team" "33" + "clutch_kills" "2" + "pistol_kills" "14" + "opening_kills" "10" + "sniper_kills" "35" + "KDR" "0.826087" + "enemy_kills" "57" + "deaths" "69" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "12" + "KDR" "0.833333" + "enemy_kills" "15" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "8" + "KDR" "0.857143" + "enemy_kills" "12" + "deaths" "14" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "8" + "opening_kills" "5" + "sniper_kills" "15" + "KDR" "0.810811" + "enemy_kills" "30" + "deaths" "37" + "matches_played" "2" + } + } + "9" + { + "team" "33" + "clutch_kills" "10" + "pistol_kills" "13" + "opening_kills" "8" + "sniper_kills" "22" + "KDR" "0.696970" + "enemy_kills" "46" + "deaths" "66" + "matches_played" "3" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "6" + "KDR" "0.833333" + "enemy_kills" "15" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "5" + "pistol_kills" "7" + "opening_kills" "2" + "sniper_kills" "3" + "KDR" "0.750000" + "enemy_kills" "12" + "deaths" "16" + "matches_played" "1" + } + "stage5" + { + "clutch_kills" "4" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "13" + "KDR" "0.593750" + "enemy_kills" "19" + "deaths" "32" + "matches_played" "1" + } + } + "12" + { + "team" "33" + } + "13" + { + "team" "33" + } + "14" + { + "team" "33" + } + "1" + { + "team" "5" + } + "3" + { + "team" "5" + } + "4" + { + "team" "5" + } + "5" + { + "team" "5" + } + } + } + "42442914" + { + "name" "jkaem" + "code" "jkaem" + "dob" "1994-02-27" + "geo" "NO" + "events" + { + "8" + { + "team" "59" + "clutch_kills" "19" + "pistol_kills" "36" + "opening_kills" "30" + "sniper_kills" "0" + "KDR" "1.166667" + "enemy_kills" "231" + "deaths" "198" + "matches_played" "10" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.500000" + "enemy_kills" "21" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.388889" + "enemy_kills" "7" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "14" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.423077" + "enemy_kills" "74" + "deaths" "52" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "8" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.550000" + "enemy_kills" "62" + "deaths" "40" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "5" + "pistol_kills" "10" + "opening_kills" "11" + "sniper_kills" "0" + "KDR" "0.905405" + "enemy_kills" "67" + "deaths" "74" + "matches_played" "3" + } + } + "9" + { + "team" "61" + "clutch_kills" "8" + "pistol_kills" "11" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.774648" + "enemy_kills" "55" + "deaths" "71" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.428571" + "enemy_kills" "9" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.636364" + "enemy_kills" "18" + "deaths" "11" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "8" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.717949" + "enemy_kills" "28" + "deaths" "39" + "matches_played" "2" + } + } + "10" + { + "team" "61" + "clutch_kills" "3" + "pistol_kills" "19" + "opening_kills" "4" + "sniper_kills" "2" + "KDR" "0.720000" + "enemy_kills" "54" + "deaths" "75" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.294118" + "enemy_kills" "22" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "2" + "KDR" "0.500000" + "enemy_kills" "10" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "11" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.578947" + "enemy_kills" "22" + "deaths" "38" + "matches_played" "2" + } + } + "14" + { + "team" "53" + } + "15" + { + "team" "53" + } + "16" + { + "team" "53" + } + "6" + { + "team" "9" + } + } + } + "81417650" + { + "name" "NiKo" + "code" "niko" + "dob" "1997-02-16" + "geo" "BA" + "events" + { + "8" + { + "team" "29" + "clutch_kills" "17" + "pistol_kills" "21" + "opening_kills" "13" + "sniper_kills" "1" + "KDR" "1.163043" + "enemy_kills" "107" + "deaths" "92" + "matches_played" "5" + "stage0" + { + "clutch_kills" "5" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.611111" + "enemy_kills" "11" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "7" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "1.687500" + "enemy_kills" "27" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "13" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.189655" + "enemy_kills" "69" + "deaths" "58" + "matches_played" "3" + } + } + "9" + { + "team" "29" + "clutch_kills" "23" + "pistol_kills" "41" + "opening_kills" "31" + "sniper_kills" "13" + "KDR" "1.166667" + "enemy_kills" "175" + "deaths" "150" + "matches_played" "6" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "6" + "sniper_kills" "2" + "KDR" "1.136364" + "enemy_kills" "25" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "10" + "pistol_kills" "3" + "opening_kills" "8" + "sniper_kills" "9" + "KDR" "1.238095" + "enemy_kills" "52" + "deaths" "42" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "7" + "pistol_kills" "22" + "opening_kills" "13" + "sniper_kills" "2" + "KDR" "1.070175" + "enemy_kills" "61" + "deaths" "57" + "matches_played" "3" + } + "stage5" + { + "clutch_kills" "5" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.275862" + "enemy_kills" "37" + "deaths" "29" + "matches_played" "1" + } + } + "10" + { + "team" "29" + "clutch_kills" "7" + "pistol_kills" "14" + "opening_kills" "17" + "sniper_kills" "12" + "KDR" "0.910256" + "enemy_kills" "71" + "deaths" "78" + "matches_played" "4" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "7" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "6" + "sniper_kills" "4" + "KDR" "0.809524" + "enemy_kills" "17" + "deaths" "21" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "8" + "opening_kills" "10" + "sniper_kills" "1" + "KDR" "0.972973" + "enemy_kills" "36" + "deaths" "37" + "matches_played" "2" + } + } + "11" + { + "team" "29" + } + "12" + { + "team" "61" + } + "13" + { + "team" "61" + } + "14" + { + "team" "61" + } + "15" + { + "team" "61" + } + "16" + { + "team" "61" + } + "18" + { + "team" "59" + } + "19" + { + "team" "59" + } + } + } + "90685224" + { + "name" "aizy" + "code" "aizy" + "dob" "1996-04-06" + "geo" "DK" + "events" + { + "8" + { + "team" "24" + "clutch_kills" "10" + "pistol_kills" "20" + "opening_kills" "8" + "sniper_kills" "1" + "KDR" "1.552632" + "enemy_kills" "59" + "deaths" "38" + "matches_played" "2" + "stage0" + { + "clutch_kills" "9" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "1.222222" + "enemy_kills" "22" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "12" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "1.850000" + "enemy_kills" "37" + "deaths" "20" + "matches_played" "1" + } + } + "9" + { + "team" "61" + "clutch_kills" "3" + "pistol_kills" "10" + "opening_kills" "9" + "sniper_kills" "3" + "KDR" "1.063492" + "enemy_kills" "67" + "deaths" "63" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "0.950000" + "enemy_kills" "19" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "3.800000" + "enemy_kills" "19" + "deaths" "5" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "6" + "sniper_kills" "1" + "KDR" "0.763158" + "enemy_kills" "29" + "deaths" "38" + "matches_played" "2" + } + } + "10" + { + "team" "61" + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "10" + "sniper_kills" "7" + "KDR" "0.842857" + "enemy_kills" "59" + "deaths" "70" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "4" + "KDR" "1.642857" + "enemy_kills" "23" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.722222" + "enemy_kills" "13" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "6" + "sniper_kills" "2" + "KDR" "0.605263" + "enemy_kills" "23" + "deaths" "38" + "matches_played" "2" + } + } + "11" + { + "team" "61" + } + "12" + { + "team" "68" + } + "13" + { + "team" "68" + } + "14" + { + "team" "68" + } + "16" + { + "team" "68" + } + "1" + { + "team" "15" + } + "3" + { + "team" "28" + } + "4" + { + "team" "24" + } + } + } + "59614824" + { + "name" "Kjaerbye" + "code" "kjaerbye" + "dob" "1998-04-27" + "geo" "DK" + "events" + { + "8" + { + "team" "24" + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.775000" + "enemy_kills" "31" + "deaths" "40" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.611111" + "enemy_kills" "11" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.909091" + "enemy_kills" "20" + "deaths" "22" + "matches_played" "1" + } + } + "11" + { + "team" "60" + } + "12" + { + "team" "60" + } + "13" + { + "team" "60" + } + "14" + { + "team" "68" + } + "16" + { + "team" "68" + } + "5" + { + "team" "10" + } + } + } + "24134891" + { + "name" "MSL" + "code" "msl" + "dob" "1994-12-06" + "geo" "DK" + "events" + { + "8" + { + "team" "24" + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.372093" + "enemy_kills" "16" + "deaths" "43" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.250000" + "enemy_kills" "5" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.478261" + "enemy_kills" "11" + "deaths" "23" + "matches_played" "1" + } + } + "10" + { + "team" "24" + "clutch_kills" "6" + "pistol_kills" "9" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.701923" + "enemy_kills" "73" + "deaths" "104" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.800000" + "enemy_kills" "20" + "deaths" "25" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "9" + "deaths" "9" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.628571" + "enemy_kills" "44" + "deaths" "70" + "matches_played" "3" + } + } + "11" + { + "team" "68" + } + "12" + { + "team" "68" + } + "13" + { + "team" "68" + } + "14" + { + "team" "68" + } + "1" + { + "team" "16" + } + "3" + { + "team" "28" + } + "5" + { + "team" "38" + } + } + } + "57742580" + { + "name" "Pimp" + "code" "pimp" + "dob" "1995-07-31" + "geo" "DK" + "events" + { + "8" + { + "team" "24" + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "9" + "KDR" "0.694444" + "enemy_kills" "25" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "1" + "sniper_kills" "3" + "KDR" "0.277778" + "enemy_kills" "5" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "0" + "sniper_kills" "6" + "KDR" "1.111111" + "enemy_kills" "20" + "deaths" "18" + "matches_played" "1" + } + } + "11" + { + "team" "48" + } + "1" + { + "team" "13" + } + "3" + { + "team" "28" + } + "4" + { + "team" "10" + } + "5" + { + "team" "10" + } + } + } + "37214922" + { + "name" "tenzki" + "code" "tenzki" + "dob" "1994-06-25" + "geo" "DK" + "events" + { + "8" + { + "team" "24" + "clutch_kills" "4" + "pistol_kills" "9" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.560976" + "enemy_kills" "23" + "deaths" "41" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.368421" + "enemy_kills" "7" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.727273" + "enemy_kills" "16" + "deaths" "22" + "matches_played" "1" + } + } + "10" + { + "team" "24" + "clutch_kills" "15" + "pistol_kills" "18" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.876405" + "enemy_kills" "78" + "deaths" "89" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.428571" + "enemy_kills" "10" + "deaths" "7" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "13" + "pistol_kills" "13" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.841270" + "enemy_kills" "53" + "deaths" "63" + "matches_played" "3" + } + } + "5" + { + "team" "10" + } + } + } + "1366033" + { + "name" "adreN" + "code" "adren" + "dob" "1990-04-26" + "geo" "US" + "events" + { + "8" + { + "team" "48" + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "13" + "KDR" "0.853659" + "enemy_kills" "35" + "deaths" "41" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "5" + "KDR" "0.772727" + "enemy_kills" "17" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "8" + "KDR" "0.947368" + "enemy_kills" "18" + "deaths" "19" + "matches_played" "1" + } + } + "9" + { + "team" "48" + "clutch_kills" "14" + "pistol_kills" "18" + "opening_kills" "21" + "sniper_kills" "36" + "KDR" "1.174312" + "enemy_kills" "128" + "deaths" "109" + "matches_played" "6" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "4" + "KDR" "1.692308" + "enemy_kills" "22" + "deaths" "13" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "6" + "sniper_kills" "12" + "KDR" "1.304348" + "enemy_kills" "30" + "deaths" "23" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "6" + "opening_kills" "6" + "sniper_kills" "8" + "KDR" "1.565217" + "enemy_kills" "36" + "deaths" "23" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "7" + "sniper_kills" "12" + "KDR" "0.800000" + "enemy_kills" "40" + "deaths" "50" + "matches_played" "2" + } + } + "1" + { + "team" "5" + } + "3" + { + "team" "5" + } + } + } + "106428011" + { + "name" "EliGE" + "code" "elige" + "dob" "1997-07-16" + "geo" "US" + "events" + { + "8" + { + "team" "48" + "clutch_kills" "6" + "pistol_kills" "6" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "0.860000" + "enemy_kills" "43" + "deaths" "50" + "matches_played" "2" + "stage0" + { + "clutch_kills" "6" + "pistol_kills" "4" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "1.115385" + "enemy_kills" "29" + "deaths" "26" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.583333" + "enemy_kills" "14" + "deaths" "24" + "matches_played" "1" + } + } + "9" + { + "team" "48" + "clutch_kills" "4" + "pistol_kills" "22" + "opening_kills" "23" + "sniper_kills" "0" + "KDR" "0.931298" + "enemy_kills" "122" + "deaths" "131" + "matches_played" "6" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.947368" + "enemy_kills" "18" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "1" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.333333" + "enemy_kills" "32" + "deaths" "24" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "9" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.857143" + "enemy_kills" "30" + "deaths" "35" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "1" + "pistol_kills" "8" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.792453" + "enemy_kills" "42" + "deaths" "53" + "matches_played" "2" + } + } + "10" + { + "team" "48" + "clutch_kills" "16" + "pistol_kills" "34" + "opening_kills" "38" + "sniper_kills" "1" + "KDR" "1.031088" + "enemy_kills" "199" + "deaths" "193" + "matches_played" "11" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.400000" + "enemy_kills" "21" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.842105" + "enemy_kills" "16" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "8" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "1.354839" + "enemy_kills" "42" + "deaths" "31" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.921569" + "enemy_kills" "47" + "deaths" "51" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "10" + "sniper_kills" "1" + "KDR" "1.157895" + "enemy_kills" "44" + "deaths" "38" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "2" + "pistol_kills" "11" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.743590" + "enemy_kills" "29" + "deaths" "39" + "matches_played" "2" + } + } + "11" + { + "team" "48" + } + "13" + { + "team" "48" + } + "14" + { + "team" "48" + } + "15" + { + "team" "48" + } + "16" + { + "team" "48" + } + "18" + { + "team" "48" + } + "19" + { + "team" "48" + } + "20" + { + "team" "48" + } + } + } + "108760082" + { + "name" "FugLy" + "code" "fugly" + "dob" "1995-01-02" + "geo" "US" + "events" + { + "8" + { + "team" "48" + "clutch_kills" "2" + "pistol_kills" "9" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.869565" + "enemy_kills" "40" + "deaths" "46" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.888889" + "enemy_kills" "24" + "deaths" "27" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.842105" + "enemy_kills" "16" + "deaths" "19" + "matches_played" "1" + } + } + "9" + { + "team" "49" + "clutch_kills" "6" + "pistol_kills" "18" + "opening_kills" "9" + "sniper_kills" "1" + "KDR" "0.669291" + "enemy_kills" "85" + "deaths" "127" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.533333" + "enemy_kills" "8" + "deaths" "15" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.470588" + "enemy_kills" "8" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.800000" + "enemy_kills" "44" + "deaths" "55" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.625000" + "enemy_kills" "25" + "deaths" "40" + "matches_played" "2" + } + } + "15" + { + "team" "87" + } + } + } + "2791" + { + "name" "Hiko" + "code" "hiko" + "dob" "1990-03-06" + "geo" "US" + "events" + { + "8" + { + "team" "48" + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.756098" + "enemy_kills" "31" + "deaths" "41" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.869565" + "enemy_kills" "20" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.611111" + "enemy_kills" "11" + "deaths" "18" + "matches_played" "1" + } + } + "9" + { + "team" "48" + "clutch_kills" "22" + "pistol_kills" "19" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.048951" + "enemy_kills" "150" + "deaths" "143" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "16" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "6" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.230769" + "enemy_kills" "32" + "deaths" "26" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.214286" + "enemy_kills" "34" + "deaths" "28" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "12" + "pistol_kills" "9" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.978723" + "enemy_kills" "46" + "deaths" "47" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "2" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.846154" + "enemy_kills" "22" + "deaths" "26" + "matches_played" "1" + } + } + "10" + { + "team" "48" + "clutch_kills" "11" + "pistol_kills" "27" + "opening_kills" "19" + "sniper_kills" "2" + "KDR" "0.885246" + "enemy_kills" "162" + "deaths" "183" + "matches_played" "11" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "2.100000" + "enemy_kills" "21" + "deaths" "10" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.647059" + "enemy_kills" "11" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.818182" + "enemy_kills" "27" + "deaths" "33" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "11" + "opening_kills" "5" + "sniper_kills" "2" + "KDR" "0.903846" + "enemy_kills" "47" + "deaths" "52" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.842105" + "enemy_kills" "32" + "deaths" "38" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.727273" + "enemy_kills" "24" + "deaths" "33" + "matches_played" "2" + } + } + "11" + { + "team" "48" + } + "14" + { + "team" "82" + } + "1" + { + "team" "3" + } + "3" + { + "team" "3" + } + "4" + { + "team" "33" + } + "5" + { + "team" "33" + } + } + } + "35624002" + { + "name" "nitr0" + "code" "nitro" + "dob" "1995-08-16" + "geo" "US" + "events" + { + "8" + { + "team" "48" + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.816327" + "enemy_kills" "40" + "deaths" "49" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.620690" + "enemy_kills" "18" + "deaths" "29" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.100000" + "enemy_kills" "22" + "deaths" "20" + "matches_played" "1" + } + } + "9" + { + "team" "48" + "clutch_kills" "8" + "pistol_kills" "18" + "opening_kills" "17" + "sniper_kills" "1" + "KDR" "0.789474" + "enemy_kills" "105" + "deaths" "133" + "matches_played" "6" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.136364" + "enemy_kills" "25" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.535714" + "enemy_kills" "15" + "deaths" "28" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.062500" + "enemy_kills" "34" + "deaths" "32" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "0.607843" + "enemy_kills" "31" + "deaths" "51" + "matches_played" "2" + } + } + "10" + { + "team" "48" + "clutch_kills" "22" + "pistol_kills" "50" + "opening_kills" "28" + "sniper_kills" "2" + "KDR" "1.045000" + "enemy_kills" "209" + "deaths" "200" + "matches_played" "11" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.812500" + "enemy_kills" "13" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.043478" + "enemy_kills" "24" + "deaths" "23" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "11" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "1.600000" + "enemy_kills" "48" + "deaths" "30" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "4" + "pistol_kills" "16" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.113208" + "enemy_kills" "59" + "deaths" "53" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.871795" + "enemy_kills" "34" + "deaths" "39" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "9" + "pistol_kills" "9" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "0.794872" + "enemy_kills" "31" + "deaths" "39" + "matches_played" "2" + } + } + "11" + { + "team" "48" + } + "13" + { + "team" "48" + } + "14" + { + "team" "48" + } + "15" + { + "team" "48" + } + "16" + { + "team" "48" + } + "5" + { + "team" "5" + } + "19" + { + "team" "48" + } + "20" + { + "team" "48" + } + } + } + "38738282" + { + "name" "Stewie2K" + "code" "stewie2k" + "dob" "1998-01-07" + "geo" "US" + "events" + { + "9" + { + "team" "33" + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.540541" + "enemy_kills" "20" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.611111" + "enemy_kills" "11" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.473684" + "enemy_kills" "9" + "deaths" "19" + "matches_played" "1" + } + } + "12" + { + "team" "33" + } + "13" + { + "team" "33" + } + "14" + { + "team" "80" + } + "15" + { + "team" "48" + } + "16" + { + "team" "48" + } + "18" + { + "team" "48" + } + } + } + "53330928" + { + "name" "Shara" + "code" "shara" + "dob" "1992-08-12" + "geo" "UA" + "events" + { + "9" + { + "team" "43" + "clutch_kills" "7" + "pistol_kills" "10" + "opening_kills" "11" + "sniper_kills" "2" + "KDR" "1.159420" + "enemy_kills" "80" + "deaths" "69" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.153846" + "enemy_kills" "30" + "deaths" "26" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "6" + "pistol_kills" "3" + "opening_kills" "7" + "sniper_kills" "2" + "KDR" "1.162791" + "enemy_kills" "50" + "deaths" "43" + "matches_played" "1" + } + } + "10" + { + "team" "43" + "clutch_kills" "6" + "pistol_kills" "17" + "opening_kills" "20" + "sniper_kills" "0" + "KDR" "0.787879" + "enemy_kills" "104" + "deaths" "132" + "matches_played" "7" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "1" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.388889" + "enemy_kills" "7" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.888889" + "enemy_kills" "16" + "deaths" "18" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "1.212766" + "enemy_kills" "57" + "deaths" "47" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.489796" + "enemy_kills" "24" + "deaths" "49" + "matches_played" "2" + } + } + } + } + "170178574" + { + "name" "fnx" + "code" "fnx" + "dob" "1990-01-30" + "geo" "BR" + "events" + { + "9" + { + "team" "57" + "clutch_kills" "15" + "pistol_kills" "30" + "opening_kills" "20" + "sniper_kills" "0" + "KDR" "1.223603" + "enemy_kills" "197" + "deaths" "161" + "matches_played" "9" + "stage0" + { + "clutch_kills" "6" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.222222" + "enemy_kills" "22" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "3.222222" + "enemy_kills" "29" + "deaths" "9" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "8" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.264151" + "enemy_kills" "67" + "deaths" "53" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.909091" + "enemy_kills" "40" + "deaths" "44" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.054054" + "enemy_kills" "39" + "deaths" "37" + "matches_played" "2" + } + } + "10" + { + "team" "14" + "clutch_kills" "3" + "pistol_kills" "34" + "opening_kills" "24" + "sniper_kills" "1" + "KDR" "1.216783" + "enemy_kills" "174" + "deaths" "143" + "matches_played" "9" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.937500" + "enemy_kills" "15" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.666667" + "enemy_kills" "15" + "deaths" "9" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "13" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.677419" + "enemy_kills" "52" + "deaths" "31" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "0" + "pistol_kills" "13" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.035714" + "enemy_kills" "58" + "deaths" "56" + "matches_played" "3" + } + "stage5" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "8" + "sniper_kills" "1" + "KDR" "1.096774" + "enemy_kills" "34" + "deaths" "31" + "matches_played" "2" + } + } + "13" + { + "team" "71" + } + "19" + { + "team" "115" + } + } + } + "52876568" + { + "name" "TACO" + "code" "taco" + "dob" "1995-01-24" + "geo" "BR" + "events" + { + "9" + { + "team" "57" + "clutch_kills" "10" + "pistol_kills" "34" + "opening_kills" "28" + "sniper_kills" "17" + "KDR" "0.977143" + "enemy_kills" "171" + "deaths" "175" + "matches_played" "9" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "0.739130" + "enemy_kills" "17" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.833333" + "enemy_kills" "10" + "deaths" "12" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "0.931035" + "enemy_kills" "54" + "deaths" "58" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "8" + "sniper_kills" "11" + "KDR" "1.130435" + "enemy_kills" "52" + "deaths" "46" + "matches_played" "2" + } + "stage6" + { + "clutch_kills" "7" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "5" + "KDR" "1.055556" + "enemy_kills" "38" + "deaths" "36" + "matches_played" "2" + } + } + "10" + { + "team" "14" + "clutch_kills" "9" + "pistol_kills" "34" + "opening_kills" "29" + "sniper_kills" "4" + "KDR" "1.308219" + "enemy_kills" "191" + "deaths" "146" + "matches_played" "9" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "1.294118" + "enemy_kills" "22" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "2.100000" + "enemy_kills" "21" + "deaths" "10" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "11" + "opening_kills" "7" + "sniper_kills" "4" + "KDR" "1.297297" + "enemy_kills" "48" + "deaths" "37" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.035714" + "enemy_kills" "58" + "deaths" "56" + "matches_played" "3" + } + "stage5" + { + "clutch_kills" "3" + "pistol_kills" "8" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.615385" + "enemy_kills" "42" + "deaths" "26" + "matches_played" "2" + } + } + "11" + { + "team" "14" + } + "12" + { + "team" "14" + } + "13" + { + "team" "14" + } + "14" + { + "team" "48" + } + "15" + { + "team" "80" + } + "16" + { + "team" "80" + } + "18" + { + "team" "67" + } + "20" + { + "team" "116" + } + } + } + "57312567" + { + "name" "pyth" + "code" "pyth" + "dob" "1993-09-21" + "geo" "SE" + "events" + { + "10" + { + "team" "1" + "clutch_kills" "8" + "pistol_kills" "18" + "opening_kills" "13" + "sniper_kills" "11" + "KDR" "0.977012" + "enemy_kills" "85" + "deaths" "87" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "2.875000" + "enemy_kills" "23" + "deaths" "8" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "2" + "KDR" "0.523810" + "enemy_kills" "11" + "deaths" "21" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "11" + "opening_kills" "8" + "sniper_kills" "7" + "KDR" "0.879310" + "enemy_kills" "51" + "deaths" "58" + "matches_played" "3" + } + } + } + } + "24868593" + { + "name" "jasonR" + "code" "jasonr" + "dob" "1994-08-02" + "geo" "CA" + "events" + { + "9" + { + "team" "62" + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.352941" + "enemy_kills" "12" + "deaths" "34" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.277778" + "enemy_kills" "5" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.437500" + "enemy_kills" "7" + "deaths" "16" + "matches_played" "1" + } + } + } + } + "411777" + { + "name" "arya" + "code" "arya" + "dob" "1992-09-26" + "geo" "US" + "events" + { + "9" + { + "team" "62" + "clutch_kills" "3" + "pistol_kills" "10" + "opening_kills" "7" + "sniper_kills" "5" + "KDR" "0.656250" + "enemy_kills" "21" + "deaths" "32" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "0.444444" + "enemy_kills" "8" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "3" + "KDR" "0.928571" + "enemy_kills" "13" + "deaths" "14" + "matches_played" "1" + } + } + } + } + "2029235" + { + "name" "Professor_Chaos" + "code" "professorchaos" + "dob" "1990-03-31" + "geo" "US" + "events" + { + "9" + { + "team" "62" + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.529412" + "enemy_kills" "18" + "deaths" "34" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.555556" + "enemy_kills" "10" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "8" + "deaths" "16" + "matches_played" "1" + } + } + } + } + "100534297" + { + "name" "DAVEY" + "code" "davey" + "dob" "1996-04-29" + "geo" "CA" + "events" + { + "9" + { + "team" "62" + "clutch_kills" "5" + "pistol_kills" "9" + "opening_kills" "6" + "sniper_kills" "17" + "KDR" "0.939394" + "enemy_kills" "31" + "deaths" "33" + "matches_played" "2" + "stage0" + { + "clutch_kills" "5" + "pistol_kills" "6" + "opening_kills" "2" + "sniper_kills" "8" + "KDR" "1.187500" + "enemy_kills" "19" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "9" + "KDR" "0.705882" + "enemy_kills" "12" + "deaths" "17" + "matches_played" "1" + } + } + } + } + "25060851" + { + "name" "abE" + "code" "abe" + "dob" "1992-09-04" + "geo" "US" + "events" + { + "9" + { + "team" "62" + "clutch_kills" "0" + "pistol_kills" "7" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.361111" + "enemy_kills" "13" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.421053" + "enemy_kills" "8" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.294118" + "enemy_kills" "5" + "deaths" "17" + "matches_played" "1" + } + } + } + } + "73936547" + { + "name" "s1mple" + "code" "s1mple" + "dob" "1997-10-02" + "geo" "UA" + "events" + { + "9" + { + "team" "48" + "clutch_kills" "5" + "pistol_kills" "30" + "opening_kills" "42" + "sniper_kills" "84" + "KDR" "1.191358" + "enemy_kills" "193" + "deaths" "162" + "matches_played" "7" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "6" + "KDR" "0.937500" + "enemy_kills" "15" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "9" + "sniper_kills" "20" + "KDR" "1.370370" + "enemy_kills" "37" + "deaths" "27" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "1" + "pistol_kills" "7" + "opening_kills" "14" + "sniper_kills" "34" + "KDR" "1.485714" + "enemy_kills" "52" + "deaths" "35" + "matches_played" "2" + } + "stage4" + { + "clutch_kills" "1" + "pistol_kills" "9" + "opening_kills" "13" + "sniper_kills" "23" + "KDR" "1.019231" + "enemy_kills" "53" + "deaths" "52" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "1.125000" + "enemy_kills" "36" + "deaths" "32" + "matches_played" "1" + } + } + "10" + { + "team" "48" + "clutch_kills" "13" + "pistol_kills" "44" + "opening_kills" "28" + "sniper_kills" "38" + "KDR" "1.165803" + "enemy_kills" "225" + "deaths" "193" + "matches_played" "11" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "1" + "enemy_kills" "14" + "deaths" "14" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "8" + "opening_kills" "4" + "sniper_kills" "3" + "KDR" "1.285714" + "enemy_kills" "27" + "deaths" "21" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "10" + "KDR" "1.413793" + "enemy_kills" "41" + "deaths" "29" + "matches_played" "2" + } + "stage3" + { + "clutch_kills" "7" + "pistol_kills" "11" + "opening_kills" "8" + "sniper_kills" "4" + "KDR" "1.240741" + "enemy_kills" "67" + "deaths" "54" + "matches_played" "3" + } + "stage4" + { + "clutch_kills" "6" + "pistol_kills" "8" + "opening_kills" "8" + "sniper_kills" "19" + "KDR" "1.375000" + "enemy_kills" "55" + "deaths" "40" + "matches_played" "2" + } + "stage5" + { + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.600000" + "enemy_kills" "21" + "deaths" "35" + "matches_played" "2" + } + } + "11" + { + "team" "12" + } + "12" + { + "team" "12" + } + "13" + { + "team" "12" + } + "14" + { + "team" "12" + } + "15" + { + "team" "12" + } + "16" + { + "team" "12" + } + "5" + { + "team" "25" + } + "18" + { + "team" "12" + } + "19" + { + "team" "12" + } + "20" + { + "team" "12" + } + } + } + "38340970" + { + "name" "wayLander" + "code" "waylander" + "dob" "1994-04-22" + "geo" "FI" + "events" + { + "9" + { + "team" "63" + "clutch_kills" "7" + "pistol_kills" "11" + "opening_kills" "13" + "sniper_kills" "2" + "KDR" "0.931373" + "enemy_kills" "95" + "deaths" "102" + "matches_played" "5" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.652174" + "enemy_kills" "15" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "3" + "opening_kills" "6" + "sniper_kills" "0" + "KDR" "1.875000" + "enemy_kills" "30" + "deaths" "16" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "2" + "KDR" "0.793651" + "enemy_kills" "50" + "deaths" "63" + "matches_played" "3" + } + } + "10" + { + "team" "43" + "clutch_kills" "9" + "pistol_kills" "16" + "opening_kills" "20" + "sniper_kills" "0" + "KDR" "1.022556" + "enemy_kills" "136" + "deaths" "133" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.681818" + "enemy_kills" "15" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.950000" + "enemy_kills" "19" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "1.307692" + "enemy_kills" "68" + "deaths" "52" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.871795" + "enemy_kills" "34" + "deaths" "39" + "matches_played" "2" + } + } + "11" + { + "team" "43" + } + "12" + { + "team" "43" + } + "13" + { + "team" "43" + } + "15" + { + "team" "83" + } + } + } + "146641530" + { + "name" "Dosia" + "code" "dosia" + "dob" "1988-06-19" + "geo" "RU" + "events" + { + "9" + { + "team" "63" + "clutch_kills" "10" + "pistol_kills" "8" + "opening_kills" "12" + "sniper_kills" "2" + "KDR" "0.900000" + "enemy_kills" "90" + "deaths" "100" + "matches_played" "5" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.826087" + "enemy_kills" "19" + "deaths" "23" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.950000" + "enemy_kills" "19" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "5" + "pistol_kills" "3" + "opening_kills" "9" + "sniper_kills" "2" + "KDR" "0.912281" + "enemy_kills" "52" + "deaths" "57" + "matches_played" "3" + } + } + "10" + { + "team" "63" + "clutch_kills" "4" + "pistol_kills" "11" + "opening_kills" "8" + "sniper_kills" "2" + "KDR" "0.776119" + "enemy_kills" "52" + "deaths" "67" + "matches_played" "4" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "0.882353" + "enemy_kills" "15" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.538462" + "enemy_kills" "20" + "deaths" "13" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.459459" + "enemy_kills" "17" + "deaths" "37" + "matches_played" "2" + } + } + "11" + { + "team" "63" + } + "12" + { + "team" "63" + } + "13" + { + "team" "63" + } + "14" + { + "team" "63" + } + "1" + { + "team" "2" + } + "3" + { + "team" "25" + } + "4" + { + "team" "25" + } + "5" + { + "team" "25" + } + "6" + { + "team" "25" + } + } + } + "5809933" + { + "name" "hooch" + "code" "hooch" + "dob" "1987-03-13" + "geo" "RU" + "events" + { + "9" + { + "team" "63" + "clutch_kills" "12" + "pistol_kills" "24" + "opening_kills" "10" + "sniper_kills" "2" + "KDR" "0.939394" + "enemy_kills" "93" + "deaths" "99" + "matches_played" "5" + "stage0" + { + "clutch_kills" "4" + "pistol_kills" "8" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.952381" + "enemy_kills" "20" + "deaths" "21" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "8" + "pistol_kills" "13" + "opening_kills" "8" + "sniper_kills" "2" + "KDR" "0.948276" + "enemy_kills" "55" + "deaths" "58" + "matches_played" "3" + } + } + "10" + { + "team" "63" + "clutch_kills" "3" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.623188" + "enemy_kills" "43" + "deaths" "69" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.727273" + "enemy_kills" "16" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "13" + "deaths" "13" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.411765" + "enemy_kills" "14" + "deaths" "34" + "matches_played" "2" + } + } + } + } + "52678767" + { + "name" "mou" + "code" "mou" + "dob" "1991-10-17" + "geo" "KZ" + "events" + { + "9" + { + "team" "63" + "clutch_kills" "6" + "pistol_kills" "19" + "opening_kills" "15" + "sniper_kills" "33" + "KDR" "0.886598" + "enemy_kills" "86" + "deaths" "97" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "6" + "KDR" "1" + "enemy_kills" "18" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "5" + "KDR" "0.789474" + "enemy_kills" "15" + "deaths" "19" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "10" + "sniper_kills" "22" + "KDR" "0.883333" + "enemy_kills" "53" + "deaths" "60" + "matches_played" "3" + } + } + "10" + { + "team" "63" + "clutch_kills" "2" + "pistol_kills" "12" + "opening_kills" "12" + "sniper_kills" "34" + "KDR" "0.932203" + "enemy_kills" "55" + "deaths" "59" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "8" + "sniper_kills" "17" + "KDR" "1.235294" + "enemy_kills" "21" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "6" + "opening_kills" "1" + "sniper_kills" "9" + "KDR" "2" + "enemy_kills" "18" + "deaths" "9" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "3" + "sniper_kills" "8" + "KDR" "0.484848" + "enemy_kills" "16" + "deaths" "33" + "matches_played" "2" + } + } + "11" + { + "team" "63" + } + "12" + { + "team" "63" + } + "13" + { + "team" "63" + } + "14" + { + "team" "63" + } + } + } + "46200979" + { + "name" "AdreN" + "code" "adrenkz" + "dob" "1990-02-04" + "geo" "KZ" + "events" + { + "9" + { + "team" "63" + "clutch_kills" "13" + "pistol_kills" "24" + "opening_kills" "14" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "98" + "deaths" "98" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.904762" + "enemy_kills" "19" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "0" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.900000" + "enemy_kills" "18" + "deaths" "20" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "9" + "pistol_kills" "19" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.070175" + "enemy_kills" "61" + "deaths" "57" + "matches_played" "3" + } + } + "10" + { + "team" "63" + "clutch_kills" "3" + "pistol_kills" "11" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "1.075758" + "enemy_kills" "71" + "deaths" "66" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.315789" + "enemy_kills" "25" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "1.714286" + "enemy_kills" "24" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "2" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "22" + "deaths" "33" + "matches_played" "2" + } + } + "11" + { + "team" "63" + } + "12" + { + "team" "63" + } + "13" + { + "team" "63" + } + "14" + { + "team" "63" + } + "15" + { + "team" "61" + } + "16" + { + "team" "75" + } + "1" + { + "team" "2" + } + "3" + { + "team" "25" + } + "4" + { + "team" "25" + } + "6" + { + "team" "25" + } + } + } + "44238623" + { + "name" "DEVIL" + "code" "devil" + "dob" "1994-12-11" + "geo" "FR" + "events" + { + "9" + { + "team" "46" + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.756757" + "enemy_kills" "28" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.823529" + "enemy_kills" "14" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.700000" + "enemy_kills" "14" + "deaths" "20" + "matches_played" "1" + } + } + "10" + { + "team" "46" + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.600000" + "enemy_kills" "24" + "deaths" "40" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.450000" + "enemy_kills" "9" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.750000" + "enemy_kills" "15" + "deaths" "20" + "matches_played" "1" + } + } + } + } + "158900" + { + "name" "THREAT" + "code" "threat" + "dob" "1988-04-05" + "geo" "SE" + "events" + { + "9" + { + "team" "1" + "clutch_kills" "8" + "pistol_kills" "19" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "0.709924" + "enemy_kills" "93" + "deaths" "131" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "2" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.708333" + "enemy_kills" "17" + "deaths" "24" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.352941" + "enemy_kills" "6" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "1.040000" + "enemy_kills" "52" + "deaths" "50" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "5" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.450000" + "enemy_kills" "18" + "deaths" "40" + "matches_played" "2" + } + } + } + } + "161590" + { + "name" "koosta" + "code" "koosta" + "dob" "1996-03-06" + "geo" "US" + "events" + { + "10" + { + "team" "49" + "clutch_kills" "0" + "pistol_kills" "6" + "opening_kills" "5" + "sniper_kills" "14" + "KDR" "0.611111" + "enemy_kills" "22" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "12" + "KDR" "0.761905" + "enemy_kills" "16" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "2" + "KDR" "0.400000" + "enemy_kills" "6" + "deaths" "15" + "matches_played" "1" + } + } + } + } + "26459" + { + "name" "pita" + "code" "pita" + "dob" "1990-12-18" + "geo" "SE" + "events" + { + "10" + { + "team" "49" + "clutch_kills" "3" + "pistol_kills" "9" + "opening_kills" "4" + "sniper_kills" "2" + "KDR" "0.911765" + "enemy_kills" "31" + "deaths" "34" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "5" + "opening_kills" "3" + "sniper_kills" "2" + "KDR" "1.105263" + "enemy_kills" "21" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "10" + "deaths" "15" + "matches_played" "1" + } + } + "1" + { + "team" "14" + } + } + } + "19892353" + { + "name" "daps" + "code" "daps" + "dob" "1993-07-28" + "geo" "CA" + "events" + { + "10" + { + "team" "66" + "clutch_kills" "6" + "pistol_kills" "6" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.512821" + "enemy_kills" "20" + "deaths" "39" + "matches_played" "2" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.529412" + "enemy_kills" "9" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "3" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "0.500000" + "enemy_kills" "11" + "deaths" "22" + "matches_played" "1" + } + } + "15" + { + "team" "87" + } + } + } + "27224124" + { + "name" "mixwell" + "code" "mixwell" + "dob" "1995-10-10" + "geo" "ES" + "events" + { + "10" + { + "team" "66" + "clutch_kills" "5" + "pistol_kills" "10" + "opening_kills" "8" + "sniper_kills" "15" + "KDR" "1.108108" + "enemy_kills" "41" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "3" + "opening_kills" "2" + "sniper_kills" "2" + "KDR" "0.500000" + "enemy_kills" "9" + "deaths" "18" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "4" + "pistol_kills" "7" + "opening_kills" "6" + "sniper_kills" "13" + "KDR" "1.684211" + "enemy_kills" "32" + "deaths" "19" + "matches_played" "1" + } + } + "11" + { + "team" "66" + } + } + } + "40885967" + { + "name" "NAF" + "code" "naf" + "dob" "1997-11-24" + "geo" "CA" + "events" + { + "10" + { + "team" "66" + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.550000" + "enemy_kills" "22" + "deaths" "40" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "2" + "sniper_kills" "1" + "KDR" "0.421053" + "enemy_kills" "8" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.666667" + "enemy_kills" "14" + "deaths" "21" + "matches_played" "1" + } + } + "11" + { + "team" "66" + } + "13" + { + "team" "53" + } + "14" + { + "team" "48" + } + "15" + { + "team" "48" + } + "16" + { + "team" "48" + } + "18" + { + "team" "48" + } + "19" + { + "team" "48" + } + "20" + { + "team" "48" + } + } + } + "63326592" + { + "name" "RUSH" + "code" "rush" + "dob" "1994-05-05" + "geo" "US" + "events" + { + "10" + { + "team" "66" + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.750000" + "enemy_kills" "27" + "deaths" "36" + "matches_played" "2" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.647059" + "enemy_kills" "11" + "deaths" "17" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "0.842105" + "enemy_kills" "16" + "deaths" "19" + "matches_played" "1" + } + } + "11" + { + "team" "66" + } + "13" + { + "team" "33" + } + "14" + { + "team" "33" + } + "15" + { + "team" "33" + } + } + } + "21583315" + { + "name" "stanislaw" + "code" "stanislaw" + "dob" "1994-03-22" + "geo" "CA" + "events" + { + "10" + { + "team" "66" + "clutch_kills" "3" + "pistol_kills" "7" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.513514" + "enemy_kills" "19" + "deaths" "37" + "matches_played" "2" + "stage0" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.437500" + "enemy_kills" "7" + "deaths" "16" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "0" + "KDR" "0.571429" + "enemy_kills" "12" + "deaths" "21" + "matches_played" "1" + } + } + "11" + { + "team" "66" + } + "13" + { + "team" "48" + } + "14" + { + "team" "3" + } + "15" + { + "team" "3" + } + "16" + { + "team" "87" + } + "18" + { + "team" "98" + } + } + } + "35103983" + { + "name" "RUBINO" + "code" "rubino" + "dob" "1994-03-21" + "geo" "NO" + "events" + { + "10" + { + "team" "24" + "clutch_kills" "7" + "pistol_kills" "16" + "opening_kills" "16" + "sniper_kills" "1" + "KDR" "1.106383" + "enemy_kills" "104" + "deaths" "94" + "matches_played" "5" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "4" + "opening_kills" "3" + "sniper_kills" "1" + "KDR" "0.550000" + "enemy_kills" "11" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "5" + "sniper_kills" "0" + "KDR" "4.571429" + "enemy_kills" "32" + "deaths" "7" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "7" + "opening_kills" "8" + "sniper_kills" "0" + "KDR" "0.910448" + "enemy_kills" "61" + "deaths" "67" + "matches_played" "3" + } + } + "11" + { + "team" "68" + } + "4" + { + "team" "36" + } + "6" + { + "team" "9" + } + } + } + "19403447" + { + "name" "k0nfig" + "code" "k0nfig" + "dob" "1997-04-19" + "geo" "DK" + "events" + { + "10" + { + "team" "24" + "clutch_kills" "8" + "pistol_kills" "13" + "opening_kills" "13" + "sniper_kills" "0" + "KDR" "1.065217" + "enemy_kills" "98" + "deaths" "92" + "matches_played" "5" + "stage0" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "1.315789" + "enemy_kills" "25" + "deaths" "19" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "1" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.333333" + "enemy_kills" "12" + "deaths" "9" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "6" + "pistol_kills" "6" + "opening_kills" "10" + "sniper_kills" "0" + "KDR" "0.953125" + "enemy_kills" "61" + "deaths" "64" + "matches_played" "3" + } + } + "11" + { + "team" "68" + } + "12" + { + "team" "68" + } + "13" + { + "team" "68" + } + "14" + { + "team" "66" + } + "19" + { + "team" "60" + } + } + } + "53029647" + { + "name" "bodyy" + "code" "bodyy" + "dob" "1997-01-08" + "geo" "FR" + "events" + { + "10" + { + "team" "59" + "clutch_kills" "2" + "pistol_kills" "8" + "opening_kills" "5" + "sniper_kills" "1" + "KDR" "0.627907" + "enemy_kills" "27" + "deaths" "43" + "matches_played" "2" + "stage0" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.590909" + "enemy_kills" "13" + "deaths" "22" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "2" + "pistol_kills" "6" + "opening_kills" "1" + "sniper_kills" "1" + "KDR" "0.666667" + "enemy_kills" "14" + "deaths" "21" + "matches_played" "1" + } + } + "11" + { + "team" "59" + } + "12" + { + "team" "59" + } + "13" + { + "team" "59" + } + "14" + { + "team" "59" + } + "15" + { + "team" "59" + } + } + } + "50245293" + { + "name" "gla1ve" + "code" "gla1ve" + "dob" "1998-04-27" + "geo" "DK" + "events" + { + "10" + { + "team" "60" + "clutch_kills" "9" + "pistol_kills" "29" + "opening_kills" "19" + "sniper_kills" "2" + "KDR" "1.046667" + "enemy_kills" "157" + "deaths" "150" + "matches_played" "7" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "1.047619" + "enemy_kills" "22" + "deaths" "21" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "1" + "pistol_kills" "4" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1" + "enemy_kills" "17" + "deaths" "17" + "matches_played" "1" + } + "stage2" + { + "clutch_kills" "2" + "pistol_kills" "10" + "opening_kills" "9" + "sniper_kills" "0" + "KDR" "1.032787" + "enemy_kills" "63" + "deaths" "61" + "matches_played" "3" + } + "stage3" + { + "clutch_kills" "5" + "pistol_kills" "11" + "opening_kills" "4" + "sniper_kills" "1" + "KDR" "1.078431" + "enemy_kills" "55" + "deaths" "51" + "matches_played" "2" + } + } + "11" + { + "team" "60" + } + "12" + { + "team" "60" + } + "13" + { + "team" "60" + } + "14" + { + "team" "60" + } + "15" + { + "team" "60" + } + "16" + { + "team" "60" + } + "1" + { + "team" "13" + } + "3" + { + "team" "28" + } + "4" + { + "team" "10" + } + "5" + { + "team" "10" + } + "18" + { + "team" "60" + } + "19" + { + "team" "60" + } + } + } + "109497526" + { + "name" "spaze" + "code" "spaze" + "dob" "1997-05-28" + "geo" "RU" + "events" + { + "10" + { + "team" "63" + "clutch_kills" "4" + "pistol_kills" "10" + "opening_kills" "7" + "sniper_kills" "0" + "KDR" "0.852941" + "enemy_kills" "58" + "deaths" "68" + "matches_played" "4" + "stage0" + { + "clutch_kills" "1" + "pistol_kills" "5" + "opening_kills" "2" + "sniper_kills" "0" + "KDR" "1.200000" + "enemy_kills" "24" + "deaths" "20" + "matches_played" "1" + } + "stage1" + { + "clutch_kills" "0" + "pistol_kills" "2" + "opening_kills" "1" + "sniper_kills" "0" + "KDR" "0.857143" + "enemy_kills" "12" + "deaths" "14" + "matches_played" "1" + } + "stage3" + { + "clutch_kills" "3" + "pistol_kills" "3" + "opening_kills" "4" + "sniper_kills" "0" + "KDR" "0.647059" + "enemy_kills" "22" + "deaths" "34" + "matches_played" "2" + } + } + } + } + "55928431" + { + "name" "STYKO" + "code" "styko" + "dob" "1996-02-23" + "geo" "SK" + "events" + { + "11" + { + "team" "25" + } + "13" + { + "team" "29" + } + "14" + { + "team" "33" + } + } + } + "34322135" + { + "name" "Zero" + "code" "zero" + "dob" "1998-09-16" + "geo" "SK" + "events" + { + "11" + { + "team" "25" + } + } + } + "29338592" + { + "name" "DeadFox" + "code" "deadfox" + "dob" "1995-02-15" + "geo" "HU" + "events" + { + "11" + { + "team" "25" + } + "14" + { + "team" "25" + } + "15" + { + "team" "25" + } + "16" + { + "team" "25" + } + } + } + "58930363" + { + "name" "ANGE1" + "code" "angel" + "dob" "1989-09-10" + "geo" "UA" + "events" + { + "11" + { + "team" "25" + } + "14" + { + "team" "25" + } + "15" + { + "team" "25" + } + "16" + { + "team" "25" + } + "1" + { + "team" "2" + } + "3" + { + "team" "25" + } + "4" + { + "team" "25" + } + "5" + { + "team" "25" + } + "6" + { + "team" "25" + } + } + } + "3429256" + { + "name" "SIXER" + "code" "sixer" + "dob" "1991-04-21" + "geo" "FR" + "events" + { + "11" + { + "team" "46" + } + "13" + { + "team" "46" + } + } + } + "83779379" + { + "name" "electronic" + "code" "electronic" + "dob" "1998-02-09" + "geo" "RU" + "events" + { + "11" + { + "team" "43" + } + "12" + { + "team" "43" + } + "13" + { + "team" "12" + } + "14" + { + "team" "12" + } + "15" + { + "team" "12" + } + "16" + { + "team" "12" + } + "18" + { + "team" "12" + } + "19" + { + "team" "12" + } + "20" + { + "team" "12" + } + } + } + "19979131" + { + "name" "Twist" + "code" "twist" + "dob" "1994-12-12" + "geo" "SE" + "events" + { + "11" + { + "team" "6" + } + "15" + { + "team" "6" + } + "1" + { + "team" "14" + } + "3" + { + "team" "9" + } + "5" + { + "team" "43" + } + } + } + "161262907" + { + "name" "disco doplan" + "code" "discodoplan" + "dob" "1995-08-16" + "geo" "SE" + "events" + { + "11" + { + "team" "6" + } + } + } + "34456844" + { + "name" "loWel" + "code" "lowel" + "dob" "1996-12-11" + "geo" "ES" + "events" + { + "11" + { + "team" "29" + } + "12" + { + "team" "29" + } + "16" + { + "team" "25" + } + } + } + "97816050" + { + "name" "znajder" + "code" "znajder" + "dob" "1993-05-18" + "geo" "SE" + "events" + { + "11" + { + "team" "67" + } + "1" + { + "team" "6" + } + "3" + { + "team" "6" + } + } + } + "1093135" + { + "name" "Lekr0" + "code" "lekro" + "dob" "1993-07-02" + "geo" "SE" + "events" + { + "11" + { + "team" "67" + } + "13" + { + "team" "6" + } + "14" + { + "team" "1" + } + "15" + { + "team" "1" + } + "16" + { + "team" "1" + } + } + } + "23690923" + { + "name" "Magisk" + "code" "magisk" + "dob" "1998-03-05" + "geo" "DK" + "events" + { + "11" + { + "team" "68" + } + "12" + { + "team" "68" + } + "14" + { + "team" "60" + } + "15" + { + "team" "60" + } + "16" + { + "team" "60" + } + "18" + { + "team" "60" + } + "19" + { + "team" "89" + } + "20" + { + "team" "89" + } + } + } + "68027030" + { + "name" "Hobbit" + "code" "hobbit" + "dob" "1994-05-18" + "geo" "KZ" + "events" + { + "11" + { + "team" "63" + } + "12" + { + "team" "63" + } + "13" + { + "team" "63" + } + "14" + { + "team" "63" + } + "15" + { + "team" "25" + } + "18" + { + "team" "63" + } + "19" + { + "team" "33" + } + "20" + { + "team" "33" + } + } + } + "22765766" + { + "name" "felps" + "code" "felps" + "dob" "1996-12-16" + "geo" "BR" + "events" + { + "12" + { + "team" "14" + } + "13" + { + "team" "14" + } + "15" + { + "team" "80" + } + "18" + { + "team" "67" + } + } + } + "171425088" + { + "name" "oskar" + "code" "oskar" + "dob" "1991-06-21" + "geo" "CZ" + "events" + { + "12" + { + "team" "29" + } + "13" + { + "team" "29" + } + "14" + { + "team" "29" + } + "16" + { + "team" "25" + } + } + } + "31006590" + { + "name" "ropz" + "code" "ropz" + "dob" "1999-12-22" + "geo" "EE" + "events" + { + "12" + { + "team" "29" + } + "13" + { + "team" "29" + } + "14" + { + "team" "29" + } + "16" + { + "team" "29" + } + "18" + { + "team" "106" + } + "19" + { + "team" "61" + } + "20" + { + "team" "61" + } + } + } + "51271036" + { + "name" "keev" + "code" "keev" + "dob" "1991-11-18" + "geo" "DE" + "events" + { + "12" + { + "team" "69" + } + "13" + { + "team" "69" + } + } + } + "21242287" + { + "name" "LEGIJA" + "code" "legija" + "dob" "1990-10-15" + "geo" "DE" + "events" + { + "12" + { + "team" "69" + } + "13" + { + "team" "69" + } + "3" + { + "team" "29" + } + } + } + "1225952" + { + "name" "tabseN" + "code" "tabsen" + "dob" "1995-04-05" + "geo" "DE" + "events" + { + "12" + { + "team" "69" + } + "13" + { + "team" "69" + } + "14" + { + "team" "69" + } + "15" + { + "team" "69" + } + "3" + { + "team" "29" + } + "18" + { + "team" "69" + } + "19" + { + "team" "69" + } + "20" + { + "team" "69" + } + } + } + "94605121" + { + "name" "autimatic" + "code" "autimatic" + "dob" "1996-10-09" + "geo" "US" + "events" + { + "12" + { + "team" "33" + } + "13" + { + "team" "33" + } + "14" + { + "team" "33" + } + "15" + { + "team" "33" + } + "20" + { + "team" "98" + } + } + } + "3417033" + { + "name" "HS" + "code" "hs" + "dob" "1996-12-15" + "geo" "EE" + "events" + { + "12" + { + "team" "39" + } + } + } + "26563533" + { + "name" "innocent" + "code" "innocent" + "dob" "1993-12-20" + "geo" "PL" + "events" + { + "12" + { + "team" "39" + } + "13" + { + "team" "72" + } + "5" + { + "team" "42" + } + } + } + "17526007" + { + "name" "kRYSTAL" + "code" "krystal" + "dob" "1993-07-23" + "geo" "DE" + "events" + { + "12" + { + "team" "39" + } + "13" + { + "team" "72" + } + "5" + { + "team" "39" + } + "6" + { + "team" "39" + } + } + } + "57405333" + { + "name" "suNny" + "code" "sunny" + "dob" "1994-08-24" + "geo" "FI" + "events" + { + "12" + { + "team" "39" + } + "13" + { + "team" "29" + } + "14" + { + "team" "29" + } + } + } + "16308501" + { + "name" "zehN" + "code" "zehn" + "dob" "1991-11-07" + "geo" "FI" + "events" + { + "12" + { + "team" "39" + } + "13" + { + "team" "72" + } + } + } + "57761535" + { + "name" "HEN1" + "code" "hen1" + "dob" "1995-07-14" + "geo" "BR" + "events" + { + "12" + { + "team" "71" + } + "13" + { + "team" "71" + } + } + } + "6732863" + { + "name" "kNgV-" + "code" "kngv" + "dob" "1992-11-26" + "geo" "BR" + "events" + { + "12" + { + "team" "71" + } + "13" + { + "team" "71" + } + "16" + { + "team" "94" + } + } + } + "4780624" + { + "name" "LUCAS1" + "code" "lucas1" + "dob" "1995-07-14" + "geo" "BR" + "events" + { + "12" + { + "team" "71" + } + "13" + { + "team" "71" + } + "16" + { + "team" "80" + } + } + } + "85633136" + { + "name" "chopper" + "code" "chopper" + "dob" "1997-02-04" + "geo" "RU" + "events" + { + "12" + { + "team" "70" + } + "13" + { + "team" "70" + } + "14" + { + "team" "70" + } + "15" + { + "team" "70" + } + "18" + { + "team" "81" + } + "19" + { + "team" "81" + } + "20" + { + "team" "81" + } + } + } + "61587630" + { + "name" "hutji" + "code" "hutji" + "dob" "1995-09-13" + "geo" "RU" + "events" + { + "12" + { + "team" "70" + } + "13" + { + "team" "70" + } + "14" + { + "team" "70" + } + "15" + { + "team" "70" + } + } + } + "43490511" + { + "name" "jR" + "code" "jr" + "dob" "1993-10-22" + "geo" "UA" + "events" + { + "12" + { + "team" "70" + } + "13" + { + "team" "70" + } + "14" + { + "team" "70" + } + "15" + { + "team" "70" + } + } + } + "65572922" + { + "name" "keshandr" + "code" "keshandr" + "dob" "1994-03-28" + "geo" "RU" + "events" + { + "12" + { + "team" "70" + } + "13" + { + "team" "70" + } + } + } + "40562076" + { + "name" "mir" + "code" "mir" + "dob" "1996-01-10" + "geo" "RU" + "events" + { + "12" + { + "team" "70" + } + "13" + { + "team" "70" + } + "14" + { + "team" "63" + } + "18" + { + "team" "81" + } + } + } + "50204800" + { + "name" "balblna" + "code" "balblna" + "dob" "1996-01-15" + "geo" "RU" + "events" + { + "13" + { + "team" "76" + } + "14" + { + "team" "83" + } + } + } + "115223433" + { + "name" "jmqa" + "code" "jmqa" + "dob" "1997-04-17" + "geo" "RU" + "events" + { + "13" + { + "team" "76" + } + "14" + { + "team" "83" + } + } + } + "12720124" + { + "name" "waterfaLLZ" + "code" "waterfallz" + "dob" "1995-06-18" + "geo" "RU" + "events" + { + "13" + { + "team" "76" + } + "14" + { + "team" "83" + } + } + } + "185941338" + { + "name" "Boombl4" + "code" "boombl4" + "dob" "1998-12-20" + "geo" "RU" + "events" + { + "13" + { + "team" "76" + } + "14" + { + "team" "83" + } + "15" + { + "team" "83" + } + "16" + { + "team" "12" + } + "18" + { + "team" "12" + } + "19" + { + "team" "12" + } + } + } + "40982505" + { + "name" "Kvik" + "code" "kvik" + "dob" "1995-11-18" + "geo" "LT" + "events" + { + "13" + { + "team" "76" + } + "14" + { + "team" "83" + } + "15" + { + "team" "83" + } + } + } + "55989477" + { + "name" "Twistzz" + "code" "twistzz" + "dob" "1999-11-14" + "geo" "CA" + "events" + { + "13" + { + "team" "48" + } + "14" + { + "team" "48" + } + "15" + { + "team" "48" + } + "16" + { + "team" "48" + } + "18" + { + "team" "61" + } + "19" + { + "team" "61" + } + "20" + { + "team" "61" + } + } + } + "116664993" + { + "name" "devoduvek" + "code" "devoduvek" + "dob" "1994-11-03" + "geo" "FR" + "events" + { + "13" + { + "team" "77" + } + } + } + "108679223" + { + "name" "AmaNEk" + "code" "amanek" + "dob" "1993-08-24" + "geo" "FR" + "events" + { + "13" + { + "team" "77" + } + "16" + { + "team" "59" + } + "18" + { + "team" "59" + } + } + } + "86003016" + { + "name" "ShahZaM" + "code" "shahzam" + "dob" "1993-10-08" + "geo" "US" + "events" + { + "13" + { + "team" "77" + } + "14" + { + "team" "3" + } + "15" + { + "team" "3" + } + "16" + { + "team" "3" + } + "6" + { + "team" "52" + } + } + } + "23556959" + { + "name" "SicK" + "code" "sick" + "dob" "1998-09-02" + "geo" "US" + "events" + { + "13" + { + "team" "77" + } + "14" + { + "team" "82" + } + "16" + { + "team" "3" + } + } + } + "154664140" + { + "name" "v4lde" + "code" "v4lde" + "dob" "1995-06-12" + "geo" "DK" + "events" + { + "13" + { + "team" "68" + } + "14" + { + "team" "68" + } + "16" + { + "team" "68" + } + "20" + { + "team" "84" + } + } + } + "9224396" + { + "name" "BIT" + "code" "bit" + "dob" "1990-07-16" + "geo" "BR" + "events" + { + "13" + { + "team" "71" + } + } + } + "38509481" + { + "name" "xms" + "code" "xms" + "dob" "1997-05-24" + "geo" "FR" + "events" + { + "13" + { + "team" "46" + } + } + } + "33208850" + { + "name" "fitch" + "code" "fitch" + "dob" "1992-07-15" + "geo" "KZ" + "events" + { + "13" + { + "team" "63" + } + "15" + { + "team" "75" + } + } + } + "7167161" + { + "name" "MAJ3R" + "code" "maj3r" + "dob" "1991-01-25" + "geo" "FR" + "events" + { + "13" + { + "team" "73" + } + "14" + { + "team" "73" + } + } + } + "17887362" + { + "name" "ngiN" + "code" "ngin" + "dob" "1993-05-27" + "geo" "TR" + "events" + { + "13" + { + "team" "73" + } + "14" + { + "team" "73" + } + } + } + "83853068" + { + "name" "XANTARES" + "code" "xantares" + "dob" "1995-08-07" + "geo" "TR" + "events" + { + "13" + { + "team" "73" + } + "14" + { + "team" "73" + } + "15" + { + "team" "69" + } + "19" + { + "team" "110" + } + } + } + "68524615" + { + "name" "paz" + "code" "paz" + "dob" "1997-04-24" + "geo" "TR" + "events" + { + "13" + { + "team" "73" + } + "14" + { + "team" "73" + } + } + } + "92280537" + { + "name" "Calyx" + "code" "calyx" + "dob" "1998-07-27" + "geo" "TR" + "events" + { + "13" + { + "team" "73" + } + "14" + { + "team" "73" + } + "19" + { + "team" "110" + } + } + } + "109036162" + { + "name" "captainMo" + "code" "captainmo" + "dob" "1989-05-30" + "geo" "CN" + "events" + { + "13" + { + "team" "74" + } + "14" + { + "team" "74" + } + } + } + "169982617" + { + "name" "DD" + "code" "dd" + "dob" "1994-08-11" + "geo" "CN" + "events" + { + "13" + { + "team" "74" + } + "14" + { + "team" "74" + } + } + } + "85131873" + { + "name" "somebody" + "code" "somebody" + "dob" "1995-07-03" + "geo" "CN" + "events" + { + "13" + { + "team" "74" + } + "14" + { + "team" "74" + } + "15" + { + "team" "74" + } + "16" + { + "team" "74" + } + "18" + { + "team" "74" + } + } + } + "111817512" + { + "name" "BnTeT" + "code" "bntet" + "dob" "1995-08-28" + "geo" "ID" + "events" + { + "13" + { + "team" "74" + } + "14" + { + "team" "74" + } + "15" + { + "team" "74" + } + "16" + { + "team" "74" + } + } + } + "163358521" + { + "name" "Nifty" + "code" "nifty" + "dob" "1997-11-23" + "geo" "US" + "events" + { + "13" + { + "team" "53" + } + "14" + { + "team" "53" + } + } + } + "166970562" + { + "name" "qikert" + "code" "qikert" + "dob" "1999-01-01" + "geo" "KZ" + "events" + { + "13" + { + "team" "75" + } + "15" + { + "team" "75" + } + "16" + { + "team" "75" + } + "18" + { + "team" "31" + } + "19" + { + "team" "109" + } + "20" + { + "team" "109" + } + } + } + "212936195" + { + "name" "buster" + "code" "buster" + "dob" "1999-12-17" + "geo" "KZ" + "events" + { + "13" + { + "team" "75" + } + "15" + { + "team" "75" + } + "16" + { + "team" "75" + } + "18" + { + "team" "31" + } + "19" + { + "team" "109" + } + } + } + "75859856" + { + "name" "Jame" + "code" "jame" + "dob" "1998-08-23" + "geo" "RU" + "events" + { + "13" + { + "team" "75" + } + "15" + { + "team" "75" + } + "16" + { + "team" "75" + } + "18" + { + "team" "31" + } + "19" + { + "team" "109" + } + "20" + { + "team" "109" + } + } + } + "825268" + { + "name" "dimasick" + "code" "dimasick" + "dob" "1996-07-06" + "geo" "KZ" + "events" + { + "13" + { + "team" "75" + } + } + } + "107672171" + { + "name" "KrizzeN" + "code" "krizzen" + "dob" "1999-09-24" + "geo" "KZ" + "events" + { + "13" + { + "team" "75" + } + "15" + { + "team" "75" + } + } + } + "116509497" + { + "name" "Golden" + "code" "golden" + "dob" "1994-02-02" + "geo" "SE" + "events" + { + "13" + { + "team" "6" + } + "14" + { + "team" "33" + } + "15" + { + "team" "33" + } + "16" + { + "team" "1" + } + } + } + "88001036" + { + "name" "Attacker" + "code" "attacker" + "dob" "1997-01-07" + "geo" "CN" + "events" + { + "13" + { + "team" "79" + } + "15" + { + "team" "74" + } + "16" + { + "team" "74" + } + "18" + { + "team" "74" + } + } + } + "85358333" + { + "name" "Karsa" + "code" "karsa" + "dob" "1992-02-29" + "geo" "CN" + "events" + { + "13" + { + "team" "79" + } + } + } + "16127541" + { + "name" "Kaze" + "code" "kaze" + "dob" "1994-07-22" + "geo" "MY" + "events" + { + "13" + { + "team" "79" + } + "15" + { + "team" "88" + } + } + } + "48886373" + { + "name" "LoveYY" + "code" "loveyy" + "dob" "1989-01-09" + "geo" "CN" + "events" + { + "13" + { + "team" "79" + } + } + } + "52964519" + { + "name" "Summer" + "code" "summer" + "dob" "1997-05-16" + "geo" "CN" + "events" + { + "13" + { + "team" "79" + } + "15" + { + "team" "74" + } + "16" + { + "team" "74" + } + "18" + { + "team" "74" + } + } + } + "1936433" + { + "name" "ANDROID" + "code" "android" + "dob" "1994-05-26" + "geo" "CA" + "events" + { + "14" + { + "team" "3" + } + } + } + "26995179" + { + "name" "dephh" + "code" "dephh" + "dob" "1991-12-23" + "geo" "GB" + "events" + { + "14" + { + "team" "3" + } + "15" + { + "team" "3" + } + "16" + { + "team" "3" + } + } + } + "57496765" + { + "name" "yay" + "code" "yay" + "dob" "1998-09-09" + "geo" "US" + "events" + { + "14" + { + "team" "3" + } + } + } + "34364443" + { + "name" "COLDYY1" + "code" "coldyy1" + "dob" "1992-04-08" + "geo" "UA" + "events" + { + "14" + { + "team" "81" + } + "15" + { + "team" "81" + } + } + } + "51718767" + { + "name" "Dima" + "code" "dima" + "dob" "1995-01-27" + "geo" "RU" + "events" + { + "14" + { + "team" "81" + } + "15" + { + "team" "81" + } + } + } + "80311472" + { + "name" "sdy" + "code" "sdy" + "dob" "1997-03-14" + "geo" "UA" + "events" + { + "14" + { + "team" "81" + } + "15" + { + "team" "81" + } + "18" + { + "team" "81" + } + "20" + { + "team" "12" + } + } + } + "174857712" + { + "name" "S0tF1k" + "code" "s0tf1k" + "dob" "1994-09-29" + "geo" "RU" + "events" + { + "14" + { + "team" "81" + } + "15" + { + "team" "81" + } + } + } + "15738602" + { + "name" "tonyblack" + "code" "tonyblack" + "dob" "1992-11-26" + "geo" "RU" + "events" + { + "14" + { + "team" "70" + } + "15" + { + "team" "70" + } + } + } + "36981424" + { + "name" "crush" + "code" "crush" + "dob" "1995-08-12" + "geo" "UA" + "events" + { + "14" + { + "team" "70" + } + "15" + { + "team" "70" + } + } + } + "123219778" + { + "name" "woxic" + "code" "woxic" + "dob" "1998-09-02" + "geo" "TR" + "events" + { + "14" + { + "team" "25" + } + "15" + { + "team" "25" + } + "16" + { + "team" "29" + } + "19" + { + "team" "110" + } + } + } + "77546728" + { + "name" "ISSAA" + "code" "issaa" + "dob" "1996-12-23" + "geo" "JO" + "events" + { + "14" + { + "team" "25" + } + "15" + { + "team" "25" + } + "16" + { + "team" "25" + } + } + } + "177428807" + { + "name" "xccurate" + "code" "xccurate" + "dob" "1998-02-18" + "geo" "ID" + "events" + { + "14" + { + "team" "74" + } + "15" + { + "team" "74" + } + } + } + "21355604" + { + "name" "gade" + "code" "gade" + "dob" "1994-11-06" + "geo" "DK" + "events" + { + "14" + { + "team" "66" + } + "16" + { + "team" "68" + } + "18" + { + "team" "69" + } + } + } + "29157337" + { + "name" "Snappi" + "code" "snappi" + "dob" "1990-06-09" + "geo" "DK" + "events" + { + "14" + { + "team" "66" + } + "18" + { + "team" "84" + } + "19" + { + "team" "84" + } + "20" + { + "team" "84" + } + } + } + "83626376" + { + "name" "JUGi" + "code" "jugi" + "dob" "1997-04-01" + "geo" "DK" + "events" + { + "14" + { + "team" "66" + } + "16" + { + "team" "68" + } + } + } + "159123007" + { + "name" "draken" + "code" "draken" + "dob" "1995-10-05" + "geo" "SE" + "events" + { + "14" + { + "team" "6" + } + } + } + "73906687" + { + "name" "REZ" + "code" "rez" + "dob" "1998-01-11" + "geo" "SE" + "events" + { + "14" + { + "team" "1" + } + "15" + { + "team" "1" + } + "16" + { + "team" "1" + } + "18" + { + "team" "1" + } + "19" + { + "team" "1" + } + "20" + { + "team" "1" + } + } + } + "37291208" + { + "name" "tiziaN" + "code" "tizian" + "dob" "1996-06-15" + "geo" "DE" + "events" + { + "14" + { + "team" "69" + } + "15" + { + "team" "69" + } + "3" + { + "team" "29" + } + "18" + { + "team" "69" + } + "19" + { + "team" "69" + } + } + } + "211423593" + { + "name" "smooya" + "code" "smooya" + "dob" "1999-08-16" + "geo" "GB" + "events" + { + "14" + { + "team" "69" + } + "15" + { + "team" "69" + } + } + } + "60359075" + { + "name" "MICHU" + "code" "michu" + "dob" "1996-12-29" + "geo" "PL" + "events" + { + "14" + { + "team" "31" + } + "18" + { + "team" "98" + } + } + } + "111436809" + { + "name" "snatchie" + "code" "snatchie" + "dob" "1998-01-31" + "geo" "PL" + "events" + { + "14" + { + "team" "31" + } + } + } + "29470855" + { + "name" "niko" + "code" "nikodk" + "dob" "1998-05-28" + "geo" "DK" + "events" + { + "14" + { + "team" "68" + } + } + } + "43849788" + { + "name" "cadiaN" + "code" "cadian" + "dob" "1995-06-26" + "geo" "DK" + "events" + { + "14" + { + "team" "82" + } + "1" + { + "team" "15" + } + "3" + { + "team" "29" + } + "5" + { + "team" "10" + } + "18" + { + "team" "95" + } + "19" + { + "team" "95" + } + "20" + { + "team" "95" + } + } + } + "135979468" + { + "name" "vice" + "code" "vice" + "dob" "1995-11-09" + "geo" "US" + "events" + { + "14" + { + "team" "82" + } + } + } + "2445180" + { + "name" "Aerial" + "code" "aerial" + "dob" "1993-06-11" + "geo" "FI" + "events" + { + "15" + { + "team" "84" + } + "16" + { + "team" "84" + } + } + } + "52906775" + { + "name" "xseveN" + "code" "xseven" + "dob" "1994-08-14" + "geo" "FI" + "events" + { + "15" + { + "team" "84" + } + "16" + { + "team" "84" + } + } + } + "52977598" + { + "name" "Aleksib" + "code" "aleksib" + "dob" "1997-03-30" + "geo" "FI" + "events" + { + "15" + { + "team" "84" + } + "16" + { + "team" "84" + } + "19" + { + "team" "59" + } + "20" + { + "team" "1" + } + } + } + "67574097" + { + "name" "sergej" + "code" "sergej" + "dob" "2002-03-01" + "geo" "FI" + "events" + { + "15" + { + "team" "84" + } + "16" + { + "team" "84" + } + } + } + "178562747" + { + "name" "Brollan" + "code" "brollan" + "dob" "2002-06-17" + "geo" "SE" + "events" + { + "15" + { + "team" "6" + } + "19" + { + "team" "1" + } + "20" + { + "team" "1" + } + } + } + "36104456" + { + "name" "VINI" + "code" "vini" + "dob" "1999-05-20" + "geo" "BR" + "events" + { + "15" + { + "team" "85" + } + "16" + { + "team" "85" + } + "18" + { + "team" "85" + } + "19" + { + "team" "113" + } + "20" + { + "team" "113" + } + } + } + "82940700" + { + "name" "ableJ" + "code" "ablej" + "dob" "1998-11-05" + "geo" "BR" + "events" + { + "15" + { + "team" "85" + } + "16" + { + "team" "85" + } + } + } + "83503844" + { + "name" "arT" + "code" "art" + "dob" "1996-03-27" + "geo" "BR" + "events" + { + "15" + { + "team" "85" + } + "16" + { + "team" "85" + } + "18" + { + "team" "85" + } + "19" + { + "team" "85" + } + "20" + { + "team" "85" + } + } + } + "98234764" + { + "name" "KSCERATO" + "code" "kscerato" + "dob" "1999-09-12" + "geo" "BR" + "events" + { + "15" + { + "team" "85" + } + "16" + { + "team" "85" + } + "18" + { + "team" "85" + } + "19" + { + "team" "85" + } + "20" + { + "team" "85" + } + } + } + "204704832" + { + "name" "yuurih" + "code" "yuurih" + "dob" "1999-12-22" + "geo" "BR" + "events" + { + "15" + { + "team" "85" + } + "16" + { + "team" "85" + } + "18" + { + "team" "85" + } + "19" + { + "team" "85" + } + "20" + { + "team" "85" + } + } + } + "11977189" + { + "name" "JaCkz" + "code" "jackz" + "dob" "1992-07-07" + "geo" "FR" + "events" + { + "15" + { + "team" "59" + } + "16" + { + "team" "59" + } + "18" + { + "team" "59" + } + "19" + { + "team" "59" + } + } + } + "71624387" + { + "name" "Lucky" + "code" "lucky" + "dob" "1998-04-06" + "geo" "FR" + "events" + { + "15" + { + "team" "59" + } + "16" + { + "team" "59" + } + } + } + "100224621" + { + "name" "sterling" + "code" "sterling" + "dob" "1998-06-27" + "geo" "GB" + "events" + { + "15" + { + "team" "86" + } + } + } + "101535513" + { + "name" "dexter" + "code" "dexter" + "dob" "1994-08-15" + "geo" "AU" + "events" + { + "15" + { + "team" "86" + } + "16" + { + "team" "86" + } + "18" + { + "team" "106" + } + "20" + { + "team" "106" + } + } + } + "131305548" + { + "name" "erkaSt" + "code" "erkast" + "dob" "1995-03-19" + "geo" "AU" + "events" + { + "15" + { + "team" "86" + } + "16" + { + "team" "86" + } + } + } + "181905573" + { + "name" "malta" + "code" "malta" + "dob" "1995-11-01" + "geo" "AU" + "events" + { + "15" + { + "team" "86" + } + "16" + { + "team" "86" + } + "18" + { + "team" "53" + } + } + } + "192019632" + { + "name" "DickStacy" + "code" "dickstacy" + "dob" "1997-04-16" + "geo" "AU" + "events" + { + "15" + { + "team" "86" + } + "16" + { + "team" "86" + } + } + } + "94595411" + { + "name" "Brehze" + "code" "brehze" + "dob" "1998-05-22" + "geo" "US" + "events" + { + "15" + { + "team" "87" + } + "16" + { + "team" "87" + } + "18" + { + "team" "98" + } + "20" + { + "team" "98" + } + } + } + "169177802" + { + "name" "Ethan" + "code" "ethan" + "dob" "2000-03-02" + "geo" "US" + "events" + { + "15" + { + "team" "87" + } + "16" + { + "team" "87" + } + } + } + "196088155" + { + "name" "CeRq" + "code" "cerq" + "dob" "1999-12-08" + "geo" "BG" + "events" + { + "15" + { + "team" "87" + } + "16" + { + "team" "87" + } + "18" + { + "team" "98" + } + "20" + { + "team" "98" + } + } + } + "5543683" + { + "name" "Gratisfaction" + "code" "gratisfaction" + "dob" "1996-03-06" + "geo" "NZ" + "events" + { + "15" + { + "team" "53" + } + "16" + { + "team" "53" + } + } + } + "112055988" + { + "name" "Liazz" + "code" "liazz" + "dob" "1997-08-29" + "geo" "AU" + "events" + { + "15" + { + "team" "53" + } + "16" + { + "team" "53" + } + "19" + { + "team" "53" + } + "20" + { + "team" "86" + } + } + } + "41786057" + { + "name" "advent" + "code" "advent" + "dob" "1992-06-16" + "geo" "CN" + "events" + { + "15" + { + "team" "88" + } + } + } + "46223698" + { + "name" "aumaN" + "code" "auman" + "dob" "1994-07-16" + "geo" "CN" + "events" + { + "15" + { + "team" "88" + } + } + } + "99494192" + { + "name" "zhokiNg" + "code" "zhoking" + "dob" "1993-12-07" + "geo" "CN" + "events" + { + "15" + { + "team" "88" + } + } + } + "208355715" + { + "name" "Freeman" + "code" "freeman" + "dob" "1999-07-25" + "geo" "CN" + "events" + { + "15" + { + "team" "88" + } + "16" + { + "team" "74" + } + } + } + "44605706" + { + "name" "ALEX" + "code" "alex" + "dob" "1995-09-28" + "geo" "GB" + "events" + { + "15" + { + "team" "89" + } + "16" + { + "team" "89" + } + } + } + "153400465" + { + "name" "ZywOo" + "code" "zywoo" + "dob" "2000-11-09" + "geo" "FR" + "events" + { + "15" + { + "team" "89" + } + "16" + { + "team" "89" + } + "18" + { + "team" "89" + } + "19" + { + "team" "89" + } + "20" + { + "team" "89" + } + } + } + "262176776" + { + "name" "n0rb3r7" + "code" "n0rb3r7" + "dob" "2001-03-11" + "geo" "RU" + "events" + { + "15" + { + "team" "83" + } + "20" + { + "team" "109" + } + } + } + "138156260" + { + "name" "oBo" + "code" "obo" + "dob" "2003-06-26" + "geo" "US" + "events" + { + "16" + { + "team" "3" + } + "18" + { + "team" "98" + } + } + } + "357361556" + { + "name" "SANJI" + "code" "sanji" + "dob" "1997-11-18" + "geo" "UZ" + "events" + { + "16" + { + "team" "75" + } + } + } + "39266546" + { + "name" "Sico" + "code" "sico" + "dob" "1994-08-08" + "geo" "NZ" + "events" + { + "16" + { + "team" "86" + } + "18" + { + "team" "53" + } + "19" + { + "team" "53" + } + "20" + { + "team" "86" + } + } + } + "108157034" + { + "name" "frozen" + "code" "frozen" + "dob" "2002-07-18" + "geo" "SK" + "events" + { + "16" + { + "team" "29" + } + "18" + { + "team" "106" + } + "20" + { + "team" "106" + } + } + } + "35551773" + { + "name" "FL1T" + "code" "fl1t" + "dob" "2000-12-21" + "geo" "RU" + "events" + { + "16" + { + "team" "90" + } + "18" + { + "team" "31" + } + "19" + { + "team" "109" + } + "20" + { + "team" "109" + } + } + } + "65822428" + { + "name" "Jerry" + "code" "jerry" + "dob" "1998-05-24" + "geo" "RU" + "events" + { + "16" + { + "team" "90" + } + "19" + { + "team" "90" + } + } + } + "83782305" + { + "name" "almazer" + "code" "almazer" + "dob" "1998-11-06" + "geo" "RU" + "events" + { + "16" + { + "team" "90" + } + } + } + "112014226" + { + "name" "xsepower" + "code" "xsepower" + "dob" "1998-02-26" + "geo" "RU" + "events" + { + "16" + { + "team" "90" + } + } + } + "115742145" + { + "name" "facecrack" + "code" "facecrack" + "dob" "1994-04-22" + "geo" "RU" + "events" + { + "16" + { + "team" "90" + } + } + } + "39559694" + { + "name" "nexa" + "code" "nexa" + "dob" "1997-04-25" + "geo" "RS" + "events" + { + "16" + { + "team" "91" + } + "18" + { + "team" "59" + } + "20" + { + "team" "96" + } + } + } + "52606325" + { + "name" "huNter-" + "code" "hunter" + "dob" "1996-03-01" + "geo" "BH" + "events" + { + "16" + { + "team" "91" + } + "18" + { + "team" "59" + } + "19" + { + "team" "59" + } + } + } + "75069143" + { + "name" "ottoNd" + "code" "ottond" + "dob" "1997-11-07" + "geo" "FI" + "events" + { + "16" + { + "team" "91" + } + } + } + "81826283" + { + "name" "LETN1" + "code" "letn1" + "dob" "1992-11-16" + "geo" "RS" + "events" + { + "16" + { + "team" "91" + } + } + } + "84772046" + { + "name" "EspiranTo" + "code" "espiranto" + "dob" "2001-04-12" + "geo" "LT" + "events" + { + "16" + { + "team" "91" + } + } + } + "47286907" + { + "name" "t0rick" + "code" "t0rick" + "dob" "1994-07-06" + "geo" "AZ" + "events" + { + "16" + { + "team" "92" + } + } + } + "93777050" + { + "name" "neaLaN" + "code" "nealan" + "dob" "2000-08-06" + "geo" "KZ" + "events" + { + "16" + { + "team" "92" + } + "20" + { + "team" "98" + } + } + } + "138078516" + { + "name" "Keoz" + "code" "keoz" + "dob" "2000-12-29" + "geo" "BE" + "events" + { + "16" + { + "team" "92" + } + "20" + { + "team" "115" + } + } + } + "147496118" + { + "name" "Ramz1kBO$$" + "code" "ramz1kboss" + "dob" "1999-12-09" + "geo" "KZ" + "events" + { + "16" + { + "team" "92" + } + } + } + "160954758" + { + "name" "Perfecto" + "code" "perfecto" + "dob" "1999-11-24" + "geo" "RU" + "events" + { + "16" + { + "team" "92" + } + "18" + { + "team" "12" + } + "19" + { + "team" "12" + } + "20" + { + "team" "12" + } + } + } + "35632848" + { + "name" "svyat" + "code" "svyat" + "dob" "1994-11-07" + "geo" "RU" + "events" + { + "16" + { + "team" "93" + } + } + } + "42106423" + { + "name" "kinqie" + "code" "kinqie" + "dob" "1991-11-07" + "geo" "RU" + "events" + { + "16" + { + "team" "93" + } + } + } + "67083025" + { + "name" "Forester" + "code" "forester" + "dob" "2000-01-03" + "geo" "RU" + "events" + { + "16" + { + "team" "93" + } + "18" + { + "team" "105" + } + } + } + "71642904" + { + "name" "Krad" + "code" "krad" + "dob" "1999-01-09" + "geo" "RU" + "events" + { + "16" + { + "team" "93" + } + "18" + { + "team" "105" + } + } + } + "79928921" + { + "name" "speed4k" + "code" "speed4k" + "dob" "1996-06-04" + "geo" "RU" + "events" + { + "16" + { + "team" "93" + } + } + } + "89528706" + { + "name" "DeStiNy" + "code" "destiny" + "dob" "1997-07-03" + "geo" "BR" + "events" + { + "16" + { + "team" "94" + } + } + } + "90069456" + { + "name" "yel" + "code" "yel" + "dob" "1992-05-22" + "geo" "BR" + "events" + { + "16" + { + "team" "94" + } + } + } + "107498100" + { + "name" "chelo" + "code" "chelo" + "dob" "1998-06-08" + "geo" "BR" + "events" + { + "16" + { + "team" "94" + } + "19" + { + "team" "80" + } + "20" + { + "team" "113" + } + } + } + "109826856" + { + "name" "xand" + "code" "xand" + "dob" "1995-04-11" + "geo" "BR" + "events" + { + "16" + { + "team" "94" + } + } + } + "333319" + { + "name" "Fifflaren" + "code" "fifflaren" + "dob" "-" + "geo" "SE" + "events" + { + "1" + { + "team" "1" + } + "3" + { + "team" "1" + } + "4" + { + "team" "1" + } + } + } + "41556539" + { + "name" "kUcheR" + "code" "kucher" + "dob" "-" + "geo" "RU" + "events" + { + "1" + { + "team" "2" + } + "3" + { + "team" "25" + } + "4" + { + "team" "25" + } + "5" + { + "team" "25" + } + "6" + { + "team" "25" + } + } + } + "19024" + { + "name" "Swag" + "code" "swag" + "dob" "-" + "geo" "US" + "events" + { + "1" + { + "team" "3" + } + "3" + { + "team" "3" + } + "4" + { + "team" "5" + } + "5" + { + "team" "5" + } + } + } + "10796770" + { + "name" "SEMPHIS" + "code" "semphis" + "dob" "-" + "geo" "CA" + "events" + { + "1" + { + "team" "3" + } + "3" + { + "team" "3" + } + "4" + { + "team" "33" + } + "5" + { + "team" "33" + } + "6" + { + "team" "52" + } + } + } + "6015" + { + "name" "DaZeD" + "code" "dazed" + "dob" "-" + "geo" "US" + "events" + { + "1" + { + "team" "5" + } + "3" + { + "team" "5" + } + "4" + { + "team" "5" + } + } + } + "126985" + { + "name" "anger" + "code" "anger" + "dob" "-" + "geo" "US" + "events" + { + "1" + { + "team" "5" + } + "3" + { + "team" "5" + } + } + } + "3914164" + { + "name" "AZK" + "code" "azk" + "dob" "-" + "geo" "CA" + "events" + { + "1" + { + "team" "5" + } + "3" + { + "team" "5" + } + "4" + { + "team" "5" + } + "5" + { + "team" "5" + } + } + } + "5096217" + { + "name" "Devilwalk" + "code" "devilwalk" + "dob" "-" + "geo" "SE" + "events" + { + "1" + { + "team" "6" + } + "3" + { + "team" "6" + } + } + } + "470801" + { + "name" "ioRek" + "code" "iorek" + "dob" "-" + "geo" "FR" + "events" + { + "1" + { + "team" "7" + } + } + } + "2131444" + { + "name" "HaRts" + "code" "harts" + "dob" "-" + "geo" "FR" + "events" + { + "1" + { + "team" "7" + } + "3" + { + "team" "7" + } + } + } + "39755130" + { + "name" "KQLY" + "code" "kqly" + "dob" "-" + "geo" "FR" + "events" + { + "1" + { + "team" "7" + } + "3" + { + "team" "26" + } + "4" + { + "team" "26" + } + } + } + "27940374" + { + "name" "GMX" + "code" "gmx" + "dob" "-" + "geo" "FR" + "events" + { + "1" + { + "team" "8" + } + "3" + { + "team" "7" + } + "4" + { + "team" "35" + } + } + } + "39812818" + { + "name" "Uzzziii" + "code" "uzzziii" + "dob" "-" + "geo" "FR" + "events" + { + "1" + { + "team" "8" + } + "3" + { + "team" "26" + } + "4" + { + "team" "26" + } + } + } + "52033595" + { + "name" "SKYTTEN" + "code" "skytten" + "dob" "-" + "geo" "SE" + "events" + { + "1" + { + "team" "9" + } + } + } + "11212652" + { + "name" "FeTiSh" + "code" "fetish" + "dob" "-" + "geo" "DK" + "events" + { + "1" + { + "team" "10" + } + "3" + { + "team" "24" + } + "4" + { + "team" "24" + } + "5" + { + "team" "24" + } + } + } + "12375177" + { + "name" "Nico" + "code" "nico" + "dob" "-" + "geo" "DK" + "events" + { + "1" + { + "team" "10" + } + "4" + { + "team" "10" + } + } + } + "29420401" + { + "name" "ceh9" + "code" "ceh9" + "dob" "-" + "geo" "UA" + "events" + { + "1" + { + "team" "12" + } + } + } + "53338238" + { + "name" "starix" + "code" "starix" + "dob" "-" + "geo" "UA" + "events" + { + "1" + { + "team" "12" + } + "3" + { + "team" "12" + } + "4" + { + "team" "12" + } + "5" + { + "team" "12" + } + "6" + { + "team" "12" + } + } + } + "146672858" + { + "name" "kibaken" + "code" "kibaken" + "dob" "-" + "geo" "RU" + "events" + { + "1" + { + "team" "12" + } + } + } + "35794427" + { + "name" "RAALZ" + "code" "raalz" + "dob" "-" + "geo" "DK" + "events" + { + "1" + { + "team" "13" + } + "3" + { + "team" "28" + } + } + } + "858728" + { + "name" "MODDII" + "code" "moddii" + "dob" "-" + "geo" "SE" + "events" + { + "1" + { + "team" "14" + } + } + } + "28004721" + { + "name" "xelos" + "code" "xelos" + "dob" "-" + "geo" "SE" + "events" + { + "1" + { + "team" "14" + } + } + } + "44172487" + { + "name" "Delpan" + "code" "delpan" + "dob" "-" + "geo" "SE" + "events" + { + "1" + { + "team" "14" + } + } + } + "9258030" + { + "name" "ultra" + "code" "ultra" + "dob" "-" + "geo" "NO" + "events" + { + "1" + { + "team" "15" + } + } + } + "30898809" + { + "name" "centeks" + "code" "centeks" + "dob" "-" + "geo" "NO" + "events" + { + "1" + { + "team" "15" + } + } + } + "41292034" + { + "name" "robiin" + "code" "robiin" + "dob" "-" + "geo" "SE" + "events" + { + "1" + { + "team" "15" + } + } + } + "1391781" + { + "name" "coloN" + "code" "colon" + "dob" "-" + "geo" "DK" + "events" + { + "1" + { + "team" "16" + } + } + } + "11160541" + { + "name" "smF" + "code" "smf" + "dob" "-" + "geo" "DK" + "events" + { + "1" + { + "team" "16" + } + "3" + { + "team" "30" + } + "5" + { + "team" "38" + } + } + } + "20591669" + { + "name" "EXR" + "code" "exr" + "dob" "-" + "geo" "DK" + "events" + { + "1" + { + "team" "16" + } + "3" + { + "team" "30" + } + } + } + "26876251" + { + "name" "LOMME" + "code" "lomme" + "dob" "-" + "geo" "DK" + "events" + { + "1" + { + "team" "16" + } + "3" + { + "team" "30" + } + } + } + "36" + { + "name" "Sf" + "code" "sf" + "dob" "-" + "geo" "FR" + "events" + { + "3" + { + "team" "7" + } + "4" + { + "team" "35" + } + } + } + "34227021" + { + "name" "cype" + "code" "cype" + "dob" "-" + "geo" "SE" + "events" + { + "3" + { + "team" "9" + } + } + } + "33640614" + { + "name" "Friis" + "code" "friis" + "dob" "-" + "geo" "DK" + "events" + { + "3" + { + "team" "30" + } + "5" + { + "team" "38" + } + } + } + "426412" + { + "name" "topguN" + "code" "topgun" + "dob" "-" + "geo" "AU" + "events" + { + "3" + { + "team" "32" + } + "4" + { + "team" "32" + } + "6" + { + "team" "32" + } + } + } + "2811540" + { + "name" "steel" + "code" "steelca" + "dob" "-" + "geo" "CA" + "events" + { + "4" + { + "team" "5" + } + } + } + "26787817" + { + "name" "ub1que" + "code" "ub1que" + "dob" "-" + "geo" "RU" + "events" + { + "4" + { + "team" "34" + } + } + } + "36778057" + { + "name" "fxy0" + "code" "fxy0" + "dob" "-" + "geo" "FR" + "events" + { + "4" + { + "team" "35" + } + } + } + "12668768" + { + "name" "Skurk" + "code" "skurk" + "dob" "-" + "geo" "NO" + "events" + { + "4" + { + "team" "36" + } + } + } + "28087119" + { + "name" "Polly" + "code" "polly" + "dob" "-" + "geo" "NO" + "events" + { + "4" + { + "team" "36" + } + "6" + { + "team" "9" + } + } + } + "41551989" + { + "name" "prb" + "code" "prb" + "dob" "-" + "geo" "NO" + "events" + { + "4" + { + "team" "36" + } + } + } + "27439253" + { + "name" "RiX" + "code" "rix" + "dob" "-" + "geo" "IN" + "events" + { + "4" + { + "team" "37" + } + } + } + "165834346" + { + "name" "Ace" + "code" "ace" + "dob" "-" + "geo" "IN" + "events" + { + "4" + { + "team" "37" + } + } + } + "169855870" + { + "name" "MithilF" + "code" "mithilf" + "dob" "-" + "geo" "IN" + "events" + { + "4" + { + "team" "37" + } + } + } + "187475504" + { + "name" "RiTz" + "code" "ritz" + "dob" "-" + "geo" "IN" + "events" + { + "4" + { + "team" "37" + } + } + } + "187710279" + { + "name" "aStarrr" + "code" "astarrr" + "dob" "-" + "geo" "IN" + "events" + { + "4" + { + "team" "37" + } + } + } + "411818" + { + "name" "desi" + "code" "desi" + "dob" "-" + "geo" "US" + "events" + { + "5" + { + "team" "5" + } + } + } + "12705686" + { + "name" "HUNDEN" + "code" "hunden" + "dob" "-" + "geo" "DK" + "events" + { + "5" + { + "team" "38" + } + } + } + "56749436" + { + "name" "AcilioN" + "code" "acilion" + "dob" "-" + "geo" "DK" + "events" + { + "5" + { + "team" "38" + } + } + } + "8096389" + { + "name" "fel1x" + "code" "fel1x" + "dob" "-" + "geo" "DE" + "events" + { + "5" + { + "team" "39" + } + } + } + "17468691" + { + "name" "robseN" + "code" "robsen" + "dob" "-" + "geo" "DE" + "events" + { + "5" + { + "team" "39" + } + } + } + "1429200" + { + "name" "racno" + "code" "racno" + "dob" "-" + "geo" "ZA" + "events" + { + "5" + { + "team" "40" + } + } + } + "3295970" + { + "name" "cent" + "code" "cent" + "dob" "-" + "geo" "ZA" + "events" + { + "5" + { + "team" "40" + } + } + } + "5477315" + { + "name" "blackpoisoN" + "code" "blackpoison" + "dob" "-" + "geo" "ZA" + "events" + { + "5" + { + "team" "40" + } + } + } + "7077099" + { + "name" "deviaNt" + "code" "deviant" + "dob" "-" + "geo" "ZA" + "events" + { + "5" + { + "team" "40" + } + } + } + "27120041" + { + "name" "Detrony" + "code" "detrony" + "dob" "-" + "geo" "ZA" + "events" + { + "5" + { + "team" "40" + } + } + } + "480239" + { + "name" "alexRr" + "code" "alexrr" + "dob" "-" + "geo" "DE" + "events" + { + "5" + { + "team" "41" + } + } + } + "11974924" + { + "name" "stavros" + "code" "stavros" + "dob" "-" + "geo" "DE" + "events" + { + "5" + { + "team" "41" + } + } + } + "15559234" + { + "name" "strux1" + "code" "strux1" + "dob" "-" + "geo" "DE" + "events" + { + "5" + { + "team" "41" + } + } + } + "29115559" + { + "name" "Troubley" + "code" "troubley" + "dob" "-" + "geo" "DE" + "events" + { + "5" + { + "team" "41" + } + "6" + { + "team" "39" + } + } + } + "19554985" + { + "name" "SZPERO" + "code" "szpero" + "dob" "-" + "geo" "PL" + "events" + { + "5" + { + "team" "42" + } + } + } + "29354726" + { + "name" "minise" + "code" "minise" + "dob" "-" + "geo" "PL" + "events" + { + "5" + { + "team" "42" + } + } + } + "38464805" + { + "name" "mouz" + "code" "mouz" + "dob" "-" + "geo" "PL" + "events" + { + "5" + { + "team" "42" + } + } + } + "36438564" + { + "name" "BENDJI" + "code" "bendji" + "dob" "-" + "geo" "SE" + "events" + { + "5" + { + "team" "43" + } + } + } + "44790376" + { + "name" "berg" + "code" "berg" + "dob" "-" + "geo" "SE" + "events" + { + "5" + { + "team" "43" + } + } + } + "57118767" + { + "name" "zende" + "code" "zende" + "dob" "-" + "geo" "SE" + "events" + { + "5" + { + "team" "43" + } + } + } + "86111467" + { + "name" "Dumas" + "code" "dumas" + "dob" "-" + "geo" "SE" + "events" + { + "5" + { + "team" "43" + } + } + } + "7265511" + { + "name" "zEVES" + "code" "zeves" + "dob" "-" + "geo" "NO" + "events" + { + "6" + { + "team" "9" + } + } + } + "24940" + { + "name" "natu" + "code" "natu" + "dob" "-" + "geo" "FI" + "events" + { + "6" + { + "team" "28" + } + } + } + "3069751" + { + "name" "KHRN" + "code" "khrn" + "dob" "-" + "geo" "FI" + "events" + { + "6" + { + "team" "28" + } + } + } + "11226365" + { + "name" "disturbed" + "code" "disturbed" + "dob" "-" + "geo" "FI" + "events" + { + "6" + { + "team" "28" + } + } + } + "15546735" + { + "name" "stonde" + "code" "stonde" + "dob" "-" + "geo" "FI" + "events" + { + "6" + { + "team" "28" + } + } + } + "26565773" + { + "name" "xartE" + "code" "xarte" + "dob" "-" + "geo" "FI" + "events" + { + "6" + { + "team" "28" + } + } + } + "13847828" + { + "name" "ptr" + "code" "ptr" + "dob" "-" + "geo" "US" + "events" + { + "6" + { + "team" "49" + } + } + } + "4032008" + { + "name" "zqkS" + "code" "zqks" + "dob" "-" + "geo" "BR" + "events" + { + "6" + { + "team" "50" + } + } + } + "286341748" + { + "name" "b1t" + "code" "b1t" + "dob" "2003-01-05" + "geo" "UA" + "events" + { + "18" + { + "team" "12" + } + "19" + { + "team" "12" + } + "20" + { + "team" "12" + } + } + } + "36412550" + { + "name" "TeSeS" + "code" "teses" + "dob" "2000-12-12" + "geo" "DK" + "events" + { + "18" + { + "team" "95" + } + "19" + { + "team" "95" + } + "20" + { + "team" "95" + } + } + } + "62099910" + { + "name" "stavn" + "code" "stavn" + "dob" "2002-03-26" + "geo" "DK" + "events" + { + "18" + { + "team" "95" + } + "19" + { + "team" "95" + } + "20" + { + "team" "95" + } + } + } + "200443857" + { + "name" "sjuush" + "code" "sjuush" + "dob" "1999-01-03" + "geo" "DK" + "events" + { + "18" + { + "team" "95" + } + "19" + { + "team" "95" + } + "20" + { + "team" "95" + } + } + } + "104598470" + { + "name" "refrezh" + "code" "refrezh" + "dob" "1998-02-19" + "geo" "DK" + "events" + { + "18" + { + "team" "95" + } + "19" + { + "team" "95" + } + "20" + { + "team" "72" + } + } + } + "99448400" + { + "name" "nafany" + "code" "nafany" + "dob" "2001-06-15" + "geo" "RU" + "events" + { + "18" + { + "team" "63" + } + "19" + { + "team" "33" + } + "20" + { + "team" "33" + } + } + } + "85167576" + { + "name" "Ax1Le" + "code" "ax1le" + "dob" "2002-04-29" + "geo" "RU" + "events" + { + "18" + { + "team" "63" + } + "19" + { + "team" "33" + } + "20" + { + "team" "33" + } + } + } + "247808592" + { + "name" "interz" + "code" "interz" + "dob" "2000-08-04" + "geo" "RU" + "events" + { + "18" + { + "team" "63" + } + "19" + { + "team" "33" + } + "20" + { + "team" "33" + } + } + } + "121219047" + { + "name" "sh1ro" + "code" "sh1ro" + "dob" "2001-07-15" + "geo" "RU" + "events" + { + "18" + { + "team" "63" + } + "19" + { + "team" "33" + } + "20" + { + "team" "33" + } + } + } + "427790854" + { + "name" "drop" + "code" "drop" + "dob" "2004-01-15" + "geo" "BR" + "events" + { + "18" + { + "team" "85" + } + "19" + { + "team" "85" + } + "20" + { + "team" "85" + } + } + } + "174136197" + { + "name" "YEKINDAR" + "code" "yekindar" + "dob" "1999-10-04" + "geo" "LV" + "events" + { + "18" + { + "team" "31" + } + "19" + { + "team" "109" + } + "20" + { + "team" "48" + } + } + } + "126680222" + { + "name" "hampus" + "code" "hampus" + "dob" "1998-11-26" + "geo" "SE" + "events" + { + "18" + { + "team" "1" + } + "19" + { + "team" "1" + } + "20" + { + "team" "1" + } + } + } + "144361165" + { + "name" "LNZ" + "code" "lnz" + "dob" "2002-10-20" + "geo" "SE" + "events" + { + "18" + { + "team" "1" + } + } + } + "175613070" + { + "name" "Plopski" + "code" "plopski" + "dob" "2002-05-14" + "geo" "SE" + "events" + { + "18" + { + "team" "1" + } + "19" + { + "team" "1" + } + } + } + "121263183" + { + "name" "misutaaa" + "code" "misutaaa" + "dob" "2003-01-15" + "geo" "FR" + "events" + { + "18" + { + "team" "89" + } + "19" + { + "team" "89" + } + } + } + "45702241" + { + "name" "Kyojin" + "code" "kyojin" + "dob" "1999-04-02" + "geo" "FR" + "events" + { + "18" + { + "team" "89" + } + } + } + "55043156" + { + "name" "biguzera" + "code" "biguzera" + "dob" "1997-02-18" + "geo" "BR" + "events" + { + "18" + { + "team" "102" + } + } + } + "191648575" + { + "name" "DANK1NG" + "code" "dank1ng" + "dob" "1999-09-15" + "geo" "CN" + "events" + { + "18" + { + "team" "74" + } + } + } + "234059589" + { + "name" "dumau" + "code" "dumau" + "dob" "2003-11-09" + "geo" "BR" + "events" + { + "18" + { + "team" "67" + } + "20" + { + "team" "116" + } + } + } + "90656280" + { + "name" "hades" + "code" "hades" + "dob" "2000-01-01" + "geo" "PL" + "events" + { + "18" + { + "team" "84" + } + "19" + { + "team" "84" + } + } + } + "81151265" + { + "name" "Dycha" + "code" "dycha" + "dob" "1997-08-11" + "geo" "PL" + "events" + { + "18" + { + "team" "84" + } + "19" + { + "team" "84" + } + "20" + { + "team" "84" + } + } + } + "64662058" + { + "name" "hatz" + "code" "hatz" + "dob" "1998-06-20" + "geo" "AU" + "events" + { + "18" + { + "team" "53" + } + "19" + { + "team" "53" + } + } + } + "65313136" + { + "name" "PKL" + "code" "pkl" + "dob" "1994-07-21" + "geo" "BR" + "events" + { + "18" + { + "team" "102" + } + } + } + "839074394" + { + "name" "degster" + "code" "degster" + "dob" "2001-07-21" + "geo" "RU" + "events" + { + "18" + { + "team" "81" + } + "19" + { + "team" "81" + } + "20" + { + "team" "96" + } + } + } + "43326019" + { + "name" "jnt" + "code" "jnt" + "dob" "1994-05-22" + "geo" "BR" + "events" + { + "18" + { + "team" "104" + } + } + } + "230970467" + { + "name" "Grim" + "code" "grim" + "dob" "2000-11-22" + "geo" "US" + "events" + { + "18" + { + "team" "48" + } + "19" + { + "team" "111" + } + } + } + "40718819" + { + "name" "alex" + "code" "alexes" + "dob" "1995-12-15" + "geo" "ES" + "events" + { + "18" + { + "team" "103" + } + } + } + "169818854" + { + "name" "b4rtiN" + "code" "b4rtin" + "dob" "2002-01-11" + "geo" "BR" + "events" + { + "18" + { + "team" "67" + } + } + } + "112851399" + { + "name" "nicoodoz" + "code" "nicoodoz" + "dob" "2000-08-02" + "geo" "DK" + "events" + { + "18" + { + "team" "101" + } + "19" + { + "team" "101" + } + "20" + { + "team" "6" + } + } + } + "103070679" + { + "name" "Spinx" + "code" "spinx" + "dob" "2000-09-13" + "geo" "IL" + "events" + { + "18" + { + "team" "84" + } + "19" + { + "team" "84" + } + "20" + { + "team" "89" + } + } + } + "911593093" + { + "name" "zevy" + "code" "zevy" + "dob" "2001-05-30" + "geo" "BR" + "events" + { + "18" + { + "team" "104" + } + } + } + "76618432" + { + "name" "NEKiZ" + "code" "nekiz" + "dob" "1995-11-17" + "geo" "BR" + "events" + { + "18" + { + "team" "102" + } + } + } + "160291620" + { + "name" "jabbi" + "code" "jabbi" + "dob" "2003-07-23" + "geo" "DK" + "events" + { + "18" + { + "team" "101" + } + "19" + { + "team" "101" + } + "20" + { + "team" "95" + } + } + } + "58127911" + { + "name" "DeathZz" + "code" "deathzz" + "dob" "1996-01-31" + "geo" "ES" + "events" + { + "18" + { + "team" "103" + } + } + } + "42677035" + { + "name" "acoR" + "code" "acor" + "dob" "1997-06-24" + "geo" "DK" + "events" + { + "18" + { + "team" "106" + } + "20" + { + "team" "115" + } + } + } + "38661042" + { + "name" "HooXi" + "code" "hooxi" + "dob" "1995-05-21" + "geo" "DK" + "events" + { + "18" + { + "team" "101" + } + "19" + { + "team" "101" + } + } + } + "138080982" + { + "name" "aliStair" + "code" "alistair" + "dob" "1998-04-07" + "geo" "AU" + "events" + { + "18" + { + "team" "53" + } + "19" + { + "team" "53" + } + "20" + { + "team" "86" + } + } + } + "250498109" + { + "name" "El1an" + "code" "el1an" + "dob" "1999-07-19" + "geo" "RU" + "events" + { + "18" + { + "team" "105" + } + } + } + "19857269" + { + "name" "syrsoN" + "code" "syrson" + "dob" "1996-04-19" + "geo" "DE" + "events" + { + "18" + { + "team" "69" + } + "19" + { + "team" "69" + } + "20" + { + "team" "69" + } + } + } + "443449867" + { + "name" "SLOWLY" + "code" "slowly" + "dob" "2001-09-23" + "geo" "CN" + "events" + { + "18" + { + "team" "74" + } + } + } + "198111516" + { + "name" "Zyphon" + "code" "zyphon" + "dob" "2004-02-02" + "geo" "DK" + "events" + { + "18" + { + "team" "101" + } + "19" + { + "team" "101" + } + "20" + { + "team" "72" + } + } + } + "289037002" + { + "name" "hardzao" + "code" "hardzao" + "dob" "2001-01-16" + "geo" "BR" + "events" + { + "18" + { + "team" "102" + } + } + } + "222196859" + { + "name" "k1to" + "code" "k1to" + "dob" "1998-11-28" + "geo" "DE" + "events" + { + "18" + { + "team" "69" + } + "20" + { + "team" "69" + } + } + } + "44664741" + { + "name" "realziN" + "code" "realzin" + "dob" "1995-07-01" + "geo" "BR" + "events" + { + "18" + { + "team" "104" + } + } + } + "241354762" + { + "name" "broky" + "code" "broky" + "dob" "2001-02-14" + "geo" "LV" + "events" + { + "18" + { + "team" "61" + } + "19" + { + "team" "61" + } + "20" + { + "team" "61" + } + } + } + "197122745" + { + "name" "Lucaozy" + "code" "lucaozy" + "dob" "2001-10-16" + "geo" "BR" + "events" + { + "18" + { + "team" "104" + } + } + } + "85456730" + { + "name" "pancc" + "code" "pancc" + "dob" "1998-01-12" + "geo" "BR" + "events" + { + "18" + { + "team" "104" + } + } + } + "39318615" + { + "name" "doto" + "code" "doto" + "dob" "1996-02-18" + "geo" "FI" + "events" + { + "18" + { + "team" "84" + } + } + } + "133120627" + { + "name" "Bymas" + "code" "bymas" + "dob" "2003-08-12" + "geo" "LT" + "events" + { + "18" + { + "team" "106" + } + } + } + "1882779" + { + "name" "NickelBack" + "code" "nickelback" + "dob" "1997-07-17" + "geo" "RU" + "events" + { + "18" + { + "team" "105" + } + } + } + "26946895" + { + "name" "INS" + "code" "ins" + "dob" "1998-09-22" + "geo" "AU" + "events" + { + "18" + { + "team" "53" + } + "19" + { + "team" "53" + } + "20" + { + "team" "86" + } + } + } + "868554" + { + "name" "magixx" + "code" "magixx" + "dob" "2003-06-03" + "geo" "RU" + "events" + { + "18" + { + "team" "81" + } + "19" + { + "team" "81" + } + "20" + { + "team" "81" + } + } + } + "37931638" + { + "name" "mopoz" + "code" "mopoz" + "dob" "1996-08-07" + "geo" "ES" + "events" + { + "18" + { + "team" "103" + } + } + } + "25299957" + { + "name" "saffee" + "code" "saffee" + "dob" "1994-12-19" + "geo" "BR" + "events" + { + "18" + { + "team" "102" + } + "19" + { + "team" "85" + } + "20" + { + "team" "85" + } + } + } + "30968963" + { + "name" "roeJ" + "code" "roej" + "dob" "1993-11-20" + "geo" "DK" + "events" + { + "18" + { + "team" "101" + } + "19" + { + "team" "101" + } + "20" + { + "team" "6" + } + } + } + "889754458" + { + "name" "latto" + "code" "latto" + "dob" "2002-12-21" + "geo" "BR" + "events" + { + "18" + { + "team" "67" + } + "20" + { + "team" "116" + } + } + } + "349573813" + { + "name" "SunPayus" + "code" "sunpayus" + "dob" "1998-11-19" + "geo" "ES" + "events" + { + "18" + { + "team" "103" + } + "20" + { + "team" "84" + } + } + } + "150297431" + { + "name" "Lucky" + "code" "luckydk" + "dob" "2002-12-13" + "geo" "DK" + "events" + { + "18" + { + "team" "60" + } + } + } + "185937269" + { + "name" "Lack1" + "code" "lack1" + "dob" "1999-08-20" + "geo" "KZ" + "events" + { + "18" + { + "team" "105" + } + } + } + "457082328" + { + "name" "dav1g" + "code" "dav1g" + "dob" "2001-06-06" + "geo" "ES" + "events" + { + "18" + { + "team" "103" + } + } + } + "157930364" + { + "name" "faveN" + "code" "faven" + "dob" "2000-02-08" + "geo" "DE" + "events" + { + "19" + { + "team" "69" + } + "20" + { + "team" "69" + } + } + } + "210365363" + { + "name" "Krimbo" + "code" "krimbo" + "dob" "2002-09-26" + "geo" "DE" + "events" + { + "19" + { + "team" "69" + } + "20" + { + "team" "69" + } + } + } + "1859646" + { + "name" "es3tag" + "code" "es3tag" + "dob" "1995-11-29" + "geo" "DK" + "events" + { + "19" + { + "team" "1" + } + "20" + { + "team" "1" + } + } + } + "205186299" + { + "name" "maden" + "code" "maden" + "dob" "1998-11-12" + "geo" "ME" + "events" + { + "19" + { + "team" "84" + } + "20" + { + "team" "84" + } + } + } + "114497073" + { + "name" "m0NESY" + "code" "m0nesy" + "dob" "2005-05-01" + "geo" "RU" + "events" + { + "19" + { + "team" "59" + } + } + } + "99348674" + { + "name" "zorte" + "code" "zorte" + "dob" "1998-05-27" + "geo" "RU" + "events" + { + "19" + { + "team" "90" + } + } + } + "440380554" + { + "name" "KENSi" + "code" "kensi" + "dob" "2001-11-13" + "geo" "RU" + "events" + { + "19" + { + "team" "90" + } + } + } + "194638879" + { + "name" "Norwi" + "code" "norwi" + "dob" "2001-03-20" + "geo" "RU" + "events" + { + "19" + { + "team" "90" + } + } + } + "405431972" + { + "name" "shalfey" + "code" "shalfey" + "dob" "2002-06-08" + "geo" "RU" + "events" + { + "19" + { + "team" "90" + } + } + } + "68193075" + { + "name" "blameF" + "code" "blamef" + "dob" "1997-06-10" + "geo" "DK" + "events" + { + "19" + { + "team" "60" + } + } + } + "63982401" + { + "name" "Farlig" + "code" "farlig" + "dob" "1999-03-17" + "geo" "DK" + "events" + { + "19" + { + "team" "60" + } + } + } + "42876435" + { + "name" "WOOD7" + "code" "wood7" + "dob" "1995-05-23" + "geo" "BR" + "events" + { + "19" + { + "team" "80" + } + } + } + "34114868" + { + "name" "Tuurtle" + "code" "tuurtle" + "dob" "1998-10-31" + "geo" "BR" + "events" + { + "19" + { + "team" "80" + } + } + } + "50230614" + { + "name" "exit" + "code" "exit" + "dob" "1996-08-29" + "geo" "BR" + "events" + { + "19" + { + "team" "80" + } + } + } + "94554756" + { + "name" "JOTA" + "code" "jota" + "dob" "1998-02-02" + "geo" "BR" + "events" + { + "19" + { + "team" "80" + } + } + } + "212571293" + { + "name" "rigoN" + "code" "rigon" + "dob" "1999-10-07" + "geo" "CH" + "events" + { + "19" + { + "team" "114" + } + "20" + { + "team" "114" + } + } + } + "135528227" + { + "name" "juanflatroo" + "code" "juanflatroo" + "dob" "1997-03-18" + "geo" "XK" + "events" + { + "19" + { + "team" "114" + } + "20" + { + "team" "114" + } + } + } + "192112459" + { + "name" "SENER1" + "code" "sener1" + "dob" "1997-01-19" + "geo" "XK" + "events" + { + "19" + { + "team" "114" + } + "20" + { + "team" "114" + } + } + } + "205062167" + { + "name" "sinnopsyy" + "code" "sinnopsyy" + "dob" "1995-07-24" + "geo" "XK" + "events" + { + "19" + { + "team" "114" + } + "20" + { + "team" "114" + } + } + } + "274569724" + { + "name" "gxx-" + "code" "gxx" + "dob" "1999-05-03" + "geo" "XK" + "events" + { + "19" + { + "team" "114" + } + "20" + { + "team" "114" + } + } + } + "107082440" + { + "name" "imoRR" + "code" "imorr" + "dob" "1999-12-20" + "geo" "TR" + "events" + { + "19" + { + "team" "110" + } + } + } + "217943381" + { + "name" "xfl0ud" + "code" "xfl0ud" + "dob" "2002-12-23" + "geo" "TR" + "events" + { + "19" + { + "team" "110" + } + } + } + "328275073" + { + "name" "Patsi" + "code" "patsi" + "dob" "2003-09-06" + "geo" "RU" + "events" + { + "19" + { + "team" "81" + } + "20" + { + "team" "81" + } + } + } + "207519341" + { + "name" "S1ren" + "code" "s1ren" + "dob" "2002-07-16" + "geo" "RU" + "events" + { + "19" + { + "team" "81" + } + "20" + { + "team" "81" + } + } + } + "312457591" + { + "name" "FaNg" + "code" "fang" + "dob" "2002-05-07" + "geo" "CA" + "events" + { + "19" + { + "team" "111" + } + } + } + "346253535" + { + "name" "floppy" + "code" "floppy" + "dob" "1999-12-31" + "geo" "US" + "events" + { + "19" + { + "team" "111" + } + } + } + "61449372" + { + "name" "JT" + "code" "jt" + "dob" "1999-04-09" + "geo" "ZA" + "events" + { + "19" + { + "team" "111" + } + } + } + "103793230" + { + "name" "junior" + "code" "junior" + "dob" "2000-12-10" + "geo" "US" + "events" + { + "19" + { + "team" "111" + } + } + } + "999558360" + { + "name" "bLitz" + "code" "blitz" + "dob" "2001-06-26" + "geo" "MN" + "events" + { + "19" + { + "team" "108" + } + "20" + { + "team" "108" + } + } + } + "161246388" + { + "name" "kabal" + "code" "kabal" + "dob" "1995-01-06" + "geo" "MN" + "events" + { + "19" + { + "team" "108" + } + "20" + { + "team" "108" + } + } + } + "168197870" + { + "name" "nin9" + "code" "nin9" + "dob" "1998-03-04" + "geo" "MN" + "events" + { + "19" + { + "team" "108" + } + } + } + "863160115" + { + "name" "sk0R" + "code" "sk0r" + "dob" "2002-12-05" + "geo" "MN" + "events" + { + "19" + { + "team" "108" + } + "20" + { + "team" "108" + } + } + } + "1006074432" + { + "name" "Techno4K" + "code" "techno4k" + "dob" "2005-05-20" + "geo" "MN" + "events" + { + "19" + { + "team" "108" + } + "20" + { + "team" "108" + } + } + } + "87206806" + { + "name" "oSee" + "code" "osee" + "dob" "1999-05-31" + "geo" "US" + "events" + { + "19" + { + "team" "48" + } + "20" + { + "team" "48" + } + } + } + "897065446" + { + "name" "rox" + "code" "rox" + "dob" "2002-10-12" + "geo" "AR" + "events" + { + "19" + { + "team" "112" + } + } + } + "46114258" + { + "name" "luken" + "code" "luken" + "dob" "1997-03-26" + "geo" "AR" + "events" + { + "19" + { + "team" "112" + } + } + } + "282684656" + { + "name" "max" + "code" "max" + "dob" "1999-06-15" + "geo" "UY" + "events" + { + "19" + { + "team" "112" + } + "20" + { + "team" "112" + } + } + } + "256625848" + { + "name" "dgt" + "code" "dgt" + "dob" "2001-05-12" + "geo" "UY" + "events" + { + "19" + { + "team" "112" + } + "20" + { + "team" "112" + } + } + } + "160225583" + { + "name" "dav1d" + "code" "dav1d" + "dob" "2000-06-07" + "geo" "CL" + "events" + { + "19" + { + "team" "112" + } + "20" + { + "team" "112" + } + } + } + "104087441" + { + "name" "slaxz-" + "code" "slaxz" + "dob" "1970-01-01" + "geo" "DE" + "events" + { + "20" + { + "team" "72" + } + } + } + "1012530125" + { + "name" "lauNX" + "code" "launx" + "dob" "1970-01-01" + "geo" "DE" + "events" + { + "20" + { + "team" "72" + } + } + } + "44842089" + { + "name" "Staehr" + "code" "staehr" + "dob" "1970-01-01" + "geo" "DE" + "events" + { + "20" + { + "team" "72" + } + } + } + "1102803112" + { + "name" "w0nderful" + "code" "w0nderful" + "dob" "1970-01-01" + "geo" "RU" + "events" + { + "20" + { + "team" "81" + } + } + } + "390076777" + { + "name" "NQZ" + "code" "nqz" + "dob" "1970-01-01" + "geo" "BR" + "events" + { + "20" + { + "team" "112" + } + } + } + "239077622" + { + "name" "BUDA" + "code" "buda" + "dob" "1970-01-01" + "geo" "AR" + "events" + { + "20" + { + "team" "112" + } + } + } + "250668735" + { + "name" "HexT" + "code" "hext" + "dob" "1970-01-01" + "geo" "CA" + "events" + { + "20" + { + "team" "98" + } + } + } + "118505645" + { + "name" "JDC" + "code" "jdc" + "dob" "1970-01-01" + "geo" "DE" + "events" + { + "20" + { + "team" "106" + } + } + } + "395473484" + { + "name" "torzsi" + "code" "torzsi" + "dob" "1970-01-01" + "geo" "HU" + "events" + { + "20" + { + "team" "106" + } + } + } + "232908406" + { + "name" "xertioN" + "code" "xertion" + "dob" "1970-01-01" + "geo" "IL" + "events" + { + "20" + { + "team" "106" + } + } + } + "255168957" + { + "name" "NEOFRAG" + "code" "neofrag" + "dob" "1970-01-01" + "geo" "CZ" + "events" + { + "20" + { + "team" "96" + } + } + } + "18569432" + { + "name" "FlameZ" + "code" "flamez" + "dob" "1970-01-01" + "geo" "IL" + "events" + { + "20" + { + "team" "96" + } + } + } + "292168772" + { + "name" "F1KU" + "code" "f1ku" + "dob" "1970-01-01" + "geo" "PL" + "events" + { + "20" + { + "team" "96" + } + } + } + "404852560" + { + "name" "TRY" + "code" "try" + "dob" "1970-01-01" + "geo" "AR" + "events" + { + "20" + { + "team" "116" + } + } + } + "12874964" + { + "name" "mezii" + "code" "mezii" + "dob" "1970-01-01" + "geo" "GB" + "events" + { + "20" + { + "team" "6" + } + } + } + "3238867" + { + "name" "FASHR" + "code" "fashr" + "dob" "1970-01-01" + "geo" "NL" + "events" + { + "20" + { + "team" "6" + } + } + } + "89984505" + { + "name" "iM" + "code" "im" + "dob" "1970-01-01" + "geo" "RO" + "events" + { + "20" + { + "team" "115" + } + } + } + "190407632" + { + "name" "siuhy" + "code" "siuhy" + "dob" "1970-01-01" + "geo" "PL" + "events" + { + "20" + { + "team" "115" + } + } + } + "111644637" + { + "name" "isak" + "code" "isak" + "dob" "1970-01-01" + "geo" "SE" + "events" + { + "20" + { + "team" "115" + } + } + } + "92622415" + { + "name" "vexite" + "code" "vexite" + "dob" "1970-01-01" + "geo" "AU" + "events" + { + "20" + { + "team" "86" + } + } + } + "315821474" + { + "name" "ANNIHILATION" + "code" "annihilation" + "dob" "1970-01-01" + "geo" "MN" + "events" + { + "20" + { + "team" "108" + } + } + } + "119848818" + { + "name" "fame" + "code" "fame" + "dob" "1970-01-01" + "geo" "RU" + "events" + { + "20" + { + "team" "109" + } + } + } + } + "pro_teams" + { + "1" + { + "tag" "NiP" + "geo" "SE" + } + "2" + { + "tag" "AD" + "geo" "KZ" + } + "3" + { + "tag" "CoL" + "geo" "US" + } + "4" + { + "tag" "VG" + "geo" "FR" + } + "5" + { + "tag" "iBP" + "geo" "US" + } + "6" + { + "tag" "Fntc" + "geo" "SE" + } + "7" + { + "tag" "CM" + "geo" "FR" + } + "8" + { + "tag" "WGG" + "geo" "FR" + } + "9" + { + "tag" "LGB" + "geo" "NO" + } + "10" + { + "tag" "CW" + "geo" "DK" + } + "11" + { + "tag" "US" + "geo" "PL" + } + "12" + { + "tag" "NAVI" + "geo" "CC" + } + "13" + { + "tag" "nf" + "geo" "DK" + } + "14" + { + "tag" "SK" + "geo" "BR" + } + "15" + { + "tag" "XAPSO" + "geo" "EU" + } + "16" + { + "tag" "R" + "geo" "DK" + } + "17" + { + "tag" "V" + "geo" "US" + } + "18" + { + "tag" "V2" + "geo" "MK" + } + "19" + { + "tag" "DRUIDZ" + "geo" "SE" + } + "20" + { + "tag" "NiPtA" + "geo" "SE" + } + "21" + { + "tag" "NiPtB" + "geo" "SE" + } + "22" + { + "tag" "DH13AA" + "geo" "EU" + } + "23" + { + "tag" "DH13AB" + "geo" "EU" + } + "24" + { + "tag" "DIG" + "geo" "DK" + } + "25" + { + "tag" "HLR" + "geo" "EU" + } + "26" + { + "tag" "LDLC" + "geo" "FR" + } + "27" + { + "tag" "TIT" + "geo" "FR" + } + "28" + { + "tag" "3DM" + "geo" "FI" + } + "29" + { + "tag" "mss" + "geo" "EU" + } + "30" + { + "tag" "RGG" + "geo" "DK" + } + "31" + { + "tag" "VP" + "geo" "PL" + } + "32" + { + "tag" "VE" + "geo" "AU" + } + "33" + { + "tag" "C9" + "geo" "US" + } + "34" + { + "tag" "dAT" + "geo" "CC" + } + "35" + { + "tag" "Eps" + "geo" "FR" + } + "36" + { + "tag" "LC" + "geo" "NO" + } + "37" + { + "tag" "INDW" + "geo" "IN" + } + "38" + { + "tag" "myXMG" + "geo" "DK" + } + "39" + { + "tag" "PENTA" + "geo" "DE" + } + "40" + { + "tag" "BRAVG" + "geo" "ZA" + } + "41" + { + "tag" "PKD" + "geo" "DE" + } + "42" + { + "tag" "ESC" + "geo" "PL" + } + "43" + { + "tag" "FLIP" + "geo" "CC" + } + "44" + { + "tag" "x6ten" + "geo" "ES" + } + "45" + { + "tag" "Orbit" + "geo" "SE" + } + "46" + { + "tag" "NV" + "geo" "FR" + } + "47" + { + "tag" "VEX" + "geo" "PL" + } + "48" + { + "tag" "LIQ" + "geo" "US" + } + "49" + { + "tag" "CLG" + "geo" "US" + } + "50" + { + "tag" "KEYD" + "geo" "BR" + } + "51" + { + "tag" "TSM" + "geo" "DK" + } + "52" + { + "tag" "C9G" + "geo" "US" + } + "53" + { + "tag" "REN" + "geo" "AU" + } + "54" + { + "tag" "IM" + "geo" "AU" + } + "55" + { + "tag" "KING" + "geo" "EU" + } + "56" + { + "tag" "EBET" + "geo" "PL" + } + "57" + { + "tag" "LUMI" + "geo" "BR" + } + "58" + { + "tag" "TSOLO" + "geo" "DK" + } + "59" + { + "tag" "G2" + "geo" "EU" + } + "60" + { + "tag" "ASTR" + "geo" "DK" + } + "61" + { + "tag" "FAZE" + "geo" "EU" + } + "62" + { + "tag" "SPLC" + "geo" "US" + } + "63" + { + "tag" "GAMB" + "geo" "CC" + } + "64" + { + "tag" "STUS" + "geo" "US" + } + "65" + { + "tag" "STEU" + "geo" "EU" + } + "66" + { + "tag" "OPTC" + "geo" "US" + } + "67" + { + "tag" "GOD" + "geo" "SE" + } + "68" + { + "tag" "NOR" + "geo" "DK" + } + "69" + { + "tag" "BIG" + "geo" "DE" + } + "70" + { + "tag" "VEGA" + "geo" "RU" + } + "71" + { + "tag" "IMT" + "geo" "BR" + } + "72" + { + "tag" "SPR" + "geo" "EU" + } + "73" + { + "tag" "SPC" + "geo" "TR" + } + "74" + { + "tag" "TYL" + "geo" "CN" + } + "75" + { + "tag" "AVG" + "geo" "KZ" + } + "76" + { + "tag" "QB" + "geo" "RU" + } + "77" + { + "tag" "MFG" + "geo" "US" + } + "78" + { + "tag" "THV" + "geo" "BR" + } + "79" + { + "tag" "FLG" + "geo" "CN" + } + "80" + { + "tag" "MIBR" + "geo" "BR" + } + "81" + { + "tag" "SPIR" + "geo" "RU" + } + "82" + { + "tag" "ROG" + "geo" "US" + } + "83" + { + "tag" "WINS" + "geo" "RU" + } + "84" + { + "tag" "ENCE" + "geo" "FI" + } + "85" + { + "tag" "FURI" + "geo" "US" + } + "86" + { + "tag" "GRAY" + "geo" "AU" + } + "87" + { + "tag" "NRG" + "geo" "US" + } + "88" + { + "tag" "VICI" + "geo" "CN" + } + "89" + { + "tag" "VITA" + "geo" "FR" + } + "90" + { + "tag" "FORZ" + "geo" "RU" + } + "91" + { + "tag" "CR4Z" + "geo" "RS" + } + "92" + { + "tag" "SYMA" + "geo" "KZ" + } + "93" + { + "tag" "DREA" + "geo" "RU" + } + "94" + { + "tag" "INTZ" + "geo" "BR" + } + "95" + { + "tag" "HERO" + "geo" "SE" + } + "96" + { + "tag" "OG" + "geo" "US" + } + "97" + { + "tag" "ESP" + "geo" "ES" + } + "98" + { + "tag" "EVL" + "geo" "US" + } + "99" + { + "tag" "GENG" + "geo" "US" + } + "100" + { + "tag" "BOOM" + "geo" "BR" + } + "101" + { + "tag" "COPE" + "geo" "DK" + } + "102" + { + "tag" "PAIN" + "geo" "BR" + } + "103" + { + "tag" "RIDE" + "geo" "ES" + } + "104" + { + "tag" "SHRK" + "geo" "PT" + } + "105" + { + "tag" "ENT" + "geo" "CZ" + } + "106" + { + "tag" "MOUZ" + "geo" "EU" + } + "107" + { + "tag" "NEMI" + "geo" "EU" + } + "108" + { + "tag" "IHC" + "geo" "MN" + } + "109" + { + "tag" "OUT" + "geo" "RU" + } + "110" + { + "tag" "ETER" + "geo" "TR" + } + "111" + { + "tag" "CPLX" + "geo" "US" + } + "112" + { + "tag" "NINE" + "geo" "AR" + } + "113" + { + "tag" "IMP" + "geo" "BR" + } + "114" + { + "tag" "BNE" + "geo" "XK" + } + "115" + { + "tag" "GL" + "geo" "DE" + } + "116" + { + "tag" "ZZN" + "geo" "BR" + } + } + "items_game_live" + { + "pro_players" + { + "*" + { + "events" + { + "16" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.000000" + "enemy_kills" "0" + "deaths" "0" + "matches_played" "0" + "*" + { + "clutch_kills" "0" + "pistol_kills" "0" + "opening_kills" "0" + "sniper_kills" "0" + "KDR" "1.000000" + "enemy_kills" "0" + "deaths" "0" + "matches_played" "0" + } + } + } + } + } + } + "items" + { + "4235" + { + "item_name" "#CSGO_crate_pins_series_1" + "name" "crate_pins_series_1" + "item_description" "#CSGO_crate_pins_series_1_desc" + "image_inventory" "econ/weapon_cases/crate_pins_series_1" + "first_sale_date" "2016/06/01" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "143" + } + } + } + } + "revolving_loot_lists" + { + "143" "crate_pins_series_1" + } + "client_loot_lists" + { + "crate_pins_series_1_rare" + { + "Commodity Pin - Guardian" "1" + "Commodity Pin - Tactics" "1" + "Commodity Pin - Nuke" "1" + "Commodity Pin - Train" "1" + } + "crate_pins_series_1_mythical" + { + "Commodity Pin - Victory" "1" + "Commodity Pin - Militia" "1" + "Commodity Pin - Italy" "1" + } + "crate_pins_series_1_legendary" + { + "Commodity Pin - Mirage" "1" + "Commodity Pin - Inferno" "1" + } + "crate_pins_series_1_ancient" + { + "Commodity Pin - Dust II" "1" + "Commodity Pin - Guardian Elite" "1" + } + "crate_pins_series_1" + { + "crate_pins_series_1_rare" "1" + "crate_pins_series_1_mythical" "1" + "crate_pins_series_1_legendary" "1" + "crate_pins_series_1_ancient" "1" + } + } + "items" + { + "4284" + { + "item_name" "#CSGO_crate_pins_series_2" + "name" "crate_pins_series_2" + "item_description" "#CSGO_crate_pins_series_2_desc" + "image_inventory" "econ/weapon_cases/crate_pins_series_2" + "first_sale_date" "2016/09/28" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "175" + } + } + } + } + "revolving_loot_lists" + { + "175" "crate_pins_series_2" + } + "client_loot_lists" + { + "crate_pins_series_2_rare" + { + "Commodity Pin - Guardian 2" "1" + "Commodity Pin - Bravo" "1" + "Commodity Pin - Baggage" "1" + "Commodity Pin - Phoenix" "1" + } + "crate_pins_series_2_mythical" + { + "Commodity Pin - Office" "1" + "Commodity Pin - Cobblestone" "1" + "Commodity Pin - Overpass" "1" + } + "crate_pins_series_2_legendary" + { + "Commodity Pin - Bloodhound" "1" + "Commodity Pin - Cache" "1" + } + "crate_pins_series_2_ancient" + { + "Commodity Pin - Chroma" "1" + "Commodity Pin - Valeria" "1" + } + "crate_pins_series_2" + { + "crate_pins_series_2_rare" "1" + "crate_pins_series_2_mythical" "1" + "crate_pins_series_2_legendary" "1" + "crate_pins_series_2_ancient" "1" + } + } + "items" + { + "4481" + { + "item_name" "#CSGO_crate_pins_series_3" + "name" "crate_pins_series_3" + "item_description" "#CSGO_crate_pins_series_3_desc" + "image_inventory" "econ/weapon_cases/crate_pins_series_3" + "first_sale_date" "2018/03/01" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "243" + } + } + } + } + "revolving_loot_lists" + { + "243" "crate_pins_series_3" + } + "client_loot_lists" + { + "crate_pins_series_3_rare" + { + "Commodity Pin - Guardian 3" "1" + "Commodity Pin - Canals" "1" + "Commodity Pin - Welcome to the Clutch" "1" + "Commodity Pin - Death Sentence" "1" + } + "crate_pins_series_3_mythical" + { + "Commodity Pin - Inferno 2" "1" + "Commodity Pin - Wildfire" "1" + "Commodity Pin - Easy Peasy" "1" + } + "crate_pins_series_3_legendary" + { + "Commodity Pin - Aces High" "1" + "Commodity Pin - Hydra" "1" + } + "crate_pins_series_3_ancient" + { + "Commodity Pin - Howl" "1" + "Commodity Pin - Brigadier General" "1" + } + "crate_pins_series_3" + { + "crate_pins_series_3_rare" "1" + "crate_pins_series_3_mythical" "1" + "crate_pins_series_3_legendary" "1" + "crate_pins_series_3_ancient" "1" + } + } + "items" + { + "4693" + { + "item_name" "#CSGO_crate_pins_hlalyx" + "name" "crate_pins_hlalyx" + "item_description" "#CSGO_crate_pins_hlalyx_desc" + "image_inventory" "econ/weapon_cases/crate_pins_hlalyx" + "first_sale_date" "2020/03/23" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "300" + } + } + } + } + "revolving_loot_lists" + { + "300" "crate_pins_hlalyx" + } + "client_loot_lists" + { + "crate_pins_hlalyx_rare" + { + "Commodity Pin - alyx_08" "1" + "Commodity Pin - alyx_06" "1" + "Commodity Pin - alyx_03" "1" + "Commodity Pin - alyx_01" "1" + "Commodity Pin - alyx_11" "1" + } + "crate_pins_hlalyx_mythical" + { + "Commodity Pin - alyx_05" "1" + "Commodity Pin - alyx_02" "1" + "Commodity Pin - alyx_12" "1" + } + "crate_pins_hlalyx_legendary" + { + "Commodity Pin - alyx_07" "1" + "Commodity Pin - alyx_09" "1" + } + "crate_pins_hlalyx_ancient" + { + "Commodity Pin - alyx_10" "1" + "Commodity Pin - alyx_04" "1" + } + "crate_pins_hlalyx" + { + "crate_pins_hlalyx_rare" "1" + "crate_pins_hlalyx_mythical" "1" + "crate_pins_hlalyx_legendary" "1" + "crate_pins_hlalyx_ancient" "1" + } + } + "paint_kits" + { + "541" + { + "name" "cu_aug_swallows" + "description_string" "#PaintKit_cu_aug_swallows" + "description_tag" "#PaintKit_cu_aug_swallows_Tag" + "style" "7" + "pattern" "workshop/aug_swallows" + "pattern_scale" "1.000000" + "phongexponent" "8" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "542" + { + "name" "cu_bizon_Curse" + "description_string" "#PaintKit_cu_bizon_Curse" + "description_tag" "#PaintKit_cu_bizon_Curse_Tag" + "style" "7" + "pattern" "workshop/bizon_curse" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "543" + { + "name" "gs_cz75a_redastor" + "description_string" "#PaintKit_gs_cz75a_redastor" + "description_tag" "#PaintKit_gs_cz75a_redastor_Tag" + "style" "9" + "pattern" "workshop/cz75_redastor" + "color0" "128 128 128 255" + "color1" "209 209 209" + "color2" "189 213 221" + "color3" "225 219 191" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "25" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "544" + { + "name" "gs_dualberettas_ventilators" + "description_string" "#PaintKit_gs_dualberettas_ventilators" + "description_tag" "#PaintKit_gs_dualberettas_ventilators_Tag" + "style" "9" + "pattern" "workshop/ventilator_dualies" + "color0" "128 128 128 255" + "color1" "197 197 197" + "color2" "34 42 42" + "color3" "67 59 59" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "12" + "phongalbedoboost" "16" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "545" + { + "name" "sp_g3sg1_militiaorange" + "description_string" "#PaintKit_sp_g3sg1_militiaorange" + "description_tag" "#PaintKit_sp_g3sg1_militiaorange_Tag" + "style" "3" + "pattern" "workshop/g3sg1_militiared" + "color0" "41 41 38" + "color1" "59 60 62" + "color2" "53 53 41" + "color3" "242 128 52" + "pattern_scale" "2.000000" + "phongexponent" "125" + "phongintensity" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.520000" + } + "546" + { + "name" "gs_galilar_incenerator" + "description_string" "#PaintKit_gs_galilar_incenerator" + "description_tag" "#PaintKit_gs_galilar_incenerator_Tag" + "style" "9" + "pattern" "workshop/galil_incinerator" + "color0" "157 141 118" + "color1" "233 249 253" + "color2" "253 233 220" + "color3" "231 168 121" + "pattern_scale" "1.000000" + "phongexponent" "20" + "phongintensity" "45" + "phongalbedoboost" "9" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "547" + { + "name" "cu_m249_spectre" + "description_string" "#PaintKit_cu_m249_spectre" + "description_tag" "#PaintKit_cu_m249_spectre_Tag" + "style" "7" + "pattern" "workshop/m249_spectre" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "548" + { + "name" "cu_m4a1s_soultaker" + "description_string" "#PaintKit_cu_m4a1s_soultaker" + "description_tag" "#PaintKit_cu_m4a1s_soultaker_Tag" + "style" "7" + "pattern" "workshop/m4a1s_soultaker" + "pattern_scale" "1.000000" + "phongexponent" "1255" + "phongintensity" "140" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.990000" + } + "549" + { + "name" "am_mp9_bioleak" + "description_string" "#PaintKit_am_mp9_bioleak" + "description_tag" "#PaintKit_am_mp9_bioleak_Tag" + "style" "5" + "pattern" "workshop/bio_pattern" + "color0" "30 20 6" + "color1" "207 244 2" + "color2" "63 62 40" + "color3" "74 72 25" + "pattern_scale" "2.000000" + "phongexponent" "4" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.790000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.650000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "209.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "550" + { + "name" "hy_p2000_oceani" + "description_string" "#PaintKit_hy_p2000_oceani" + "description_tag" "#PaintKit_hy_p2000_oceani_Tag" + "style" "2" + "pattern" "workshop/p2000_oceani" + "color0" "21 21 26" + "color1" "46 158 199" + "color2" "20 91 146" + "color3" "25 92 148" + "pattern_scale" "4.000000" + "phongexponent" "255" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "551" + { + "name" "cu_p250_asiimov" + "description_string" "#PaintKit_cu_p250_asiimov" + "description_tag" "#PaintKit_cu_p250_asiimov_Tag" + "style" "7" + "pattern" "workshop/p250_asiimov" + "pattern_scale" "1.000000" + "phongexponent" "230" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "1.000000" + } + "552" + { + "name" "gs_sawedoff_fubar" + "description_string" "#PaintKit_gs_sawedoff_fubar" + "description_tag" "#PaintKit_gs_sawedoff_fubar_Tag" + "style" "9" + "pattern" "workshop/sawedoff_fubar" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "219 213 204" + "color3" "234 220 204" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "5" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.400000" + "wear_remap_max" "1.000000" + } + "553" + { + "name" "cu_sg553_atlas" + "description_string" "#PaintKit_cu_sg553_atlas" + "description_tag" "#PaintKit_cu_sg553_atlas_Tag" + "style" "7" + "pattern" "workshop/sg553_atlas" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.810000" + } + "554" + { + "name" "gs_ssg08_armacore" + "description_string" "#PaintKit_gs_ssg08_armacore" + "description_tag" "#PaintKit_gs_ssg08_armacore_Tag" + "style" "9" + "pattern" "workshop/ssg08_armacore" + "color0" "128 128 128 255" + "color1" "255 255 255" + "color2" "234 234 234" + "color3" "153 153 153" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "255" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "555" + { + "name" "am_tec9_redblast" + "description_string" "#PaintKit_am_tec9_redblast" + "description_tag" "#PaintKit_am_tec9_redblast_Tag" + "style" "5" + "pattern" "workshop/tec9_redblast" + "color0" "27 26 31" + "color1" "201 23 17" + "color2" "236 129 43" + "color3" "66 136 150" + "pattern_scale" "1.000000" + "phongexponent" "25" + "phongalbedoboost" "95" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.430000" + } + "556" + { + "name" "cu_ump45_primalsaber" + "description_string" "#PaintKit_cu_ump45_primalsaber" + "description_tag" "#PaintKit_cu_ump45_primalsaber_Tag" + "style" "7" + "pattern" "workshop/ump45_primalsaber" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "90" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.770000" + } + "557" + { + "name" "cu_xm1014_spectrum" + "description_string" "#PaintKit_cu_xm1014_spectrum" + "description_tag" "#PaintKit_cu_xm1014_spectrum_Tag" + "style" "7" + "pattern" "workshop/xm1014_spectrum" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "3" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + } + "items" + { + "1347" + { + "name" "community_12 Key" + "item_name" "#CSGO_crate_key_community_12" + "item_description" "#CSGO_crate_key_community_12_desc" + "first_sale_date" "2016-04-19" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_12" + "tool" + { + "restriction" "crate_community_12" + } + } + "4233" + { + "item_name" "#CSGO_crate_community_12" + "item_description" "#CSGO_crate_community_12_desc" + "name" "crate_community_12" + "image_inventory" "econ/weapon_cases/crate_community_12" + "model_player" "models/props/crates/csgo_drop_crate_chroma3.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1347" "1" + } + "tool" + { + "restriction" "crate_community_12" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "141" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_12" + "tag_text" "#CSGO_set_community_12" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "revolving_loot_lists" + { + "141" "crate_community_12" + } + "client_loot_lists" + { + "crate_community_12_rare" + { + "[gs_dualberettas_ventilators]weapon_elite" "1" + "[sp_g3sg1_militiaorange]weapon_g3sg1" "1" + "[cu_m249_spectre]weapon_m249" "1" + "[am_mp9_bioleak]weapon_mp9" "1" + "[hy_p2000_oceani]weapon_hkp2000" "1" + "[gs_sawedoff_fubar]weapon_sawedoff" "1" + "[cu_sg553_atlas]weapon_sg556" "1" + } + "crate_community_12_mythical" + { + "[gs_cz75a_redastor]weapon_cz75a" "1" + "[gs_galilar_incenerator]weapon_galilar" "1" + "[gs_ssg08_armacore]weapon_ssg08" "1" + "[am_tec9_redblast]weapon_tec9" "1" + "[cu_xm1014_spectrum]weapon_xm1014" "1" + } + "crate_community_12_legendary" + { + "[cu_aug_swallows]weapon_aug" "1" + "[cu_p250_asiimov]weapon_p250" "1" + "[cu_ump45_primalsaber]weapon_ump45" "1" + } + "crate_community_12_ancient" + { + "[cu_bizon_Curse]weapon_bizon" "1" + "[cu_m4a1s_soultaker]weapon_m4a1_silencer" "1" + } + "crate_community_12" + { + "crate_community_12_rare" "1" + "crate_community_12_mythical" "1" + "crate_community_12_legendary" "1" + "crate_community_12_ancient" "1" + "community_case_6_unusual" "1" + } + } + "item_sets" + { + "set_community_12" + { + "name" "#CSGO_set_community_12" + "set_description" "#CSGO_set_community_12_desc" + "is_collection" "1" + "items" + { + "[gs_dualberettas_ventilators]weapon_elite" "1" + "[sp_g3sg1_militiaorange]weapon_g3sg1" "1" + "[cu_m249_spectre]weapon_m249" "1" + "[am_mp9_bioleak]weapon_mp9" "1" + "[hy_p2000_oceani]weapon_hkp2000" "1" + "[gs_sawedoff_fubar]weapon_sawedoff" "1" + "[cu_sg553_atlas]weapon_sg556" "1" + "[gs_cz75a_redastor]weapon_cz75a" "1" + "[gs_galilar_incenerator]weapon_galilar" "1" + "[gs_ssg08_armacore]weapon_ssg08" "1" + "[am_tec9_redblast]weapon_tec9" "1" + "[cu_xm1014_spectrum]weapon_xm1014" "1" + "[cu_aug_swallows]weapon_aug" "1" + "[cu_p250_asiimov]weapon_p250" "1" + "[cu_ump45_primalsaber]weapon_ump45" "1" + "[cu_bizon_Curse]weapon_bizon" "1" + "[cu_m4a1s_soultaker]weapon_m4a1_silencer" "1" + } + } + } + "paint_kits_rarity" + { + "cu_aug_swallows" "legendary" + "cu_bizon_Curse" "ancient" + "gs_cz75a_redastor" "mythical" + "gs_dualberettas_ventilators" "rare" + "sp_g3sg1_militiaorange" "rare" + "gs_galilar_incenerator" "mythical" + "cu_m249_spectre" "rare" + "cu_m4a1s_soultaker" "legendary" + "am_mp9_bioleak" "rare" + "hy_p2000_oceani" "uncommon" + "cu_p250_asiimov" "legendary" + "gs_sawedoff_fubar" "rare" + "cu_sg553_atlas" "rare" + "gs_ssg08_armacore" "mythical" + "am_tec9_redblast" "mythical" + "cu_ump45_primalsaber" "legendary" + "cu_xm1014_spectrum" "mythical" + } + "paint_kits" + { + "558" + { + "name" "cu_bayonet_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "bayonet_lore" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "559" + { + "name" "cu_flip_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "flip_lore" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "560" + { + "name" "cu_gut_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "gut_lore" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "561" + { + "name" "cu_karam_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "karam_lore" + "pattern_scale" "1.000000" + "phongexponent" "64" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "562" + { + "name" "cu_m9_bay_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "m9_bay_lore" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "563" + { + "name" "cu_bayonet_stonewash" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "bayonet_black_laminate" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "232 216 197" + "color3" "232 225 208" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "64" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "564" + { + "name" "cu_flip_stonewash" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "flip_black_laminate" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "232 216 197" + "color3" "232 225 208" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "20" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "565" + { + "name" "cu_gut_stonewash" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "gut_black_laminate" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "232 216 197" + "color3" "209 198 173" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "255" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "566" + { + "name" "cu_karam_stonewash" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "karambit_black_laminate" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "232 216 197" + "color3" "232 225 208" + "pattern_scale" "1.000000" + "phongexponent" "95" + "phongintensity" "64" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "567" + { + "name" "cu_m9_bay_stonewash" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "m9bay_black_laminate" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "232 216 197" + "color3" "232 225 208" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "255" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "568" + { + "name" "am_emerald_marbleized" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "568-572" + "style" "5" + "pattern" "smoke2" + "color0" "2 69 34" + "color1" "15 15 1" + "color2" "1 13 17 255" + "color3" "8 2 22 255" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "569" + { + "name" "am_gamma_doppler_phase1" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "568-572" + "style" "5" + "pattern" "smoke2" + "color0" "11 14 27 255" + "color1" "30 22 12 255" + "color2" "13 98 45" + "color3" "11 14 27 255" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "570" + { + "name" "am_gamma_doppler_phase2" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "568-572" + "style" "5" + "pattern" "smoke2" + "color0" "9 15 18" + "color1" "9 99 45" + "color2" "23 30 12" + "color3" "9 99 49" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "571" + { + "name" "am_gamma_doppler_phase3" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "568-572" + "style" "5" + "pattern" "smoke2" + "color0" "6 8 15 255" + "color1" "23 105 117" + "color2" "6 63 13" + "color3" "20 28 9" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "572" + { + "name" "am_gamma_doppler_phase4" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "568-572" + "style" "5" + "pattern" "smoke2" + "color0" "7 9 18" + "color1" "23 117 103" + "color2" "97 165 43" + "color3" "28 26 9" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + } + "573" + { + "name" "gs_bayonet_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "bayonet_future_alt" + "normal" "bayonet_future_alt_normal" + "use_normal" "1" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "146 141 132" + "color3" "204 198 191" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + } + "574" + { + "name" "gs_flip_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "flip_future" + "normal" "flip_future_normal" + "use_normal" "1" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "162 155 141" + "color3" "222 215 211" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + } + "575" + { + "name" "gs_gut_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "gut_future" + "normal" "gut_future_normal" + "use_normal" "1" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "208 201 188" + "color3" "218 211 203" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + } + "576" + { + "name" "gs_karam_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "karam_future" + "normal" "karam_future_normal" + "use_normal" "1" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "97 85 61" + "color3" "111 104 98" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + } + "577" + { + "name" "gs_m9_bay_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "m9_bay_future" + "normal" "m9_bay_future_normal" + "use_normal" "1" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "208 201 188" + "color3" "218 211 203" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + } + "578" + { + "name" "hy_ocean_knife" + "description_string" "#PaintKit_hy_ocean_knife" + "description_tag" "#PaintKit_hy_ocean_Tag" + "style" "2" + "pattern" "camo_wood" + "color0" "35 45 92 255" + "color1" "108 124 128 255" + "color2" "51 75 113 255" + "color3" "39 46 58 255" + "pattern_scale" "3.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "579" + { + "name" "hy_ocean_knife_90" + "description_string" "#PaintKit_hy_ocean_knife" + "description_tag" "#PaintKit_hy_ocean_Tag" + "style" "2" + "pattern" "camo_wood" + "color0" "35 45 92 255" + "color1" "108 124 128 255" + "color2" "51 75 113 255" + "color3" "39 46 58 255" + "pattern_scale" "3.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "580" + { + "name" "am_marked_up" + "description_string" "#PaintKit_am_marked_up" + "description_tag" "#PaintKit_am_marked_up_Tag" + "style" "5" + "pattern" "stealth" + "color0" "20 20 20" + "color1" "26 26 26" + "color2" "26 14 47" + "color3" "76 76 76" + "pattern_scale" "2.700000" + "phongexponent" "255" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.480000" + } + "581" + { + "name" "am_marked_up_90" + "description_string" "#PaintKit_am_marked_up" + "description_tag" "#PaintKit_am_marked_up_Tag" + "style" "5" + "pattern" "stealth" + "color0" "20 20 20" + "color1" "26 26 26" + "color2" "26 14 47" + "color3" "76 76 76" + "pattern_scale" "2.700000" + "phongexponent" "255" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.480000" + } + "582" + { + "name" "am_marked_up_fine" + "description_string" "#PaintKit_am_marked_up" + "description_tag" "#PaintKit_am_marked_up_Tag" + "style" "5" + "pattern" "stealth" + "color0" "20 20 20" + "color1" "26 26 26" + "color2" "26 14 47" + "color3" "76 76 76" + "pattern_scale" "3.900000" + "phongexponent" "255" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "30.000000" + "pattern_rotate_end" "30.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.480000" + } + "583" + { + "name" "gs_aug_aristocrat" + "description_string" "#PaintKit_gs_aug_aristocrat" + "description_tag" "#PaintKit_gs_aug_aristocrat_Tag" + "style" "9" + "pattern" "workshop/aug_aristocrat_silver" + "use_normal" "1" + "normal" "workshop/aug_aristocrat_silver_normal" + "color0" "128 128 128" + "color1" "202 202 202" + "color2" "73 42 9" + "color3" "62 62 62" + "pattern_scale" "1.000000" + "phongexponent" "30" + "phongintensity" "255" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.660000" + } + "584" + { + "name" "gs_awp_phobos" + "description_string" "#PaintKit_gs_awp_phobos" + "description_tag" "#PaintKit_gs_awp_phobos_Tag" + "style" "9" + "pattern" "workshop/awp-phobos" + "use_normal" "1" + "normal" "workshop/awp-phobos_normal" + "color0" "66 73 110" + "color1" "255 255 255" + "color2" "6 6 6" + "color3" "91 91 91" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "15" + "phongalbedoboost" "90" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + } + "585" + { + "name" "cu_five_seven_daimyo" + "description_string" "#PaintKit_cu_five_seven_daimyo" + "description_tag" "#PaintKit_cu_five_seven_daimyo_Tag" + "style" "7" + "pattern" "workshop/five_seven_daimyo_majestic_nose8c_sRGB_3" + "pattern_scale" "1.000000" + "phongexponent" "60" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "586" + { + "name" "cu_glock_wasteland_rebel" + "description_string" "#PaintKit_cu_glock_wasteland_rebel" + "description_tag" "#PaintKit_cu_glock_wasteland_rebel_Tag" + "style" "7" + "pattern" "workshop/glock_wasteland_rebel" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.540000" + } + "587" + { + "name" "gs_m4a1_mecha_industries" + "description_string" "#PaintKit_gs_m4a1_mecha_industries" + "description_tag" "#PaintKit_gs_m4a1_mecha_industries_Tag" + "style" "9" + "pattern" "workshop/m4a1-s_mecha" + "color0" "190 188 183" + "color1" "194 194 194" + "color2" "165 161 152" + "color3" "124 123 117" + "pattern_scale" "1.000000" + "phongexponent" "70" + "phongintensity" "25" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "588" + { + "name" "cu_m4a4_desolate_space" + "description_string" "#PaintKit_cu_m4a4_desolate_space" + "description_tag" "#PaintKit_cu_m4a4_desolate_space_Tag" + "style" "7" + "pattern" "workshop/m4a4_desolatespace2" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "589" + { + "name" "aq_mac_10_alien_camo" + "description_string" "#PaintKit_aq_mac_10_alien_camo" + "description_tag" "#PaintKit_aq_mac_10_alien_camo_Tag" + "style" "8" + "pattern" "workshop/mac_10_alien_camo" + "color0" "214 194 221" + "color1" "205 142 125" + "color2" "122 75 60" + "color3" "194 152 126" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongalbedoboost" "7" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "590" + { + "name" "aq_nova_sci_fi" + "description_string" "#PaintKit_aq_nova_sci_fi" + "description_tag" "#PaintKit_aq_nova_sci_fi_Tag" + "style" "8" + "pattern" "workshop/nova_sci_fi" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "2.000000" + "phongexponent" "32" + "phongalbedoboost" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "591" + { + "name" "gs_p2000_imperial_dragon" + "description_string" "#PaintKit_gs_p2000_imperial_dragon" + "description_tag" "#PaintKit_gs_p2000_imperial_dragon_Tag" + "style" "9" + "pattern" "workshop/p2000_asiandawn_final" + "color0" "55 41 35" + "color1" "232 169 136" + "color2" "215 98 217" + "color3" "203 146 84" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "75" + "phongalbedoboost" "230" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.630000" + } + "592" + { + "name" "gs_p250_metal_panels" + "description_string" "#PaintKit_gs_p250_metal_panels" + "description_tag" "#PaintKit_gs_p250_metal_panels_Tag" + "style" "9" + "pattern" "workshop/metalpanels_green" + "color0" "255 255 255" + "color1" "238 255 193" + "color2" "255 236 172" + "color3" "211 190 156" + "pattern_scale" "2.200000" + "phongexponent" "170" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.800000" + } + "593" + { + "name" "gs_p90_full_throttle" + "description_string" "#PaintKit_gs_p90_full_throttle" + "description_tag" "#PaintKit_gs_p90_full_throttle_Tag" + "style" "9" + "pattern" "workshop/p90_fullthrottle_final" + "color0" "42 42 42" + "color1" "248 244 227" + "color2" "15 18 24" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "594" + { + "name" "gs_pp_bizon_harvester" + "description_string" "#PaintKit_gs_pp_bizon_harvester" + "description_tag" "#PaintKit_gs_pp_bizon_harvester_Tag" + "style" "9" + "pattern" "workshop/pp_bizon_harvester" + "use_normal" "1" + "normal" "workshop/pp_bizon_harvester_normal" + "color0" "128 128 128 255" + "color1" "174 171 162" + "color2" "192 190 181" + "color3" "214 214 214" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "45" + "phongalbedoboost" "16" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "595" + { + "name" "cu_r8_cybersport" + "description_string" "#PaintKit_cu_r8_cybersport" + "description_tag" "#PaintKit_cu_r8_cybersport_Tag" + "style" "7" + "pattern" "workshop/revolver_cybersport" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "596" + { + "name" "cu_sawed_off_lime" + "description_string" "#PaintKit_cu_sawed_off_lime" + "description_tag" "#PaintKit_cu_sawed_off_lime_Tag" + "style" "7" + "pattern" "workshop/sawed_off_lime" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "47" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "597" + { + "name" "gs_scar20_bloodsport" + "description_string" "#PaintKit_gs_scar20_bloodsport" + "description_tag" "#PaintKit_gs_scar20_bloodsport_Tag" + "style" "9" + "pattern" "workshop/scar20_voltaic" + "color0" "255 255 255" + "color1" "192 192 192" + "color2" "23 13 13" + "color3" "21 16 16" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "12" + "phongalbedoboost" "6" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "598" + { + "name" "cu_sg553_aerial" + "description_string" "#PaintKit_cu_sg553_aerial" + "description_tag" "#PaintKit_cu_sg553_aerial_Tag" + "style" "9" + "pattern" "workshop/aerial_sg553" + "color0" "128 128 128 255" + "color1" "212 212 212" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "8" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "599" + { + "name" "am_tec_9_sea_salt" + "description_string" "#PaintKit_am_tec_9_sea_salt" + "description_tag" "#PaintKit_am_tec_9_sea_salt_Tag" + "style" "5" + "pattern" "workshop/tec_9_seasalt" + "color0" "16 85 189" + "color1" "68 178 255" + "color2" "38 38 38" + "color3" "215 215 215" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + } + "items" + { + "1350" + { + "name" "community_13 Key" + "item_name" "#CSGO_crate_key_community_13" + "item_description" "#CSGO_crate_key_community_13_desc" + "first_sale_date" "2016-06-10" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_13" + "tool" + { + "restriction" "crate_community_13" + } + } + "4236" + { + "item_name" "#CSGO_crate_community_13" + "item_description" "#CSGO_crate_community_13_desc" + "name" "crate_community_13" + "image_inventory" "econ/weapon_cases/crate_community_13" + "model_player" "models/props/crates/csgo_drop_crate_gamma.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1350" "1" + } + "tool" + { + "restriction" "crate_community_13" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "144" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_13" + "tag_text" "#CSGO_set_community_13" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "revolving_loot_lists" + { + "144" "crate_community_13" + } + "client_loot_lists" + { + "crate_community_13_rare" + { + "[cu_five_seven_daimyo]weapon_fiveseven" "1" + "[aq_mac_10_alien_camo]weapon_mac10" "1" + "[aq_nova_sci_fi]weapon_nova" "1" + "[gs_p250_metal_panels]weapon_p250" "1" + "[gs_pp_bizon_harvester]weapon_bizon" "1" + "[cu_sg553_aerial]weapon_sg556" "1" + "[am_tec_9_sea_salt]weapon_tec9" "1" + } + "crate_community_13_mythical" + { + "[gs_aug_aristocrat]weapon_aug" "1" + "[gs_awp_phobos]weapon_awp" "1" + "[gs_p90_full_throttle]weapon_p90" "1" + "[cu_r8_cybersport]weapon_revolver" "1" + "[cu_sawed_off_lime]weapon_sawedoff" "1" + } + "crate_community_13_legendary" + { + "[cu_m4a4_desolate_space]weapon_m4a1" "1" + "[gs_p2000_imperial_dragon]weapon_hkp2000" "1" + "[gs_scar20_bloodsport]weapon_scar20" "1" + } + "crate_community_13_ancient" + { + "[cu_glock_wasteland_rebel]weapon_glock" "1" + "[gs_m4a1_mecha_industries]weapon_m4a1_silencer" "1" + } + "crate_community_13" + { + "crate_community_13_rare" "1" + "crate_community_13_mythical" "1" + "crate_community_13_legendary" "1" + "crate_community_13_ancient" "1" + "community_case_13_unusual" "1" + } + } + "item_sets" + { + "set_community_13" + { + "name" "#CSGO_set_community_13" + "set_description" "#CSGO_set_community_13_desc" + "is_collection" "1" + "items" + { + "[cu_five_seven_daimyo]weapon_fiveseven" "1" + "[aq_mac_10_alien_camo]weapon_mac10" "1" + "[aq_nova_sci_fi]weapon_nova" "1" + "[gs_p250_metal_panels]weapon_p250" "1" + "[gs_pp_bizon_harvester]weapon_bizon" "1" + "[cu_sg553_aerial]weapon_sg556" "1" + "[am_tec_9_sea_salt]weapon_tec9" "1" + "[gs_aug_aristocrat]weapon_aug" "1" + "[gs_awp_phobos]weapon_awp" "1" + "[gs_p90_full_throttle]weapon_p90" "1" + "[cu_r8_cybersport]weapon_revolver" "1" + "[cu_sawed_off_lime]weapon_sawedoff" "1" + "[cu_m4a4_desolate_space]weapon_m4a1" "1" + "[gs_p2000_imperial_dragon]weapon_hkp2000" "1" + "[gs_scar20_bloodsport]weapon_scar20" "1" + "[cu_glock_wasteland_rebel]weapon_glock" "1" + "[gs_m4a1_mecha_industries]weapon_m4a1_silencer" "1" + } + } + } + "paint_kits_rarity" + { + "cu_bayonet_lore" "legendary" + "cu_flip_lore" "legendary" + "cu_gut_lore" "legendary" + "cu_karam_lore" "legendary" + "cu_m9_bay_lore" "legendary" + "cu_bayonet_stonewash" "mythical" + "cu_flip_stonewash" "mythical" + "cu_gut_stonewash" "mythical" + "cu_karam_stonewash" "mythical" + "cu_m9_bay_stonewash" "mythical" + "am_emerald_marbleized" "legendary" + "am_gamma_doppler_phase1" "mythical" + "am_gamma_doppler_phase2" "mythical" + "am_gamma_doppler_phase3" "mythical" + "am_gamma_doppler_phase4" "mythical" + "gs_bayonet_autotronic" "mythical" + "gs_flip_autotronic" "mythical" + "gs_gut_autotronic" "mythical" + "gs_karam_autotronic" "mythical" + "gs_m9_bay_autotronic" "mythical" + "hy_ocean_knife" "rare" + "hy_ocean_knife_90" "rare" + "am_marked_up" "rare" + "am_marked_up_90" "rare" + "am_marked_up_fine" "rare" + "gs_aug_aristocrat" "mythical" + "gs_awp_phobos" "rare" + "cu_five_seven_daimyo" "rare" + "cu_glock_wasteland_rebel" "legendary" + "gs_m4a1_mecha_industries" "legendary" + "cu_m4a4_desolate_space" "mythical" + "aq_mac_10_alien_camo" "rare" + "aq_nova_sci_fi" "rare" + "gs_p2000_imperial_dragon" "mythical" + "gs_p250_metal_panels" "rare" + "gs_p90_full_throttle" "mythical" + "gs_pp_bizon_harvester" "rare" + "cu_r8_cybersport" "mythical" + "cu_sawed_off_lime" "mythical" + "gs_scar20_bloodsport" "legendary" + "cu_sg553_aerial" "rare" + "am_tec_9_sea_salt" "rare" + } + "paint_kits" + { + "600" + { + "name" "cu_ak47_anarchy" + "description_string" "#PaintKit_cu_AK47_Anarchy" + "description_tag" "#PaintKit_cu_AK47_Anarchy_Tag" + "style" "7" + "pattern" "workshop/anarchy_ak47" + "pattern_scale" "1.000000" + "phongexponent" "140" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "601" + { + "name" "gs_aug_syd_mead" + "description_string" "#PaintKit_gs_AUG_Syd_Mead" + "description_tag" "#PaintKit_gs_AUG_Syd_Mead_Tag" + "style" "9" + "pattern" "workshop/syd_mead_aug_texture" + "color0" "131 145 149" + "color1" "255 255 255" + "color2" "111 94 78" + "color3" "130 89 59" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "150" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "602" + { + "name" "gs_cz75_tread" + "description_string" "#PaintKit_gs_CZ75_Tread" + "description_tag" "#PaintKit_gs_CZ75_Tread_Tag" + "style" "9" + "pattern" "workshop/cz75_tread" + "use_normal" "1" + "normal" "workshop/cz75_tread_normal" + "color0" "128 128 128 255" + "color1" "226 226 226" + "color2" "136 136 136" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "603" + { + "name" "aq_desert_eagle_constable" + "description_string" "#PaintKit_aq_Desert_Eagle_Constable" + "description_tag" "#PaintKit_aq_Desert_Eagle_Constable_Tag" + "style" "8" + "pattern" "workshop/de_constable" + "use_normal" "1" + "normal" "workshop/de_constable_normal" + "color0" "255 251 246" + "color1" "98 98 98" + "color2" "123 123 123" + "color3" "215 176 153" + "pattern_scale" "1.000000" + "phongexponent" "64" + "phongalbedoboost" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "1.000000" + } + "604" + { + "name" "gs_famas_rally" + "description_string" "#PaintKit_gs_FAMAS_Rally" + "description_tag" "#PaintKit_gs_FAMAS_Rally_Tag" + "style" "9" + "pattern" "workshop/famas_rally" + "color0" "100 58 35" + "color1" "255 255 255" + "color2" "228 207 192" + "color3" "144 126 91" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "5" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "605" + { + "name" "aq_five_seven_scumbria" + "description_string" "#PaintKit_aq_Five_Seven_Scumbria" + "description_tag" "#PaintKit_aq_Five_Seven_Scumbria_Tag" + "style" "8" + "pattern" "workshop/fivesevenscumbria2" + "color0" "193 208 214" + "color1" "163 163 163" + "color2" "168 189 189" + "color3" "151 161 157" + "pattern_scale" "1.000000" + "phongexponent" "140" + "phongalbedoboost" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "606" + { + "name" "gs_g3sg1_ventilator" + "description_string" "#PaintKit_gs_G3SG1_Ventilator" + "description_tag" "#PaintKit_gs_G3SG1_Ventilator_Tag" + "style" "9" + "pattern" "workshop/g3sg1_ventilator" + "color0" "128 128 128 255" + "color1" "229 229 229" + "color2" "34 42 42" + "color3" "67 59 59" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "12" + "phongalbedoboost" "16" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "607" + { + "name" "cu_glock18_weasel" + "description_string" "#PaintKit_cu_Glock18_Weasel" + "description_tag" "#PaintKit_cu_Glock18_Weasel_Tag" + "style" "7" + "pattern" "workshop/glock18_weasel1j" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "608" + { + "name" "cu_mag7_tribal" + "description_string" "#PaintKit_cu_MAG7_Tribal" + "description_tag" "#PaintKit_cu_MAG7_Tribal_Tag" + "style" "7" + "pattern" "workshop/mag7_tribal03" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "7" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.440000" + } + "609" + { + "name" "cu_mp9_narcis" + "description_string" "#PaintKit_cu_MP9_Narcis" + "description_tag" "#PaintKit_cu_MP9_Narcis_Tag" + "style" "7" + "pattern" "workshop/mp9_narcis" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "32" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "610" + { + "name" "hy_negev_dazzle" + "description_string" "#PaintKit_hy_Negev_Dazzle" + "description_tag" "#PaintKit_hy_Negev_Dazzle_Tag" + "style" "2" + "pattern" "workshop/negev_dazzle" + "color0" "239 0 0" + "color1" "58 199 204" + "color2" "209 209 209" + "color3" "2 36 73" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongintensity" "50" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "0.650000" + } + "611" + { + "name" "cu_p90_grimm" + "description_string" "#PaintKit_cu_P90_Grimm" + "description_tag" "#PaintKit_cu_P90_Grimm_Tag" + "style" "7" + "pattern" "workshop/p90_grimm" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "48" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "612" + { + "name" "gs_scar20_powercore" + "description_string" "#PaintKit_gs_SCAR20_Powercore" + "description_tag" "#PaintKit_gs_SCAR20_Powercore_Tag" + "style" "9" + "pattern" "workshop/scar_powercore" + "color0" "211 211 211" + "color1" "208 208 208" + "color2" "159 159 159" + "color3" "168 168 168" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "5" + "phongalbedoboost" "1" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "613" + { + "name" "cu_sg556_triarch" + "description_string" "#PaintKit_cu_SG556_Triarch" + "description_tag" "#PaintKit_cu_SG556_Triarch_Tag" + "style" "7" + "pattern" "workshop/sg553_triarch" + "pattern_scale" "1.000000" + "phongexponent" "90" + "phongintensity" "125" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "614" + { + "name" "gs_tec9_supercharged" + "description_string" "#PaintKit_gs_TEC9_Supercharged" + "description_tag" "#PaintKit_gs_TEC9_Supercharged_Tag" + "style" "9" + "pattern" "workshop/tec9_supercharged" + "use_normal" "1" + "normal" "workshop/tec9_supercharged_normal" + "color0" "178 174 159" + "color1" "255 255 255" + "color2" "136 115 95" + "color3" "129 123 113" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "150" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "615" + { + "name" "cu_ump45_metritera" + "description_string" "#PaintKit_cu_UMP45_Metritera" + "description_tag" "#PaintKit_cu_UMP45_Metritera_Tag" + "style" "7" + "pattern" "workshop/ump_metritera" + "pattern_scale" "1.000000" + "phongexponent" "9" + "phongintensity" "3" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "616" + { + "name" "hy_xm1014_fractal_blue" + "description_string" "#PaintKit_hy_XM1014_Fractal_Blue" + "description_tag" "#PaintKit_hy_XM1014_Fractal_Blue_Tag" + "style" "2" + "pattern" "workshop/fractal_blue" + "color0" "26 26 26" + "color1" "83 97 98" + "color2" "52 173 199" + "color3" "26 26 26" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongintensity" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + } + "items" + { + "1351" + { + "name" "gamma_2 Key" + "item_name" "#CSGO_crate_key_gamma_2" + "item_description" "#CSGO_crate_key_gamma_2_desc" + "first_sale_date" "2016-08-08" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_gamma_2" + "tool" + { + "restriction" "crate_gamma_2" + } + } + "4281" + { + "item_name" "#CSGO_crate_gamma_2" + "item_description" "#CSGO_crate_gamma_2_desc" + "name" "crate_gamma_2" + "image_inventory" "econ/weapon_cases/crate_gamma_2" + "model_player" "models/props/crates/csgo_drop_crate_gamma2.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1351" "1" + } + "tool" + { + "restriction" "crate_gamma_2" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "172" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_gamma_2" + "tag_text" "#CSGO_set_gamma_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "revolving_loot_lists" + { + "172" "crate_gamma_2" + } + "client_loot_lists" + { + "crate_gamma_2_rare" + { + "[gs_cz75_tread]weapon_cz75a" "1" + "[aq_five_seven_scumbria]weapon_fiveseven" "1" + "[gs_g3sg1_ventilator]weapon_g3sg1" "1" + "[hy_negev_dazzle]weapon_negev" "1" + "[cu_p90_grimm]weapon_p90" "1" + "[cu_ump45_metritera]weapon_ump45" "1" + "[hy_xm1014_fractal_blue]weapon_xm1014" "1" + } + "crate_gamma_2_mythical" + { + "[aq_desert_eagle_constable]weapon_deagle" "1" + "[cu_glock18_weasel]weapon_glock" "1" + "[cu_mag7_tribal]weapon_mag7" "1" + "[gs_scar20_powercore]weapon_scar20" "1" + "[cu_sg556_triarch]weapon_sg556" "1" + } + "crate_gamma_2_legendary" + { + "[gs_aug_syd_mead]weapon_aug" "1" + "[cu_mp9_narcis]weapon_mp9" "1" + "[gs_tec9_supercharged]weapon_tec9" "1" + } + "crate_gamma_2_ancient" + { + "[cu_ak47_anarchy]weapon_ak47" "1" + "[gs_famas_rally]weapon_famas" "1" + } + "crate_gamma_2" + { + "crate_gamma_2_rare" "1" + "crate_gamma_2_mythical" "1" + "crate_gamma_2_legendary" "1" + "crate_gamma_2_ancient" "1" + "community_case_13_unusual" "1" + } + } + "item_sets" + { + "set_gamma_2" + { + "name" "#CSGO_set_gamma_2" + "set_description" "#CSGO_set_gamma_2_desc" + "is_collection" "1" + "items" + { + "[gs_cz75_tread]weapon_cz75a" "1" + "[aq_five_seven_scumbria]weapon_fiveseven" "1" + "[gs_g3sg1_ventilator]weapon_g3sg1" "1" + "[hy_negev_dazzle]weapon_negev" "1" + "[cu_p90_grimm]weapon_p90" "1" + "[cu_ump45_metritera]weapon_ump45" "1" + "[hy_xm1014_fractal_blue]weapon_xm1014" "1" + "[aq_desert_eagle_constable]weapon_deagle" "1" + "[cu_glock18_weasel]weapon_glock" "1" + "[cu_mag7_tribal]weapon_mag7" "1" + "[gs_scar20_powercore]weapon_scar20" "1" + "[cu_sg556_triarch]weapon_sg556" "1" + "[gs_aug_syd_mead]weapon_aug" "1" + "[cu_mp9_narcis]weapon_mp9" "1" + "[gs_tec9_supercharged]weapon_tec9" "1" + "[cu_ak47_anarchy]weapon_ak47" "1" + "[gs_famas_rally]weapon_famas" "1" + } + } + } + "paint_kits_rarity" + { + "cu_ak47_anarchy" "legendary" + "gs_aug_syd_mead" "legendary" + "gs_cz75_tread" "rare" + "aq_desert_eagle_constable" "rare" + "gs_famas_rally" "ancient" + "aq_five_seven_scumbria" "rare" + "gs_g3sg1_ventilator" "rare" + "cu_glock18_weasel" "rare" + "cu_mag7_tribal" "mythical" + "cu_mp9_narcis" "legendary" + "hy_negev_dazzle" "rare" + "cu_p90_grimm" "rare" + "gs_scar20_powercore" "mythical" + "cu_sg556_triarch" "mythical" + "gs_tec9_supercharged" "legendary" + "cu_ump45_metritera" "rare" + "hy_xm1014_fractal_blue" "rare" + } + "sticker_kits" + { + "1653" + { + "name" "spray_blood_boiler" + "item_name" "#StickerKit_comm02_blood_broiler" + "description_string" "#StickerKit_desc_comm02_blood_broiler" + "sticker_material" "community_mix01/blood_boiler" + "item_rarity" "legendary" + } + "1654" + { + "name" "spray_chicken" + "item_name" "#StickerKit_enfu_chicken" + "description_string" "#StickerKit_desc_enfu_chicken" + "sticker_material" "community_mix01/chicken" + "item_rarity" "rare" + } + "1655" + { + "name" "spray_drugwarveteran" + "item_name" "#StickerKit_comm02_drugwarveteran" + "description_string" "#StickerKit_desc_comm02_drugwarveteran" + "sticker_material" "community_mix01/drugwarveteran" + "item_rarity" "legendary" + } + "1656" + { + "name" "spray_flickshot" + "item_name" "#StickerKit_comm02_flickshot" + "description_string" "#StickerKit_desc_comm02_flickshot" + "sticker_material" "community_mix01/flickshot" + "item_rarity" "rare" + } + "1657" + { + "name" "spray_hamster_hawk" + "item_name" "#StickerKit_comm02_hamster_hawk" + "description_string" "#StickerKit_desc_comm02_hamster_hawk" + "sticker_material" "community_mix01/hamster_hawk" + "item_rarity" "mythical" + } + "1658" + { + "name" "spray_ivette" + "item_name" "#StickerKit_pinups_ivette" + "description_string" "#StickerKit_desc_pinups_ivette" + "sticker_material" "community_mix01/ivette" + "item_rarity" "rare" + } + "1659" + { + "name" "spray_kawaiikiller_ct" + "item_name" "#StickerKit_comm02_kawaiikiller" + "description_string" "#StickerKit_desc_comm02_kawaiikiller" + "sticker_material" "community_mix01/kawaiikiller" + "item_rarity" "mythical" + } + "1660" + { + "name" "spray_kawaiikiller_t" + "item_name" "#StickerKit_comm02_kawaiikiller_t" + "description_string" "#StickerKit_desc_comm02_kawaiikiller_t" + "sticker_material" "community_mix01/kawaiikiller_t" + "item_rarity" "mythical" + } + "1661" + { + "name" "spray_martha" + "item_name" "#StickerKit_pinups_martha" + "description_string" "#StickerKit_desc_pinups_martha" + "sticker_material" "community_mix01/martha" + "item_rarity" "mythical" + } + "1662" + { + "name" "spray_oldschool" + "item_name" "#StickerKit_OldSchool" + "description_string" "#StickerKit_desc_OldSchool" + "sticker_material" "community_mix01/oldschool" + "item_rarity" "rare" + } + "1663" + { + "name" "spray_pocket_bbq" + "item_name" "#StickerKit_comm01_pocket_bbq" + "description_string" "#StickerKit_desc_comm01_pocket_bbq" + "sticker_material" "community_mix01/pocket_bbq" + "item_rarity" "rare" + } + "1664" + { + "name" "spray_rekt" + "item_name" "#StickerKit_comm01_rekt" + "description_string" "#StickerKit_desc_comm01_rekt" + "sticker_material" "community_mix01/rekt" + "item_rarity" "legendary" + } + "1665" + { + "name" "spray_shave_master" + "item_name" "#StickerKit_comm01_shavemaster" + "description_string" "#StickerKit_desc_comm01_shavemaster" + "sticker_material" "community_mix01/shave_master" + "item_rarity" "rare" + } + "1666" + { + "name" "spray_shootingstar" + "item_name" "#StickerKit_comm02_shootingstar" + "description_string" "#StickerKit_desc_comm02_shootingstar" + "sticker_material" "community_mix01/shootingstar" + "item_rarity" "rare" + } + "1667" + { + "name" "spray_skull" + "item_name" "#StickerKit_comm01_skull" + "description_string" "#StickerKit_desc_comm01_skull" + "sticker_material" "community_mix01/skull" + "item_rarity" "mythical" + } + "1668" + { + "name" "spray_tamara" + "item_name" "#StickerKit_pinups_tamara" + "description_string" "#StickerKit_desc__pinups_tamara" + "sticker_material" "community_mix01/tamara" + "item_rarity" "mythical" + } + "1669" + { + "name" "spray_unicorn" + "item_name" "#StickerKit_enfu_unicorn" + "description_string" "#StickerKit_desc_enfu_unicorn" + "sticker_material" "community_mix01/unicorn" + "item_rarity" "rare" + } + "1670" + { + "name" "spray_winged_defuser" + "item_name" "#StickerKit_comm01_winged_defuser" + "description_string" "#StickerKit_desc_comm01_winged_defuser" + "sticker_material" "community_mix01/winged_defuser" + "item_rarity" "rare" + } + } + "items" + { + "4234" + { + "item_name" "#CSGO_crate_sprays_community_1" + "name" "crate_sprays_community_1" + "item_description" "#CSGO_crate_sprays_community_1_desc" + "image_inventory" "econ/weapon_cases/crate_spray_pack_community_1" + "first_sale_date" "2016/06/20" + "prefab" "graffiti_box" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "142" + } + } + "tags" + { + "SprayCapsule" + { + "tag_value" "crate_sprays_community_1_lootlist" + "tag_text" "#CSGO_crate_sprays_community_1" + "tag_group" "SprayCapsule" + "tag_group_text" "#SFUI_InvTooltip_SprayCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "142" "crate_sprays_community_1_lootlist" + } + "client_loot_lists" + { + "crate_sprays_community_1_rare" + { + "[spray_chicken]spray" "1" + "[spray_flickshot]spray" "1" + "[spray_shootingstar]spray" "1" + "[spray_oldschool]spray" "1" + "[spray_pocket_bbq]spray" "1" + "[spray_shave_master]spray" "1" + "[spray_ivette]spray" "1" + "[spray_unicorn]spray" "1" + "[spray_winged_defuser]spray" "1" + } + "crate_sprays_community_1_mythical" + { + "[spray_hamster_hawk]spray" "1" + "[spray_kawaiikiller_ct]spray" "1" + "[spray_kawaiikiller_t]spray" "1" + "[spray_martha]spray" "1" + "[spray_tamara]spray" "1" + "[spray_skull]spray" "1" + } + "crate_sprays_community_1_legendary" + { + "[spray_drugwarveteran]spray" "1" + "[spray_blood_boiler]spray" "1" + "[spray_rekt]spray" "1" + } + "crate_sprays_community_1_lootlist" + { + "crate_sprays_community_1_rare" "1" + "crate_sprays_community_1_mythical" "1" + "crate_sprays_community_1_legendary" "1" + } + } + "sticker_kits" + { + "1671" + { + "name" "spray_vcap1_ace_01" + "item_name" "#SprayKit_vcap1_ace_01" + "description_string" "#SprayKit_desc_vcap1_ace_01" + "sticker_material" "valve_sprays/ace_01" + "item_rarity" "rare" + } + "1672" + { + "name" "spray_vcap1_banana" + "item_name" "#SprayKit_vcap1_banana" + "description_string" "#SprayKit_desc_vcap1_banana" + "sticker_material" "valve_sprays/banana" + "item_rarity" "rare" + } + "1673" + { + "name" "spray_vcap1_cerberus" + "item_name" "#SprayKit_vcap1_cerberus" + "description_string" "#SprayKit_desc_vcap1_cerberus" + "sticker_material" "valve_sprays/cerberus" + "item_rarity" "mythical" + } + "1674" + { + "name" "spray_vcap1_clutch_01" + "item_name" "#SprayKit_vcap1_clutch_01" + "description_string" "#SprayKit_desc_vcap1_clutch_01" + "sticker_material" "valve_sprays/clutch_01" + "item_rarity" "legendary" + } + "1675" + { + "name" "spray_vcap1_crown" + "item_name" "#SprayKit_vcap1_crown" + "description_string" "#SprayKit_desc_vcap1_crown" + "sticker_material" "valve_sprays/crown" + "item_rarity" "mythical" + } + "1676" + { + "name" "spray_vcap1_ct" + "item_name" "#SprayKit_vcap1_ct" + "description_string" "#SprayKit_desc_vcap1_ct" + "sticker_material" "valve_sprays/ct" + "item_rarity" "rare" + } + "1677" + { + "name" "spray_vcap1_ez_02" + "item_name" "#SprayKit_vcap1_ez_02" + "description_string" "#SprayKit_desc_vcap1_ez_02" + "sticker_material" "valve_sprays/ez_02" + "item_rarity" "mythical" + } + "1678" + { + "name" "spray_vcap1_fireserpent" + "item_name" "#SprayKit_vcap1_fireserpent" + "description_string" "#SprayKit_desc_vcap1_fireserpent" + "sticker_material" "valve_sprays/fireserpent" + "item_rarity" "legendary" + } + "1679" + { + "name" "spray_vcap1_howling_dawn" + "item_name" "#SprayKit_vcap1_howling_dawn" + "description_string" "#SprayKit_desc_vcap1_howling_dawn" + "sticker_material" "valve_sprays/howling_dawn" + "item_rarity" "legendary" + } + "1680" + { + "name" "spray_vcap1_kisses" + "item_name" "#SprayKit_vcap1_kisses" + "description_string" "#SprayKit_desc_vcap1_kisses" + "sticker_material" "valve_sprays/kisses" + "item_rarity" "mythical" + } + "1681" + { + "name" "spray_vcap1_lemon_squeeze" + "item_name" "#SprayKit_vcap1_lemon_squeeze" + "description_string" "#SprayKit_desc_vcap1_lemon_squeeze" + "sticker_material" "valve_sprays/lemon_squeeze" + "item_rarity" "rare" + } + "1682" + { + "name" "spray_vcap1_nice_shot_color" + "item_name" "#SprayKit_vcap1_nice_shot_color" + "description_string" "#SprayKit_desc_vcap1_nice_shot_color" + "sticker_material" "valve_sprays/nice_shot_color" + "item_rarity" "rare" + } + "1683" + { + "name" "spray_vcap1_phoenix" + "item_name" "#SprayKit_vcap1_phoenix" + "description_string" "#SprayKit_desc_vcap1_phoenix" + "sticker_material" "valve_sprays/phoenix" + "item_rarity" "rare" + } + "1684" + { + "name" "spray_vcap1_realmvp_02" + "item_name" "#SprayKit_vcap1_realmvp_02" + "description_string" "#SprayKit_desc_vcap1_realmvp_02" + "sticker_material" "valve_sprays/realmvp_02" + "item_rarity" "mythical" + } + "1685" + { + "name" "spray_vcap1_ripip" + "item_name" "#SprayKit_vcap1_ripip" + "description_string" "#SprayKit_desc_vcap1_ripip" + "sticker_material" "valve_sprays/ripip" + "item_rarity" "mythical" + } + "1686" + { + "name" "spray_vcap1_target_02" + "item_name" "#SprayKit_vcap1_target_02" + "description_string" "#SprayKit_desc_vcap1_target_02" + "sticker_material" "valve_sprays/target_02" + "item_rarity" "rare" + } + "1687" + { + "name" "spray_vcap1_welcome_clutch" + "item_name" "#SprayKit_vcap1_welcome_clutch" + "description_string" "#SprayKit_desc_vcap1_welcome_clutch" + "sticker_material" "valve_sprays/welcome_clutch" + "item_rarity" "rare" + } + "1688" + { + "name" "spray_vcap1_wings" + "item_name" "#SprayKit_vcap1_wings" + "description_string" "#SprayKit_desc_vcap1_wings" + "sticker_material" "valve_sprays/wings" + "item_rarity" "rare" + } + } + "items" + { + "4285" + { + "item_name" "#CSGO_crate_sprays_vcap1" + "name" "crate_sprays_vcap1" + "item_description" "#CSGO_crate_sprays_vcap1_desc" + "image_inventory" "econ/weapon_cases/crate_spray_pack_valve_1" + "first_sale_date" "2016/08/24" + "prefab" "graffiti_box" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "176" + } + } + "tags" + { + "SprayCapsule" + { + "tag_value" "crate_sprays_vcap1_lootlist" + "tag_text" "#CSGO_crate_sprays_vcap1" + "tag_group" "SprayCapsule" + "tag_group_text" "#SFUI_InvTooltip_SprayCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "176" "crate_sprays_vcap1_lootlist" + } + "client_loot_lists" + { + "crate_sprays_vcap1_lootlist_rare" + { + "[spray_vcap1_ct]spray" "1" + "[spray_vcap1_banana]spray" "1" + "[spray_vcap1_ace_01]spray" "1" + "[spray_vcap1_target_02]spray" "1" + "[spray_vcap1_nice_shot_color]spray" "1" + "[spray_vcap1_wings]spray" "1" + "[spray_vcap1_phoenix]spray" "1" + "[spray_vcap1_welcome_clutch]spray" "1" + "[spray_vcap1_lemon_squeeze]spray" "1" + } + "crate_sprays_vcap1_lootlist_mythical" + { + "[spray_vcap1_ez_02]spray" "1" + "[spray_vcap1_cerberus]spray" "1" + "[spray_vcap1_kisses]spray" "1" + "[spray_vcap1_crown]spray" "1" + "[spray_vcap1_realmvp_02]spray" "1" + "[spray_vcap1_ripip]spray" "1" + } + "crate_sprays_vcap1_lootlist_legendary" + { + "[spray_vcap1_howling_dawn]spray" "1" + "[spray_vcap1_fireserpent]spray" "1" + "[spray_vcap1_clutch_01]spray" "1" + } + "crate_sprays_vcap1_lootlist" + { + "crate_sprays_vcap1_lootlist_rare" "1" + "crate_sprays_vcap1_lootlist_mythical" "1" + "crate_sprays_vcap1_lootlist_legendary" "1" + } + } + "sticker_kits" + { + "1625" + { + "name" "sugarface_boris" + "item_name" "#StickerKit_sugarface_boris" + "description_string" "#StickerKit_desc_sugarface_boris" + "sticker_material" "sugarface_capsule/boris" + "item_rarity" "rare" + } + "1626" + { + "name" "sugarface_max" + "item_name" "#StickerKit_sugarface_max" + "description_string" "#StickerKit_desc_sugarface_max" + "sticker_material" "sugarface_capsule/max" + "item_rarity" "rare" + } + "1627" + { + "name" "sugarface_stan" + "item_name" "#StickerKit_sugarface_stan" + "description_string" "#StickerKit_desc_sugarface_stan" + "sticker_material" "sugarface_capsule/stan" + "item_rarity" "rare" + } + "1628" + { + "name" "sugarface_jack" + "item_name" "#StickerKit_sugarface_jack" + "description_string" "#StickerKit_desc_sugarface_jack" + "sticker_material" "sugarface_capsule/jack" + "item_rarity" "rare" + } + "1629" + { + "name" "sugarface_perry" + "item_name" "#StickerKit_sugarface_perry" + "description_string" "#StickerKit_desc_sugarface_perry" + "sticker_material" "sugarface_capsule/perry" + "item_rarity" "rare" + } + "1630" + { + "name" "sugarface_viggo" + "item_name" "#StickerKit_sugarface_viggo" + "description_string" "#StickerKit_desc_sugarface_viggo" + "sticker_material" "sugarface_capsule/viggo" + "item_rarity" "rare" + } + "1631" + { + "name" "sugarface_joan" + "item_name" "#StickerKit_sugarface_joan" + "description_string" "#StickerKit_desc_sugarface_joan" + "sticker_material" "sugarface_capsule/joan" + "item_rarity" "rare" + } + "1632" + { + "name" "sugarface_boris_holo" + "item_name" "#StickerKit_sugarface_boris_holo" + "description_string" "#StickerKit_desc_sugarface_boris_holo" + "sticker_material" "sugarface_capsule/boris_holo" + "item_rarity" "mythical" + } + "1633" + { + "name" "sugarface_max_holo" + "item_name" "#StickerKit_sugarface_max_holo" + "description_string" "#StickerKit_desc_sugarface_max_holo" + "sticker_material" "sugarface_capsule/max_holo" + "item_rarity" "mythical" + } + "1634" + { + "name" "sugarface_stan_holo" + "item_name" "#StickerKit_sugarface_stan_holo" + "description_string" "#StickerKit_desc_sugarface_stan_holo" + "sticker_material" "sugarface_capsule/stan_holo" + "item_rarity" "mythical" + } + "1635" + { + "name" "sugarface_jack_holo" + "item_name" "#StickerKit_sugarface_jack_holo" + "description_string" "#StickerKit_desc_sugarface_jack_holo" + "sticker_material" "sugarface_capsule/jack_holo" + "item_rarity" "mythical" + } + "1636" + { + "name" "sugarface_perry_holo" + "item_name" "#StickerKit_sugarface_perry_holo" + "description_string" "#StickerKit_desc_sugarface_perry_holo" + "sticker_material" "sugarface_capsule/perry_holo" + "item_rarity" "mythical" + } + "1637" + { + "name" "sugarface_viggo_holo" + "item_name" "#StickerKit_sugarface_viggo_holo" + "description_string" "#StickerKit_desc_sugarface_viggo_holo" + "sticker_material" "sugarface_capsule/viggo_holo" + "item_rarity" "mythical" + } + "1638" + { + "name" "sugarface_joan_holo" + "item_name" "#StickerKit_sugarface_joan_holo" + "description_string" "#StickerKit_desc_sugarface_joan_holo" + "sticker_material" "sugarface_capsule/joan_holo" + "item_rarity" "mythical" + } + } + "items" + { + "4282" + { + "item_name" "#CSGO_crate_sticker_pack_sugarface_capsule" + "name" "crate_sticker_pack_sugarface_capsule" + "item_description" "#CSGO_crate_sticker_pack_sugarface_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_sugarface_capsule" + "first_sale_date" "2016/08/16" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "173" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_sugarface_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_sugarface_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "173" "crate_sticker_pack_sugarface_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_sugarface_capsule_rare" + { + "[sugarface_boris]sticker" "1" + "[sugarface_max]sticker" "1" + "[sugarface_stan]sticker" "1" + "[sugarface_jack]sticker" "1" + "[sugarface_perry]sticker" "1" + "[sugarface_viggo]sticker" "1" + "[sugarface_joan]sticker" "1" + } + "crate_sticker_pack_sugarface_capsule_mythical" + { + "[sugarface_boris_holo]sticker" "1" + "[sugarface_max_holo]sticker" "1" + "[sugarface_stan_holo]sticker" "1" + "[sugarface_jack_holo]sticker" "1" + "[sugarface_perry_holo]sticker" "1" + "[sugarface_viggo_holo]sticker" "1" + "[sugarface_joan_holo]sticker" "1" + } + "crate_sticker_pack_sugarface_capsule_lootlist" + { + "crate_sticker_pack_sugarface_capsule_rare" "1" + "crate_sticker_pack_sugarface_capsule_mythical" "1" + } + } + "sticker_kits" + { + "1639" + { + "name" "bestiary_basilisk" + "item_name" "#StickerKit_bestiary_basilisk" + "description_string" "#StickerKit_desc_bestiary_basilisk" + "sticker_material" "bestiary_capsule/basilisk" + "item_rarity" "rare" + } + "1640" + { + "name" "bestiary_dragon" + "item_name" "#StickerKit_bestiary_dragon" + "description_string" "#StickerKit_desc_bestiary_dragon" + "sticker_material" "bestiary_capsule/dragon" + "item_rarity" "rare" + } + "1641" + { + "name" "bestiary_hippocamp" + "item_name" "#StickerKit_bestiary_hippocamp" + "description_string" "#StickerKit_desc_bestiary_hippocamp" + "sticker_material" "bestiary_capsule/hippocamp" + "item_rarity" "rare" + } + "1642" + { + "name" "bestiary_manticore" + "item_name" "#StickerKit_bestiary_manticore" + "description_string" "#StickerKit_desc_bestiary_manticore" + "sticker_material" "bestiary_capsule/manticore" + "item_rarity" "rare" + } + "1643" + { + "name" "bestiary_pegasus" + "item_name" "#StickerKit_bestiary_pegasus" + "description_string" "#StickerKit_desc_bestiary_pegasus" + "sticker_material" "bestiary_capsule/pegasus" + "item_rarity" "rare" + } + "1644" + { + "name" "bestiary_phoenix" + "item_name" "#StickerKit_bestiary_phoenix" + "description_string" "#StickerKit_desc_bestiary_phoenix" + "sticker_material" "bestiary_capsule/phoenix" + "item_rarity" "rare" + } + "1645" + { + "name" "bestiary_sphinx" + "item_name" "#StickerKit_bestiary_sphinx" + "description_string" "#StickerKit_desc_bestiary_sphinx" + "sticker_material" "bestiary_capsule/sphinx" + "item_rarity" "rare" + } + "1646" + { + "name" "bestiary_hippocamp_holo" + "item_name" "#StickerKit_bestiary_hippocamp_holo" + "description_string" "#StickerKit_desc_bestiary_hippocamp_holo" + "sticker_material" "bestiary_capsule/hippocamp_holo" + "item_rarity" "mythical" + } + "1647" + { + "name" "bestiary_manticore_holo" + "item_name" "#StickerKit_bestiary_manticore_holo" + "description_string" "#StickerKit_desc_bestiary_manticore_holo" + "sticker_material" "bestiary_capsule/manticore_holo" + "item_rarity" "mythical" + } + "1648" + { + "name" "bestiary_pegasus_holo" + "item_name" "#StickerKit_bestiary_pegasus_holo" + "description_string" "#StickerKit_desc_bestiary_pegasus_holo" + "sticker_material" "bestiary_capsule/pegasus_holo" + "item_rarity" "mythical" + } + "1649" + { + "name" "bestiary_sphinx_holo" + "item_name" "#StickerKit_bestiary_sphinx_holo" + "description_string" "#StickerKit_desc_bestiary_sphinx_holo" + "sticker_material" "bestiary_capsule/sphinx_holo" + "item_rarity" "mythical" + } + "1650" + { + "name" "bestiary_basilisk_foil" + "item_name" "#StickerKit_bestiary_basilisk_foil" + "description_string" "#StickerKit_desc_bestiary_basilisk_foil" + "sticker_material" "bestiary_capsule/basilisk_foil" + "item_rarity" "legendary" + } + "1651" + { + "name" "bestiary_dragon_foil" + "item_name" "#StickerKit_bestiary_dragon_foil" + "description_string" "#StickerKit_desc_bestiary_dragon_foil" + "sticker_material" "bestiary_capsule/dragon_foil" + "item_rarity" "legendary" + } + "1652" + { + "name" "bestiary_phoenix_foil" + "item_name" "#StickerKit_bestiary_phoenix_foil" + "description_string" "#StickerKit_desc_bestiary_phoenix_foil" + "sticker_material" "bestiary_capsule/phoenix_foil" + "item_rarity" "legendary" + } + } + "items" + { + "4283" + { + "item_name" "#CSGO_crate_sticker_pack_bestiary_capsule" + "name" "crate_sticker_pack_bestiary_capsule" + "item_description" "#CSGO_crate_sticker_pack_bestiary_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_bestiary_capsule" + "first_sale_date" "2016/08/16" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "174" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_bestiary_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_bestiary_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "174" "crate_sticker_pack_bestiary_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_bestiary_capsule_rare" + { + "[bestiary_basilisk]sticker" "1" + "[bestiary_dragon]sticker" "1" + "[bestiary_hippocamp]sticker" "1" + "[bestiary_manticore]sticker" "1" + "[bestiary_pegasus]sticker" "1" + "[bestiary_phoenix]sticker" "1" + "[bestiary_sphinx]sticker" "1" + } + "crate_sticker_pack_bestiary_capsule_mythical" + { + "[bestiary_hippocamp_holo]sticker" "1" + "[bestiary_manticore_holo]sticker" "1" + "[bestiary_pegasus_holo]sticker" "1" + "[bestiary_sphinx_holo]sticker" "1" + } + "crate_sticker_pack_bestiary_capsule_legendary" + { + "[bestiary_basilisk_foil]sticker" "1" + "[bestiary_dragon_foil]sticker" "1" + "[bestiary_phoenix_foil]sticker" "1" + } + "crate_sticker_pack_bestiary_capsule_lootlist" + { + "crate_sticker_pack_bestiary_capsule_rare" "1" + "crate_sticker_pack_bestiary_capsule_mythical" "1" + "crate_sticker_pack_bestiary_capsule_legendary" "1" + } + } + "music_definitions" + { + "32" + { + "name" "beartooth_02" + "loc_name" "#musickit_beartooth_02" + "loc_description" "#musickit_beartooth_02_desc" + "image_inventory" "econ/music_kits/beartooth_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_beartooth_02.mdl" + } + "33" + { + "name" "blitzkids_01" + "loc_name" "#musickit_blitzkids_01" + "loc_description" "#musickit_blitzkids_01_desc" + "image_inventory" "econ/music_kits/blitzkids_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_blitzkids_01.mdl" + } + "34" + { + "name" "hundredth_01" + "loc_name" "#musickit_hundredth_01" + "loc_description" "#musickit_hundredth_01_desc" + "image_inventory" "econ/music_kits/hundredth_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_hundredth_01.mdl" + } + "35" + { + "name" "neckdeep_01" + "loc_name" "#musickit_neckdeep_01" + "loc_description" "#musickit_neckdeep_01_desc" + "image_inventory" "econ/music_kits/neckdeep_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_neckdeep_01.mdl" + } + "36" + { + "name" "roam_01" + "loc_name" "#musickit_roam_01" + "loc_description" "#musickit_roam_01_desc" + "image_inventory" "econ/music_kits/roam_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_roam_01.mdl" + } + "37" + { + "name" "twinatlantic_01" + "loc_name" "#musickit_twinatlantic_01" + "loc_description" "#musickit_twinatlantic_01_desc" + "image_inventory" "econ/music_kits/twinatlantic_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_twinatlantic_01.mdl" + } + "38" + { + "name" "skog_03" + "loc_name" "#musickit_skog_03" + "loc_description" "#musickit_skog_03_desc" + "image_inventory" "econ/music_kits/skog_03" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_skog_03.mdl" + } + } + "items" + { + "4287" + { + "item_name" "#CSGO_crate_musickit_radicals_stattrak_capsule" + "name" "crate_musickit_radicals_stattrak_capsule" + "item_description" "#CSGO_crate_musickit_radicals_stattrak_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_musickit_radicals_capsule" + "first_sale_date" "2016/08/16" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "178" + } + } + } + } + "revolving_loot_lists" + { + "178" "crate_musickit_radicals_stattrak_capsule_lootlist" + } + "client_loot_lists" + { + "crate_musickit_radicals_stattrak_capsule_lootlist" + { + "will_produce_stattrak" "1" + "[beartooth_02]musickit" "1" + "[blitzkids_01]musickit" "1" + "[hundredth_01]musickit" "1" + "[neckdeep_01]musickit" "1" + "[roam_01]musickit" "1" + "[twinatlantic_01]musickit" "1" + "[skog_03]musickit" "1" + } + } + "music_definitions" + { + "43" + { + "name" "austinwintory_02" + "loc_name" "#musickit_austinwintory_02" + "loc_description" "#musickit_austinwintory_02_desc" + "image_inventory" "econ/music_kits/austinwintory_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_austinwintory_02.mdl" + } + "44" + { + "name" "dren_02" + "loc_name" "#musickit_dren_02" + "loc_description" "#musickit_dren_02_desc" + "image_inventory" "econ/music_kits/dren_02" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_dren_02.mdl" + } + "45" + { + "name" "danielsadowski_04" + "loc_name" "#musickit_danielsadowski_04" + "loc_description" "#musickit_danielsadowski_04_desc" + "image_inventory" "econ/music_kits/danielsadowski_04" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_danielsadowski_04.mdl" + } + "46" + { + "name" "treeadams_benbromfield_01" + "loc_name" "#musickit_treeadams_benbromfield_01" + "loc_description" "#musickit_treeadams_benbromfield_01_desc" + "image_inventory" "econ/music_kits/treeadams_benbromfield_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_treeadams_benbromfield_01.mdl" + } + "47" + { + "name" "timhuling_01" + "loc_name" "#musickit_timhuling_01" + "loc_description" "#musickit_timhuling_01_desc" + "image_inventory" "econ/music_kits/timhuling_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_timhuling_01.mdl" + } + "48" + { + "name" "sammarshall_01" + "loc_name" "#musickit_sammarshall_01" + "loc_description" "#musickit_sammarshall_01_desc" + "image_inventory" "econ/music_kits/sammarshall_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_sammarshall_01.mdl" + } + "49" + { + "name" "mattlevine_01" + "loc_name" "#musickit_mattlevine_01" + "loc_description" "#musickit_mattlevine_01_desc" + "image_inventory" "econ/music_kits/mattlevine_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_mattlevine_01.mdl" + } + } + "items" + { + "4696" + { + "item_name" "#CSGO_crate_musickit_masterminds_capsule" + "name" "crate_musickit_masterminds_capsule" + "item_description" "#CSGO_crate_musickit_masterminds_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_musickit_masterminds_capsule" + "first_sale_date" "2020/04/22" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "304" + } + } + } + "4697" + { + "item_name" "#CSGO_crate_musickit_masterminds_stattrak_capsule" + "name" "crate_musickit_masterminds_stattrak_capsule" + "item_description" "#CSGO_crate_musickit_masterminds_stattrak_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_musickit_masterminds_stattrak_capsule" + "first_sale_date" "2020/04/22" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "305" + } + } + } + } + "revolving_loot_lists" + { + "304" "crate_musickit_masterminds_capsule_lootlist" + "305" "crate_musickit_masterminds_stattrak_capsule_lootlist" + } + "client_loot_lists" + { + "crate_musickit_masterminds_capsule_lootlist" + { + "[austinwintory_02]musickit" "1" + "[dren_02]musickit" "1" + "[danielsadowski_04]musickit" "1" + "[treeadams_benbromfield_01]musickit" "1" + "[timhuling_01]musickit" "1" + "[sammarshall_01]musickit" "1" + "[mattlevine_01]musickit" "1" + } + "crate_musickit_masterminds_stattrak_capsule_lootlist" + { + "will_produce_stattrak" "1" + "crate_musickit_masterminds_capsule_lootlist" "1" + } + } + "music_definitions" + { + "54" + { + "name" "austinwintory_03" + "loc_name" "#musickit_austinwintory_03" + "loc_description" "#musickit_austinwintory_03_desc" + "image_inventory" "econ/music_kits/austinwintory_03" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_austinwintory_03.mdl" + } + "55" + { + "name" "chipzel_01" + "loc_name" "#musickit_chipzel_01" + "loc_description" "#musickit_chipzel_01_desc" + "image_inventory" "econ/music_kits/chipzel_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_chipzel_01.mdl" + } + "56" + { + "name" "freakydna_01" + "loc_name" "#musickit_freakydna_01" + "loc_description" "#musickit_freakydna_01_desc" + "image_inventory" "econ/music_kits/freakydna_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_freakydna_01.mdl" + } + "57" + { + "name" "jesseharlin_01" + "loc_name" "#musickit_jesseharlin_01" + "loc_description" "#musickit_jesseharlin_01_desc" + "image_inventory" "econ/music_kits/jesseharlin_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_jesseharlin_01.mdl" + } + "58" + { + "name" "laurashigihara_01" + "loc_name" "#musickit_laurashigihara_01" + "loc_description" "#musickit_laurashigihara_01_desc" + "image_inventory" "econ/music_kits/laurashigihara_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_laurashigihara_01.mdl" + } + "59" + { + "name" "sarahschachner_01" + "loc_name" "#musickit_sarahschachner_01" + "loc_description" "#musickit_sarahschachner_01_desc" + "image_inventory" "econ/music_kits/sarahschachner_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_sarahschachner_01.mdl" + } + } + "items" + { + "4754" + { + "item_name" "#CSGO_crate_musickit_tacticians_capsule" + "name" "crate_musickit_tacticians_capsule" + "item_description" "#CSGO_crate_musickit_tacticians_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_musickit_tacticians_capsule" + "first_sale_date" "2021/07/20" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "316" + } + } + } + "4755" + { + "item_name" "#CSGO_crate_musickit_tacticians_stattrak_capsule" + "name" "crate_musickit_tacticians_stattrak_capsule" + "item_description" "#CSGO_crate_musickit_tacticians_stattrak_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_musickit_tacticians_stattrak_capsule" + "first_sale_date" "2021/07/20" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "317" + } + } + } + } + "revolving_loot_lists" + { + "316" "crate_musickit_tacticians_capsule_lootlist" + "317" "crate_musickit_tacticians_stattrak_capsule_lootlist" + } + "client_loot_lists" + { + "crate_musickit_tacticians_capsule_lootlist" + { + "[austinwintory_03]musickit" "1" + "[chipzel_01]musickit" "1" + "[freakydna_01]musickit" "1" + "[jesseharlin_01]musickit" "1" + "[laurashigihara_01]musickit" "1" + "[sarahschachner_01]musickit" "1" + } + "crate_musickit_tacticians_stattrak_capsule_lootlist" + { + "will_produce_stattrak" "1" + "crate_musickit_tacticians_capsule_lootlist" "1" + } + } + "music_definitions" + { + "62" + { + "name" "3kliksphilip_01" + "loc_name" "#musickit_3kliksphilip_01" + "loc_description" "#musickit_3kliksphilip_01_desc" + "image_inventory" "econ/music_kits/3kliksphilip_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_3kliksphilip_01.mdl" + } + "63" + { + "name" "hlb_01" + "loc_name" "#musickit_hlb_01" + "loc_description" "#musickit_hlb_01_desc" + "image_inventory" "econ/music_kits/hlb_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_hlb_01.mdl" + } + "64" + { + "name" "juelz_01" + "loc_name" "#musickit_juelz_01" + "loc_description" "#musickit_juelz_01_desc" + "image_inventory" "econ/music_kits/juelz_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_juelz_01.mdl" + } + "65" + { + "name" "knock2_01" + "loc_name" "#musickit_knock2_01" + "loc_description" "#musickit_knock2_01_desc" + "image_inventory" "econ/music_kits/knock2_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_knock2_01.mdl" + } + "66" + { + "name" "meechydarko_01" + "loc_name" "#musickit_meechydarko_01" + "loc_description" "#musickit_meechydarko_01_desc" + "image_inventory" "econ/music_kits/meechydarko_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_meechydarko_01.mdl" + } + "67" + { + "name" "sullivanking_01" + "loc_name" "#musickit_sullivanking_01" + "loc_description" "#musickit_sullivanking_01_desc" + "image_inventory" "econ/music_kits/sullivanking_01" + "pedestal_display_model" "models/inventory_items/music_kits/music_kit_sullivanking_01.mdl" + } + } + "items" + { + "4848" + { + "item_name" "#CSGO_crate_musickit_initiators_capsule" + "name" "crate_musickit_initiators_capsule" + "item_description" "#CSGO_crate_musickit_initiators_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_musickit_initiators_capsule" + "first_sale_date" "2022/08/15" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "357" + } + } + } + "4849" + { + "item_name" "#CSGO_crate_musickit_initiators_stattrak_capsule" + "name" "crate_musickit_initiators_stattrak_capsule" + "item_description" "#CSGO_crate_musickit_initiators_stattrak_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_musickit_initiators_stattrak_capsule" + "first_sale_date" "2022/08/15" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "358" + } + } + } + } + "revolving_loot_lists" + { + "357" "crate_musickit_initiators_capsule_lootlist" + "358" "crate_musickit_initiators_stattrak_capsule_lootlist" + } + "client_loot_lists" + { + "crate_musickit_initiators_capsule_lootlist" + { + "[3kliksphilip_01]musickit" "1" + "[hlb_01]musickit" "1" + "[juelz_01]musickit" "1" + "[knock2_01]musickit" "1" + "[meechydarko_01]musickit" "1" + "[sullivanking_01]musickit" "1" + } + "crate_musickit_initiators_stattrak_capsule_lootlist" + { + "will_produce_stattrak" "1" + "crate_musickit_initiators_capsule_lootlist" "1" + } + } + "paint_kits" + { + "622" + { + "name" "am_czv2_mf" + "description_string" "#PaintKit_am_czv2_mf" + "description_tag" "#PaintKit_am_czv2_mf_Tag" + "style" "5" + "pattern" "workshop/cz_mainframe" + "color0" "3 3 3" + "color1" "15 152 76" + "color2" "19 102 105" + "color3" "36 36 36" + "pattern_scale" "1.500000" + "phongexponent" "210" + "phongalbedoboost" "17" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "623" + { + "name" "aq_glock_dark-fall" + "description_string" "#PaintKit_aq_glock_dark-fall" + "description_tag" "#PaintKit_aq_glock_dark-fall_Tag" + "style" "8" + "pattern" "workshop/glock_dark_fall" + "color0" "134 86 79" + "color1" "148 147 145" + "color2" "84 73 71" + "color3" "31 28 27" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongalbedoboost" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "624" + { + "name" "cu_ssg08_dragonfire_scope" + "description_string" "#PaintKit_cu_ssg08_dragonfire_scope" + "description_tag" "#PaintKit_cu_ssg08_dragonfire_scope_Tag" + "style" "7" + "pattern" "workshop/ssg08_dragonfire" + "pattern_scale" "1.000000" + "phongexponent" "250" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "625" + { + "name" "gs_dual_berettas_golden_venice" + "description_string" "#PaintKit_gs_dual_berettas_golden_venice" + "description_tag" "#PaintKit_gs_dual_berettas_golden_venice_Tag" + "style" "9" + "pattern" "workshop/dual_berettas_golden_venice" + "use_normal" "1" + "normal" "workshop/dual_berettas_golden_venice_normal" + "color0" "107 98 79" + "color1" "219 203 164" + "color2" "140 126 97" + "color3" "147 138 100" + "pattern_scale" "1.000000" + "phongexponent" "250" + "phongintensity" "150" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "626" + { + "name" "gs_famas_mecha" + "description_string" "#PaintKit_gs_famas_mecha" + "description_tag" "#PaintKit_gs_famas_mecha_Tag" + "style" "9" + "pattern" "workshop/famas_mecha" + "color0" "54 54 54" + "color1" "194 194 194" + "color2" "104 95 75" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "75" + "phongintensity" "35" + "phongalbedoboost" "2" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "627" + { + "name" "gs_final_pooldeadv2" + "description_string" "#PaintKit_gs_final_pooldeadv2" + "description_tag" "#PaintKit_gs_final_pooldeadv2_Tag" + "style" "9" + "pattern" "workshop/mp7_pooldead" + "color0" "90 40 0" + "color1" "211 211 211" + "color2" "68 68 68" + "color3" "108 44 1" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "255" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "628" + { + "name" "gs_g3sg1_viper_yellow" + "description_string" "#PaintKit_gs_g3sg1_viper_yellow" + "description_tag" "#PaintKit_gs_g3sg1_viper_yellow_Tag" + "style" "9" + "pattern" "workshop/g3sg1_viper_yellow" + "color0" "100 100 100" + "color1" "216 216 216" + "color2" "42 54 67" + "color3" "16 24 53" + "pattern_scale" "1.000000" + "phongexponent" "125" + "phongintensity" "255" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "629" + { + "name" "cu_galil_ar-camo" + "description_string" "#PaintKit_cu_galil_ar-camo" + "description_tag" "#PaintKit_cu_galil_ar-camo_Tag" + "style" "7" + "pattern" "workshop/galil_ar_camo" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "630" + { + "name" "aa_hide-mp9" + "description_string" "#PaintKit_aa_hide-mp9" + "description_tag" "#PaintKit_aa_hide-mp9_Tag" + "style" "6" + "pattern" "workshop/mp9_bothynus" + "color0" "51 51 51" + "color1" "30 30 30" + "color2" "146 122 90" + "color3" "55 58 53" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongalbedoboost" "8" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "631" + { + "name" "cu_m4a1_flashback" + "description_string" "#PaintKit_cu_m4a1_flashback" + "description_tag" "#PaintKit_cu_m4a1_flashback_Tag" + "style" "7" + "pattern" "workshop/m4a1_flashback" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "632" + { + "name" "gs_m4a4_sector" + "description_string" "#PaintKit_gs_m4a4_sector" + "description_tag" "#PaintKit_gs_m4a4_sector_Tag" + "style" "9" + "pattern" "workshop/m4a4_sector" + "use_normal" "1" + "normal" "workshop/m4a4_sector_normal" + "color0" "128 128 128 255" + "color1" "215 215 215" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "170" + "phongintensity" "15" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "633" + { + "name" "am_mag7_malform" + "description_string" "#PaintKit_am_mag7_malform" + "description_tag" "#PaintKit_am_mag7_malform_Tag" + "style" "5" + "pattern" "workshop/mag7_malform" + "color0" "35 35 35" + "color1" "0 111 121" + "color2" "69 68 55" + "color3" "35 35 35" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "634" + { + "name" "am_nova_sand" + "description_string" "#PaintKit_am_nova_sand" + "description_tag" "#PaintKit_am_nova_sand_Tag" + "style" "5" + "pattern" "workshop/nova_quilted_sand" + "color0" "0 0 0" + "color1" "94 76 51" + "color2" "27 27 27" + "color3" "17 17 17" + "pattern_scale" "3.500000" + "phongexponent" "5" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" + } + "635" + { + "name" "gs_p2000-sport" + "description_string" "#PaintKit_gs_p2000-sport" + "description_tag" "#PaintKit_gs_p2000-sport_Tag" + "style" "9" + "pattern" "workshop/p2000_sport" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "0" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "636" + { + "name" "gs_p90_shallow_grave" + "description_string" "#PaintKit_gs_p90_shallow_grave" + "description_tag" "#PaintKit_gs_p90_shallow_grave_Tag" + "style" "9" + "pattern" "workshop/p90_shallow_grave" + "color0" "255 255 255" + "color1" "234 225 225" + "color2" "142 86 46" + "color3" "250 137 26" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "40" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "637" + { + "name" "cu_usp_cyrex" + "description_string" "#PaintKit_cu_usp_cyrex" + "description_tag" "#PaintKit_cu_usp_cyrex_Tag" + "style" "7" + "pattern" "workshop/usp_cyrex" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "638" + { + "name" "cu_wp_sawedoff" + "description_string" "#PaintKit_cu_wp_sawedoff" + "description_tag" "#PaintKit_cu_wp_sawedoff_Tag" + "style" "7" + "pattern" "workshop/sawed_off_wasteland_princess" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + } + "items" + { + "1356" + { + "name" "community_15 Key" + "item_name" "#CSGO_crate_key_community_15" + "item_description" "#CSGO_crate_key_community_15_desc" + "first_sale_date" "2016-11-02" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_15" + "tool" + { + "restriction" "crate_community_15" + } + } + "4288" + { + "item_name" "#CSGO_crate_community_15" + "item_description" "#CSGO_crate_community_15_desc" + "name" "crate_community_15" + "image_inventory" "econ/weapon_cases/crate_community_15" + "model_player" "models/props/crates/csgo_drop_crate_glove.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1356" "1" + } + "tool" + { + "restriction" "crate_community_15" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "179" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_15" + "tag_text" "#CSGO_set_community_15" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_15_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_15_unusual_itemname" + } + } + "revolving_loot_lists" + { + "179" "crate_community_15" + } + "client_loot_lists" + { + "crate_community_15_rare" + { + "[am_czv2_mf]weapon_cz75a" "1" + "[aq_glock_dark-fall]weapon_glock" "1" + "[gs_final_pooldeadv2]weapon_mp7" "1" + "[cu_galil_ar-camo]weapon_galilar" "1" + "[aa_hide-mp9]weapon_mp9" "1" + "[am_mag7_malform]weapon_mag7" "1" + "[gs_p2000-sport]weapon_hkp2000" "1" + } + "crate_community_15_mythical" + { + "[gs_dual_berettas_golden_venice]weapon_elite" "1" + "[gs_g3sg1_viper_yellow]weapon_g3sg1" "1" + "[cu_m4a1_flashback]weapon_m4a1_silencer" "1" + "[am_nova_sand]weapon_nova" "1" + "[cu_usp_cyrex]weapon_usp_silencer" "1" + } + "crate_community_15_legendary" + { + "[gs_famas_mecha]weapon_famas" "1" + "[gs_p90_shallow_grave]weapon_p90" "1" + "[cu_wp_sawedoff]weapon_sawedoff" "1" + } + "crate_community_15_ancient" + { + "[cu_ssg08_dragonfire_scope]weapon_ssg08" "1" + "[gs_m4a4_sector]weapon_m4a1" "1" + } + "crate_community_15" + { + "crate_community_15_rare" "1" + "crate_community_15_mythical" "1" + "crate_community_15_legendary" "1" + "crate_community_15_ancient" "1" + "community_case_15_unusual" "1" + } + } + "item_sets" + { + "set_community_15" + { + "name" "#CSGO_set_community_15" + "set_description" "#CSGO_set_community_15_desc" + "is_collection" "1" + "items" + { + "[am_czv2_mf]weapon_cz75a" "1" + "[aq_glock_dark-fall]weapon_glock" "1" + "[gs_final_pooldeadv2]weapon_mp7" "1" + "[cu_galil_ar-camo]weapon_galilar" "1" + "[aa_hide-mp9]weapon_mp9" "1" + "[am_mag7_malform]weapon_mag7" "1" + "[gs_p2000-sport]weapon_hkp2000" "1" + "[gs_dual_berettas_golden_venice]weapon_elite" "1" + "[gs_g3sg1_viper_yellow]weapon_g3sg1" "1" + "[cu_m4a1_flashback]weapon_m4a1_silencer" "1" + "[am_nova_sand]weapon_nova" "1" + "[cu_usp_cyrex]weapon_usp_silencer" "1" + "[gs_famas_mecha]weapon_famas" "1" + "[gs_p90_shallow_grave]weapon_p90" "1" + "[cu_wp_sawedoff]weapon_sawedoff" "1" + "[cu_ssg08_dragonfire_scope]weapon_ssg08" "1" + "[gs_m4a4_sector]weapon_m4a1" "1" + } + } + } + "paint_kits_rarity" + { + "bloodhound_black_silver" "ancient" + "bloodhound_snakeskin_brass" "ancient" + "bloodhound_metallic" "ancient" + "bloodhound_guerrilla" "ancient" + "sporty_light_blue" "ancient" + "sporty_military" "ancient" + "sporty_purple" "ancient" + "sporty_green" "ancient" + "slick_red" "ancient" + "slick_black" "ancient" + "slick_military" "ancient" + "slick_snakeskin_yellow" "ancient" + "handwrap_leathery" "ancient" + "handwrap_camo_grey" "ancient" + "handwrap_red_slaughter" "ancient" + "handwrap_fabric_orange_camo" "ancient" + "motorcycle_basic_black" "ancient" + "motorcycle_mint_triangle" "ancient" + "motorcycle_mono_boom" "ancient" + "motorcycle_triangle_blue" "ancient" + "specialist_kimono_diamonds_red" "ancient" + "specialist_emerald_web" "ancient" + "specialist_orange_white" "ancient" + "specialist_ddpat_green_camo" "ancient" + "am_czv2_mf" "rare" + "aq_glock_dark-fall" "uncommon" + "cu_ssg08_dragonfire_scope" "ancient" + "gs_dual_berettas_golden_venice" "mythical" + "gs_famas_mecha" "legendary" + "gs_final_pooldeadv2" "rare" + "gs_g3sg1_viper_yellow" "mythical" + "cu_galil_ar-camo" "rare" + "aa_hide-mp9" "rare" + "cu_m4a1_flashback" "rare" + "gs_m4a4_sector" "legendary" + "am_mag7_malform" "rare" + "am_nova_sand" "mythical" + "gs_p2000-sport" "uncommon" + "gs_p90_shallow_grave" "legendary" + "cu_usp_cyrex" "rare" + "cu_wp_sawedoff" "legendary" + } + "paint_kits" + { + "639" + { + "name" "gs_ak47_bloodsport" + "description_string" "#PaintKit_gs_ak47_bloodsport" + "description_tag" "#PaintKit_gs_ak47_bloodsport_Tag" + "style" "9" + "pattern" "workshop/ak47_bloodsport" + "color0" "255 255 255" + "color1" "204 204 204" + "color2" "23 13 13" + "color3" "21 16 16" + "pattern_scale" "1.000000" + "phongexponent" "156" + "phongintensity" "55" + "phongalbedoboost" "6" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "640" + { + "name" "cu_awp_psychopath" + "description_string" "#PaintKit_cu_awp_psychopath" + "description_tag" "#PaintKit_cu_awp_psychopath_Tag" + "style" "7" + "pattern" "workshop/awp_psychopath" + "pattern_scale" "1.000000" + "phongexponent" "210" + "phongintensity" "12" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "641" + { + "name" "hy_bizon_torn_green" + "description_string" "#PaintKit_hy_bizon_torn_green" + "description_tag" "#PaintKit_hy_bizon_torn_green_Tag" + "style" "2" + "pattern" "workshop/bizon_torn_green" + "color0" "26 26 26" + "color1" "67 79 63" + "color2" "192 181 66" + "color3" "26 26 26" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongintensity" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "642" + { + "name" "cu_blueprint_scar" + "description_string" "#PaintKit_cu_blueprint_scar" + "description_tag" "#PaintKit_cu_blueprint_scar_Tag" + "style" "7" + "pattern" "workshop/blueprint_scar" + "pattern_scale" "1.000000" + "phongexponent" "35" + "phongintensity" "9" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" + } + "643" + { + "name" "gs_cz_snakes_purple" + "description_string" "#PaintKit_gs_cz_snakes_purple" + "description_tag" "#PaintKit_gs_cz_snakes_purple_Tag" + "style" "9" + "pattern" "workshop/cz_snakes_purple" + "use_normal" "1" + "normal" "workshop/cz_snakes_purple_normal" + "color0" "144 136 128" + "color1" "188 182 173" + "color2" "0 39 40" + "color3" "62 80 82" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "20" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.560000" + } + "644" + { + "name" "gs_m4a1_decimator" + "description_string" "#PaintKit_gs_m4a1_decimator" + "description_tag" "#PaintKit_gs_m4a1_decimator_Tag" + "style" "9" + "pattern" "workshop/m4a1_decimator" + "color0" "152 166 180" + "color1" "255 255 255" + "color2" "137 122 103" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "255" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + } + "645" + { + "name" "cu_desert_eagle_corroden" + "description_string" "#PaintKit_cu_desert_eagle_corroden" + "description_tag" "#PaintKit_cu_desert_eagle_corroden_Tag" + "style" "7" + "pattern" "workshop/desert_eagle_corroden" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "646" + { + "name" "cu_fiveseven_vein" + "description_string" "#PaintKit_cu_fiveseven_vein" + "description_tag" "#PaintKit_cu_fiveseven_vein_Tag" + "style" "7" + "pattern" "workshop/fiveseven_vein" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "647" + { + "name" "sp_galil_wave" + "description_string" "#PaintKit_sp_galil_wave" + "description_tag" "#PaintKit_sp_galil_wave_Tag" + "style" "3" + "pattern" "workshop/galil_wave" + "color0" "101 32 31" + "color1" "37 44 44" + "color2" "205 190 152" + "color3" "84 89 91" + "pattern_scale" "0.850000" + "phongexponent" "225" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.450000" + "pattern_offset_x_end" "0.850000" + "pattern_offset_y_start" "0.400000" + "pattern_offset_y_end" "0.450000" + "pattern_rotate_start" "170.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "648" + { + "name" "sp_m249_frog_original" + "description_string" "#PaintKit_sp_m249_frog_original" + "description_tag" "#PaintKit_sp_m249_frog_original_Tag" + "style" "3" + "pattern" "workshop/m249_frog_original" + "color0" "27 27 27" + "color1" "223 231 166" + "color2" "240 197 50" + "color3" "36 99 91" + "pattern_scale" "1.400000" + "phongexponent" "120" + "phongintensity" "17" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "120.000000" + "pattern_rotate_end" "130.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "649" + { + "name" "sp_mp7_tribal_yellow" + "description_string" "#PaintKit_sp_mp7_tribal_yellow" + "description_tag" "#PaintKit_sp_mp7_tribal_yellow_Tag" + "style" "3" + "pattern" "workshop/mp7_tribal_yellow" + "color0" "118 40 14" + "color1" "220 189 20" + "color2" "200 174 30" + "color3" "21 96 114" + "pattern_scale" "0.700000" + "phongexponent" "180" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "650" + { + "name" "am_p250_sputnik" + "description_string" "#PaintKit_am_p250_sputnik" + "description_tag" "#PaintKit_am_p250_sputnik_Tag" + "style" "5" + "pattern" "workshop/p250_sputnik" + "color0" "35 35 35" + "color1" "35 35 35" + "color2" "75 72 66" + "color3" "0 111 127" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "651" + { + "name" "aa_mac10_the_last_dive" + "description_string" "#PaintKit_aa_mac10_the_last_dive" + "description_tag" "#PaintKit_aa_mac10_the_last_dive_Tag" + "style" "6" + "pattern" "workshop/mac10_the_last_dive" + "color0" "47 10 10" + "color1" "18 11 5" + "color2" "143 57 13" + "color3" "0 189 146" + "pattern_scale" "2.000000" + "phongexponent" "172" + "phongalbedoboost" "30" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.520000" + } + "652" + { + "name" "gs_ump_abyss" + "description_string" "#PaintKit_gs_ump_abyss" + "description_tag" "#PaintKit_gs_ump_abyss_Tag" + "style" "9" + "pattern" "workshop/ump_abyss" + "normal" "workshop/ump_abyss_normal" + "use_normal" "1" + "color0" "128 128 128 255" + "color1" "242 240 240" + "color2" "198 195 195" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "653" + { + "name" "cu_usps_noir" + "description_string" "#PaintKit_cu_usps_noir" + "description_tag" "#PaintKit_cu_usps_noir_Tag" + "style" "7" + "pattern" "workshop/usps_noir" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "654" + { + "name" "aq_xm_leaf_fade" + "description_string" "#PaintKit_aq_xm_leaf_fade" + "description_tag" "#PaintKit_aq_xm_leaf_fade_Tag" + "style" "8" + "pattern" "workshop/xm_leaf_fade" + "color0" "0 0 0" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.500000" + "phongexponent" "32" + "phongalbedoboost" "-1" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.680000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.650000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "655" + { + "name" "aq_sawedoff_zander2" + "description_string" "#PaintKit_aq_sawedoff_zander2" + "description_tag" "#PaintKit_aq_sawedoff_zander2_Tag" + "style" "8" + "pattern" "workshop/sawedoff_zander2" + "color0" "128 128 128 255" + "color1" "214 214 214" + "color2" "226 230 216" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongalbedoboost" "90" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "1.000000" + } + } + "items" + { + "1364" + { + "name" "community_16 Key" + "item_name" "#CSGO_crate_key_community_16" + "item_description" "#CSGO_crate_key_community_16_desc" + "first_sale_date" "2017-03-01" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_16" + "tool" + { + "restriction" "crate_community_16" + } + } + "4351" + { + "item_name" "#CSGO_crate_community_16" + "item_description" "#CSGO_crate_community_16_desc" + "name" "crate_community_16" + "image_inventory" "econ/weapon_cases/crate_community_16" + "model_player" "models/props/crates/csgo_drop_crate_spectrum.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1364" "1" + } + "tool" + { + "restriction" "crate_community_16" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "207" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_16" + "tag_text" "#CSGO_set_community_16" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "revolving_loot_lists" + { + "207" "crate_community_16" + } + "client_loot_lists" + { + "crate_community_16_rare" + { + "[hy_bizon_torn_green]weapon_bizon" "1" + "[cu_blueprint_scar]weapon_scar20" "1" + "[cu_desert_eagle_corroden]weapon_deagle" "1" + "[cu_fiveseven_vein]weapon_fiveseven" "1" + "[sp_mp7_tribal_yellow]weapon_mp7" "1" + "[am_p250_sputnik]weapon_p250" "1" + "[aq_sawedoff_zander2]weapon_sawedoff" "1" + } + "crate_community_16_mythical" + { + "[sp_galil_wave]weapon_galilar" "1" + "[sp_m249_frog_original]weapon_m249" "1" + "[aa_mac10_the_last_dive]weapon_mac10" "1" + "[gs_ump_abyss]weapon_ump45" "1" + "[aq_xm_leaf_fade]weapon_xm1014" "1" + } + "crate_community_16_legendary" + { + "[cu_awp_psychopath]weapon_awp" "1" + "[gs_cz_snakes_purple]weapon_cz75a" "1" + "[gs_m4a1_decimator]weapon_m4a1_silencer" "1" + } + "crate_community_16_ancient" + { + "[gs_ak47_bloodsport]weapon_ak47" "1" + "[cu_usps_noir]weapon_usp_silencer" "1" + } + "crate_community_16" + { + "crate_community_16_rare" "1" + "crate_community_16_mythical" "1" + "crate_community_16_legendary" "1" + "crate_community_16_ancient" "1" + "spectrum_unusual" "1" + } + } + "item_sets" + { + "set_community_16" + { + "name" "#CSGO_set_community_16" + "set_description" "#CSGO_set_community_16_desc" + "is_collection" "1" + "items" + { + "[hy_bizon_torn_green]weapon_bizon" "1" + "[cu_blueprint_scar]weapon_scar20" "1" + "[cu_desert_eagle_corroden]weapon_deagle" "1" + "[cu_fiveseven_vein]weapon_fiveseven" "1" + "[sp_mp7_tribal_yellow]weapon_mp7" "1" + "[am_p250_sputnik]weapon_p250" "1" + "[aq_sawedoff_zander2]weapon_sawedoff" "1" + "[sp_galil_wave]weapon_galilar" "1" + "[sp_m249_frog_original]weapon_m249" "1" + "[aa_mac10_the_last_dive]weapon_mac10" "1" + "[gs_ump_abyss]weapon_ump45" "1" + "[aq_xm_leaf_fade]weapon_xm1014" "1" + "[cu_awp_psychopath]weapon_awp" "1" + "[gs_cz_snakes_purple]weapon_cz75a" "1" + "[gs_m4a1_decimator]weapon_m4a1_silencer" "1" + "[gs_ak47_bloodsport]weapon_ak47" "1" + "[cu_usps_noir]weapon_usp_silencer" "1" + } + } + } + "paint_kits_rarity" + { + "am_blackpearl_marbleized_b" "ancient" + "am_doppler_phase2_b" "mythical" + "am_sapphire_marbleized_b" "legendary" + "cu_purple_huntsman" "rare" + "so_purple_falchion" "rare" + "gs_ak47_bloodsport" "legendary" + "cu_awp_psychopath" "mythical" + "hy_bizon_torn_green" "rare" + "cu_blueprint_scar" "rare" + "gs_cz_snakes_purple" "legendary" + "gs_m4a1_decimator" "mythical" + "cu_desert_eagle_corroden" "uncommon" + "cu_fiveseven_vein" "rare" + "sp_galil_wave" "mythical" + "sp_m249_frog_original" "mythical" + "sp_mp7_tribal_yellow" "rare" + "am_p250_sputnik" "rare" + "aa_mac10_the_last_dive" "mythical" + "gs_ump_abyss" "mythical" + "cu_usps_noir" "legendary" + "aq_xm_leaf_fade" "mythical" + "aq_sawedoff_zander2" "rare" + } + "paint_kits" + { + "656" + { + "name" "gs_ak_colony01_red" + "description_string" "#PaintKit_gs_ak_colony01_red" + "description_tag" "#PaintKit_gs_ak_colony01_red_Tag" + "style" "9" + "pattern" "workshop/ak_colony01_red" + "color0" "128 128 128 255" + "color1" "234 234 234" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "9" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "657" + { + "name" "cu_usps_blueprint" + "description_string" "#PaintKit_cu_usps_blueprint" + "description_tag" "#PaintKit_cu_usps_blueprint_Tag" + "style" "7" + "pattern" "workshop/usps_blueprint" + "pattern_scale" "1.000000" + "phongexponent" "45" + "phongintensity" "9" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.860000" + } + "658" + { + "name" "gs_dualberettas_cobra" + "description_string" "#PaintKit_gs_dualberettas_cobra" + "description_tag" "#PaintKit_gs_dualberettas_cobra_Tag" + "style" "9" + "pattern" "workshop/dualberettas_cobra" + "color0" "202 230 157" + "color1" "213 211 211" + "color2" "48 38 32" + "color3" "27 57 62" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "12" + "phongalbedoboost" "7" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "659" + { + "name" "sp_famas_macabre" + "description_string" "#PaintKit_sp_famas_macabre" + "description_tag" "#PaintKit_sp_famas_macabre_Tag" + "style" "3" + "pattern" "workshop/famas_macabre" + "color0" "162 126 15" + "color1" "31 44 12" + "color2" "158 155 129" + "color3" "30 35 33" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "660" + { + "name" "cu_fiveseven_hyperbeast" + "description_string" "#PaintKit_cu_fiveseven_hyperbeast" + "description_tag" "#PaintKit_cu_fiveseven_hyperbeast_Tag" + "style" "7" + "pattern" "workshop/fiveseven_hyperbeast" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "55" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "661" + { + "name" "cu_galil_candychaos" + "description_string" "#PaintKit_cu_galil_candychaos" + "description_tag" "#PaintKit_cu_galil_candychaos_Tag" + "style" "7" + "pattern" "workshop/galil_candychaos" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "12" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "662" + { + "name" "cu_awp_hannya" + "description_string" "#PaintKit_cu_awp_hannya" + "description_tag" "#PaintKit_cu_awp_hannya_Tag" + "style" "7" + "pattern" "workshop/awp_hannya" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "663" + { + "name" "cu_m4a1s_metritera" + "description_string" "#PaintKit_cu_m4a1s_metritera" + "description_tag" "#PaintKit_cu_m4a1s_metritera_Tag" + "style" "7" + "pattern" "workshop/m4a1s_metritera" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongintensity" "9" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "664" + { + "name" "cu_m4a4_hellfire" + "description_string" "#PaintKit_cu_m4a4_hellfire" + "description_tag" "#PaintKit_cu_m4a4_hellfire_Tag" + "style" "7" + "pattern" "workshop/m4a4_hellfire" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "665" + { + "name" "am_mac10_aloha" + "description_string" "#PaintKit_am_mac10_aloha" + "description_tag" "#PaintKit_am_mac10_aloha_Tag" + "style" "5" + "pattern" "workshop/mac10_aloha" + "color0" "82 75 66" + "color1" "47 35 29" + "color2" "168 67 53" + "color3" "75 57 50" + "pattern_scale" "3.000000" + "phongexponent" "255" + "phongalbedoboost" "-1" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "25.000000" + "pattern_rotate_end" "300.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "666" + { + "name" "am_mag7_caustic" + "description_string" "#PaintKit_am_mag7_caustic" + "description_tag" "#PaintKit_am_mag7_caustic_Tag" + "style" "5" + "pattern" "workshop/mag7_caustic" + "color0" "0 0 0" + "color1" "57 66 64" + "color2" "24 33 36" + "color3" "6 58 95" + "pattern_scale" "1.000000" + "phongexponent" "4" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" + } + "667" + { + "name" "cu_p2000_hunter" + "description_string" "#PaintKit_cu_p2000_hunter" + "description_tag" "#PaintKit_cu_p2000_hunter_Tag" + "style" "7" + "pattern" "workshop/p2000_hunter" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "668" + { + "name" "cu_p250_axiom" + "description_string" "#PaintKit_cu_p250_axiom" + "description_tag" "#PaintKit_cu_p250_axiom_Tag" + "style" "7" + "pattern" "workshop/p250_axiom" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "669" + { + "name" "hy_p90_barebones_blue" + "description_string" "#PaintKit_hy_p90_barebones_blue" + "description_tag" "#PaintKit_hy_p90_barebones_blue_Tag" + "style" "2" + "pattern" "workshop/p90_barebones_blue" + "color0" "77 110 126" + "color1" "55 47 47" + "color2" "47 47 47" + "color3" "190 190 190" + "pattern_scale" "2.500000" + "phongexponent" "60" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "670" + { + "name" "cu_ssg08_deathshead" + "description_string" "#PaintKit_cu_ssg08_deathshead" + "description_tag" "#PaintKit_cu_ssg08_deathshead_Tag" + "style" "7" + "pattern" "workshop/ssg08_deathshead" + "pattern_scale" "1.000000" + "phongexponent" "115" + "phongintensity" "38" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.510000" + } + "671" + { + "name" "aq_tec9_chalk_pattern" + "description_string" "#PaintKit_aq_tec9_chalk_pattern" + "description_tag" "#PaintKit_aq_tec9_chalk_pattern_Tag" + "style" "8" + "pattern" "workshop/tec9_chalk_pattern" + "color0" "128 128 128 255" + "color1" "178 178 178" + "color2" "136 136 136" + "color3" "176 176 176" + "pattern_scale" "2.800000" + "phongexponent" "255" + "phongalbedoboost" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "672" + { + "name" "aq_ump45_flameflower" + "description_string" "#PaintKit_aq_ump45_flameflower" + "description_tag" "#PaintKit_aq_ump45_flameflower_Tag" + "style" "8" + "pattern" "workshop/ump45_flameflower" + "color0" "160 172 176" + "color1" "242 234 218" + "color2" "221 212 198" + "color3" "99 59 12" + "pattern_scale" "4.000000" + "phongexponent" "170" + "phongalbedoboost" "70" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + } + "items" + { + "1365" + { + "name" "community_17 Key" + "item_name" "#CSGO_crate_key_community_17" + "item_description" "#CSGO_crate_key_community_17_desc" + "first_sale_date" "2017-04-21" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_17" + "tool" + { + "restriction" "crate_community_17" + } + } + "4352" + { + "item_name" "#CSGO_crate_community_17" + "item_description" "#CSGO_crate_community_17_desc" + "name" "crate_community_17" + "image_inventory" "econ/weapon_cases/crate_community_17" + "model_player" "models/props/crates/csgo_drop_crate_hydra.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1365" "1" + } + "tool" + { + "restriction" "crate_community_17" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "208" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_17" + "tag_text" "#CSGO_set_community_17" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_15_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_15_unusual_itemname" + } + } + "revolving_loot_lists" + { + "208" "crate_community_17" + } + "client_loot_lists" + { + "crate_community_17_rare" + { + "[cu_usps_blueprint]weapon_usp_silencer" "1" + "[sp_famas_macabre]weapon_famas" "1" + "[cu_m4a1s_metritera]weapon_m4a1_silencer" "1" + "[am_mac10_aloha]weapon_mac10" "1" + "[am_mag7_caustic]weapon_mag7" "1" + "[aq_tec9_chalk_pattern]weapon_tec9" "1" + "[aq_ump45_flameflower]weapon_ump45" "1" + } + "crate_community_17_mythical" + { + "[gs_ak_colony01_red]weapon_ak47" "1" + "[cu_p2000_hunter]weapon_hkp2000" "1" + "[cu_p250_axiom]weapon_p250" "1" + "[hy_p90_barebones_blue]weapon_p90" "1" + "[cu_ssg08_deathshead]weapon_ssg08" "1" + } + "crate_community_17_legendary" + { + "[gs_dualberettas_cobra]weapon_elite" "1" + "[cu_galil_candychaos]weapon_galilar" "1" + "[cu_m4a4_hellfire]weapon_m4a1" "1" + } + "crate_community_17_ancient" + { + "[cu_fiveseven_hyperbeast]weapon_fiveseven" "1" + "[cu_awp_hannya]weapon_awp" "1" + } + "crate_community_17" + { + "crate_community_17_rare" "1" + "crate_community_17_mythical" "1" + "crate_community_17_legendary" "1" + "crate_community_17_ancient" "1" + "community_case_15_unusual" "1" + } + } + "item_sets" + { + "set_community_17" + { + "name" "#CSGO_set_community_17" + "set_description" "#CSGO_set_community_17_desc" + "is_collection" "1" + "items" + { + "[cu_usps_blueprint]weapon_usp_silencer" "1" + "[sp_famas_macabre]weapon_famas" "1" + "[cu_m4a1s_metritera]weapon_m4a1_silencer" "1" + "[am_mac10_aloha]weapon_mac10" "1" + "[am_mag7_caustic]weapon_mag7" "1" + "[aq_tec9_chalk_pattern]weapon_tec9" "1" + "[aq_ump45_flameflower]weapon_ump45" "1" + "[gs_ak_colony01_red]weapon_ak47" "1" + "[cu_p2000_hunter]weapon_hkp2000" "1" + "[cu_p250_axiom]weapon_p250" "1" + "[hy_p90_barebones_blue]weapon_p90" "1" + "[cu_ssg08_deathshead]weapon_ssg08" "1" + "[gs_dualberettas_cobra]weapon_elite" "1" + "[cu_galil_candychaos]weapon_galilar" "1" + "[cu_m4a4_hellfire]weapon_m4a1" "1" + "[cu_fiveseven_hyperbeast]weapon_fiveseven" "1" + "[cu_awp_hannya]weapon_awp" "1" + } + } + } + "paint_kits_rarity" + { + "cu_fiveseven_hyperbeast" "ancient" + "hy_p90_barebones_blue" "mythical" + "aq_ump45_flameflower" "rare" + "cu_usps_blueprint" "uncommon" + "gs_ak_colony01_red" "rare" + "gs_dualberettas_cobra" "legendary" + "sp_famas_macabre" "rare" + "cu_galil_candychaos" "legendary" + "cu_awp_hannya" "legendary" + "cu_m4a1s_metritera" "uncommon" + "cu_m4a4_hellfire" "mythical" + "am_mac10_aloha" "rare" + "am_mag7_caustic" "rare" + "cu_p2000_hunter" "rare" + "cu_p250_axiom" "mythical" + "cu_ssg08_deathshead" "mythical" + "aq_tec9_chalk_pattern" "rare" + } + "paint_kits" + { + "673" + { + "name" "aq_sawed-off_flower" + "description_string" "#PaintKit_aq_sawed-off_flower" + "description_tag" "#PaintKit_aq_sawed-off_flower_Tag" + "style" "8" + "pattern" "workshop/sawed-off_flower" + "color0" "88 57 30" + "color1" "177 177 177" + "color2" "159 147 147" + "color3" "253 87 5" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongalbedoboost" "18" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "674" + { + "name" "cu_aug_orange_triangle" + "description_string" "#PaintKit_cu_aug_orange_triangle" + "description_tag" "#PaintKit_cu_aug_orange_triangle_Tag" + "style" "7" + "pattern" "workshop/aug_orange_triangle" + "use_normal" "1" + "normal" "workshop/aug_orange_triangle_normal" + "pattern_scale" "1.000000" + "phongexponent" "70" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "675" + { + "name" "gs_ak47_empress" + "description_string" "#PaintKit_gs_ak47_empress" + "description_tag" "#PaintKit_gs_ak47_empress_Tag" + "style" "9" + "pattern" "workshop/ak47_empress" + "color0" "86 41 38" + "color1" "255 255 255" + "color2" "164 178 202" + "color3" "196 180 149" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "1" + "phongalbedoboost" "6" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "676" + { + "name" "cu_bizon_all_in" + "description_string" "#PaintKit_cu_bizon_all_in" + "description_tag" "#PaintKit_cu_bizon_all_in_Tag" + "style" "7" + "pattern" "workshop/bizon_all_in" + "use_normal" "1" + "normal" "workshop/bizon_all_in_normal" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "677" + { + "name" "gs_g3sg1_cetme_redux" + "description_string" "#PaintKit_gs_g3sg1_cetme_redux" + "description_tag" "#PaintKit_gs_g3sg1_cetme_redux_Tag" + "style" "9" + "pattern" "workshop/g3sg1_cetme_redux" + "use_normal" "1" + "normal" "workshop/g3sg1_cetme_redux_normal" + "color0" "205 221 221" + "color1" "136 134 134" + "color2" "255 254 252" + "color3" "121 111 93" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "32" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "678" + { + "name" "cu_p250_cybercroc" + "description_string" "#PaintKit_cu_p250_cybercroc" + "description_tag" "#PaintKit_cu_p250_cybercroc_Tag" + "style" "7" + "pattern" "workshop/p250_cybercroc" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "679" + { + "name" "cu_mp9_goo" + "description_string" "#PaintKit_cu_mp9_goo" + "description_tag" "#PaintKit_cu_mp9_goo_Tag" + "style" "7" + "pattern" "workshop/mp9_goo" + "pattern_scale" "1.000000" + "phongexponent" "140" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "680" + { + "name" "cu_glock_indigo" + "description_string" "#PaintKit_cu_glock_indigo" + "description_tag" "#PaintKit_cu_glock_indigo_Tag" + "style" "7" + "pattern" "workshop/glock_indigo" + "pattern_scale" "1.000000" + "phongexponent" "245" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "681" + { + "name" "gs_m4a1_shatter" + "description_string" "#PaintKit_gs_m4a1_shatter" + "description_tag" "#PaintKit_gs_m4a1_shatter_Tag" + "style" "9" + "pattern" "workshop/m4a1_shatter" + "use_normal" "1" + "normal" "workshop/m4a1_shatter_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "255 255 255 255" + "color3" "255 255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "1" + "phongintensity" "0" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + "dialog_config" "11,0,0,1" + } + "682" + { + "name" "am_mac10_oceani" + "description_string" "#PaintKit_am_mac10_oceani" + "description_tag" "#PaintKit_hy_p2000_oceani_Tag" + "style" "5" + "pattern" "workshop/mac10_oceani" + "color0" "21 21 26" + "color1" "46 158 199" + "color2" "20 91 146" + "color3" "25 92 148" + "pattern_scale" "4.000000" + "phongexponent" "255" + "phongalbedoboost" "1" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "683" + { + "name" "gs_r8_llamacannon" + "description_string" "#PaintKit_gs_r8_llamacannon" + "description_tag" "#PaintKit_gs_r8_llamacannon_Tag" + "style" "9" + "pattern" "workshop/r8_llamacannon" + "use_normal" "1" + "normal" "workshop/r8_llamacannon_normal" + "color0" "161 161 161" + "color1" "112 127 153" + "color2" "219 216 136" + "color3" "190 186 174" + "pattern_scale" "1.000000" + "phongexponent" "185" + "phongintensity" "53" + "phongalbedoboost" "123" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.030000" + "wear_remap_max" "0.700000" + } + "684" + { + "name" "cu_tec9_cracked_opal" + "description_string" "#PaintKit_cu_tec9_cracked_opal" + "description_tag" "#PaintKit_cu_tec9_cracked_opal_Tag" + "style" "7" + "pattern" "workshop/tec9_cracked_opal" + "pattern_scale" "3.000000" + "phongexponent" "75" + "phongintensity" "75" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "685" + { + "name" "hy_scar20_jungle_slipstream" + "description_string" "#PaintKit_hy_scar20_jungle_slipstream" + "description_tag" "#PaintKit_hy_bizon_torn_green_Tag" + "style" "2" + "pattern" "workshop/scar20_jungle_slipstream" + "color0" "26 26 26" + "color1" "67 79 63" + "color2" "192 181 66" + "color3" "26 26 26" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongintensity" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "686" + { + "name" "gs_sg553_phantom" + "description_string" "#PaintKit_gs_sg553_phantom" + "description_tag" "#PaintKit_gs_sg553_phantom_Tag" + "style" "9" + "pattern" "workshop/sg553_phantom" + "use_normal" "1" + "normal" "workshop/sg553_phantom_normal" + "color0" "46 14 0" + "color1" "194 194 194" + "color2" "125 110 102" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "5" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "687" + { + "name" "gs_cz75_tacticat" + "description_string" "#PaintKit_gs_cz75_tacticat" + "description_tag" "#PaintKit_gs_cz75_tacticat_Tag" + "style" "9" + "pattern" "workshop/cz75_tacticat" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "15" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "688" + { + "name" "cu_ump45_x-ray_machine" + "description_string" "#PaintKit_cu_ump45_x-ray_machine" + "description_tag" "#PaintKit_cu_ump45_x-ray_machine_Tag" + "style" "7" + "pattern" "workshop/ump45_x-ray_machine" + "pattern_scale" "1.000000" + "phongexponent" "175" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "689" + { + "name" "aq_xm1014_ziggy_anarchy" + "description_string" "#PaintKit_aq_xm1014_ziggy_anarchy" + "description_tag" "#PaintKit_aq_xm1014_ziggy_anarchy_Tag" + "style" "8" + "pattern" "workshop/xm1014_ziggy_anarchy" + "color0" "67 67 67" + "color1" "111 111 111" + "color2" "69 73 93" + "color3" "224 237 200" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongalbedoboost" "190" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-25.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.720000" + } + } + "items" + { + "1366" + { + "name" "community_18 Key" + "item_name" "#CSGO_crate_key_community_18" + "item_description" "#CSGO_crate_key_community_18_desc" + "first_sale_date" "2017-09-06" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_18" + "tool" + { + "restriction" "crate_community_18" + } + } + "4403" + { + "item_name" "#CSGO_crate_community_18" + "item_description" "#CSGO_crate_community_18_desc" + "name" "crate_community_18" + "image_inventory" "econ/weapon_cases/crate_community_18" + "model_player" "models/props/crates/csgo_drop_crate_spectrum2.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1366" "1" + } + "tool" + { + "restriction" "crate_community_18" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "220" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_18" + "tag_text" "#CSGO_set_community_18" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "revolving_loot_lists" + { + "220" "crate_community_18" + } + "client_loot_lists" + { + "crate_community_18_rare" + { + "[aq_sawed-off_flower]weapon_sawedoff" "1" + "[cu_aug_orange_triangle]weapon_aug" "1" + "[gs_g3sg1_cetme_redux]weapon_g3sg1" "1" + "[cu_glock_indigo]weapon_glock" "1" + "[am_mac10_oceani]weapon_mac10" "1" + "[cu_tec9_cracked_opal]weapon_tec9" "1" + "[hy_scar20_jungle_slipstream]weapon_scar20" "1" + } + "crate_community_18_mythical" + { + "[cu_mp9_goo]weapon_mp9" "1" + "[gs_sg553_phantom]weapon_sg556" "1" + "[gs_cz75_tacticat]weapon_cz75a" "1" + "[cu_ump45_x-ray_machine]weapon_ump45" "1" + "[aq_xm1014_ziggy_anarchy]weapon_xm1014" "1" + } + "crate_community_18_legendary" + { + "[cu_bizon_all_in]weapon_bizon" "1" + "[gs_m4a1_shatter]weapon_m4a1_silencer" "1" + "[gs_r8_llamacannon]weapon_revolver" "1" + } + "crate_community_18_ancient" + { + "[gs_ak47_empress]weapon_ak47" "1" + "[cu_p250_cybercroc]weapon_p250" "1" + } + "crate_community_18" + { + "crate_community_18_rare" "1" + "crate_community_18_mythical" "1" + "crate_community_18_legendary" "1" + "crate_community_18_ancient" "1" + "spectrum_unusual" "1" + } + } + "item_sets" + { + "set_community_18" + { + "name" "#CSGO_set_community_18" + "set_description" "#CSGO_set_community_18_desc" + "is_collection" "1" + "items" + { + "[aq_sawed-off_flower]weapon_sawedoff" "1" + "[cu_aug_orange_triangle]weapon_aug" "1" + "[gs_g3sg1_cetme_redux]weapon_g3sg1" "1" + "[cu_glock_indigo]weapon_glock" "1" + "[am_mac10_oceani]weapon_mac10" "1" + "[cu_tec9_cracked_opal]weapon_tec9" "1" + "[hy_scar20_jungle_slipstream]weapon_scar20" "1" + "[cu_mp9_goo]weapon_mp9" "1" + "[gs_sg553_phantom]weapon_sg556" "1" + "[gs_cz75_tacticat]weapon_cz75a" "1" + "[cu_ump45_x-ray_machine]weapon_ump45" "1" + "[aq_xm1014_ziggy_anarchy]weapon_xm1014" "1" + "[cu_bizon_all_in]weapon_bizon" "1" + "[gs_m4a1_shatter]weapon_m4a1_silencer" "1" + "[gs_r8_llamacannon]weapon_revolver" "1" + "[gs_ak47_empress]weapon_ak47" "1" + "[cu_p250_cybercroc]weapon_p250" "1" + } + } + } + "paint_kits_rarity" + { + "aq_sawed-off_flower" "rare" + "cu_aug_orange_triangle" "rare" + "gs_ak47_empress" "legendary" + "cu_bizon_all_in" "legendary" + "gs_g3sg1_cetme_redux" "rare" + "cu_p250_cybercroc" "ancient" + "cu_mp9_goo" "mythical" + "cu_glock_indigo" "uncommon" + "am_mac10_oceani" "rare" + "gs_r8_llamacannon" "legendary" + "cu_tec9_cracked_opal" "rare" + "hy_scar20_jungle_slipstream" "rare" + "gs_sg553_phantom" "mythical" + "gs_cz75_tacticat" "mythical" + "cu_ump45_x-ray_machine" "mythical" + "aq_xm1014_ziggy_anarchy" "mythical" + "gs_m4a1_shatter" "mythical" + } + "sticker_kits" + { + "2388" + { + "name" "illuminate_cheongsam_1" + "item_name" "#StickerKit_illuminate_cheongsam_1" + "description_string" "#StickerKit_desc_illuminate_cheongsam_1" + "sticker_material" "illuminate_capsule_01/cheongsam_1" + "item_rarity" "rare" + } + "2389" + { + "name" "illuminate_cheongsam_2" + "item_name" "#StickerKit_illuminate_cheongsam_2" + "description_string" "#StickerKit_desc_illuminate_cheongsam_2" + "sticker_material" "illuminate_capsule_01/cheongsam_2" + "item_rarity" "rare" + } + "2390" + { + "name" "illuminate_cheongsam_2_holo" + "item_name" "#StickerKit_illuminate_cheongsam_2_holo" + "description_string" "#StickerKit_desc_illuminate_cheongsam_2_holo" + "sticker_material" "illuminate_capsule_01/cheongsam_2_holo" + "item_rarity" "mythical" + } + "2391" + { + "name" "illuminate_koi_2" + "item_name" "#StickerKit_illuminate_koi_2" + "description_string" "#StickerKit_desc_illuminate_koi_2" + "sticker_material" "illuminate_capsule_01/koi_2" + "item_rarity" "rare" + } + "2392" + { + "name" "illuminate_koi_2_foil" + "item_name" "#StickerKit_illuminate_koi_2_foil" + "description_string" "#StickerKit_desc_illuminate_koi_2_foil" + "sticker_material" "illuminate_capsule_01/koi_2_foil" + "item_rarity" "legendary" + } + "2393" + { + "name" "illuminate_chinese_dragon" + "item_name" "#StickerKit_illuminate_chinese_dragon" + "description_string" "#StickerKit_desc_illuminate_chinese_dragon" + "sticker_material" "illuminate_capsule_01/chinese_dragon" + "item_rarity" "rare" + } + "2394" + { + "name" "illuminate_chinese_dragon_foil" + "item_name" "#StickerKit_illuminate_chinese_dragon_foil" + "description_string" "#StickerKit_desc_illuminate_chinese_dragon_foil" + "sticker_material" "illuminate_capsule_01/chinese_dragon_foil" + "item_rarity" "legendary" + } + "2395" + { + "name" "illuminate_hotpot" + "item_name" "#StickerKit_illuminate_hotpot" + "description_string" "#StickerKit_desc_illuminate_hotpot" + "sticker_material" "illuminate_capsule_01/hotpot" + "item_rarity" "rare" + } + "2396" + { + "name" "illuminate_noodles" + "item_name" "#StickerKit_illuminate_noodles" + "description_string" "#StickerKit_desc_illuminate_noodles" + "sticker_material" "illuminate_capsule_01/noodles" + "item_rarity" "rare" + } + "2397" + { + "name" "illuminate_rice" + "item_name" "#StickerKit_illuminate_rice" + "description_string" "#StickerKit_desc_illuminate_rice" + "sticker_material" "illuminate_capsule_01/rice" + "item_rarity" "rare" + } + "2398" + { + "name" "illuminate_rice_pudding" + "item_name" "#StickerKit_illuminate_rice_pudding" + "description_string" "#StickerKit_desc_illuminate_rice_pudding" + "sticker_material" "illuminate_capsule_01/rice_pudding" + "item_rarity" "rare" + } + "2399" + { + "name" "illuminate_mahjong_fa" + "item_name" "#StickerKit_illuminate_mahjong_fa" + "description_string" "#StickerKit_desc_illuminate_mahjong_fa" + "sticker_material" "illuminate_capsule_01/mahjong_fa" + "item_rarity" "rare" + } + "2400" + { + "name" "illuminate_mahjong_rooster" + "item_name" "#StickerKit_illuminate_mahjong_rooster" + "description_string" "#StickerKit_desc_illuminate_mahjong_rooster" + "sticker_material" "illuminate_capsule_01/mahjong_rooster" + "item_rarity" "rare" + } + "2401" + { + "name" "illuminate_mahjong_zhong" + "item_name" "#StickerKit_illuminate_mahjong_zhong" + "description_string" "#StickerKit_desc_illuminate_mahjong_zhong" + "sticker_material" "illuminate_capsule_01/mahjong_zhong" + "item_rarity" "rare" + } + "2402" + { + "name" "illuminate_toytiger" + "item_name" "#StickerKit_illuminate_toytiger" + "description_string" "#StickerKit_desc_illuminate_toytiger" + "sticker_material" "illuminate_capsule_01/toytiger" + "item_rarity" "rare" + } + } + "items" + { + "4404" + { + "item_name" "#CSGO_crate_sticker_pack_illuminate_capsule_01" + "name" "crate_sticker_pack_illuminate_capsule_01" + "item_description" "#CSGO_crate_sticker_pack_illuminate_capsule_01_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_illuminate_capsule_01" + "first_sale_date" "2017/09/15" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "221" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_illuminate_capsule_01_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_illuminate_capsule_01" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "221" "crate_sticker_pack_illuminate_capsule_01_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_illuminate_capsule_01_rare" + { + "[illuminate_hotpot]sticker" "1" + "[illuminate_noodles]sticker" "1" + "[illuminate_rice]sticker" "1" + "[illuminate_rice_pudding]sticker" "1" + "[illuminate_cheongsam_1]sticker" "1" + "[illuminate_cheongsam_2]sticker" "1" + "[illuminate_koi_2]sticker" "1" + "[illuminate_chinese_dragon]sticker" "1" + "[illuminate_mahjong_fa]sticker" "1" + "[illuminate_mahjong_rooster]sticker" "1" + "[illuminate_mahjong_zhong]sticker" "1" + "[illuminate_toytiger]sticker" "1" + } + "crate_sticker_pack_illuminate_capsule_01_mythical" + { + "[illuminate_cheongsam_2_holo]sticker" "1" + } + "crate_sticker_pack_illuminate_capsule_01_legendary" + { + "[illuminate_chinese_dragon_foil]sticker" "1" + "[illuminate_koi_2_foil]sticker" "1" + } + "crate_sticker_pack_illuminate_capsule_01_lootlist" + { + "crate_sticker_pack_illuminate_capsule_01_rare" "1" + "crate_sticker_pack_illuminate_capsule_01_mythical" "1" + "crate_sticker_pack_illuminate_capsule_01_legendary" "1" + } + } + "sticker_kits" + { + "2403" + { + "name" "illuminate_god_of_fortune" + "item_name" "#StickerKit_illuminate_god_of_fortune" + "description_string" "#StickerKit_desc_illuminate_god_of_fortune" + "sticker_material" "illuminate_capsule_02/god_of_fortune" + "item_rarity" "rare" + } + "2404" + { + "name" "illuminate_huaji" + "item_name" "#StickerKit_illuminate_huaji" + "description_string" "#StickerKit_desc_illuminate_huaji" + "sticker_material" "illuminate_capsule_02/huaji" + "item_rarity" "rare" + } + "2405" + { + "name" "illuminate_nezha" + "item_name" "#StickerKit_illuminate_nezha" + "description_string" "#StickerKit_desc_illuminate_nezha" + "sticker_material" "illuminate_capsule_02/nezha" + "item_rarity" "rare" + } + "2406" + { + "name" "illuminate_fury" + "item_name" "#StickerKit_illuminate_fury" + "description_string" "#StickerKit_desc_illuminate_fury" + "sticker_material" "illuminate_capsule_02/fury" + "item_rarity" "rare" + } + "2407" + { + "name" "illuminate_longevity" + "item_name" "#StickerKit_illuminate_longevity" + "description_string" "#StickerKit_desc_illuminate_longevity" + "sticker_material" "illuminate_capsule_02/longevity" + "item_rarity" "rare" + } + "2408" + { + "name" "illuminate_longevity_foil" + "item_name" "#StickerKit_illuminate_longevity_foil" + "description_string" "#StickerKit_desc_illuminate_longevity_foil" + "sticker_material" "illuminate_capsule_02/longevity_foil" + "item_rarity" "legendary" + } + "2409" + { + "name" "illuminate_panda" + "item_name" "#StickerKit_illuminate_panda" + "description_string" "#StickerKit_desc_illuminate_panda" + "sticker_material" "illuminate_capsule_02/panda" + "item_rarity" "rare" + } + "2410" + { + "name" "illuminate_pixiu" + "item_name" "#StickerKit_illuminate_pixiu" + "description_string" "#StickerKit_desc_illuminate_pixiu" + "sticker_material" "illuminate_capsule_02/pixiu" + "item_rarity" "rare" + } + "2411" + { + "name" "illuminate_pixiu_foil" + "item_name" "#StickerKit_illuminate_pixiu_foil" + "description_string" "#StickerKit_desc_illuminate_pixiu_foil" + "sticker_material" "illuminate_capsule_02/pixiu_foil" + "item_rarity" "legendary" + } + "2412" + { + "name" "illuminate_red_koi" + "item_name" "#StickerKit_illuminate_red_koi" + "description_string" "#StickerKit_desc_illuminate_red_koi" + "sticker_material" "illuminate_capsule_02/red_koi" + "item_rarity" "rare" + } + "2413" + { + "name" "illuminate_red_koi_holo" + "item_name" "#StickerKit_illuminate_red_koi_holo" + "description_string" "#StickerKit_desc_illuminate_red_koi_holo" + "sticker_material" "illuminate_capsule_02/red_koi_holo" + "item_rarity" "mythical" + } + "2414" + { + "name" "illuminate_shaolin_1" + "item_name" "#StickerKit_illuminate_shaolin_1" + "description_string" "#StickerKit_desc_illuminate_shaolin_1" + "sticker_material" "illuminate_capsule_02/shaolin_1" + "item_rarity" "rare" + } + "2415" + { + "name" "illuminate_swallow_1" + "item_name" "#StickerKit_illuminate_swallow_1" + "description_string" "#StickerKit_desc_illuminate_swallow_1" + "sticker_material" "illuminate_capsule_02/swallow_1" + "item_rarity" "rare" + } + "2416" + { + "name" "illuminate_swallow_2" + "item_name" "#StickerKit_illuminate_swallow_2" + "description_string" "#StickerKit_desc_illuminate_swallow_2" + "sticker_material" "illuminate_capsule_02/swallow_2" + "item_rarity" "rare" + } + "2417" + { + "name" "illuminate_zombie" + "item_name" "#StickerKit_illuminate_zombie" + "description_string" "#StickerKit_desc_illuminate_zombie" + "sticker_material" "illuminate_capsule_02/zombie" + "item_rarity" "rare" + } + } + "items" + { + "4405" + { + "item_name" "#CSGO_crate_sticker_pack_illuminate_capsule_02" + "name" "crate_sticker_pack_illuminate_capsule_02" + "item_description" "#CSGO_crate_sticker_pack_illuminate_capsule_02_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_illuminate_capsule_02" + "first_sale_date" "2017/09/15" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "222" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_illuminate_capsule_02_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_illuminate_capsule_02" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "222" "crate_sticker_pack_illuminate_capsule_02_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_illuminate_capsule_02_rare" + { + "[illuminate_god_of_fortune]sticker" "1" + "[illuminate_huaji]sticker" "1" + "[illuminate_nezha]sticker" "1" + "[illuminate_fury]sticker" "1" + "[illuminate_longevity]sticker" "1" + "[illuminate_panda]sticker" "1" + "[illuminate_pixiu]sticker" "1" + "[illuminate_red_koi]sticker" "1" + "[illuminate_shaolin_1]sticker" "1" + "[illuminate_swallow_1]sticker" "1" + "[illuminate_swallow_2]sticker" "1" + "[illuminate_zombie]sticker" "1" + } + "crate_sticker_pack_illuminate_capsule_02_mythical" + { + "[illuminate_red_koi_holo]sticker" "1" + } + "crate_sticker_pack_illuminate_capsule_02_legendary" + { + "[illuminate_longevity_foil]sticker" "1" + "[illuminate_pixiu_foil]sticker" "1" + } + "crate_sticker_pack_illuminate_capsule_02_lootlist" + { + "crate_sticker_pack_illuminate_capsule_02_rare" "1" + "crate_sticker_pack_illuminate_capsule_02_mythical" "1" + "crate_sticker_pack_illuminate_capsule_02_legendary" "1" + } + } + "sticker_kits" + { + "2418" + { + "name" "spray_illuminate1_cheongsam_1" + "item_name" "#StickerKit_illuminate_cheongsam_1" + "description_string" "#SprayKit_desc_illuminate1_cheongsam_1" + "sticker_material" "illuminate_capsule/cheongsam_1" + "item_rarity" "mythical" + } + "2419" + { + "name" "spray_illuminate1_cheongsam_2" + "item_name" "#StickerKit_illuminate_cheongsam_2" + "description_string" "#SprayKit_desc_illuminate1_cheongsam_2" + "sticker_material" "illuminate_capsule/cheongsam_2" + "item_rarity" "mythical" + } + "2420" + { + "name" "spray_illuminate1_chinese_dragon" + "item_name" "#StickerKit_illuminate_chinese_dragon" + "description_string" "#SprayKit_desc_illuminate1_chinese_dragon" + "sticker_material" "illuminate_capsule/chinese_dragon_nodrips" + "item_rarity" "legendary" + } + "2421" + { + "name" "spray_illuminate1_fury" + "item_name" "#StickerKit_illuminate_fury" + "description_string" "#SprayKit_desc_illuminate1_fury" + "sticker_material" "illuminate_capsule/fury" + "item_rarity" "mythical" + } + "2422" + { + "name" "spray_illuminate1_god_of_fortune" + "item_name" "#StickerKit_illuminate_god_of_fortune" + "description_string" "#SprayKit_desc_illuminate1_god_of_fortune" + "sticker_material" "illuminate_capsule/god_of_fortune" + "item_rarity" "rare" + } + "2423" + { + "name" "spray_illuminate1_hotpot" + "item_name" "#StickerKit_illuminate_hotpot" + "description_string" "#SprayKit_desc_illuminate1_hotpot" + "sticker_material" "illuminate_capsule/hotpot" + "item_rarity" "rare" + } + "2424" + { + "name" "spray_illuminate1_koi_2" + "item_name" "#StickerKit_illuminate_koi_2" + "description_string" "#SprayKit_desc_illuminate1_koi_2" + "sticker_material" "illuminate_capsule/koi_2" + "item_rarity" "legendary" + } + "2425" + { + "name" "spray_illuminate1_longevity" + "item_name" "#StickerKit_illuminate_longevity" + "description_string" "#SprayKit_desc_illuminate1_longevity" + "sticker_material" "illuminate_capsule/longevity" + "item_rarity" "legendary" + } + "2426" + { + "name" "spray_illuminate1_nezha" + "item_name" "#StickerKit_illuminate_nezha" + "description_string" "#SprayKit_desc_illuminate1_nezha" + "sticker_material" "illuminate_capsule/nezha" + "item_rarity" "mythical" + } + "2427" + { + "name" "spray_illuminate1_noodles" + "item_name" "#StickerKit_illuminate_noodles" + "description_string" "#SprayKit_desc_illuminate1_noodles" + "sticker_material" "illuminate_capsule/noodles" + "item_rarity" "rare" + } + "2428" + { + "name" "spray_illuminate1_panda" + "item_name" "#StickerKit_illuminate_panda" + "description_string" "#SprayKit_desc_illuminate1_panda" + "sticker_material" "illuminate_capsule/panda" + "item_rarity" "rare" + } + "2429" + { + "name" "spray_illuminate1_pixiu" + "item_name" "#StickerKit_illuminate_pixiu" + "description_string" "#SprayKit_desc_illuminate1_pixiu" + "sticker_material" "illuminate_capsule/pixiu" + "item_rarity" "mythical" + } + "2430" + { + "name" "spray_illuminate1_red_koi" + "item_name" "#StickerKit_illuminate_red_koi" + "description_string" "#SprayKit_desc_illuminate1_red_koi" + "sticker_material" "illuminate_capsule/red_koi" + "item_rarity" "mythical" + } + "2431" + { + "name" "spray_illuminate1_rice" + "item_name" "#StickerKit_illuminate_rice" + "description_string" "#SprayKit_desc_illuminate1_rice" + "sticker_material" "illuminate_capsule/rice" + "item_rarity" "rare" + } + "2432" + { + "name" "spray_illuminate1_rice_pudding" + "item_name" "#StickerKit_illuminate_rice_pudding" + "description_string" "#SprayKit_desc_illuminate1_rice_pudding" + "sticker_material" "illuminate_capsule/rice_pudding" + "item_rarity" "rare" + } + "2433" + { + "name" "spray_illuminate1_shaolin_1" + "item_name" "#StickerKit_illuminate_shaolin_1" + "description_string" "#SprayKit_desc_illuminate1_shaolin_1" + "sticker_material" "illuminate_capsule/shaolin_1" + "item_rarity" "rare" + } + "2434" + { + "name" "spray_illuminate1_toytiger" + "item_name" "#StickerKit_illuminate_toytiger" + "description_string" "#SprayKit_desc_illuminate1_toytiger" + "sticker_material" "illuminate_capsule/toytiger" + "item_rarity" "rare" + } + "2435" + { + "name" "spray_illuminate1_zombie" + "item_name" "#StickerKit_illuminate_zombie" + "description_string" "#SprayKit_desc_illuminate1_zombie" + "sticker_material" "illuminate_capsule/zombie_nodrips" + "item_rarity" "rare" + } + } + "items" + { + "4286" + { + "item_name" "#CSGO_crate_sprays_illuminate1" + "name" "crate_sprays_illuminate1" + "item_description" "#CSGO_crate_sprays_illuminate1_desc" + "image_inventory" "econ/weapon_cases/crate_spray_pack_illuminate_1" + "first_sale_date" "2017/09/14" + "prefab" "graffiti_box" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "223" + } + } + "tags" + { + "SprayCapsule" + { + "tag_value" "crate_sprays_illuminate1_lootlist" + "tag_text" "#CSGO_crate_sprays_illuminate1" + "tag_group" "SprayCapsule" + "tag_group_text" "#SFUI_InvTooltip_SprayCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "223" "crate_sprays_illuminate1_lootlist" + } + "client_loot_lists" + { + "crate_sprays_illuminate1_lootlist_rare" + { + "[spray_illuminate1_hotpot]spray" "1" + "[spray_illuminate1_noodles]spray" "1" + "[spray_illuminate1_rice]spray" "1" + "[spray_illuminate1_rice_pudding]spray" "1" + "[spray_illuminate1_god_of_fortune]spray" "1" + "[spray_illuminate1_shaolin_1]spray" "1" + "[spray_illuminate1_zombie]spray" "1" + "[spray_illuminate1_toytiger]spray" "1" + "[spray_illuminate1_panda]spray" "1" + } + "crate_sprays_illuminate1_lootlist_mythical" + { + "[spray_illuminate1_cheongsam_2]spray" "1" + "[spray_illuminate1_cheongsam_1]spray" "1" + "[spray_illuminate1_nezha]spray" "1" + "[spray_illuminate1_fury]spray" "1" + "[spray_illuminate1_red_koi]spray" "1" + "[spray_illuminate1_pixiu]spray" "1" + } + "crate_sprays_illuminate1_lootlist_legendary" + { + "[spray_illuminate1_koi_2]spray" "1" + "[spray_illuminate1_chinese_dragon]spray" "1" + "[spray_illuminate1_longevity]spray" "1" + } + "crate_sprays_illuminate1_lootlist" + { + "crate_sprays_illuminate1_lootlist_rare" "1" + "crate_sprays_illuminate1_lootlist_mythical" "1" + "crate_sprays_illuminate1_lootlist_legendary" "1" + } + } + "paint_kits" + { + "800" + { + "name" "hy_labrat_mp5" + "description_string" "#PaintKit_hy_labrat_mp5" + "description_tag" "#PaintKit_hy_labrat_mp5_Tag" + "style" "2" + "pattern" "labrats" + "color0" "54 67 78" + "color1" "167 247 227" + "color2" "93 11 20" + "color3" "12 12 12" + "pattern_scale" "2.100000" + "phongexponent" "32" + "phongintensity" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "17.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.350000" + } + } + "item_sets" + { + "set_blacksite" + { + "name" "#CSGO_set_blacksite" + "set_description" "#CSGO_set_blacksite_desc" + "is_collection" "1" + "items" + { + "[hy_labrat_mp5]weapon_mp5sd" "1" + } + } + } + "paint_kits_rarity" + { + "hy_labrat_mp5" "mythical" + } + "sticker_kits" + { + "28" + { + "name" "dz_blacksite_foil" + "item_name" "#StickerKit_dz_blacksite_foil" + "description_string" "#StickerKit_desc_dz_blacksite_foil" + "sticker_material" "danger_zone/blacksite_foil" + "item_rarity" "legendary" + } + } + "sticker_kits" + { + "2921" + { + "name" "comm2018_01_bullet_rain" + "item_name" "#StickerKit_comm2018_01_bullet_rain" + "description_string" "#StickerKit_desc_comm2018_01_bullet_rain" + "sticker_material" "comm2018_01/bullet_rain" + "item_rarity" "rare" + } + "2922" + { + "name" "comm2018_01_camper" + "item_name" "#StickerKit_comm2018_01_camper" + "description_string" "#StickerKit_desc_comm2018_01_camper" + "sticker_material" "comm2018_01/camper" + "item_rarity" "rare" + } + "2923" + { + "name" "comm2018_01_dessert_eagle" + "item_name" "#StickerKit_comm2018_01_dessert_eagle" + "description_string" "#StickerKit_desc_comm2018_01_dessert_eagle" + "sticker_material" "comm2018_01/dessert_eagle" + "item_rarity" "rare" + } + "2924" + { + "name" "comm2018_01_devouring_flame" + "item_name" "#StickerKit_comm2018_01_devouring_flame" + "description_string" "#StickerKit_desc_comm2018_01_devouring_flame" + "sticker_material" "comm2018_01/devouring_flame" + "item_rarity" "rare" + } + "2925" + { + "name" "comm2018_01_entry_fragger" + "item_name" "#StickerKit_comm2018_01_entry_fragger" + "description_string" "#StickerKit_desc_comm2018_01_entry_fragger" + "sticker_material" "comm2018_01/entry_fragger" + "item_rarity" "rare" + } + "2926" + { + "name" "comm2018_01_friendly_fire" + "item_name" "#StickerKit_comm2018_01_friendly_fire" + "description_string" "#StickerKit_desc_comm2018_01_friendly_fire" + "sticker_material" "comm2018_01/friendly_fire" + "item_rarity" "rare" + } + "2927" + { + "name" "comm2018_01_retake_expert" + "item_name" "#StickerKit_comm2018_01_retake_expert" + "description_string" "#StickerKit_desc_comm2018_01_retake_expert" + "sticker_material" "comm2018_01/retake_expert" + "item_rarity" "rare" + } + "2928" + { + "name" "comm2018_01_small_arms" + "item_name" "#StickerKit_comm2018_01_small_arms" + "description_string" "#StickerKit_desc_comm2018_01_small_arms" + "sticker_material" "comm2018_01/small_arms" + "item_rarity" "rare" + } + "2929" + { + "name" "comm2018_01_devouring_flame_holo" + "item_name" "#StickerKit_comm2018_01_devouring_flame_holo" + "description_string" "#StickerKit_desc_comm2018_01_devouring_flame_holo" + "sticker_material" "comm2018_01/devouring_flame_holo" + "item_rarity" "mythical" + } + "2930" + { + "name" "comm2018_01_friendly_fire_holo" + "item_name" "#StickerKit_comm2018_01_friendly_fire_holo" + "description_string" "#StickerKit_desc_comm2018_01_friendly_fire_holo" + "sticker_material" "comm2018_01/friendly_fire_holo" + "item_rarity" "mythical" + } + "2931" + { + "name" "comm2018_01_retake_expert_holo" + "item_name" "#StickerKit_comm2018_01_retake_expert_holo" + "description_string" "#StickerKit_desc_comm2018_01_retake_expert_holo" + "sticker_material" "comm2018_01/retake_expert_holo" + "item_rarity" "mythical" + } + "2932" + { + "name" "comm2018_01_small_arms_holo" + "item_name" "#StickerKit_comm2018_01_small_arms_holo" + "description_string" "#StickerKit_desc_comm2018_01_small_arms_holo" + "sticker_material" "comm2018_01/small_arms_holo" + "item_rarity" "mythical" + } + "2933" + { + "name" "comm2018_01_bullet_rain_normal" + "item_name" "#StickerKit_comm2018_01_bullet_rain_normal" + "description_string" "#StickerKit_desc_comm2018_01_bullet_rain_normal" + "sticker_material" "comm2018_01/bullet_rain_normal" + "item_rarity" "legendary" + } + "2934" + { + "name" "comm2018_01_camper_normal" + "item_name" "#StickerKit_comm2018_01_camper_normal" + "description_string" "#StickerKit_desc_comm2018_01_camper_normal" + "sticker_material" "comm2018_01/camper_normal" + "item_rarity" "legendary" + } + } + "items" + { + "4470" + { + "item_name" "#CSGO_crate_sticker_pack_comm2018_01_capsule" + "name" "crate_sticker_pack_comm2018_01_capsule" + "item_description" "#CSGO_crate_sticker_pack_comm2018_01_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_comm2018_01_capsule" + "first_sale_date" "2017/12/11" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "237" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_comm2018_01_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_comm2018_01_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "237" "crate_sticker_pack_comm2018_01_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_comm2018_01_capsule_rare" + { + "[comm2018_01_bullet_rain]sticker" "1" + "[comm2018_01_camper]sticker" "1" + "[comm2018_01_dessert_eagle]sticker" "1" + "[comm2018_01_devouring_flame]sticker" "1" + "[comm2018_01_entry_fragger]sticker" "1" + "[comm2018_01_friendly_fire]sticker" "1" + "[comm2018_01_retake_expert]sticker" "1" + "[comm2018_01_small_arms]sticker" "1" + } + "crate_sticker_pack_comm2018_01_capsule_mythical" + { + "[comm2018_01_devouring_flame_holo]sticker" "1" + "[comm2018_01_friendly_fire_holo]sticker" "1" + "[comm2018_01_retake_expert_holo]sticker" "1" + "[comm2018_01_small_arms_holo]sticker" "1" + } + "crate_sticker_pack_comm2018_01_capsule_legendary" + { + "[comm2018_01_bullet_rain_normal]sticker" "1" + "[comm2018_01_camper_normal]sticker" "1" + } + "crate_sticker_pack_comm2018_01_capsule_lootlist" + { + "crate_sticker_pack_comm2018_01_capsule_rare" "1" + "crate_sticker_pack_comm2018_01_capsule_mythical" "1" + "crate_sticker_pack_comm2018_01_capsule_legendary" "1" + } + } + "sticker_kits" + { + "3440" + { + "name" "skillgroup_silver" + "item_name" "#StickerKit_skillgroup_silver" + "description_string" "#StickerKit_desc_skillgroup_silver" + "sticker_material" "skillgroup_capsule/silver" + "item_rarity" "rare" + } + "3441" + { + "name" "skillgroup_silver_normal" + "item_name" "#StickerKit_skillgroup_silver_normal" + "description_string" "#StickerKit_desc_skillgroup_silver_normal" + "sticker_material" "skillgroup_capsule/silver_normal" + "item_rarity" "legendary" + } + "3442" + { + "name" "skillgroup_gold_nova" + "item_name" "#StickerKit_skillgroup_gold_nova" + "description_string" "#StickerKit_desc_skillgroup_gold_nova" + "sticker_material" "skillgroup_capsule/gold_nova" + "item_rarity" "rare" + } + "3443" + { + "name" "skillgroup_gold_nova_holo" + "item_name" "#StickerKit_skillgroup_gold_nova_holo" + "description_string" "#StickerKit_desc_skillgroup_gold_nova_holo" + "sticker_material" "skillgroup_capsule/gold_nova_holo" + "item_rarity" "mythical" + } + "3444" + { + "name" "skillgroup_master_guardian" + "item_name" "#StickerKit_skillgroup_master_guardian" + "description_string" "#StickerKit_desc_skillgroup_master_guardian" + "sticker_material" "skillgroup_capsule/master_guardian" + "item_rarity" "rare" + } + "3445" + { + "name" "skillgroup_master_guardian_holo" + "item_name" "#StickerKit_skillgroup_master_guardian_holo" + "description_string" "#StickerKit_desc_skillgroup_master_guardian_holo" + "sticker_material" "skillgroup_capsule/master_guardian_holo" + "item_rarity" "mythical" + } + "3446" + { + "name" "skillgroup_mge" + "item_name" "#StickerKit_skillgroup_mge" + "description_string" "#StickerKit_desc_skillgroup_mge" + "sticker_material" "skillgroup_capsule/mge" + "item_rarity" "rare" + } + "3447" + { + "name" "skillgroup_mge_holo" + "item_name" "#StickerKit_skillgroup_mge_holo" + "description_string" "#StickerKit_desc_skillgroup_mge_holo" + "sticker_material" "skillgroup_capsule/mge_holo" + "item_rarity" "mythical" + } + "3448" + { + "name" "skillgroup_dmg" + "item_name" "#StickerKit_skillgroup_dmg" + "description_string" "#StickerKit_desc_skillgroup_dmg" + "sticker_material" "skillgroup_capsule/dmg" + "item_rarity" "rare" + } + "3449" + { + "name" "skillgroup_dmg_holo" + "item_name" "#StickerKit_skillgroup_dmg_holo" + "description_string" "#StickerKit_desc_skillgroup_dmg_holo" + "sticker_material" "skillgroup_capsule/dmg_holo" + "item_rarity" "mythical" + } + "3450" + { + "name" "skillgroup_legendary_eagle" + "item_name" "#StickerKit_skillgroup_legendary_eagle" + "description_string" "#StickerKit_desc_skillgroup_legendary_eagle" + "sticker_material" "skillgroup_capsule/legendary_eagle" + "item_rarity" "rare" + } + "3451" + { + "name" "skillgroup_legendary_eagle_holo" + "item_name" "#StickerKit_skillgroup_legendary_eagle_holo" + "description_string" "#StickerKit_desc_skillgroup_legendary_eagle_holo" + "sticker_material" "skillgroup_capsule/legendary_eagle_holo" + "item_rarity" "mythical" + } + "3452" + { + "name" "skillgroup_lem" + "item_name" "#StickerKit_skillgroup_lem" + "description_string" "#StickerKit_desc_skillgroup_lem" + "sticker_material" "skillgroup_capsule/lem" + "item_rarity" "rare" + } + "3453" + { + "name" "skillgroup_lem_holo" + "item_name" "#StickerKit_skillgroup_lem_holo" + "description_string" "#StickerKit_desc_skillgroup_lem_holo" + "sticker_material" "skillgroup_capsule/lem_holo" + "item_rarity" "mythical" + } + "3454" + { + "name" "skillgroup_smfc" + "item_name" "#StickerKit_skillgroup_smfc" + "description_string" "#StickerKit_desc_skillgroup_smfc" + "sticker_material" "skillgroup_capsule/smfc" + "item_rarity" "rare" + } + "3455" + { + "name" "skillgroup_smfc_holo" + "item_name" "#StickerKit_skillgroup_smfc_holo" + "description_string" "#StickerKit_desc_skillgroup_smfc_holo" + "sticker_material" "skillgroup_capsule/smfc_holo" + "item_rarity" "mythical" + } + "3456" + { + "name" "skillgroup_global_elite" + "item_name" "#StickerKit_skillgroup_global_elite" + "description_string" "#StickerKit_desc_skillgroup_global_elite" + "sticker_material" "skillgroup_capsule/global_elite" + "item_rarity" "rare" + } + "3457" + { + "name" "skillgroup_global_elite_normal" + "item_name" "#StickerKit_skillgroup_global_elite_normal" + "description_string" "#StickerKit_desc_skillgroup_global_elite_normal" + "sticker_material" "skillgroup_capsule/global_elite_normal" + "item_rarity" "legendary" + } + } + "items" + { + "4547" + { + "item_name" "#CSGO_crate_sticker_pack_skillgroup_capsule" + "name" "crate_sticker_pack_skillgroup_capsule" + "item_description" "#CSGO_crate_sticker_pack_skillgroup_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_skillgroup_capsule" + "first_sale_date" "2018/11/15" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "258" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_skillgroup_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_skillgroup_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "258" "crate_sticker_pack_skillgroup_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_skillgroup_capsule_rare" + { + "[skillgroup_silver]sticker" "1" + "[skillgroup_gold_nova]sticker" "1" + "[skillgroup_master_guardian]sticker" "1" + "[skillgroup_mge]sticker" "1" + "[skillgroup_dmg]sticker" "1" + "[skillgroup_legendary_eagle]sticker" "1" + "[skillgroup_lem]sticker" "1" + "[skillgroup_smfc]sticker" "1" + "[skillgroup_global_elite]sticker" "1" + } + "crate_sticker_pack_skillgroup_capsule_mythical" + { + "[skillgroup_gold_nova_holo]sticker" "1" + "[skillgroup_master_guardian_holo]sticker" "1" + "[skillgroup_mge_holo]sticker" "1" + "[skillgroup_dmg_holo]sticker" "1" + "[skillgroup_legendary_eagle_holo]sticker" "1" + "[skillgroup_lem_holo]sticker" "1" + "[skillgroup_smfc_holo]sticker" "1" + } + "crate_sticker_pack_skillgroup_capsule_legendary" + { + "[skillgroup_silver_normal]sticker" "1" + "[skillgroup_global_elite_normal]sticker" "1" + } + "crate_sticker_pack_skillgroup_capsule_lootlist" + { + "crate_sticker_pack_skillgroup_capsule_rare" "1" + "crate_sticker_pack_skillgroup_capsule_mythical" "1" + "crate_sticker_pack_skillgroup_capsule_legendary" "1" + } + } + "sticker_kits" + { + "3945" + { + "name" "feral_predators_baited_glossy" + "item_name" "#StickerKit_feral_predators_baited_glossy" + "description_string" "#StickerKit_desc_feral_predators_baited_glossy" + "sticker_material" "feral_predators/baited_glossy" + "item_rarity" "rare" + } + "3946" + { + "name" "feral_predators_baited_holo" + "item_name" "#StickerKit_feral_predators_baited_holo" + "description_string" "#StickerKit_desc_feral_predators_baited_holo" + "sticker_material" "feral_predators/baited_holo" + "item_rarity" "mythical" + } + "3947" + { + "name" "feral_predators_bite_me_glossy" + "item_name" "#StickerKit_feral_predators_bite_me_glossy" + "description_string" "#StickerKit_desc_feral_predators_bite_me_glossy" + "sticker_material" "feral_predators/bite_me_glossy" + "item_rarity" "rare" + } + "3949" + { + "name" "feral_predators_bite_me_foil" + "item_name" "#StickerKit_feral_predators_bite_me_foil" + "description_string" "#StickerKit_desc_feral_predators_bite_me_foil" + "sticker_material" "feral_predators/bite_me_foil" + "item_rarity" "legendary" + } + "3950" + { + "name" "feral_predators_cluck_glossy" + "item_name" "#StickerKit_feral_predators_cluck_glossy" + "description_string" "#StickerKit_desc_feral_predators_cluck_glossy" + "sticker_material" "feral_predators/cluck_glossy" + "item_rarity" "rare" + } + "3951" + { + "name" "feral_predators_cluck_holo" + "item_name" "#StickerKit_feral_predators_cluck_holo" + "description_string" "#StickerKit_desc_feral_predators_cluck_holo" + "sticker_material" "feral_predators/cluck_holo" + "item_rarity" "mythical" + } + "3952" + { + "name" "feral_predators_first_blood_glossy" + "item_name" "#StickerKit_feral_predators_first_blood_glossy" + "description_string" "#StickerKit_desc_feral_predators_first_blood_glossy" + "sticker_material" "feral_predators/first_blood_glossy" + "item_rarity" "rare" + } + "3953" + { + "name" "feral_predators_first_blood_holo" + "item_name" "#StickerKit_feral_predators_first_blood_holo" + "description_string" "#StickerKit_desc_feral_predators_first_blood_holo" + "sticker_material" "feral_predators/first_blood_holo" + "item_rarity" "mythical" + } + "3954" + { + "name" "feral_predators_free_hugs_glossy" + "item_name" "#StickerKit_feral_predators_free_hugs_glossy" + "description_string" "#StickerKit_desc_feral_predators_free_hugs_glossy" + "sticker_material" "feral_predators/free_hugs_glossy" + "item_rarity" "rare" + } + "3955" + { + "name" "feral_predators_free_hugs_holo" + "item_name" "#StickerKit_feral_predators_free_hugs_holo" + "description_string" "#StickerKit_desc_feral_predators_free_hugs_holo" + "sticker_material" "feral_predators/free_hugs_holo" + "item_rarity" "mythical" + } + "3956" + { + "name" "feral_predators_lurker_glossy" + "item_name" "#StickerKit_feral_predators_lurker_glossy" + "description_string" "#StickerKit_desc_feral_predators_lurker_glossy" + "sticker_material" "feral_predators/lurker_glossy" + "item_rarity" "rare" + } + "3958" + { + "name" "feral_predators_lurker_foil" + "item_name" "#StickerKit_feral_predators_lurker_foil" + "description_string" "#StickerKit_desc_feral_predators_lurker_foil" + "sticker_material" "feral_predators/lurker_foil" + "item_rarity" "legendary" + } + "3959" + { + "name" "feral_predators_one_sting_glossy" + "item_name" "#StickerKit_feral_predators_one_sting_glossy" + "description_string" "#StickerKit_desc_feral_predators_one_sting_glossy" + "sticker_material" "feral_predators/one_sting_glossy" + "item_rarity" "rare" + } + "3960" + { + "name" "feral_predators_one_sting_holo" + "item_name" "#StickerKit_feral_predators_one_sting_holo" + "description_string" "#StickerKit_desc_feral_predators_one_sting_holo" + "sticker_material" "feral_predators/one_sting_holo" + "item_rarity" "mythical" + } + "3961" + { + "name" "feral_predators_scavenger_glossy" + "item_name" "#StickerKit_feral_predators_scavenger_glossy" + "description_string" "#StickerKit_desc_feral_predators_scavenger_glossy" + "sticker_material" "feral_predators/scavenger_glossy" + "item_rarity" "rare" + } + "3962" + { + "name" "feral_predators_scavenger_holo" + "item_name" "#StickerKit_feral_predators_scavenger_holo" + "description_string" "#StickerKit_desc_feral_predators_scavenger_holo" + "sticker_material" "feral_predators/scavenger_holo" + "item_rarity" "mythical" + } + "3963" + { + "name" "feral_predators_toxic_glossy" + "item_name" "#StickerKit_feral_predators_toxic_glossy" + "description_string" "#StickerKit_desc_feral_predators_toxic_glossy" + "sticker_material" "feral_predators/toxic_glossy" + "item_rarity" "rare" + } + "3965" + { + "name" "feral_predators_toxic_foil" + "item_name" "#StickerKit_feral_predators_toxic_foil" + "description_string" "#StickerKit_desc_feral_predators_toxic_foil" + "sticker_material" "feral_predators/toxic_foil" + "item_rarity" "legendary" + } + } + "items" + { + "4599" + { + "item_name" "#CSGO_crate_sticker_pack_feral_predators_capsule" + "item_description" "#CSGO_crate_sticker_pack_feral_predators_capsule_desc" + "name" "crate_sticker_pack_feral_predators_capsule" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_feral_predators_capsule" + "first_sale_date" "2019/04/15" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "275" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_feral_predators_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_feral_predators_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "275" "crate_sticker_pack_feral_predators_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_feral_predators_capsule_rare" + { + "[feral_predators_baited_glossy]sticker" "1" + "[feral_predators_bite_me_glossy]sticker" "1" + "[feral_predators_cluck_glossy]sticker" "1" + "[feral_predators_first_blood_glossy]sticker" "1" + "[feral_predators_free_hugs_glossy]sticker" "1" + "[feral_predators_lurker_glossy]sticker" "1" + "[feral_predators_one_sting_glossy]sticker" "1" + "[feral_predators_scavenger_glossy]sticker" "1" + "[feral_predators_toxic_glossy]sticker" "1" + } + "crate_sticker_pack_feral_predators_capsule_mythical" + { + "[feral_predators_baited_holo]sticker" "1" + "[feral_predators_cluck_holo]sticker" "1" + "[feral_predators_first_blood_holo]sticker" "1" + "[feral_predators_free_hugs_holo]sticker" "1" + "[feral_predators_one_sting_holo]sticker" "1" + "[feral_predators_scavenger_holo]sticker" "1" + } + "crate_sticker_pack_feral_predators_capsule_legendary" + { + "[feral_predators_bite_me_foil]sticker" "1" + "[feral_predators_lurker_foil]sticker" "1" + "[feral_predators_toxic_foil]sticker" "1" + } + "crate_sticker_pack_feral_predators_capsule_lootlist" + { + "crate_sticker_pack_feral_predators_capsule_rare" "1" + "crate_sticker_pack_feral_predators_capsule_mythical" "1" + "crate_sticker_pack_feral_predators_capsule_legendary" "1" + } + } + "sticker_kits" + { + "4504" + { + "name" "shattered_web_counter_tech" + "item_name" "#StickerKit_shattered_web_counter_tech" + "description_string" "#StickerKit_desc_shattered_web_counter_tech" + "sticker_material" "shattered_web/counter_tech" + "item_rarity" "rare" + } + "4505" + { + "name" "shattered_web_gold_web" + "item_name" "#StickerKit_shattered_web_gold_web" + "description_string" "#StickerKit_desc_shattered_web_gold_web" + "sticker_material" "shattered_web/gold_web" + "item_rarity" "rare" + } + "4506" + { + "name" "shattered_web_mastermind" + "item_name" "#StickerKit_shattered_web_mastermind" + "description_string" "#StickerKit_desc_shattered_web_mastermind" + "sticker_material" "shattered_web/mastermind" + "item_rarity" "rare" + } + "4507" + { + "name" "shattered_web_shattered_web" + "item_name" "#StickerKit_shattered_web_shattered_web" + "description_string" "#StickerKit_desc_shattered_web_shattered_web" + "sticker_material" "shattered_web/shattered_web" + "item_rarity" "rare" + } + "4508" + { + "name" "shattered_web_terrorist_tech_m9" + "item_name" "#StickerKit_shattered_web_terrorist_tech_m9" + "description_string" "#StickerKit_desc_shattered_web_terrorist_tech_m9" + "sticker_material" "shattered_web/terrorist_tech_m9" + "item_rarity" "rare" + } + "4509" + { + "name" "shattered_web_web_stuck" + "item_name" "#StickerKit_shattered_web_web_stuck" + "description_string" "#StickerKit_desc_shattered_web_web_stuck" + "sticker_material" "shattered_web/web_stuck" + "item_rarity" "rare" + } + "4510" + { + "name" "shattered_web_mastermind_holo" + "item_name" "#StickerKit_shattered_web_mastermind_holo" + "description_string" "#StickerKit_desc_shattered_web_mastermind_holo" + "sticker_material" "shattered_web/mastermind_holo" + "item_rarity" "mythical" + } + "4511" + { + "name" "shattered_web_web_stuck_holo" + "item_name" "#StickerKit_shattered_web_web_stuck_holo" + "description_string" "#StickerKit_desc_shattered_web_web_stuck_holo" + "sticker_material" "shattered_web/web_stuck_holo" + "item_rarity" "mythical" + } + "4512" + { + "name" "shattered_web_gold_web_normal" + "item_name" "#StickerKit_shattered_web_gold_web_normal" + "description_string" "#StickerKit_desc_shattered_web_gold_web_normal" + "sticker_material" "shattered_web/gold_web_normal" + "item_rarity" "legendary" + } + } + "items" + { + "4600" + { + "item_name" "#CSGO_crate_sticker_pack_shattered_web" + "name" "crate_sticker_pack_shattered_web" + "item_description" "#CSGO_crate_sticker_pack_shattered_web_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_shattered_web_capsule" + "first_sale_date" "2019/10/1" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "291" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_shattered_web_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_shattered_web" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "291" "crate_sticker_pack_shattered_web_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_shattered_web_rare" + { + "[shattered_web_counter_tech]sticker" "1" + "[shattered_web_gold_web]sticker" "1" + "[shattered_web_mastermind]sticker" "1" + "[shattered_web_shattered_web]sticker" "1" + "[shattered_web_terrorist_tech_m9]sticker" "1" + "[shattered_web_web_stuck]sticker" "1" + } + "crate_sticker_pack_shattered_web_mythical" + { + "[shattered_web_mastermind_holo]sticker" "1" + "[shattered_web_web_stuck_holo]sticker" "1" + } + "crate_sticker_pack_shattered_web_legendary" + { + "[shattered_web_gold_web_normal]sticker" "1" + } + "crate_sticker_pack_shattered_web_lootlist" + { + "crate_sticker_pack_shattered_web_rare" "1" + "crate_sticker_pack_shattered_web_mythical" "1" + "crate_sticker_pack_shattered_web_legendary" "1" + } + } + "sticker_kits" + { + "4533" + { + "name" "halo_assassin" + "item_name" "#StickerKit_halo_assassin" + "description_string" "#StickerKit_desc_halo_assassin" + "sticker_material" "halo/assassin" + "item_rarity" "rare" + } + "4534" + { + "name" "halo_chief" + "item_name" "#StickerKit_halo_chief" + "description_string" "#StickerKit_desc_halo_chief" + "sticker_material" "halo/chief" + "item_rarity" "rare" + } + "4535" + { + "name" "halo_dirtymoney" + "item_name" "#StickerKit_halo_dirtymoney" + "description_string" "#StickerKit_desc_halo_dirtymoney" + "sticker_material" "halo/dirtymoney" + "item_rarity" "rare" + } + "4536" + { + "name" "halo_extermination" + "item_name" "#StickerKit_halo_extermination" + "description_string" "#StickerKit_desc_halo_extermination" + "sticker_material" "halo/extermination" + "item_rarity" "rare" + } + "4537" + { + "name" "halo_incineration" + "item_name" "#StickerKit_halo_incineration" + "description_string" "#StickerKit_desc_halo_incineration" + "sticker_material" "halo/incineration" + "item_rarity" "rare" + } + "4538" + { + "name" "halo_killjoy" + "item_name" "#StickerKit_halo_killjoy" + "description_string" "#StickerKit_desc_halo_killjoy" + "sticker_material" "halo/killjoy" + "item_rarity" "rare" + } + "4539" + { + "name" "halo_legendary" + "item_name" "#StickerKit_halo_legendary" + "description_string" "#StickerKit_desc_halo_legendary" + "sticker_material" "halo/legendary" + "item_rarity" "rare" + } + "4540" + { + "name" "halo_misterchief" + "item_name" "#StickerKit_halo_misterchief" + "description_string" "#StickerKit_desc_halo_misterchief" + "sticker_material" "halo/misterchief" + "item_rarity" "rare" + } + "4541" + { + "name" "halo_noble" + "item_name" "#StickerKit_halo_noble" + "description_string" "#StickerKit_desc_halo_noble" + "sticker_material" "halo/noble" + "item_rarity" "rare" + } + "4542" + { + "name" "halo_spartan" + "item_name" "#StickerKit_halo_spartan" + "description_string" "#StickerKit_desc_halo_spartan" + "sticker_material" "halo/spartan" + "item_rarity" "rare" + } + "4543" + { + "name" "halo_assassin_holo" + "item_name" "#StickerKit_halo_assassin_holo" + "description_string" "#StickerKit_desc_halo_assassin_holo" + "sticker_material" "halo/assassin_holo" + "item_rarity" "mythical" + } + "4544" + { + "name" "halo_chief_holo" + "item_name" "#StickerKit_halo_chief_holo" + "description_string" "#StickerKit_desc_halo_chief_holo" + "sticker_material" "halo/chief_holo" + "item_rarity" "mythical" + } + "4545" + { + "name" "halo_incineration_holo" + "item_name" "#StickerKit_halo_incineration_holo" + "description_string" "#StickerKit_desc_halo_incineration_holo" + "sticker_material" "halo/incineration_holo" + "item_rarity" "mythical" + } + "4546" + { + "name" "halo_killjoy_holo" + "item_name" "#StickerKit_halo_killjoy_holo" + "description_string" "#StickerKit_desc_halo_killjoy_holo" + "sticker_material" "halo/killjoy_holo" + "item_rarity" "mythical" + } + "4547" + { + "name" "halo_noble_holo" + "item_name" "#StickerKit_halo_noble_holo" + "description_string" "#StickerKit_desc_halo_noble_holo" + "sticker_material" "halo/noble_holo" + "item_rarity" "mythical" + } + "4548" + { + "name" "halo_chief_foil" + "item_name" "#StickerKit_halo_chief_foil" + "description_string" "#StickerKit_desc_halo_chief_foil" + "sticker_material" "halo/chief_foil" + "item_rarity" "legendary" + } + "4549" + { + "name" "halo_legendary_foil" + "item_name" "#StickerKit_halo_legendary_foil" + "description_string" "#StickerKit_desc_halo_legendary_foil" + "sticker_material" "halo/legendary_foil" + "item_rarity" "legendary" + } + } + "items" + { + "4597" + { + "item_name" "#CSGO_crate_sticker_pack_halo_capsule" + "name" "crate_sticker_pack_halo_capsule" + "item_description" "#CSGO_crate_sticker_pack_halo_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_halo_capsule" + "first_sale_date" "2019/11/25" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "295" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_halo_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_halo_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "295" "crate_sticker_pack_halo_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_halo_capsule_rare" + { + "[halo_assassin]sticker" "1" + "[halo_chief]sticker" "1" + "[halo_dirtymoney]sticker" "1" + "[halo_extermination]sticker" "1" + "[halo_incineration]sticker" "1" + "[halo_killjoy]sticker" "1" + "[halo_legendary]sticker" "1" + "[halo_misterchief]sticker" "1" + "[halo_noble]sticker" "1" + "[halo_spartan]sticker" "1" + } + "crate_sticker_pack_halo_capsule_mythical" + { + "[halo_assassin_holo]sticker" "1" + "[halo_chief_holo]sticker" "1" + "[halo_incineration_holo]sticker" "1" + "[halo_killjoy_holo]sticker" "1" + "[halo_noble_holo]sticker" "1" + } + "crate_sticker_pack_halo_capsule_legendary" + { + "[halo_chief_foil]sticker" "1" + "[halo_legendary_foil]sticker" "1" + } + "crate_sticker_pack_halo_capsule_lootlist" + { + "crate_sticker_pack_halo_capsule_rare" "1" + "crate_sticker_pack_halo_capsule_mythical" "1" + "crate_sticker_pack_halo_capsule_legendary" "1" + } + } + "sticker_kits" + { + "4614" + { + "name" "warhammer_adepta_sororitas_paper" + "item_name" "#StickerKit_warhammer_adepta_sororitas_paper" + "description_string" "#StickerKit_desc_warhammer_adepta_sororitas_paper" + "sticker_material" "warhammer/adepta_sororitas_paper" + "item_rarity" "rare" + } + "4615" + { + "name" "warhammer_aeldari_paper" + "item_name" "#StickerKit_warhammer_aeldari_paper" + "description_string" "#StickerKit_desc_warhammer_aeldari_paper" + "sticker_material" "warhammer/aeldari_paper" + "item_rarity" "rare" + } + "4616" + { + "name" "warhammer_full_buy_paper" + "item_name" "#StickerKit_warhammer_full_buy_paper" + "description_string" "#StickerKit_desc_warhammer_full_buy_paper" + "sticker_material" "warhammer/full_buy_paper" + "item_rarity" "rare" + } + "4617" + { + "name" "warhammer_heresy_paper" + "item_name" "#StickerKit_warhammer_heresy_paper" + "description_string" "#StickerKit_desc_warhammer_heresy_paper" + "sticker_material" "warhammer/heresy_paper" + "item_rarity" "rare" + } + "4618" + { + "name" "warhammer_necron_paper" + "item_name" "#StickerKit_warhammer_necron_paper" + "description_string" "#StickerKit_desc_warhammer_necron_paper" + "sticker_material" "warhammer/necron_paper" + "item_rarity" "rare" + } + "4619" + { + "name" "warhammer_ork_waaagh_paper" + "item_name" "#StickerKit_warhammer_ork_waaagh_paper" + "description_string" "#StickerKit_desc_warhammer_ork_waaagh_paper" + "sticker_material" "warhammer/ork_waaagh_paper" + "item_rarity" "rare" + } + "4620" + { + "name" "warhammer_primaris_keychain_paper" + "item_name" "#StickerKit_warhammer_primaris_keychain_paper" + "description_string" "#StickerKit_desc_warhammer_primaris_keychain_paper" + "sticker_material" "warhammer/primaris_keychain_paper" + "item_rarity" "rare" + } + "4621" + { + "name" "warhammer_repulsor_paper" + "item_name" "#StickerKit_warhammer_repulsor_paper" + "description_string" "#StickerKit_desc_warhammer_repulsor_paper" + "sticker_material" "warhammer/repulsor_paper" + "item_rarity" "rare" + } + "4622" + { + "name" "warhammer_space_marine_paper" + "item_name" "#StickerKit_warhammer_space_marine_paper" + "description_string" "#StickerKit_desc_warhammer_space_marine_paper" + "sticker_material" "warhammer/space_marine_paper" + "item_rarity" "rare" + } + "4623" + { + "name" "warhammer_tyranids_ravener_paper" + "item_name" "#StickerKit_warhammer_tyranids_ravener_paper" + "description_string" "#StickerKit_desc_warhammer_tyranids_ravener_paper" + "sticker_material" "warhammer/tyranids_ravener_paper" + "item_rarity" "rare" + } + "4624" + { + "name" "warhammer_heresy_holo" + "item_name" "#StickerKit_warhammer_heresy_holo" + "description_string" "#StickerKit_desc_warhammer_heresy_holo" + "sticker_material" "warhammer/heresy_holo" + "item_rarity" "mythical" + } + "4625" + { + "name" "warhammer_lord_of_skulls_holo" + "item_name" "#StickerKit_warhammer_lord_of_skulls_holo" + "description_string" "#StickerKit_desc_warhammer_lord_of_skulls_holo" + "sticker_material" "warhammer/lord_of_skulls_holo" + "item_rarity" "mythical" + } + "4626" + { + "name" "warhammer_space_marine_holo" + "item_name" "#StickerKit_warhammer_space_marine_holo" + "description_string" "#StickerKit_desc_warhammer_space_marine_holo" + "sticker_material" "warhammer/space_marine_holo" + "item_rarity" "mythical" + } + "4627" + { + "name" "warhammer_tyranids_hive_tyrant_holo" + "item_name" "#StickerKit_warhammer_tyranids_hive_tyrant_holo" + "description_string" "#StickerKit_desc_warhammer_tyranids_hive_tyrant_holo" + "sticker_material" "warhammer/tyranids_hive_tyrant_holo" + "item_rarity" "mythical" + } + "4628" + { + "name" "warhammer_bloodthirster_foil" + "item_name" "#StickerKit_warhammer_bloodthirster_foil" + "description_string" "#StickerKit_desc_warhammer_bloodthirster_foil" + "sticker_material" "warhammer/bloodthirster_foil" + "item_rarity" "legendary" + } + "4629" + { + "name" "warhammer_chaos_marine_foil" + "item_name" "#StickerKit_warhammer_chaos_marine_foil" + "description_string" "#StickerKit_desc_warhammer_chaos_marine_foil" + "sticker_material" "warhammer/chaos_marine_foil" + "item_rarity" "legendary" + } + "4630" + { + "name" "warhammer_emperor_foil" + "item_name" "#StickerKit_warhammer_emperor_foil" + "description_string" "#StickerKit_desc_warhammer_emperor_foil" + "sticker_material" "warhammer/emperor_foil" + "item_rarity" "legendary" + } + } + "items" + { + "4616" + { + "item_name" "#CSGO_crate_sticker_pack_warhammer" + "name" "crate_sticker_pack_warhammer" + "item_description" "#CSGO_crate_sticker_pack_warhammer_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_warhammer_capsule" + "first_sale_date" "2020/05/28" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "306" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_warhammer_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_warhammer" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "306" "crate_sticker_pack_warhammer_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_warhammer_rare" + { + "[warhammer_adepta_sororitas_paper]sticker" "1" + "[warhammer_aeldari_paper]sticker" "1" + "[warhammer_full_buy_paper]sticker" "1" + "[warhammer_heresy_paper]sticker" "1" + "[warhammer_necron_paper]sticker" "1" + "[warhammer_ork_waaagh_paper]sticker" "1" + "[warhammer_primaris_keychain_paper]sticker" "1" + "[warhammer_repulsor_paper]sticker" "1" + "[warhammer_space_marine_paper]sticker" "1" + "[warhammer_tyranids_ravener_paper]sticker" "1" + } + "crate_sticker_pack_warhammer_mythical" + { + "[warhammer_heresy_holo]sticker" "1" + "[warhammer_lord_of_skulls_holo]sticker" "1" + "[warhammer_space_marine_holo]sticker" "1" + "[warhammer_tyranids_hive_tyrant_holo]sticker" "1" + } + "crate_sticker_pack_warhammer_legendary" + { + "[warhammer_bloodthirster_foil]sticker" "1" + "[warhammer_chaos_marine_foil]sticker" "1" + "[warhammer_emperor_foil]sticker" "1" + } + "crate_sticker_pack_warhammer_lootlist" + { + "crate_sticker_pack_warhammer_rare" "1" + "crate_sticker_pack_warhammer_mythical" "1" + "crate_sticker_pack_warhammer_legendary" "1" + } + } + "sticker_kits" + { + "4681" + { + "name" "broken_fang_ancient_beast" + "item_name" "#StickerKit_broken_fang_ancient_beast" + "description_string" "#StickerKit_desc_broken_fang_ancient_beast" + "sticker_material" "broken_fang/ancient_beast" + "item_rarity" "rare" + } + "4682" + { + "name" "broken_fang_ancient_marauder" + "item_name" "#StickerKit_broken_fang_ancient_marauder" + "description_string" "#StickerKit_desc_broken_fang_ancient_marauder" + "sticker_material" "broken_fang/ancient_marauder" + "item_rarity" "rare" + } + "4683" + { + "name" "broken_fang_ancient_protector" + "item_name" "#StickerKit_broken_fang_ancient_protector" + "description_string" "#StickerKit_desc_broken_fang_ancient_protector" + "sticker_material" "broken_fang/ancient_protector" + "item_rarity" "rare" + } + "4684" + { + "name" "broken_fang_badge_of_service" + "item_name" "#StickerKit_broken_fang_badge_of_service" + "description_string" "#StickerKit_desc_broken_fang_badge_of_service" + "sticker_material" "broken_fang/badge_of_service" + "item_rarity" "rare" + } + "4685" + { + "name" "broken_fang_battle_scarred" + "item_name" "#StickerKit_broken_fang_battle_scarred" + "description_string" "#StickerKit_desc_broken_fang_battle_scarred" + "sticker_material" "broken_fang/battle_scarred" + "item_rarity" "rare" + } + "4686" + { + "name" "broken_fang_broken_fang" + "item_name" "#StickerKit_broken_fang_broken_fang" + "description_string" "#StickerKit_desc_broken_fang_broken_fang" + "sticker_material" "broken_fang/broken_fang" + "item_rarity" "rare" + } + "4687" + { + "name" "broken_fang_coiled_strike" + "item_name" "#StickerKit_broken_fang_coiled_strike" + "description_string" "#StickerKit_desc_broken_fang_coiled_strike" + "sticker_material" "broken_fang/coiled_strike" + "item_rarity" "rare" + } + "4688" + { + "name" "broken_fang_enemy_spotted" + "item_name" "#StickerKit_broken_fang_enemy_spotted" + "description_string" "#StickerKit_desc_broken_fang_enemy_spotted" + "sticker_material" "broken_fang/enemy_spotted" + "item_rarity" "rare" + } + "4689" + { + "name" "broken_fang_stalking_prey" + "item_name" "#StickerKit_broken_fang_stalking_prey" + "description_string" "#StickerKit_desc_broken_fang_stalking_prey" + "sticker_material" "broken_fang/stalking_prey" + "item_rarity" "rare" + } + "4690" + { + "name" "broken_fang_stone_scales" + "item_name" "#StickerKit_broken_fang_stone_scales" + "description_string" "#StickerKit_desc_broken_fang_stone_scales" + "sticker_material" "broken_fang/stone_scales" + "item_rarity" "rare" + } + "4691" + { + "name" "broken_fang_battle_scarred_holo" + "item_name" "#StickerKit_broken_fang_battle_scarred_holo" + "description_string" "#StickerKit_desc_broken_fang_battle_scarred_holo" + "sticker_material" "broken_fang/battle_scarred_holo" + "item_rarity" "mythical" + } + "4692" + { + "name" "broken_fang_broken_fang_holo" + "item_name" "#StickerKit_broken_fang_broken_fang_holo" + "description_string" "#StickerKit_desc_broken_fang_broken_fang_holo" + "sticker_material" "broken_fang/broken_fang_holo" + "item_rarity" "mythical" + } + "4693" + { + "name" "broken_fang_coiled_strike_holo" + "item_name" "#StickerKit_broken_fang_coiled_strike_holo" + "description_string" "#StickerKit_desc_broken_fang_coiled_strike_holo" + "sticker_material" "broken_fang/coiled_strike_holo" + "item_rarity" "mythical" + } + "4694" + { + "name" "broken_fang_enemy_spotted_holo" + "item_name" "#StickerKit_broken_fang_enemy_spotted_holo" + "description_string" "#StickerKit_desc_broken_fang_enemy_spotted_holo" + "sticker_material" "broken_fang/enemy_spotted_holo" + "item_rarity" "mythical" + } + "4695" + { + "name" "broken_fang_ancient_beast_foil" + "item_name" "#StickerKit_broken_fang_ancient_beast_foil" + "description_string" "#StickerKit_desc_broken_fang_ancient_beast_foil" + "sticker_material" "broken_fang/ancient_beast_foil" + "item_rarity" "legendary" + } + "4696" + { + "name" "broken_fang_stone_scales_foil" + "item_name" "#StickerKit_broken_fang_stone_scales_foil" + "description_string" "#StickerKit_desc_broken_fang_stone_scales_foil" + "sticker_material" "broken_fang/stone_scales_foil" + "item_rarity" "legendary" + } + } + "items" + { + "4729" + { + "item_name" "#CSGO_crate_sticker_pack_broken_fang" + "name" "crate_sticker_pack_broken_fang" + "item_description" "#CSGO_crate_sticker_pack_broken_fang_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_broken_fang_capsule" + "first_sale_date" "2020/11/9" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "310" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_broken_fang_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_broken_fang" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "310" "crate_sticker_pack_broken_fang_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_broken_fang_rare" + { + "[broken_fang_ancient_beast]sticker" "1" + "[broken_fang_ancient_marauder]sticker" "1" + "[broken_fang_ancient_protector]sticker" "1" + "[broken_fang_badge_of_service]sticker" "1" + "[broken_fang_battle_scarred]sticker" "1" + "[broken_fang_broken_fang]sticker" "1" + "[broken_fang_coiled_strike]sticker" "1" + "[broken_fang_enemy_spotted]sticker" "1" + "[broken_fang_stalking_prey]sticker" "1" + "[broken_fang_stone_scales]sticker" "1" + } + "crate_sticker_pack_broken_fang_mythical" + { + "[broken_fang_battle_scarred_holo]sticker" "1" + "[broken_fang_broken_fang_holo]sticker" "1" + "[broken_fang_coiled_strike_holo]sticker" "1" + "[broken_fang_enemy_spotted_holo]sticker" "1" + } + "crate_sticker_pack_broken_fang_legendary" + { + "[broken_fang_ancient_beast_foil]sticker" "1" + "[broken_fang_stone_scales_foil]sticker" "1" + } + "crate_sticker_pack_broken_fang_lootlist" + { + "crate_sticker_pack_broken_fang_rare" "1" + "crate_sticker_pack_broken_fang_mythical" "1" + "crate_sticker_pack_broken_fang_legendary" "1" + } + } + "paint_kits" + { + "690" + { + "name" "gs_aug_stymphalian_birds" + "description_string" "#PaintKit_gs_aug_stymphalian_birds" + "description_tag" "#PaintKit_gs_aug_stymphalian_birds_Tag" + "style" "9" + "pattern" "workshop/aug_stymphalian_birds" + "color0" "117 109 99" + "color1" "154 157 150" + "color2" "56 69 75" + "color3" "241 203 148" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "10" + "phongalbedoboost" "83" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.630000" + } + "691" + { + "name" "gs_awp_death" + "description_string" "#PaintKit_gs_awp_death" + "description_tag" "#PaintKit_gs_awp_death_Tag" + "style" "9" + "pattern" "workshop/awp_death" + "color0" "192 59 0" + "color1" "224 221 192" + "color2" "228 152 119" + "color3" "215 133 0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "16" + "phongalbedoboost" "65" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.640000" + } + "692" + { + "name" "cu_bizon_riot" + "description_string" "#PaintKit_cu_bizon_riot" + "description_tag" "#PaintKit_cu_bizon_riot_Tag" + "style" "7" + "pattern" "workshop/bizon_riot" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "8" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "693" + { + "name" "gs_fiveseven_hot_rod_violet" + "description_string" "#PaintKit_gs_fiveseven_hot_rod_violet" + "description_tag" "#PaintKit_gs_fiveseven_hot_rod_violet_Tag" + "style" "9" + "pattern" "workshop/fiveseven_hot_rod_violet" + "color0" "202 202 202" + "color1" "178 178 178" + "color2" "110 110 110" + "color3" "54 54 54" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "0" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "694" + { + "name" "aa_glock_18_urban_moon_fever" + "description_string" "#PaintKit_aa_glock_18_urban_moon_fever" + "description_tag" "#PaintKit_aa_glock_18_urban_moon_fever_Tag" + "style" "6" + "pattern" "workshop/glock_18_urban_moon_fever" + "color0" "30 16 50" + "color1" "162 41 145" + "color2" "16 6 17" + "color3" "190 191 156" + "pattern_scale" "2.200000" + "phongexponent" "255" + "phongalbedoboost" "30" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.800000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "695" + { + "name" "cu_m4a4_neo_noir" + "description_string" "#PaintKit_cu_m4a4_neo_noir" + "description_tag" "#PaintKit_cu_m4a4_neo_noir_Tag" + "style" "7" + "pattern" "workshop/m4a4_neo_noir" + "use_normal" "1" + "normal" "workshop/m4a4_neo_noir_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + } + "696" + { + "name" "gs_mp7_bloodsport" + "description_string" "#PaintKit_gs_mp7_bloodsport" + "description_tag" "#PaintKit_gs_mp7_bloodsport_Tag" + "style" "9" + "pattern" "workshop/mp7_bloodsport" + "color0" "255 255 255" + "color1" "204 204 204" + "color2" "23 13 13" + "color3" "21 16 16" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "12" + "phongalbedoboost" "6" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "697" + { + "name" "cu_mp9_black_sand" + "description_string" "#PaintKit_cu_mp9_black_sand" + "description_tag" "#PaintKit_cu_mp9_black_sand_Tag" + "style" "7" + "pattern" "workshop/mp9_black_sand" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "698" + { + "name" "sp_negev_lionfish" + "description_string" "#PaintKit_sp_negev_lionfish" + "description_tag" "#PaintKit_sp_negev_lionfish_Tag" + "style" "3" + "pattern" "workshop/negev_lionfish" + "color0" "0 0 0" + "color1" "185 55 32" + "color2" "206 200 187" + "color3" "178 75 32" + "pattern_scale" "1.300000" + "phongexponent" "200" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-5.000000" + "pattern_rotate_end" "5.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "699" + { + "name" "gs_nova_anchorite" + "description_string" "#PaintKit_gs_nova_anchorite" + "description_tag" "#PaintKit_gs_nova_anchorite_Tag" + "style" "9" + "pattern" "workshop/nova_anchorite" + "use_normal" "1" + "normal" "workshop/nova_anchorite_normal" + "color0" "73 46 34" + "color1" "204 204 204" + "color2" "143 143 143" + "color3" "20 20 20" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "15" + "phongalbedoboost" "1" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "700" + { + "name" "cu_p2000_urban_hazard" + "description_string" "#PaintKit_cu_p2000_urban_hazard" + "description_tag" "#PaintKit_cu_p2000_urban_hazard_Tag" + "style" "7" + "pattern" "workshop/p2000_urban_hazard" + "use_normal" "1" + "normal" "workshop/p2000_urban_hazard_normal" + "pattern_scale" "1.000000" + "phongexponent" "225" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "701" + { + "name" "gs_revolver_tread" + "description_string" "#PaintKit_gs_revolver_tread" + "description_tag" "#PaintKit_gs_revolver_tread_Tag" + "style" "9" + "pattern" "workshop/revolver_tread" + "use_normal" "1" + "normal" "workshop/revolver_tread_normal" + "color0" "128 128 128 255" + "color1" "214 214 214" + "color2" "125 113 103" + "color3" "91 99 100" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "40" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "702" + { + "name" "sp_sg533_aloha" + "description_string" "#PaintKit_sp_sg533_aloha" + "description_tag" "#PaintKit_sp_sg533_aloha_Tag" + "style" "3" + "pattern" "workshop/sg533_aloha" + "color0" "47 50 57" + "color1" "39 36 31" + "color2" "34 116 169" + "color3" "68 61 99" + "pattern_scale" "2.000000" + "phongexponent" "225" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "25.000000" + "pattern_rotate_end" "300.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "703" + { + "name" "aq_mag7_swag7" + "description_string" "#PaintKit_aq_mag7_swag7" + "description_tag" "#PaintKit_aq_mag7_swag7_Tag" + "style" "8" + "pattern" "workshop/mag7_swag7" + "color0" "99 100 99" + "color1" "102 153 156" + "color2" "53 82 84" + "color3" "113 165 164" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongalbedoboost" "254" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.920000" + } + "704" + { + "name" "cu_ump45_white_fang" + "description_string" "#PaintKit_cu_ump45_white_fang" + "description_tag" "#PaintKit_cu_ump45_white_fang_Tag" + "style" "7" + "pattern" "workshop/ump45_white_fang" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "705" + { + "name" "cu_usp_cut" + "description_string" "#PaintKit_cu_usp_cut" + "description_tag" "#PaintKit_cu_usp_cut_Tag" + "style" "7" + "pattern" "workshop/usp_cut" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "706" + { + "name" "cu_xm1014_oxide_blaze" + "description_string" "#PaintKit_cu_xm1014_oxide_blaze" + "description_tag" "#PaintKit_cu_xm1014_oxide_blaze_Tag" + "style" "7" + "pattern" "workshop/xm1014_oxide_blaze" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + } + "items" + { + "1373" + { + "name" "community_19 Key" + "item_name" "#CSGO_crate_key_community_19" + "item_description" "#CSGO_crate_key_community_19_desc" + "first_sale_date" "2017-12-20" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_19" + "tool" + { + "restriction" "crate_community_19" + } + } + "4471" + { + "item_name" "#CSGO_crate_community_19" + "item_description" "#CSGO_crate_community_19_desc" + "name" "crate_community_19" + "image_inventory" "econ/weapon_cases/crate_community_19" + "model_player" "models/props/crates/csgo_drop_crate_clutch.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1373" "1" + } + "tool" + { + "restriction" "crate_community_19" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "238" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_19" + "tag_text" "#CSGO_set_community_19" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_15_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_15_unusual_itemname" + } + } + "revolving_loot_lists" + { + "238" "crate_community_19" + } + "client_loot_lists" + { + "crate_community_19_rare" + { + "[cu_bizon_riot]weapon_bizon" "1" + "[gs_fiveseven_hot_rod_violet]weapon_fiveseven" "1" + "[cu_mp9_black_sand]weapon_mp9" "1" + "[cu_p2000_urban_hazard]weapon_hkp2000" "1" + "[gs_revolver_tread]weapon_revolver" "1" + "[sp_sg533_aloha]weapon_sg556" "1" + "[cu_xm1014_oxide_blaze]weapon_xm1014" "1" + } + "crate_community_19_mythical" + { + "[aa_glock_18_urban_moon_fever]weapon_glock" "1" + "[sp_negev_lionfish]weapon_negev" "1" + "[gs_nova_anchorite]weapon_nova" "1" + "[aq_mag7_swag7]weapon_mag7" "1" + "[cu_ump45_white_fang]weapon_ump45" "1" + } + "crate_community_19_legendary" + { + "[gs_aug_stymphalian_birds]weapon_aug" "1" + "[gs_awp_death]weapon_awp" "1" + "[cu_usp_cut]weapon_usp_silencer" "1" + } + "crate_community_19_ancient" + { + "[cu_m4a4_neo_noir]weapon_m4a1" "1" + "[gs_mp7_bloodsport]weapon_mp7" "1" + } + "crate_community_19" + { + "crate_community_19_rare" "1" + "crate_community_19_mythical" "1" + "crate_community_19_legendary" "1" + "crate_community_19_ancient" "1" + "set_community_19_unusual" "1" + } + } + "item_sets" + { + "set_community_19" + { + "name" "#CSGO_set_community_19" + "set_description" "#CSGO_set_community_19_desc" + "is_collection" "1" + "items" + { + "[cu_bizon_riot]weapon_bizon" "1" + "[gs_fiveseven_hot_rod_violet]weapon_fiveseven" "1" + "[cu_mp9_black_sand]weapon_mp9" "1" + "[cu_p2000_urban_hazard]weapon_hkp2000" "1" + "[gs_revolver_tread]weapon_revolver" "1" + "[sp_sg533_aloha]weapon_sg556" "1" + "[cu_xm1014_oxide_blaze]weapon_xm1014" "1" + "[aa_glock_18_urban_moon_fever]weapon_glock" "1" + "[sp_negev_lionfish]weapon_negev" "1" + "[gs_nova_anchorite]weapon_nova" "1" + "[aq_mag7_swag7]weapon_mag7" "1" + "[cu_ump45_white_fang]weapon_ump45" "1" + "[gs_aug_stymphalian_birds]weapon_aug" "1" + "[gs_awp_death]weapon_awp" "1" + "[cu_usp_cut]weapon_usp_silencer" "1" + "[cu_m4a4_neo_noir]weapon_m4a1" "1" + "[gs_mp7_bloodsport]weapon_mp7" "1" + } + } + } + "paint_kits_rarity" + { + "slick_snakeskin_white" "ancient" + "slick_plaid_purple" "ancient" + "slick_stitched_black_orange" "ancient" + "slick_stitched_green_grey" "ancient" + "sporty_poison_frog_blue_white" "ancient" + "sporty_poison_frog_red_green" "ancient" + "sporty_black_webbing_yellow" "ancient" + "sporty_blue_pink" "ancient" + "motorcycle_choco_boom" "ancient" + "motorcycle_basic_green_orange" "ancient" + "motorcycle_yellow_camo" "ancient" + "motorcycle_trigrid_blue" "ancient" + "handwrap_leathery_fabric_blue_skulls" "ancient" + "handwrap_leathery_fabric_geometric_blue" "ancient" + "handwrap_leathery_ducttape" "ancient" + "handwrap_leathery_fabric_green_camo" "ancient" + "bloodhound_hydra_black_green" "ancient" + "bloodhound_hydra_green_leather_mesh_brass" "ancient" + "bloodhound_hydra_snakeskin_brass" "ancient" + "bloodhound_hydra_case_hardened" "ancient" + "specialist_webs_red" "ancient" + "specialist_forest_brown" "ancient" + "specialist_fade" "ancient" + "specialist_winterhex" "ancient" + "gs_aug_stymphalian_birds" "legendary" + "gs_awp_death" "mythical" + "cu_bizon_riot" "rare" + "gs_fiveseven_hot_rod_violet" "rare" + "aa_glock_18_urban_moon_fever" "rare" + "cu_m4a4_neo_noir" "legendary" + "gs_mp7_bloodsport" "ancient" + "cu_mp9_black_sand" "rare" + "sp_negev_lionfish" "mythical" + "gs_nova_anchorite" "mythical" + "cu_p2000_urban_hazard" "uncommon" + "gs_revolver_tread" "rare" + "sp_sg533_aloha" "rare" + "aq_mag7_swag7" "mythical" + "cu_ump45_white_fang" "mythical" + "cu_usp_cut" "mythical" + "cu_xm1014_oxide_blaze" "rare" + } + "paint_kits" + { + "707" + { + "name" "cu_ak_neon_rider" + "description_string" "#PaintKit_cu_ak_neon_rider" + "description_tag" "#PaintKit_cu_ak_neon_rider_Tag" + "style" "7" + "pattern" "workshop/ak_neon_rider" + "use_normal" "1" + "normal" "workshop/ak_neon_rider_normal" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongintensity" "65" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "708" + { + "name" "hy_aug_torn_orange" + "description_string" "#PaintKit_hy_aug_torn_orange" + "description_tag" "#PaintKit_hy_aug_torn_orange_Tag" + "style" "2" + "pattern" "workshop/aug_torn_orange" + "color0" "26 26 26" + "color1" "83 97 98" + "color2" "199 117 52" + "color3" "14 14 14" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongintensity" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "709" + { + "name" "cu_cz75_eco" + "description_string" "#PaintKit_cu_cz75_eco" + "description_tag" "#PaintKit_cu_cz75_eco_Tag" + "style" "7" + "pattern" "workshop/cz75_eco" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "710" + { + "name" "sp_elites_winter_raider" + "description_string" "#PaintKit_sp_elites_winter_raider" + "description_tag" "#PaintKit_sp_elites_winter_raider_Tag" + "style" "3" + "pattern" "workshop/elites_winter_raider" + "color0" "24 24 25" + "color1" "39 117 167" + "color2" "36 36 36" + "color3" "105 105 105" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "50" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "45.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "711" + { + "name" "gs_deagle_aggressor" + "description_string" "#PaintKit_gs_deagle_aggressor" + "description_tag" "#PaintKit_gs_deagle_aggressor_Tag" + "style" "9" + "pattern" "workshop/deagle_aggressor" + "use_normal" "1" + "normal" "workshop/deagle_aggressor_normal" + "color0" "128 128 128 255" + "color1" "196 196 196" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "10" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "712" + { + "name" "gs_g3sg1_buccaneer" + "description_string" "#PaintKit_gs_g3sg1_buccaneer" + "description_tag" "#PaintKit_gs_g3sg1_buccaneer_Tag" + "style" "9" + "pattern" "workshop/g3sg1_buccaneer" + "use_normal" "1" + "normal" "workshop/g3sg1_buccaneer_normal" + "color0" "128 128 128 255" + "color1" "213 213 213" + "color2" "22 104 105" + "color3" "17 80 3" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "18" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "713" + { + "name" "gs_glock_thunder_dust" + "description_string" "#PaintKit_gs_glock_thunder_dust" + "description_tag" "#PaintKit_gs_glock_thunder_dust_Tag" + "style" "9" + "pattern" "workshop/glock_thunder_dust" + "use_normal" "1" + "normal" "workshop/glock_thunder_dust_normal" + "color0" "83 83 83" + "color1" "170 170 170" + "color2" "77 65 56" + "color3" "54 45 34" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "10" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "714" + { + "name" "cu_m4a1s_nightmare" + "description_string" "#PaintKit_cu_m4a1s_nightmare" + "description_tag" "#PaintKit_cu_m4a1s_nightmare_Tag" + "style" "7" + "pattern" "workshop/m4a1s_nightmare" + "pattern_scale" "1.000000" + "phongexponent" "228" + "phongintensity" "7" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "715" + { + "name" "cu_mp9_vein" + "description_string" "#PaintKit_cu_mp9_vein" + "description_tag" "#PaintKit_cu_mp9_vein_Tag" + "style" "7" + "pattern" "workshop/mp9_vein" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "716" + { + "name" "cu_nova_toy_soldier" + "description_string" "#PaintKit_cu_nova_toy_soldier" + "description_tag" "#PaintKit_cu_nova_toy_soldier_Tag" + "style" "7" + "pattern" "workshop/nova_toysoldier" + "use_normal" "1" + "normal" "workshop/nova_toysoldier_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "150" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "717" + { + "name" "gs_p90_tread" + "description_string" "#PaintKit_gs_p90_tread" + "description_tag" "#PaintKit_gs_p90_tread_Tag" + "style" "9" + "pattern" "workshop/p90_tread" + "use_normal" "1" + "normal" "workshop/p90_tread_normal" + "color0" "128 128 128 255" + "color1" "236 236 236" + "color2" "155 155 155" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "718" + { + "name" "am_awp_pawpaw" + "description_string" "#PaintKit_am_awp_pawpaw" + "description_tag" "#PaintKit_am_awp_pawpaw_Tag" + "style" "5" + "pattern" "workshop/awp_pawpaw" + "color0" "42 5 5" + "color1" "255 0 36" + "color2" "236 204 56" + "color3" "114 226 230" + "pattern_scale" "2.500000" + "phongexponent" "100" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "10.000000" + "pattern_rotate_end" "10.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "719" + { + "name" "gs_powercore_mp7" + "description_string" "#PaintKit_gs_powercore_mp7" + "description_tag" "#PaintKit_gs_powercore_mp7_Tag" + "style" "9" + "pattern" "workshop/powercore_mp7" + "use_normal" "1" + "normal" "workshop/powercore_mp7_normal" + "color0" "219 219 219" + "color1" "240 240 240" + "color2" "227 227 227" + "color3" "205 164 18" + "pattern_scale" "1.000000" + "phongexponent" "20" + "phongintensity" "5" + "phongalbedoboost" "2" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "720" + { + "name" "cu_sawedoff_devourer" + "description_string" "#PaintKit_cu_sawedoff_devourer" + "description_tag" "#PaintKit_cu_sawedoff_devourer_Tag" + "style" "7" + "pattern" "workshop/sawedoff_devourer" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + } + "721" + { + "name" "cu_r8_survivalist" + "description_string" "#PaintKit_cu_r8_survivalist" + "description_tag" "#PaintKit_cu_r8_survivalist_Tag" + "style" "7" + "pattern" "workshop/r8_survivalist" + "use_normal" "1" + "normal" "workshop/r8_survivalist_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "722" + { + "name" "cu_tec9_snake" + "description_string" "#PaintKit_cu_tec9_snake" + "description_tag" "#PaintKit_cu_tec9_snake_Tag" + "style" "7" + "pattern" "workshop/tec9_snake" + "use_normal" "1" + "normal" "workshop/tec9_snake_normal" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "65" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "723" + { + "name" "cu_famas_owl_orange" + "description_string" "#PaintKit_cu_famas_owl_orange" + "description_tag" "#PaintKit_cu_famas_owl_orange_Tag" + "style" "7" + "pattern" "workshop/famas_owl_orange" + "pattern_scale" "1.000000" + "phongexponent" "55" + "phongintensity" "32" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "735" + { + "name" "sp_nightstripe" + "description_string" "#PaintKit_sp_nightstripe" + "description_tag" "#PaintKit_sp_nightstripe_Tag" + "pattern" "camo_tape_strips" + "wear_default" "0.200000" + "style" "3" + "color0" "48 62 71" + "color1" "26 33 38" + "color2" "43 55 64" + "color3" "36 36 36" + "phongintensity" "50" + "phongexponent" "20" + "pattern_scale" "1.800000" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "1" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "1" + "pattern_rotate_start" "0" + "pattern_rotate_end" "360" + } + } + "items" + { + "1374" + { + "name" "community_20 Key" + "item_name" "#CSGO_crate_key_community_20" + "item_description" "#CSGO_crate_key_community_20_desc" + "first_sale_date" "2018-06-07" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_20" + "tool" + { + "restriction" "crate_community_20" + } + } + "4482" + { + "item_name" "#CSGO_crate_community_20" + "item_description" "#CSGO_crate_community_20_desc" + "name" "crate_community_20" + "image_inventory" "econ/weapon_cases/crate_community_20" + "model_player" "models/props/crates/csgo_drop_crate_horizon.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1374" "1" + } + "tool" + { + "restriction" "crate_community_20" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "244" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_20" + "tag_text" "#CSGO_set_community_20" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + } + } + "revolving_loot_lists" + { + "244" "crate_community_20" + } + "client_loot_lists" + { + "crate_community_20_rare" + { + "[hy_aug_torn_orange]weapon_aug" "1" + "[sp_elites_winter_raider]weapon_elite" "1" + "[gs_glock_thunder_dust]weapon_glock" "1" + "[cu_mp9_vein]weapon_mp9" "1" + "[gs_p90_tread]weapon_p90" "1" + "[cu_r8_survivalist]weapon_revolver" "1" + "[cu_tec9_snake]weapon_tec9" "1" + } + "crate_community_20_mythical" + { + "[cu_cz75_eco]weapon_cz75a" "1" + "[gs_g3sg1_buccaneer]weapon_g3sg1" "1" + "[cu_nova_toy_soldier]weapon_nova" "1" + "[am_awp_pawpaw]weapon_awp" "1" + "[gs_powercore_mp7]weapon_mp7" "1" + } + "crate_community_20_legendary" + { + "[cu_m4a1s_nightmare]weapon_m4a1_silencer" "1" + "[cu_sawedoff_devourer]weapon_sawedoff" "1" + "[cu_famas_owl_orange]weapon_famas" "1" + } + "crate_community_20_ancient" + { + "[cu_ak_neon_rider]weapon_ak47" "1" + "[gs_deagle_aggressor]weapon_deagle" "1" + } + "crate_community_20" + { + "crate_community_20_rare" "1" + "crate_community_20_mythical" "1" + "crate_community_20_legendary" "1" + "crate_community_20_ancient" "1" + "set_community_20_unusual" "1" + } + } + "item_sets" + { + "set_community_20" + { + "name" "#CSGO_set_community_20" + "set_description" "#CSGO_set_community_20_desc" + "is_collection" "1" + "items" + { + "[hy_aug_torn_orange]weapon_aug" "1" + "[sp_elites_winter_raider]weapon_elite" "1" + "[gs_glock_thunder_dust]weapon_glock" "1" + "[cu_mp9_vein]weapon_mp9" "1" + "[gs_p90_tread]weapon_p90" "1" + "[cu_r8_survivalist]weapon_revolver" "1" + "[cu_tec9_snake]weapon_tec9" "1" + "[cu_cz75_eco]weapon_cz75a" "1" + "[gs_g3sg1_buccaneer]weapon_g3sg1" "1" + "[cu_nova_toy_soldier]weapon_nova" "1" + "[am_awp_pawpaw]weapon_awp" "1" + "[gs_powercore_mp7]weapon_mp7" "1" + "[cu_m4a1s_nightmare]weapon_m4a1_silencer" "1" + "[cu_sawedoff_devourer]weapon_sawedoff" "1" + "[cu_famas_owl_orange]weapon_famas" "1" + "[cu_ak_neon_rider]weapon_ak47" "1" + "[gs_deagle_aggressor]weapon_deagle" "1" + } + } + } + "paint_kits_rarity" + { + "cu_ak_neon_rider" "legendary" + "hy_aug_torn_orange" "rare" + "cu_cz75_eco" "mythical" + "sp_elites_winter_raider" "rare" + "gs_deagle_aggressor" "legendary" + "gs_g3sg1_buccaneer" "mythical" + "gs_glock_thunder_dust" "uncommon" + "cu_mp9_vein" "rare" + "cu_nova_toy_soldier" "mythical" + "gs_p90_tread" "rare" + "am_awp_pawpaw" "rare" + "gs_powercore_mp7" "mythical" + "cu_sawedoff_devourer" "legendary" + "cu_r8_survivalist" "rare" + "cu_tec9_snake" "rare" + "cu_famas_owl_orange" "legendary" + "cu_m4a1s_nightmare" "mythical" + "sp_nightstripe" "common" + } + "paint_kits" + { + "724" + { + "name" "cu_ak_island_floral" + "description_string" "#PaintKit_cu_ak_island_floral" + "description_tag" "#PaintKit_cu_ak_island_floral_Tag" + "style" "7" + "pattern" "ak_island_floral" + "pattern_scale" "1.000000" + "phongexponent" "225" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "725" + { + "name" "hy_bloom_red" + "description_string" "#PaintKit_hy_bloom_red" + "description_tag" "#PaintKit_hy_bloom_red_Tag" + "style" "2" + "pattern" "island_flower_bloom" + "color0" "59 76 63 255" + "color1" "25 31 31 255" + "color2" "65 31 29" + "color3" "137 61 52" + "pattern_scale" "7.000000" + "phongexponent" "100" + "phongintensity" "20" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "65.000000" + "pattern_rotate_end" "-65.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "726" + { + "name" "sp_bloom_orange" + "description_string" "#PaintKit_sp_bloom_orange" + "description_tag" "#PaintKit_sp_bloom_orange_Tag" + "style" "3" + "pattern" "island_flower_bloom" + "color0" "40 37 42" + "color1" "33 17 15" + "color2" "91 39 19" + "color3" "94 67 26" + "pattern_scale" "1.700000" + "phongexponent" "200" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "120.000000" + "pattern_rotate_end" "240.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "727" + { + "name" "am_bloom_blue" + "description_string" "#PaintKit_am_bloom_blue" + "description_tag" "#PaintKit_am_bloom_blue_Tag" + "style" "5" + "pattern" "island_flower_bloom" + "color0" "67 67 67" + "color1" "33 17 0" + "color2" "25 85 153" + "color3" "27 94 107" + "pattern_scale" "6.320000" + "phongexponent" "75" + "phongalbedoboost" "25" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "65.000000" + "pattern_rotate_end" "-65.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "12.000000" + } + "728" + { + "name" "sp_bud_green" + "description_string" "#PaintKit_sp_bud_green" + "description_tag" "#PaintKit_sp_bud_green_Tag" + "style" "3" + "pattern" "island_flower_bud" + "color0" "26 41 40" + "color1" "30 62 41" + "color2" "81 51 22" + "color3" "27 59 57" + "pattern_scale" "4.000000" + "phongexponent" "200" + "phongintensity" "64" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "110.000000" + "pattern_rotate_end" "250.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "729" + { + "name" "hy_bud_red" + "description_string" "#PaintKit_hy_bud_red" + "description_tag" "#PaintKit_hy_bud_red_Tag" + "style" "2" + "pattern" "island_flower_bud" + "color0" "35 35 35 255" + "color1" "43 0 22 255" + "color2" "63 10 30" + "color3" "41 5 19" + "pattern_scale" "6.000000" + "phongexponent" "55" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "110.000000" + "pattern_rotate_end" "250.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "730" + { + "name" "sp_bud_blue" + "description_string" "#PaintKit_sp_bud_blue" + "description_tag" "#PaintKit_sp_bud_blue_Tag" + "style" "3" + "pattern" "island_flower_bud" + "color0" "42 42 42" + "color1" "1 36 40" + "color2" "3 41 68" + "color3" "30 30 30" + "pattern_scale" "6.000000" + "phongexponent" "200" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "110.000000" + "pattern_rotate_end" "250.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "731" + { + "name" "hy_leaf_green" + "description_string" "#PaintKit_hy_leaf_green" + "description_tag" "#PaintKit_hy_leaf_green_Tag" + "style" "2" + "pattern" "island_leaf" + "color0" "49 58 17 255" + "color1" "0 6 9 255" + "color2" "27 40 40 255" + "color3" "95 85 16 255" + "pattern_scale" "2.500000" + "phongexponent" "100" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "732" + { + "name" "hy_leaf_blue" + "description_string" "#PaintKit_hy_leaf_blue" + "description_tag" "#PaintKit_hy_leaf_blue_Tag" + "style" "2" + "pattern" "island_leaf" + "color0" "20 54 71" + "color1" "0 2 3 255" + "color2" "55 24 51" + "color3" "19 84 85" + "pattern_scale" "4.000000" + "phongexponent" "255" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "733" + { + "name" "sp_leaf_orange" + "description_string" "#PaintKit_sp_leaf_orange" + "description_tag" "#PaintKit_sp_leaf_orange_Tag" + "style" "3" + "pattern" "island_leaf" + "color0" "60 49 36" + "color1" "1 14 21" + "color2" "35 50 44" + "color3" "109 74 26" + "pattern_scale" "2.500000" + "phongexponent" "200" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "734" + { + "name" "cu_mp9_island_floral" + "description_string" "#PaintKit_cu_mp9_island_floral" + "description_tag" "#PaintKit_cu_mp9_island_floral_Tag" + "style" "7" + "pattern" "mp9_island_floral" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "868" + { + "name" "hy_flowers_stmarc" + "description_string" "#PaintKit_hy_flowers_stmarc" + "description_tag" "#PaintKit_hy_flowers_stmarc_Tag" + "style" "2" + "pattern" "flowers" + "color0" "3 38 36" + "color1" "59 68 39" + "color2" "219 191 106" + "color3" "10 3 1" + "pattern_scale" "3.700000" + "phongexponent" "100" + "phongintensity" "80" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "60.000000" + "pattern_rotate_end" "120.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "869" + { + "name" "sp_palm_sunset" + "description_string" "#PaintKit_sp_palm_sunset" + "description_tag" "#PaintKit_sp_palm_sunset_Tag" + "style" "3" + "pattern" "palm" + "color0" "30 23 42" + "color1" "66 92 94" + "color2" "79 89 108" + "color3" "86 64 87" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "870" + { + "name" "sp_palm_green" + "description_string" "#PaintKit_sp_palm_green" + "description_tag" "#PaintKit_sp_palm_green_Tag" + "style" "3" + "pattern" "palm" + "color0" "17 34 13 255" + "color1" "48 53 18 255" + "color2" "34 47 25" + "color3" "60 58 38 255" + "pattern_scale" "1.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "871" + { + "name" "sp_twigs_beach" + "description_string" "#PaintKit_sp_twigs_beach" + "description_tag" "#PaintKit_sp_twigs_beach_Tag" + "style" "3" + "pattern" "twigs" + "color0" "104 124 103" + "color1" "109 193 203" + "color2" "186 183 162" + "color3" "180 175 175" + "pattern_scale" "1.200000" + "phongexponent" "32" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "30.000000" + "pattern_rotate_end" "60.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "872" + { + "name" "hy_bamboo_stmarc" + "description_string" "#PaintKit_hy_bamboo_stmarc" + "description_tag" "#PaintKit_hy_bamboo_stmarc_Tag" + "style" "2" + "pattern" "bamboo_stmarc" + "color0" "130 131 114 255" + "color1" "143 19 19 255" + "color2" "80 80 54" + "color3" "68 77 57" + "pattern_scale" "3.000000" + "phongexponent" "120" + "phongintensity" "160" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.550000" + "pattern_offset_x_end" "0.590000" + "pattern_offset_y_start" "0.180000" + "pattern_offset_y_end" "0.220000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "2.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + "873" + { + "name" "so_aqua_stmarc" + "description_string" "#PaintKit_so_aqua" + "description_tag" "#PaintKit_so_aqua_Tag" + "style" "1" + "color0" "92 146 145" + "color1" "20 30 34 255" + "color2" "92 146 145 255" + "color3" "161 158 129 255" + "phongexponent" "80" + "phongintensity" "200" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + } + "client_loot_lists" + { + "set_stmarc_common" + { + "[hy_bamboo_stmarc]weapon_mp5sd" "1" + "[sp_twigs_beach]weapon_mac10" "1" + "[so_aqua_stmarc]weapon_bizon" "1" + "[sp_palm_green]weapon_sawedoff" "1" + "[so_jungle]weapon_m249" "1" + } + "set_stmarc_uncommon" + { + "[sp_bloom_orange]weapon_p90" "1" + "[sp_bud_blue]weapon_m4a1" "1" + "[hy_leaf_green]weapon_xm1014" "1" + "[sp_leaf_orange]weapon_tec9" "1" + } + "set_stmarc_rare" + { + "[hy_bloom_red]weapon_ump45" "1" + "[hy_bud_red]weapon_fiveseven" "1" + "[sp_bud_green]weapon_mp7" "1" + "[sp_palm_sunset]weapon_famas" "1" + } + "set_stmarc_mythical" + { + "[hy_flowers_stmarc]weapon_ssg08" "1" + "[am_bloom_blue]weapon_aug" "1" + "[hy_leaf_blue]weapon_glock" "1" + } + "set_stmarc_legendary" + { + "[cu_mp9_island_floral]weapon_mp9" "1" + } + "set_stmarc_ancient" + { + "[cu_ak_island_floral]weapon_ak47" "1" + } + "set_stmarc" + { + "set_stmarc_common" "1" + "set_stmarc_uncommon" "1" + "set_stmarc_rare" "1" + "set_stmarc_mythical" "1" + "set_stmarc_legendary" "1" + "set_stmarc_ancient" "1" + } + } + "item_sets" + { + "set_stmarc" + { + "name" "#CSGO_set_stmarc" + "set_description" "#CSGO_set_stmarc_desc" + "is_collection" "1" + "items" + { + "[hy_bamboo_stmarc]weapon_mp5sd" "1" + "[sp_twigs_beach]weapon_mac10" "1" + "[so_aqua_stmarc]weapon_bizon" "1" + "[sp_palm_green]weapon_sawedoff" "1" + "[so_jungle]weapon_m249" "1" + "[sp_bloom_orange]weapon_p90" "1" + "[sp_bud_blue]weapon_m4a1" "1" + "[hy_leaf_green]weapon_xm1014" "1" + "[sp_leaf_orange]weapon_tec9" "1" + "[hy_bloom_red]weapon_ump45" "1" + "[hy_bud_red]weapon_fiveseven" "1" + "[sp_bud_green]weapon_mp7" "1" + "[sp_palm_sunset]weapon_famas" "1" + "[hy_flowers_stmarc]weapon_ssg08" "1" + "[hy_leaf_blue]weapon_glock" "1" + "[am_bloom_blue]weapon_aug" "1" + "[cu_mp9_island_floral]weapon_mp9" "1" + "[cu_ak_island_floral]weapon_ak47" "1" + } + } + } + "paint_kits_rarity" + { + "so_aqua_stmarc" "common" + "hy_bamboo_stmarc" "common" + "sp_twigs_beach" "common" + "sp_palm_green" "common" + "sp_palm_sunset" "rare" + "hy_flowers_stmarc" "mythical" + "cu_ak_island_floral" "legendary" + "cu_mp9_island_floral" "legendary" + "hy_bloom_red" "rare" + "sp_bloom_orange" "uncommon" + "am_bloom_blue" "mythical" + "sp_bud_green" "rare" + "hy_bud_red" "rare" + "sp_bud_blue" "common" + "hy_leaf_green" "uncommon" + "hy_leaf_blue" "rare" + "sp_leaf_orange" "uncommon" + } + "paint_kits" + { + "736" + { + "name" "gs_awp_enamel" + "description_string" "#PaintKit_gs_awp_enamel" + "description_tag" "#PaintKit_gs_awp_enamel_Tag" + "style" "9" + "pattern" "awp_enamel" + "use_normal" "1" + "normal" "awp_enamel_normal" + "color0" "17 10 10" + "color1" "218 218 218" + "color2" "47 44 29" + "color3" "52 44 44" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "737" + { + "name" "gs_mag7_glass" + "description_string" "#PaintKit_gs_mag7_glass" + "description_tag" "#PaintKit_gs_mag7_glass_Tag" + "style" "9" + "pattern" "mag7_glass" + "use_normal" "1" + "normal" "mag7_glass_normal" + "color0" "128 128 128 255" + "color1" "255 255 255" + "color2" "134 130 122" + "color3" "113 106 94" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "738" + { + "name" "hy_murano_orange" + "description_string" "#PaintKit_hy_murano_orange" + "description_tag" "#PaintKit_hy_murano_orange_Tag" + "style" "2" + "pattern" "murano_glass" + "color0" "11 0 0 255" + "color1" "90 90 90 255" + "color2" "113 81 53" + "color3" "72 36 18 255" + "pattern_scale" "4.000000" + "phongexponent" "15" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "739" + { + "name" "am_murano_violet" + "description_string" "#PaintKit_am_murano_violet" + "description_tag" "#PaintKit_am_murano_violet_Tag" + "style" "5" + "pattern" "murano_glass" + "color0" "0 1 26" + "color1" "59 58 54" + "color2" "43 51 87" + "color3" "65 30 30" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "740" + { + "name" "hy_murano_blue" + "description_string" "#PaintKit_hy_murano_blue" + "description_tag" "#PaintKit_hy_murano_blue_Tag" + "style" "2" + "pattern" "murano_glass" + "color0" "24 26 43" + "color1" "30 38 72" + "color2" "20 28 58" + "color3" "29 36 64" + "pattern_scale" "4.600000" + "phongexponent" "80" + "phongintensity" "5" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "741" + { + "name" "am_ren_dark" + "description_string" "#PaintKit_am_ren_dark" + "description_tag" "#PaintKit_am_ren_dark_Tag" + "style" "5" + "pattern" "renaissance_ornament" + "color0" "29 18 18 255" + "color1" "7 0 0 255" + "color2" "34 35 37" + "color3" "27 2 2 255" + "pattern_scale" "3.000000" + "phongexponent" "20" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "742" + { + "name" "am_ren_red" + "description_string" "#PaintKit_am_ren_red" + "description_tag" "#PaintKit_am_ren_red_Tag" + "style" "5" + "pattern" "renaissance_ornament" + "color0" "113 55 55" + "color1" "156 33 33" + "color2" "15 15 26 255" + "color3" "114 52 52" + "pattern_scale" "3.000000" + "phongexponent" "255" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "743" + { + "name" "hy_ren_orange" + "description_string" "#PaintKit_hy_ren_orange" + "description_tag" "#PaintKit_hy_ren_orange_Tag" + "style" "2" + "pattern" "renaissance_ornament" + "color0" "77 51 0 255" + "color1" "72 42 14" + "color2" "14 5 5 255" + "color3" "70 35 12" + "pattern_scale" "4.000000" + "phongexponent" "60" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "744" + { + "name" "am_veneto_red" + "description_string" "#PaintKit_am_veneto_red" + "description_tag" "#PaintKit_am_veneto_red_Tag" + "style" "5" + "pattern" "veneto" + "color0" "37 22 22" + "color1" "89 77 77" + "color2" "58 58 57" + "color3" "29 29 29 255" + "pattern_scale" "3.000000" + "phongexponent" "5" + "phongalbedoboost" "12" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "745" + { + "name" "hy_veneto_purple" + "description_string" "#PaintKit_hy_veneto_purple" + "description_tag" "#PaintKit_hy_veneto_purple_Tag" + "style" "2" + "pattern" "veneto" + "color0" "66 64 74 255" + "color1" "102 102 102 255" + "color2" "27 27 27 255" + "color3" "54 53 61 255" + "pattern_scale" "14.000000" + "phongexponent" "50" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.970000" + "pattern_offset_y_end" "0.970000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "746" + { + "name" "am_veneto2" + "description_string" "#PaintKit_am_veneto2" + "description_tag" "#PaintKit_am_veneto2_Tag" + "style" "5" + "pattern" "veneto" + "color0" "43 43 43" + "color1" "205 171 52" + "color2" "142 142 142" + "color3" "106 21 21" + "pattern_scale" "3.000000" + "phongexponent" "20" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "864" + { + "name" "so_red_sg553" + "description_string" "#PaintKit_so_red" + "description_tag" "#PaintKit_so_red_Tag" + "style" "1" + "color0" "32 32 32 255" + "color1" "106 11 11 255" + "color2" "106 11 11" + "color3" "32 32 32 255" + "phongexponent" "255" + "phongintensity" "80" + "only_first_material" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "865" + { + "name" "hy_canals_tile" + "description_string" "#PaintKit_hy_canals_tile" + "description_tag" "#PaintKit_hy_canals_tile_Tag" + "style" "2" + "pattern" "ali_tile" + "color0" "148 142 130" + "color1" "41 46 50 255" + "color2" "57 65 74" + "color3" "139 128 106" + "pattern_scale" "1.700000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "-0.680000" + "pattern_offset_x_end" "-0.600000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.500000" + } + "866" + { + "name" "sp_spray_water" + "description_string" "#PaintKit_sp_spray_water" + "description_tag" "#PaintKit_sp_spray_water_Tag" + "style" "3" + "pattern" "camo_daubs" + "color0" "35 62 68" + "color1" "50 72 79" + "color2" "24 39 47" + "color3" "73 111 114" + "pattern_scale" "0.800000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.600000" + } + "867" + { + "name" "am_stained_glass" + "description_string" "#PaintKit_am_stained_glass" + "description_tag" "#PaintKit_am_stained_glass_Tag" + "style" "5" + "pattern" "ali_tile" + "color0" "53 6 13 255" + "color1" "0 0 0 255" + "color2" "21 26 86 255" + "color3" "15 44 76 255" + "pattern_scale" "2.000000" + "phongexponent" "15" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "50.000000" + "pattern_rotate_end" "80.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "-1.000000" + } + "920" + { + "name" "hy_veneto_tan" + "description_string" "#PaintKit_hy_veneto_tan" + "description_tag" "#PaintKit_hy_veneto_tan_Tag" + "style" "2" + "pattern" "veneto" + "color0" "94 117 118" + "color1" "26 26 26" + "color2" "42 36 46" + "color3" "163 162 132" + "pattern_scale" "4.500000" + "phongexponent" "50" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.970000" + "pattern_offset_y_end" "0.970000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + } + "client_loot_lists" + { + "set_canals_common" + { + "[hy_murano_blue]weapon_aug" "1" + "[hy_canals_tile]weapon_scar20" "1" + "[hy_veneto_tan]weapon_negev" "1" + "[sp_spray_water]weapon_revolver" "1" + "[so_indigo_and_grey]weapon_cz75a" "1" + } + "set_canals_uncommon" + { + "[hy_murano_orange]weapon_tec9" "1" + "[so_red_sg553]weapon_sg556" "1" + "[am_ren_dark]weapon_p250" "1" + "[hy_veneto_purple]weapon_ak47" "1" + } + "set_canals_rare" + { + "[an_emerald]weapon_elite" "1" + "[am_murano_violet]weapon_g3sg1" "1" + "[hy_ren_orange]weapon_ssg08" "1" + "[am_veneto_red]weapon_p90" "1" + } + "set_canals_mythical" + { + "[am_stained_glass]weapon_mp9" "1" + "[am_ren_red]weapon_mac10" "1" + "[am_veneto2]weapon_nova" "1" + } + "set_canals_legendary" + { + "[gs_mag7_glass]weapon_mag7" "1" + } + "set_canals_ancient" + { + "[gs_awp_enamel]weapon_awp" "1" + } + "set_canals" + { + "set_canals_common" "1" + "set_canals_uncommon" "1" + "set_canals_rare" "1" + "set_canals_mythical" "1" + "set_canals_legendary" "1" + "set_canals_ancient" "1" + } + } + "item_sets" + { + "set_canals" + { + "name" "#CSGO_set_canals" + "set_description" "#CSGO_set_canals_desc" + "is_collection" "1" + "items" + { + "[hy_murano_blue]weapon_aug" "1" + "[hy_canals_tile]weapon_scar20" "1" + "[sp_spray_water]weapon_revolver" "1" + "[hy_veneto_tan]weapon_negev" "1" + "[so_indigo_and_grey]weapon_cz75a" "1" + "[hy_veneto_purple]weapon_ak47" "1" + "[so_red_sg553]weapon_sg556" "1" + "[am_ren_dark]weapon_p250" "1" + "[hy_murano_orange]weapon_tec9" "1" + "[am_veneto_red]weapon_p90" "1" + "[am_murano_violet]weapon_g3sg1" "1" + "[an_emerald]weapon_elite" "1" + "[hy_ren_orange]weapon_ssg08" "1" + "[am_stained_glass]weapon_mp9" "1" + "[am_ren_red]weapon_mac10" "1" + "[am_veneto2]weapon_nova" "1" + "[gs_mag7_glass]weapon_mag7" "1" + "[gs_awp_enamel]weapon_awp" "1" + } + } + } + "paint_kits_rarity" + { + "sp_spray_water" "common" + "hy_canals_tile" "common" + "so_red_sg553" "uncommon" + "am_stained_glass" "mythical" + "gs_awp_enamel" "legendary" + "gs_mag7_glass" "legendary" + "hy_murano_orange" "uncommon" + "am_murano_violet" "rare" + "hy_murano_blue" "common" + "am_ren_dark" "uncommon" + "am_ren_red" "mythical" + "hy_ren_orange" "rare" + "am_veneto_red" "rare" + "hy_veneto_purple" "common" + "hy_veneto_tan" "common" + "am_veneto2" "mythical" + } + "paint_kits" + { + "756" + { + "name" "gs_awp_gungnir" + "description_string" "#PaintKit_gs_awp_gungnir" + "description_tag" "#PaintKit_gs_awp_gungnir_Tag" + "style" "9" + "pattern" "awp_gungnir" + "use_normal" "1" + "normal" "awp_gungnir_normal" + "color0" "141 141 141 255" + "color1" "187 198 203 255" + "color2" "91 108 130 255" + "color3" "119 132 131 255" + "pattern_scale" "1.000000" + "phongexponent" "130" + "phongintensity" "29" + "phongalbedoboost" "195" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "pearlescent" "0.500000" + } + "757" + { + "name" "am_jorm_green" + "description_string" "#PaintKit_am_jorm_green" + "description_tag" "#PaintKit_am_jorm_green_Tag" + "style" "5" + "pattern" "jormungandr" + "color0" "0 18 26 255" + "color1" "113 156 68 255" + "color2" "54 93 36 255" + "color3" "68 95 95 255" + "pattern_scale" "6.000000" + "phongexponent" "15" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "1.500000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "240.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "758" + { + "name" "am_jorm_orange" + "description_string" "#PaintKit_am_jorm_orange" + "description_tag" "#PaintKit_am_jorm_orange_Tag" + "style" "5" + "pattern" "jormungandr" + "color0" "32 16 2" + "color1" "187 51 23" + "color2" "163 113 53" + "color3" "99 60 14" + "pattern_scale" "3.200000" + "phongexponent" "15" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "1.500000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "759" + { + "name" "am_jorm_blue" + "description_string" "#PaintKit_am_jorm_blue" + "description_tag" "#PaintKit_am_jorm_blue_Tag" + "style" "5" + "pattern" "jormungandr" + "color0" "18 18 18 255" + "color1" "73 73 84 255" + "color2" "29 61 85 255" + "color3" "121 146 156 255" + "pattern_scale" "4.500000" + "phongexponent" "35" + "phongalbedoboost" "55" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "1.500000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "-2.000000" + } + "760" + { + "name" "am_knots_silver" + "description_string" "#PaintKit_am_knots_silver" + "description_tag" "#PaintKit_am_knots_silver_Tag" + "style" "5" + "pattern" "norse_knots" + "color0" "20 22 28 255" + "color1" "148 150 155" + "color2" "52 55 65 255" + "color3" "75 80 91 255" + "pattern_scale" "3.500000" + "phongexponent" "60" + "phongalbedoboost" "50" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "1.500000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "761" + { + "name" "am_knots_brown" + "description_string" "#PaintKit_am_knots_brown" + "description_tag" "#PaintKit_am_knots_brown_Tag" + "style" "5" + "pattern" "norse_knots" + "color0" "27 13 6" + "color1" "106 79 47" + "color2" "99 64 34" + "color3" "77 58 33" + "pattern_scale" "5.000000" + "phongexponent" "210" + "phongalbedoboost" "100" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "1" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "1.500000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "762" + { + "name" "so_rune_stone" + "description_string" "#PaintKit_so_rune_stone" + "description_tag" "#PaintKit_so_rune_stone_Tag" + "style" "1" + "color0" "39 33 27" + "color1" "45 23 23" + "color2" "58 53 38" + "color3" "50 48 43" + "phongexponent" "16" + "phongintensity" "10" + "only_first_material" "0" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.500000" + } + "763" + { + "name" "gs_negev_thor" + "description_string" "#PaintKit_gs_negev_thor" + "description_tag" "#PaintKit_gs_negev_thor_Tag" + "style" "9" + "pattern" "negev_thor" + "use_normal" "1" + "normal" "negev_thor_normal" + "color0" "141 141 141" + "color1" "203 197 187" + "color2" "130 100 91" + "color3" "132 125 119" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "20" + "phongalbedoboost" "35" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + } + "859" + { + "name" "am_crystallized_green" + "description_string" "#PaintKit_am_crystallized_green" + "description_tag" "#PaintKit_am_crystallized_green_Tag" + "style" "5" + "pattern" "crystallized" + "color0" "10 28 2" + "color1" "45 60 6" + "color2" "31 33 3" + "color3" "29 45 22" + "pattern_scale" "6.000000" + "phongexponent" "10" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "860" + { + "name" "hy_gelpen_dark" + "description_string" "#PaintKit_hy_gelpen_dark" + "description_tag" "#PaintKit_hy_gelpen_dark_Tag" + "style" "2" + "pattern" "gel_pen" + "color0" "76 66 59" + "color1" "58 48 40" + "color2" "35 5 2 255" + "color3" "36 5 0" + "pattern_scale" "4.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "30.000000" + "pattern_rotate_end" "60.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.550000" + } + "861" + { + "name" "sp_asgard_wall" + "description_string" "#PaintKit_sp_asgard_wall" + "description_tag" "#PaintKit_sp_asgard_wall_Tag" + "style" "3" + "pattern" "labyrinth_basic" + "color0" "1 10 16 255" + "color1" "42 44 45 255" + "color2" "9 31 6" + "color3" "65 66 67 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "862" + { + "name" "am_crystallized_dark_green" + "description_string" "#PaintKit_am_crystallized_dark_green" + "description_tag" "#PaintKit_am_crystallized_dark_green_Tag" + "style" "5" + "pattern" "crystallized" + "color0" "20 20 20 255" + "color1" "43 48 33" + "color2" "29 34 22" + "color3" "38 39 44" + "pattern_scale" "6.000000" + "phongexponent" "20" + "phongalbedoboost" "25" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "863" + { + "name" "sp_knots_blue" + "description_string" "#PaintKit_sp_knots_blue" + "description_tag" "#PaintKit_sp_knots_blue_Tag" + "style" "3" + "pattern" "norse_knots" + "color0" "22 22 22 255" + "color1" "52 56 76" + "color2" "63 74 83 255" + "color3" "67 70 77 255" + "pattern_scale" "1.250000" + "phongexponent" "100" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "1.500000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + } + } + "client_loot_lists" + { + "set_norse_common" + { + "[sp_asgard_wall]weapon_sg556" "1" + "[so_tornado]weapon_galilar" "1" + "[sp_dapple]weapon_mp7" "1" + "[so_rune_stone]weapon_ssg08" "1" + "[sp_knots_blue]weapon_famas" "1" + } + "set_norse_uncommon" + { + "[am_crystallized_dark_green]weapon_m4a1_silencer" "1" + "[sp_labyrinth2]weapon_usp_silencer" "1" + "[am_chainmail]weapon_mag7" "1" + "[hy_gelpen_dark]weapon_elite" "1" + } + "set_norse_rare" + { + "[aq_brass]weapon_scar20" "1" + "[am_crystallized_green]weapon_cz75a" "1" + "[am_knots_silver]weapon_xm1014" "1" + "[am_knots_brown]weapon_mac10" "1" + } + "set_norse_mythical" + { + "[am_jorm_orange]weapon_aug" "1" + "[am_jorm_green]weapon_deagle" "1" + "[am_jorm_blue]weapon_p90" "1" + } + "set_norse_legendary" + { + "[gs_negev_thor]weapon_negev" "1" + } + "set_norse_ancient" + { + "[gs_awp_gungnir]weapon_awp" "1" + } + "set_norse" + { + "set_norse_common" "1" + "set_norse_uncommon" "1" + "set_norse_rare" "1" + "set_norse_mythical" "1" + "set_norse_legendary" "1" + "set_norse_ancient" "1" + } + } + "item_sets" + { + "set_norse" + { + "name" "#CSGO_set_norse" + "set_description" "#CSGO_set_norse_desc" + "is_collection" "1" + "items" + { + "[sp_asgard_wall]weapon_sg556" "1" + "[so_tornado]weapon_galilar" "1" + "[sp_dapple]weapon_mp7" "1" + "[so_rune_stone]weapon_ssg08" "1" + "[sp_knots_blue]weapon_famas" "1" + "[am_crystallized_dark_green]weapon_m4a1_silencer" "1" + "[sp_labyrinth2]weapon_usp_silencer" "1" + "[am_chainmail]weapon_mag7" "1" + "[hy_gelpen_dark]weapon_elite" "1" + "[aq_brass]weapon_scar20" "1" + "[am_crystallized_green]weapon_cz75a" "1" + "[am_knots_silver]weapon_xm1014" "1" + "[am_knots_brown]weapon_mac10" "1" + "[am_jorm_orange]weapon_aug" "1" + "[am_jorm_green]weapon_deagle" "1" + "[am_jorm_blue]weapon_p90" "1" + "[gs_negev_thor]weapon_negev" "1" + "[gs_awp_gungnir]weapon_awp" "1" + } + } + } + "paint_kits_rarity" + { + "sp_asgard_wall" "common" + "so_rune_stone" "common" + "sp_knots_blue" "common" + "am_crystallized_dark_green" "common" + "hy_gelpen_dark" "uncommon" + "am_crystallized_green" "rare" + "gs_awp_gungnir" "legendary" + "am_jorm_green" "rare" + "am_jorm_orange" "mythical" + "am_jorm_blue" "mythical" + "am_knots_silver" "rare" + "am_knots_brown" "rare" + "gs_negev_thor" "legendary" + } + "item_sets" + { + "set_op9_characters" + { + "name" "#CSGO_set_op9_characters" + "set_description" "#CSGO_set_op9_characters_desc" + "is_collection" "1" + "items" + { + "customplayer_ctm_st6_varianti" "1" + "customplayer_ctm_fbi_variantb" "1" + "customplayer_tm_balkan_varianth" "1" + "customplayer_tm_leet_variantf" "1" + "customplayer_ctm_st6_variantm" "1" + "customplayer_ctm_fbi_varianth" "1" + "customplayer_tm_balkan_variantj" "1" + "customplayer_tm_balkan_variantg" "1" + "customplayer_tm_leet_varianti" "1" + "customplayer_ctm_st6_variantg" "1" + "customplayer_ctm_fbi_variantg" "1" + "customplayer_tm_balkan_varianti" "1" + "customplayer_tm_leet_varianth" "1" + "customplayer_tm_phoenix_variantg" "1" + "customplayer_tm_balkan_variantf" "1" + "customplayer_ctm_sas_variantf" "1" + "customplayer_ctm_st6_variantk" "1" + "customplayer_ctm_st6_variante" "1" + "customplayer_ctm_fbi_variantf" "1" + "customplayer_tm_leet_variantg" "1" + "customplayer_tm_phoenix_varianth" "1" + "customplayer_tm_phoenix_variantf" "1" + } + } + "set_op10_characters" + { + "name" "#CSGO_set_op10_characters" + "set_description" "#CSGO_set_op10_characters_desc" + "is_collection" "1" + "items" + { + "customplayer_ctm_swat_variante" "100" + "customplayer_tm_professional_varf" "100" + "customplayer_tm_professional_varf1" "100" + "customplayer_tm_professional_varf2" "100" + "customplayer_tm_professional_varf3" "100" + "customplayer_tm_professional_varf4" "100" + "customplayer_ctm_swat_variantf" "100" + "customplayer_ctm_st6_variantl" "100" + "customplayer_tm_balkan_variantk" "100" + "customplayer_tm_professional_varg" "100" + "customplayer_tm_professional_vari" "100" + "customplayer_ctm_st6_variantj" "100" + "customplayer_ctm_swat_variantg" "100" + "customplayer_ctm_swat_varianti" "100" + "customplayer_tm_professional_varj" "100" + "customplayer_tm_professional_varh" "100" + "customplayer_ctm_swat_variantj" "100" + "customplayer_ctm_swat_varianth" "100" + "customplayer_tm_balkan_variantl" "100" + "customplayer_tm_phoenix_varianti" "100" + } + } + "set_op11_characters" + { + "name" "#CSGO_set_op11_characters" + "set_description" "#CSGO_set_op11_characters_desc" + "is_collection" "1" + "items" + { + "customplayer_ctm_gendarmerie_variantc" "100" + "customplayer_ctm_diver_varianta" "100" + "customplayer_ctm_diver_variantb" "100" + "customplayer_tm_jungle_raider_variantb" "100" + "customplayer_tm_jungle_raider_variantb2" "100" + "customplayer_tm_jungle_raider_variante" "100" + "customplayer_ctm_gendarmerie_variantb" "100" + "customplayer_ctm_diver_variantc" "100" + "customplayer_tm_professional_varf5" "100" + "customplayer_tm_jungle_raider_varianta" "100" + "customplayer_tm_jungle_raider_variantc" "100" + "customplayer_ctm_gendarmerie_varianta" "100" + "customplayer_ctm_gendarmerie_variante" "100" + "customplayer_ctm_swat_variantk" "100" + "customplayer_tm_jungle_raider_variantd" "100" + "customplayer_tm_jungle_raider_variantf2" "100" + "customplayer_ctm_gendarmerie_variantd" "100" + "customplayer_ctm_sas_variantg" "100" + "customplayer_ctm_st6_variantn" "100" + "customplayer_tm_leet_variantj" "100" + "customplayer_tm_jungle_raider_variantf" "100" + } + } + } + "items" + { + "5038" + { + "name" "customplayer_tm_anarchist" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_anarchist.mdl" + "item_name" "#CSGO_CustomPlayer_tm_anarchist" + "item_description" "#CSGO_CustomPlayer_tm_anarchist_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5039" + { + "name" "customplayer_tm_anarchist_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_anarchist_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_anarchist_varianta" + "item_description" "#CSGO_CustomPlayer_tm_anarchist_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5040" + { + "name" "customplayer_tm_anarchist_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_anarchist_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_anarchist_variantb" + "item_description" "#CSGO_CustomPlayer_tm_anarchist_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5041" + { + "name" "customplayer_tm_anarchist_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_anarchist_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_anarchist_variantc" + "item_description" "#CSGO_CustomPlayer_tm_anarchist_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5042" + { + "name" "customplayer_tm_anarchist_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_anarchist_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_tm_anarchist_variantd" + "item_description" "#CSGO_CustomPlayer_tm_anarchist_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5043" + { + "name" "customplayer_tm_pirate" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_pirate.mdl" + "item_name" "#CSGO_CustomPlayer_tm_pirate" + "item_description" "#CSGO_CustomPlayer_tm_pirate_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5044" + { + "name" "customplayer_tm_pirate_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_pirate_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_pirate_varianta" + "item_description" "#CSGO_CustomPlayer_tm_pirate_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5045" + { + "name" "customplayer_tm_pirate_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_pirate_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_pirate_variantb" + "item_description" "#CSGO_CustomPlayer_tm_pirate_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5046" + { + "name" "customplayer_tm_pirate_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_pirate_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_pirate_variantc" + "item_description" "#CSGO_CustomPlayer_tm_pirate_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5047" + { + "name" "customplayer_tm_pirate_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_pirate_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_tm_pirate_variantd" + "item_description" "#CSGO_CustomPlayer_tm_pirate_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5048" + { + "name" "customplayer_tm_professional" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_professional.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional" + "item_description" "#CSGO_CustomPlayer_tm_professional_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5049" + { + "name" "customplayer_tm_professional_var1" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_professional_var1.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_var1" + "item_description" "#CSGO_CustomPlayer_tm_professional_var1_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5050" + { + "name" "customplayer_tm_professional_var2" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_professional_var2.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_var2" + "item_description" "#CSGO_CustomPlayer_tm_professional_var2_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5051" + { + "name" "customplayer_tm_professional_var3" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_professional_var3.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_var3" + "item_description" "#CSGO_CustomPlayer_tm_professional_var3_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5052" + { + "name" "customplayer_tm_professional_var4" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_professional_var4.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_var4" + "item_description" "#CSGO_CustomPlayer_tm_professional_var4_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5053" + { + "name" "customplayer_tm_separatist" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_separatist.mdl" + "item_name" "#CSGO_CustomPlayer_tm_separatist" + "item_description" "#CSGO_CustomPlayer_tm_separatist_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5054" + { + "name" "customplayer_tm_separatist_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_separatist_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_separatist_varianta" + "item_description" "#CSGO_CustomPlayer_tm_separatist_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5055" + { + "name" "customplayer_tm_separatist_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_separatist_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_separatist_variantb" + "item_description" "#CSGO_CustomPlayer_tm_separatist_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5056" + { + "name" "customplayer_tm_separatist_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_separatist_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_separatist_variantc" + "item_description" "#CSGO_CustomPlayer_tm_separatist_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5057" + { + "name" "customplayer_tm_separatist_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_separatist_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_tm_separatist_variantd" + "item_description" "#CSGO_CustomPlayer_tm_separatist_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5058" + { + "name" "customplayer_ctm_gign" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gign.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gign" + "item_description" "#CSGO_CustomPlayer_ctm_gign_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5059" + { + "name" "customplayer_ctm_gign_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gign_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gign_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_gign_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5060" + { + "name" "customplayer_ctm_gign_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gign_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gign_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_gign_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5061" + { + "name" "customplayer_ctm_gign_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gign_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gign_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_gign_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5062" + { + "name" "customplayer_ctm_gign_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gign_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gign_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_gign_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5063" + { + "name" "customplayer_ctm_gsg9" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gsg9.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gsg9" + "item_description" "#CSGO_CustomPlayer_ctm_gsg9_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5064" + { + "name" "customplayer_ctm_gsg9_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gsg9_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gsg9_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_gsg9_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5065" + { + "name" "customplayer_ctm_gsg9_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gsg9_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gsg9_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_gsg9_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5066" + { + "name" "customplayer_ctm_gsg9_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gsg9_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gsg9_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_gsg9_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5067" + { + "name" "customplayer_ctm_gsg9_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_gsg9_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gsg9_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_gsg9_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5068" + { + "name" "customplayer_ctm_idf" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_idf.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_idf" + "item_description" "#CSGO_CustomPlayer_ctm_idf_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5069" + { + "name" "customplayer_ctm_idf_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_idf_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_idf_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_idf_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5070" + { + "name" "customplayer_ctm_idf_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_idf_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_idf_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_idf_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5071" + { + "name" "customplayer_ctm_idf_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_idf_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_idf_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_idf_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5072" + { + "name" "customplayer_ctm_idf_variante" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_idf_variante.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_idf_variante" + "item_description" "#CSGO_CustomPlayer_ctm_idf_variante_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5073" + { + "name" "customplayer_ctm_idf_variantf" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_idf_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_idf_variantf" + "item_description" "#CSGO_CustomPlayer_ctm_idf_variantf_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5074" + { + "name" "customplayer_ctm_swat" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_swat.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat" + "item_description" "#CSGO_CustomPlayer_ctm_swat_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5075" + { + "name" "customplayer_ctm_swat_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_swat_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_swat_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5076" + { + "name" "customplayer_ctm_swat_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_swat_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5077" + { + "name" "customplayer_ctm_swat_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_swat_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5078" + { + "name" "customplayer_ctm_swat_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_swat_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5079" + { + "name" "customplayer_ctm_sas_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_sas_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_sas_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_sas_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5080" + { + "name" "customplayer_ctm_sas_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_sas_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_sas_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_sas_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5081" + { + "name" "customplayer_ctm_sas_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_sas_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_sas_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_sas_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5082" + { + "name" "customplayer_ctm_sas_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_sas_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_sas_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_sas_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" } } - "20000" - { - "name" "coupon - bossyburger" - "item_name" "#coupon_bossyburger" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - bossyburger" - "prefab" "coupon_prefab" - } - "20001" - { - "name" "coupon - catcall" - "item_name" "#coupon_catcall" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - catcall" - "prefab" "coupon_prefab" - } - "20002" - { - "name" "coupon - chickenstrike" - "item_name" "#coupon_chickenstrike" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - chickenstrike" - "prefab" "coupon_prefab" - } - "20003" - { - "name" "coupon - ctbanana" - "item_name" "#coupon_ctbanana" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - ctbanana" - "prefab" "coupon_prefab" - } - "20004" - { - "name" "coupon - dontworryimpro" - "item_name" "#coupon_dontworryimpro" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - dontworryimpro" - "prefab" "coupon_prefab" - } - "20005" - { - "name" "coupon - fightlikeagirl" - "item_name" "#coupon_fightlikeagirl" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - fightlikeagirl" - "prefab" "coupon_prefab" - } - "20006" - { - "name" "coupon - handmadeflash" - "item_name" "#coupon_handmadeflash" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - handmadeflash" - "prefab" "coupon_prefab" - } - "20007" - { - "name" "coupon - kawaiikiller" - "item_name" "#coupon_kawaiikiller" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - kawaiikiller" - "prefab" "coupon_prefab" - } - "20008" - { - "name" "coupon - neluthebear" - "item_name" "#coupon_neluthebear" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - neluthebear" - "prefab" "coupon_prefab" - } - "20009" + "5083" + { + "name" "customplayer_ctm_st6" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_st6.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6" + "item_description" "#CSGO_CustomPlayer_ctm_st6_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5084" + { + "name" "customplayer_ctm_st6_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_st6_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_st6_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5085" + { + "name" "customplayer_ctm_st6_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5086" + { + "name" "customplayer_ctm_st6_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5087" + { + "name" "customplayer_ctm_st6_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5088" + { + "name" "customplayer_tm_balkan_variante" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_balkan_variante.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variante" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variante_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5089" + { + "name" "customplayer_tm_balkan_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_balkan_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_varianta" + "item_description" "#CSGO_CustomPlayer_tm_balkan_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5090" + { + "name" "customplayer_tm_balkan_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantb" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5091" + { + "name" "customplayer_tm_balkan_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantc" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5092" + { + "name" "customplayer_tm_balkan_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantd" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5093" + { + "name" "customplayer_tm_jumpsuit_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_jumpsuit_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jumpsuit_varianta" + "item_description" "#CSGO_CustomPlayer_tm_jumpsuit_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5094" + { + "name" "customplayer_tm_jumpsuit_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_jumpsuit_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jumpsuit_variantb" + "item_description" "#CSGO_CustomPlayer_tm_jumpsuit_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5095" + { + "name" "customplayer_tm_jumpsuit_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_jumpsuit_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jumpsuit_variantc" + "item_description" "#CSGO_CustomPlayer_tm_jumpsuit_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5096" + { + "name" "customplayer_tm_phoenix_heavy" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_phoenix_heavy.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_heavy" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_heavy_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5097" + { + "name" "customplayer_ctm_heavy" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_heavy.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_heavy" + "item_description" "#CSGO_CustomPlayer_ctm_heavy_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + } + "items" + { + "5100" + { + "name" "customplayer_tm_leet_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_leet_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_varianta" + "item_description" "#CSGO_CustomPlayer_tm_leet_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5101" + { + "name" "customplayer_tm_leet_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_leet_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_variantb" + "item_description" "#CSGO_CustomPlayer_tm_leet_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5102" + { + "name" "customplayer_tm_leet_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_leet_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_variantc" + "item_description" "#CSGO_CustomPlayer_tm_leet_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5103" + { + "name" "customplayer_tm_leet_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_leet_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_variantd" + "item_description" "#CSGO_CustomPlayer_tm_leet_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5104" + { + "name" "customplayer_tm_leet_variante" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_leet_variante.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_variante" + "item_description" "#CSGO_CustomPlayer_tm_leet_variante_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5105" + { + "name" "customplayer_tm_leet_variantg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_leet_variantg.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_variantg" + "item_description" "#CSGO_CustomPlayer_tm_leet_variantg_Desc" + "image_inventory" "econ/characters/customplayer_tm_leet_variantg" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_leet_variantg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5106" + { + "name" "customplayer_tm_leet_varianth" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_leet_varianth.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_varianth" + "item_description" "#CSGO_CustomPlayer_tm_leet_varianth_Desc" + "image_inventory" "econ/characters/customplayer_tm_leet_varianth" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_leet_varianth.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5107" + { + "name" "customplayer_tm_leet_varianti" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_leet_varianti.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_varianti" + "item_description" "#CSGO_CustomPlayer_tm_leet_varianti_Desc" + "image_inventory" "econ/characters/customplayer_tm_leet_varianti" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_leet_varianti.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5108" + { + "name" "customplayer_tm_leet_variantf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_leet_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_variantf" + "item_description" "#CSGO_CustomPlayer_tm_leet_variantf_Desc" + "image_inventory" "econ/characters/customplayer_tm_leet_variantf" + "item_rarity" "ancient" + "default_cheer" "swagger" + "vo_prefix" "leet_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_leet_variantf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5109" + { + "name" "customplayer_tm_leet_variantj" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_leet_variantj.mdl" + "item_name" "#CSGO_CustomPlayer_tm_leet_variantj" + "item_description" "#CSGO_CustomPlayer_tm_leet_variantj_Desc" + "image_inventory" "econ/characters/customplayer_tm_leet_variantj" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_leet_variantj.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + } + "items" + { + "5200" + { + "name" "customplayer_tm_phoenix" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_phoenix.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5201" + { + "name" "customplayer_tm_phoenix_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_phoenix_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_varianta" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5202" + { + "name" "customplayer_tm_phoenix_variantb" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_phoenix_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_variantb" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_variantb_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5203" + { + "name" "customplayer_tm_phoenix_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_phoenix_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_variantc" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5204" + { + "name" "customplayer_tm_phoenix_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/tm_phoenix_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_variantd" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "terrorists" "1" + } + } + "5205" + { + "name" "customplayer_tm_phoenix_varianth" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_phoenix_varianth.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_varianth" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_varianth_Desc" + "image_inventory" "econ/characters/customplayer_tm_phoenix_varianth" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_phoenix_varianth.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5206" + { + "name" "customplayer_tm_phoenix_variantf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_phoenix_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_variantf" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_variantf_Desc" + "image_inventory" "econ/characters/customplayer_tm_phoenix_variantf" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_phoenix_variantf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5207" + { + "name" "customplayer_tm_phoenix_variantg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_phoenix_variantg.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_variantg" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_variantg_Desc" + "image_inventory" "econ/characters/customplayer_tm_phoenix_variantg" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_phoenix_variantg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5208" + { + "name" "customplayer_tm_phoenix_varianti" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_phoenix_varianti.mdl" + "item_name" "#CSGO_CustomPlayer_tm_phoenix_varianti" + "item_description" "#CSGO_CustomPlayer_tm_phoenix_varianti_Desc" + "image_inventory" "econ/characters/customplayer_tm_phoenix_varianti" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_phoenix_varianti.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + } + "items" + { + "5300" + { + "name" "customplayer_ctm_fbi" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_fbi.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5301" + { + "name" "customplayer_ctm_fbi_varianta" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_fbi_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_varianta_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5302" + { + "name" "customplayer_ctm_fbi_variantc" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_fbi_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_variantc_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5303" + { + "name" "customplayer_ctm_fbi_variantd" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_fbi_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_variantd_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5304" + { + "name" "customplayer_ctm_fbi_variante" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_fbi_variante.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_variante" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_variante_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } + } + "5305" + { + "name" "customplayer_ctm_fbi_variantf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_fbi_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_variantf" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_variantf_Desc" + "image_inventory" "econ/characters/customplayer_ctm_fbi_variantf" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_fbi_variantf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } + } + "5306" + { + "name" "customplayer_ctm_fbi_variantg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_fbi_variantg.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_variantg" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_variantg_Desc" + "image_inventory" "econ/characters/customplayer_ctm_fbi_variantg" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_fbi_variantg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } + } + "5307" + { + "name" "customplayer_ctm_fbi_varianth" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_fbi_varianth.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_varianth" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_varianth_Desc" + "image_inventory" "econ/characters/customplayer_ctm_fbi_varianth" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_fbi_varianth.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } + } + "5308" + { + "name" "customplayer_ctm_fbi_variantb" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_fbi_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_fbi_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_fbi_variantb_Desc" + "image_inventory" "econ/characters/customplayer_ctm_fbi_variantb" + "item_rarity" "ancient" + "default_cheer" "stretch" + "vo_prefix" "fbihrt_epic" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_fbi_variantb.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } + } + } + "items" + { + "5400" + { + "name" "customplayer_ctm_st6_variantk" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantk.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantk" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantk_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_variantk" + "item_rarity" "rare" + "vo_prefix" "ctm_gsg9" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_variantk.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5401" + { + "name" "customplayer_ctm_st6_variante" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_variante.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variante" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variante_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_variante" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_variante.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5402" + { + "name" "customplayer_ctm_st6_variantg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantg.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantg" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantg_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_variantg" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_variantg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5403" + { + "name" "customplayer_ctm_st6_variantm" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantm.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantm" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantm_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_variantm" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_variantm.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5404" + { + "name" "customplayer_ctm_st6_varianti" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_varianti.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_varianti" + "item_description" "#CSGO_CustomPlayer_ctm_st6_varianti_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_varianti" + "item_rarity" "ancient" + "default_cheer" "dropdown" + "vo_prefix" "seal_epic" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_varianti.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "4619" { - "name" "coupon - oneshotonekill" - "item_name" "#coupon_oneshotonekill" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - oneshotonekill" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_st6_variantj" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantj.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantj" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantj_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_variantj" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_variantj.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20010" + "4680" { - "name" "coupon - shootingstar" - "item_name" "#coupon_shootingstar" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - shootingstar" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_st6_variantl" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantl.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantl" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantl_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_variantl" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_variantl.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20012" + "5405" { - "name" "coupon - warpenguin" - "item_name" "#coupon_warpenguin" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - warpenguin" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_st6_variantn" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_st6_variantn.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_st6_variantn" + "item_description" "#CSGO_CustomPlayer_ctm_st6_variantn_Desc" + "image_inventory" "econ/characters/customplayer_ctm_st6_variantn" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_st6_variantn.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20013" + } + "items" + { + "5500" + { + "name" "customplayer_tm_balkan_variantf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantf" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantf_Desc" + "image_inventory" "econ/characters/customplayer_tm_balkan_variantf" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_balkan_variantf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "5501" { - "name" "coupon - windywalking" - "item_name" "#coupon_windywalking" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - windywalking" - "prefab" "coupon_prefab" + "name" "customplayer_tm_balkan_varianti" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_balkan_varianti.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_varianti" + "item_description" "#CSGO_CustomPlayer_tm_balkan_varianti_Desc" + "image_inventory" "econ/characters/customplayer_tm_balkan_varianti" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_balkan_varianti.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20014" + "5502" { - "name" "coupon - blitzkrieg" - "item_name" "#coupon_blitzkrieg" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - blitzkrieg" - "prefab" "coupon_prefab" + "name" "customplayer_tm_balkan_variantg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantg.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantg" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantg_Desc" + "image_inventory" "econ/characters/customplayer_tm_balkan_variantg" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_balkan_variantg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20015" + "5503" { - "name" "coupon - pigeonmaster" - "item_name" "#coupon_pigeonmaster" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - pigeonmaster" - "prefab" "coupon_prefab" + "name" "customplayer_tm_balkan_variantj" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantj.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantj" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantj_Desc" + "image_inventory" "econ/characters/customplayer_tm_balkan_variantj" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_balkan_variantj.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20016" + "5504" { - "name" "coupon - terrorized" - "item_name" "#coupon_terrorized" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - terrorized" - "prefab" "coupon_prefab" + "name" "customplayer_tm_balkan_varianth" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_balkan_varianth.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_varianth" + "item_description" "#CSGO_CustomPlayer_tm_balkan_varianth_Desc" + "image_inventory" "econ/characters/customplayer_tm_balkan_varianth" + "item_rarity" "ancient" + "default_cheer" "punching" + "vo_prefix" "balkan_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_balkan_varianth.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20017" + "4718" { - "name" "coupon - tilldeathdouspart" - "item_name" "#coupon_tilldeathdouspart" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - tilldeathdouspart" - "prefab" "coupon_prefab" + "name" "customplayer_tm_balkan_variantk" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantk.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantk" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantk_Desc" + "image_inventory" "econ/characters/customplayer_tm_balkan_variantk" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_balkan_variantk.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20018" + "5505" { - "name" "coupon - stayfrosty" - "item_name" "#coupon_stayfrosty" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - stayfrosty" - "prefab" "coupon_prefab" + "name" "customplayer_tm_balkan_variantl" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_balkan_variantl.mdl" + "item_name" "#CSGO_CustomPlayer_tm_balkan_variantl" + "item_description" "#CSGO_CustomPlayer_tm_balkan_variantl_Desc" + "image_inventory" "econ/characters/customplayer_tm_balkan_variantl" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_balkan_variantl.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20019" + } + "items" + { + "5600" { - "name" "coupon - toncat" - "item_name" "#coupon_toncat" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - toncat" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_sas" + "prefab" "customplayer" + "model_player" "models/player/custom_player/legacy/ctm_sas.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_sas" + "item_description" "#CSGO_CustomPlayer_ctm_sas_Desc" + "item_rarity" "common" + "legacy_character" "1" + "used_by_classes" + { + "counter-terrorists" "1" + } } - "20020" + "5601" { - "name" "coupon - danielsadowski_01" - "item_name" "#coupon_danielsadowski_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - danielsadowski_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/danielsadowski_01" + "name" "customplayer_ctm_sas_variantf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_sas_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_sas_variantf" + "item_description" "#CSGO_CustomPlayer_ctm_sas_variantf_Desc" + "image_inventory" "econ/characters/customplayer_ctm_sas_variantf" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_sas_variantf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20021" + "5602" { - "name" "coupon - noisia_01" - "item_name" "#coupon_noisia_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - noisia_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/noisia_01" + "name" "customplayer_ctm_sas_variantg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_sas_variantg.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_sas_variantg" + "item_description" "#CSGO_CustomPlayer_ctm_sas_variantg_Desc" + "image_inventory" "econ/characters/customplayer_ctm_sas_variantg" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_sas_variantg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20022" + } + "items" + { + "4711" + { + "name" "customplayer_ctm_swat_variante" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_swat_variante.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variante" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variante_Desc" + "image_inventory" "econ/characters/customplayer_ctm_swat_variante" + "item_rarity" "ancient" + "default_cheer" "swat_female" + "vo_prefix" "swat_epic" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_swat_variante.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose05" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "4712" { - "name" "coupon - robertallaire_01" - "item_name" "#coupon_robertallaire_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - robertallaire_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/robertallaire_01" + "name" "customplayer_ctm_swat_variantf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_swat_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variantf" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variantf_Desc" + "image_inventory" "econ/characters/customplayer_ctm_swat_variantf" + "item_rarity" "legendary" + "vo_prefix" "swat_fem" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_swat_variantf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20023" + "4713" { - "name" "coupon - seanmurray_01" - "item_name" "#coupon_seanmurray_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - seanmurray_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/seanmurray_01" + "name" "customplayer_ctm_swat_variantg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_swat_variantg.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variantg" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variantg_Desc" + "image_inventory" "econ/characters/customplayer_ctm_swat_variantg" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_swat_variantg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20024" + "4714" { - "name" "coupon - feedme_01" - "item_name" "#coupon_feedme_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - feedme_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/feedme_01" + "name" "customplayer_ctm_swat_varianth" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_swat_varianth.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_varianth" + "item_description" "#CSGO_CustomPlayer_ctm_swat_varianth_Desc" + "image_inventory" "econ/characters/customplayer_ctm_swat_varianth" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_swat_varianth.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20025" + "4715" { - "name" "coupon - dren_01" - "item_name" "#coupon_dren_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - dren_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/dren_01" + "name" "customplayer_ctm_swat_varianti" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_swat_varianti.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_varianti" + "item_description" "#CSGO_CustomPlayer_ctm_swat_varianti_Desc" + "image_inventory" "econ/characters/customplayer_ctm_swat_varianti" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_swat_varianti.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20026" + "4716" { - "name" "coupon - austinwintory_01" - "item_name" "#coupon_austinwintory_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - austinwintory_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/austinwintory_01" + "name" "customplayer_ctm_swat_variantj" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_swat_variantj.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variantj" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variantj_Desc" + "image_inventory" "econ/characters/customplayer_ctm_swat_variantj" + "item_rarity" "rare" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_swat_variantj.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20027" + "4756" { - "name" "coupon - sasha_01" - "item_name" "#coupon_sasha_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - sasha_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/sasha_01" + "name" "customplayer_ctm_swat_variantk" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_swat_variantk.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_swat_variantk" + "item_description" "#CSGO_CustomPlayer_ctm_swat_variantk_Desc" + "image_inventory" "econ/characters/customplayer_ctm_swat_variantk" + "item_rarity" "mythical" + "vo_prefix" "swat_fem" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_swat_variantk.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20028" + } + "items" + { + "4726" + { + "name" "customplayer_tm_professional_varf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varf.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varf" + "item_description" "#CSGO_CustomPlayer_tm_professional_varf_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varf" + "item_rarity" "ancient" + "default_cheer" "mask_f" + "vo_prefix" "professional_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose05" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } + } + "4733" { - "name" "coupon - skog_01" - "item_name" "#coupon_skog_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - skog_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/skog_01" + "name" "customplayer_tm_professional_varf1" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varf1.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varf1" + "item_description" "#CSGO_CustomPlayer_tm_professional_varf1_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varf1" + "item_rarity" "ancient" + "default_cheer" "mask_f1" + "vo_prefix" "professional_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varf1.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose05" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20029" + "4734" { - "name" "coupon - doomed" - "item_name" "#coupon_doomed" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - doomed" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_varf2" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varf2.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varf2" + "item_description" "#CSGO_CustomPlayer_tm_professional_varf2_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varf2" + "item_rarity" "ancient" + "default_cheer" "mask_f2" + "vo_prefix" "professional_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varf2.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose05" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20030" + "4735" { - "name" "coupon - queenofpain" - "item_name" "#coupon_queenofpain" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - queenofpain" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_varf3" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varf3.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varf3" + "item_description" "#CSGO_CustomPlayer_tm_professional_varf3_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varf3" + "item_rarity" "ancient" + "default_cheer" "mask_f4" + "vo_prefix" "professional_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varf3.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose05" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20031" + "4736" { - "name" "coupon - trickorthreat" - "item_name" "#coupon_trickorthreat" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - trickorthreat" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_varf4" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varf4.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varf4" + "item_description" "#CSGO_CustomPlayer_tm_professional_varf4_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varf4" + "item_rarity" "ancient" + "default_cheer" "mask_f4" + "vo_prefix" "professional_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varf4.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose05" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20032" + "4727" { - "name" "coupon - trickortreat" - "item_name" "#coupon_trickortreat" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - trickortreat" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_varg" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varg.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varg" + "item_description" "#CSGO_CustomPlayer_tm_professional_varg_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varg" + "item_rarity" "legendary" + "vo_prefix" "professional_fem" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varg.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20033" + "4728" { - "name" "coupon - witch" - "item_name" "#coupon_witch" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - witch" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_varh" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varh.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varh" + "item_description" "#CSGO_CustomPlayer_tm_professional_varh_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varh" + "item_rarity" "mythical" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varh.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose03" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20034" + "4732" { - "name" "coupon - zombielover" - "item_name" "#coupon_zombielover" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - zombielover" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_vari" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_vari.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_vari" + "item_description" "#CSGO_CustomPlayer_tm_professional_vari_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_vari" + "item_rarity" "legendary" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_vari.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20035" + "4730" { - "name" "coupon - blood_broiler" - "item_name" "#coupon_blood_broiler" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - blood_broiler" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_varj" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varj.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varj" + "item_description" "#CSGO_CustomPlayer_tm_professional_varj_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varj" + "item_rarity" "mythical" + "vo_prefix" "professional_fem" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varj.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20036" + "4613" { - "name" "coupon - dinked" - "item_name" "#coupon_dinked" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - dinked" - "prefab" "coupon_prefab" + "name" "customplayer_tm_professional_varf5" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_professional_varf5.mdl" + "item_name" "#CSGO_CustomPlayer_tm_professional_varf5" + "item_description" "#CSGO_CustomPlayer_tm_professional_varf5_Desc" + "image_inventory" "econ/characters/customplayer_tm_professional_varf5" + "item_rarity" "legendary" + "vo_prefix" "professional_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_professional_varf5.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "1" + } } - "20037" + } + "items" + { + "4749" + { + "name" "customplayer_ctm_gendarmerie_varianta" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_gendarmerie_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gendarmerie_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_gendarmerie_varianta_Desc" + "image_inventory" "econ/characters/customplayer_ctm_gendarmerie_varianta" + "item_rarity" "mythical" + "vo_prefix" "gendarmerie_male" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_gendarmerie_varianta.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } + } + "4750" { - "name" "coupon - drugwarveteran" - "item_name" "#coupon_drugwarveteran" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - drugwarveteran" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_gendarmerie_variantb" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_gendarmerie_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gendarmerie_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_gendarmerie_variantb_Desc" + "image_inventory" "econ/characters/customplayer_ctm_gendarmerie_variantb" + "item_rarity" "legendary" + "vo_prefix" "gendarmerie_male" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_gendarmerie_variantb.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose02" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20038" + "4751" { - "name" "coupon - hohoho" - "item_name" "#coupon_hohoho" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - hohoho" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_gendarmerie_variantc" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_gendarmerie_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gendarmerie_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_gendarmerie_variantc_Desc" + "image_inventory" "econ/characters/customplayer_ctm_gendarmerie_variantc" + "item_rarity" "ancient" + "default_cheer" "gendarmerie" + "vo_prefix" "gendarmerie_fem_epic" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_gendarmerie_variantc.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_gendarmerie01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20039" + "4752" { - "name" "coupon - massivepear" - "item_name" "#coupon_massivepear" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - massivepear" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_gendarmerie_variantd" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_gendarmerie_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gendarmerie_variantd" + "item_description" "#CSGO_CustomPlayer_ctm_gendarmerie_variantd_Desc" + "image_inventory" "econ/characters/customplayer_ctm_gendarmerie_variantd" + "item_rarity" "rare" + "vo_prefix" "gendarmerie_male" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_gendarmerie_variantd.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20040" + "4753" { - "name" "coupon - mylittlefriend" - "item_name" "#coupon_mylittlefriend" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - mylittlefriend" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_gendarmerie_variante" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_gendarmerie_variante.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_gendarmerie_variante" + "item_description" "#CSGO_CustomPlayer_ctm_gendarmerie_variante_Desc" + "image_inventory" "econ/characters/customplayer_ctm_gendarmerie_variante" + "item_rarity" "mythical" + "vo_prefix" "gendarmerie_male" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_gendarmerie_variante.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose04" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20041" + } + "items" + { + "4757" + { + "name" "customplayer_ctm_diver_varianta" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_diver_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_diver_varianta" + "item_description" "#CSGO_CustomPlayer_ctm_diver_varianta_Desc" + "image_inventory" "econ/characters/customplayer_ctm_diver_varianta" + "item_rarity" "ancient" + "default_cheer" "scuba_female" + "vo_prefix" "seal_fem" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_diver_varianta.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_scuba_female" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } + } + "4771" { - "name" "coupon - pandamonium" - "item_name" "#coupon_pandamonium" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - pandamonium" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_diver_variantb" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_diver_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_diver_variantb" + "item_description" "#CSGO_CustomPlayer_ctm_diver_variantb_Desc" + "image_inventory" "econ/characters/customplayer_ctm_diver_variantb" + "item_rarity" "ancient" + "default_cheer" "scuba_male" + "vo_prefix" "seal_diver_01" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_diver_variantb.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_scuba_male" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20042" + "4772" { - "name" "coupon - pieceofcake" - "item_name" "#coupon_pieceofcake" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - pieceofcake" - "prefab" "coupon_prefab" + "name" "customplayer_ctm_diver_variantc" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/ctm_diver_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_ctm_diver_variantc" + "item_description" "#CSGO_CustomPlayer_ctm_diver_variantc_Desc" + "image_inventory" "econ/characters/customplayer_ctm_diver_variantc" + "item_rarity" "legendary" + "vo_prefix" "seal_diver_02" + "legacy_character" "0" + "used_by_classes" + { + "counter-terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/ctm_diver_variantc.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_ct_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20043" + } + "items" + { + "4773" { - "name" "coupon - saschicken" - "item_name" "#coupon_saschicken" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - saschicken" - "prefab" "coupon_prefab" + "name" "customplayer_tm_jungle_raider_varianta" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_varianta.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_varianta" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_varianta_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_varianta" + "item_rarity" "legendary" + "vo_prefix" "jungle_male" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_varianta.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20044" + "4774" { - "name" "coupon - thuglife" - "item_name" "#coupon_thuglife" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - thuglife" - "prefab" "coupon_prefab" + "name" "customplayer_tm_jungle_raider_variantb" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_variantb.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_variantb" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_variantb_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_variantb" + "item_rarity" "ancient" + "default_cheer" "guerilla" + "vo_prefix" "jungle_male_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_variantb.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_jungle_male" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20045" + "4775" { - "name" "coupon - trekt" - "item_name" "#coupon_trekt" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - trekt" - "prefab" "coupon_prefab" + "name" "customplayer_tm_jungle_raider_variantc" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_variantc.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_variantc" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_variantc_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_variantc" + "item_rarity" "legendary" + "vo_prefix" "jungle_male" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_variantc.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20046" + "4776" { - "name" "coupon - warowl" - "item_name" "#coupon_warowl" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - warowl" - "prefab" "coupon_prefab" + "name" "customplayer_tm_jungle_raider_variantd" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_variantd.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_variantd" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_variantd_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_variantd" + "item_rarity" "mythical" + "vo_prefix" "jungle_male" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_variantd.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20047" + "4777" { - "name" "coupon - workforfood" - "item_name" "#coupon_workforfood" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - workforfood" - "prefab" "coupon_prefab" + "name" "customplayer_tm_jungle_raider_variante" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_variante.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_variante" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_variante_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_variante" + "item_rarity" "ancient" + "default_cheer" "guerilla02" + "vo_prefix" "jungle_fem_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_variante.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_jungle_female" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20048" + "4778" { - "name" "coupon - phoenix_foil" - "item_name" "#coupon_phoenix_foil" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - phoenix_foil" - "prefab" "coupon_prefab" + "name" "customplayer_tm_jungle_raider_variantf" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_variantf.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_variantf" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_variantf_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_variantf" + "item_rarity" "rare" + "vo_prefix" "jungle_fem" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_variantf.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20049" + "4780" { - "name" "coupon - bombsquad_foil" - "item_name" "#coupon_bombsquad_foil" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - bombsquad_foil" - "prefab" "coupon_prefab" + "name" "customplayer_tm_jungle_raider_variantb2" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_variantb2.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_variantb2" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_variantb2_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_variantb2" + "item_rarity" "ancient" + "default_cheer" "guerilla" + "vo_prefix" "jungle_male_epic" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_variantb2.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_jungle_male" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20050" + "4781" { - "name" "coupon - midnightriders_01" - "item_name" "#coupon_midnightriders_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - midnightriders_01" - "prefab" "valve coupon_prefab" - "image_inventory" "econ/music_kits/midnightriders_01" + "name" "customplayer_tm_jungle_raider_variantf2" + "prefab" "customplayertradable" + "model_player" "models/player/custom_player/legacy/tm_jungle_raider_variantf2.mdl" + "item_name" "#CSGO_CustomPlayer_tm_jungle_raider_variantf2" + "item_description" "#CSGO_CustomPlayer_tm_jungle_raider_variantf2_Desc" + "image_inventory" "econ/characters/customplayer_tm_jungle_raider_variantf2" + "item_rarity" "mythical" + "vo_prefix" "jungle_fem" + "legacy_character" "0" + "used_by_classes" + { + "terrorists" "1" + } + "attributes" + { + "icon display model" "models/player/custom_player/legacy/tm_jungle_raider_variantf2.mdl" + } + "inventory_image_data" + { + "pose_sequence" "cu_t_pose01" + } + "stickers" + { + "0" "1" + "1" "1" + "2" "2" + } } - "20051" + } + "items" + { + "6404" { - "name" "coupon - danielsadowski_02" - "item_name" "#coupon_danielsadowski_02" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - danielsadowski_02" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/danielsadowski_02" + "item_name" "#CSGO_character_operator_dossier_op09_rare" + "name" "character_operator_dossier_op09_rare" + "item_description" "#CSGO_character_operator_dossier_op09_rare_desc" + "loot_list_name" "lootlist_character_operator_dossier_op09_rare" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_rare" + "tag_text" "#CSGO_character_operator_dossier_op09_rare" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20052" + } + "items" + { + "6405" { - "name" "coupon - hotlinemiami_01" - "item_name" "#coupon_hotlinemiami_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - hotlinemiami_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/hotlinemiami_01" + "item_name" "#CSGO_character_operator_dossier_op09_mythical" + "name" "character_operator_dossier_op09_mythical" + "item_description" "#CSGO_character_operator_dossier_op09_mythical_desc" + "loot_list_name" "lootlist_character_operator_dossier_op09_mythical" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_mythical" + "tag_text" "#CSGO_character_operator_dossier_op09_mythical" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20053" + } + "items" + { + "6406" { - "name" "coupon - mattlange_01" - "item_name" "#coupon_mattlange_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - mattlange_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/mattlange_01" + "item_name" "#CSGO_character_operator_dossier_op09_legendary" + "name" "character_operator_dossier_op09_legendary" + "item_description" "#CSGO_character_operator_dossier_op09_legendary_desc" + "loot_list_name" "lootlist_character_operator_dossier_op09_legendary" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_legendary" + "tag_text" "#CSGO_character_operator_dossier_op09_legendary" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20054" + } + "items" + { + "6407" { - "name" "coupon - mateomessina_01" - "item_name" "#coupon_mateomessina_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - mateomessina_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/mateomessina_01" + "item_name" "#CSGO_character_operator_dossier_op09_ancient" + "name" "character_operator_dossier_op09_ancient" + "item_description" "#CSGO_character_operator_dossier_op09_ancient_desc" + "loot_list_name" "lootlist_character_operator_dossier_op09_ancient" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_ancient" + "tag_text" "#CSGO_character_operator_dossier_op09_ancient" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20055" + } + "client_loot_lists" + { + "lootlist_character_operator_dossier_op09_rare" { - "name" "coupon - damjanmravunac_01" - "item_name" "#coupon_damjanmravunac_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - damjanmravunac_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/damjanmravunac_01" + "customplayer_ctm_sas_variantf" "1" + "customplayer_tm_phoenix_varianth" "1" + "customplayer_tm_phoenix_variantf" "1" + "customplayer_tm_leet_variantg" "1" + "customplayer_ctm_fbi_variantf" "1" + "customplayer_ctm_st6_variantk" "1" + "customplayer_ctm_st6_variante" "1" } - "20056" + "lootlist_character_operator_dossier_op09_mythical" { - "name" "coupon - flickshot" - "item_name" "#coupon_flickshot" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - flickshot" - "prefab" "coupon_prefab" + "customplayer_tm_balkan_variantf" "1" + "customplayer_tm_phoenix_variantg" "1" + "customplayer_tm_leet_varianth" "1" + "customplayer_ctm_st6_variantg" "1" + "customplayer_tm_balkan_varianti" "1" + "customplayer_ctm_fbi_variantg" "1" } - "20057" + "lootlist_character_operator_dossier_op09_legendary" { - "name" "coupon - headshot_guarantee" - "item_name" "#coupon_headshot_guarantee" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - headshot_guarantee" - "prefab" "coupon_prefab" + "customplayer_tm_balkan_variantg" "1" + "customplayer_tm_leet_varianti" "1" + "customplayer_ctm_st6_variantm" "1" + "customplayer_ctm_fbi_varianth" "1" + "customplayer_tm_balkan_variantj" "1" } - "20058" + "lootlist_character_operator_dossier_op09_ancient" { - "name" "coupon - eco_rush" - "item_name" "#coupon_eco_rush" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - eco_rush" - "prefab" "coupon_prefab" + "customplayer_tm_leet_variantf" "1" + "customplayer_tm_balkan_varianth" "1" + "customplayer_ctm_fbi_variantb" "1" + "customplayer_ctm_st6_varianti" "1" } - "20059" + } + "items" + { + "4707" { - "name" "coupon - just_trolling" - "item_name" "#coupon_just_trolling" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - just_trolling" - "prefab" "valve coupon_prefab" + "item_name" "#CSGO_character_operator_dossier_op09_rare" + "name" "character_operator_dossier_op10_rare" + "item_description" "#CSGO_character_operator_dossier_op09_rare_desc" + "loot_list_name" "lootlist_character_operator_dossier_op10_rare" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_rare" + "tag_text" "#CSGO_character_operator_dossier_op09_rare" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20061" + } + "items" + { + "4708" { - "name" "coupon - firestarter_holo" - "item_name" "#coupon_firestarter_holo" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - firestarter_holo" - "prefab" "coupon_prefab" + "item_name" "#CSGO_character_operator_dossier_op09_mythical" + "name" "character_operator_dossier_op10_mythical" + "item_description" "#CSGO_character_operator_dossier_op09_mythical_desc" + "loot_list_name" "lootlist_character_operator_dossier_op10_mythical" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_mythical" + "tag_text" "#CSGO_character_operator_dossier_op09_mythical" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20062" + } + "items" + { + "4709" { - "name" "coupon - lucky_cat_foil" - "item_name" "#coupon_lucky_cat_foil" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - lucky_cat_foil" - "prefab" "coupon_prefab" + "item_name" "#CSGO_character_operator_dossier_op09_legendary" + "name" "character_operator_dossier_op10_legendary" + "item_description" "#CSGO_character_operator_dossier_op09_legendary_desc" + "loot_list_name" "lootlist_character_operator_dossier_op10_legendary" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_legendary" + "tag_text" "#CSGO_character_operator_dossier_op09_legendary" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20063" + } + "items" + { + "4710" { - "name" "coupon - robot_head" - "item_name" "#coupon_robot_head" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - robot_head" - "prefab" "coupon_prefab" + "item_name" "#CSGO_character_operator_dossier_op10_ancient1" + "name" "character_operator_dossier_op10_ancient1" + "item_description" "#CSGO_character_operator_dossier_op09_ancient_desc" + "loot_list_name" "lootlist_character_operator_dossier_op10_ancient1" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_ancient" + "tag_text" "#CSGO_character_operator_dossier_op09_ancient" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20064" + } + "items" + { + "4724" { - "name" "coupon - witchcraft" - "item_name" "#coupon_witchcraft" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - witchcraft" - "prefab" "coupon_prefab" + "item_name" "#CSGO_character_operator_dossier_op10_ancient2" + "name" "character_operator_dossier_op10_ancient2" + "item_description" "#CSGO_character_operator_dossier_op09_ancient_desc" + "loot_list_name" "lootlist_character_operator_dossier_op10_ancient2" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_ancient" + "tag_text" "#CSGO_character_operator_dossier_op09_ancient" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20065" + } + "client_loot_lists" + { + "lootlist_character_operator_dossier_op10_rare" { - "name" "coupon - wanna_fight" - "item_name" "#coupon_wanna_fight" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - wanna_fight" - "prefab" "coupon_prefab" + "customplayer_ctm_swat_variantj" "1" + "customplayer_ctm_swat_varianth" "1" + "customplayer_tm_balkan_variantl" "1" + "customplayer_tm_phoenix_varianti" "1" } - "20066" + "lootlist_character_operator_dossier_op10_mythical" { - "name" "coupon - hostage_rescue" - "item_name" "#coupon_hostage_rescue" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - hostage_rescue" - "prefab" "coupon_prefab" + "customplayer_ctm_st6_variantj" "1" + "customplayer_ctm_swat_variantg" "1" + "customplayer_ctm_swat_varianti" "1" + "customplayer_tm_professional_varj" "1" + "customplayer_tm_professional_varh" "1" } - "20067" + "lootlist_character_operator_dossier_op10_legendary" { - "name" "coupon - hamster_hawk" - "item_name" "#coupon_hamster_hawk" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - hamster_hawk" - "prefab" "coupon_prefab" + "customplayer_ctm_st6_variantl" "1" + "customplayer_tm_balkan_variantk" "1" + "customplayer_ctm_swat_variantf" "1" + "customplayer_tm_professional_varg" "1" + "customplayer_tm_professional_vari" "1" } - "20068" + "lootlist_character_operator_dossier_op10_ancient1" { - "name" "coupon - headless_chicken" - "item_name" "#coupon_headless_chicken" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - headless_chicken" - "prefab" "coupon_prefab" + "customplayer_ctm_swat_variante" "1" } - "20069" + "lootlist_character_operator_dossier_op10_ancient2" { - "name" "coupon - proxy_01" - "item_name" "#coupon_proxy_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - proxy_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/proxy_01" + "customplayer_tm_professional_varf" "1" + "customplayer_tm_professional_varf1" "1" + "customplayer_tm_professional_varf2" "1" + "customplayer_tm_professional_varf3" "1" + "customplayer_tm_professional_varf4" "1" } - "20070" + } + "items" + { + "4766" { - "name" "coupon - kitheory_01" - "item_name" "#coupon_kitheory_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - kitheory_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/kitheory_01" + "item_name" "#CSGO_character_operator_dossier_op09_rare" + "name" "character_operator_dossier_op11_rare" + "item_description" "#CSGO_character_operator_dossier_op09_rare_desc" + "loot_list_name" "lootlist_character_operator_dossier_op11_rare" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_rare" + "tag_text" "#CSGO_character_operator_dossier_op09_rare" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20071" + } + "items" + { + "4767" { - "name" "coupon - troelsfolmann_01" - "item_name" "#coupon_troelsfolmann_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - troelsfolmann_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/troelsfolmann_01" + "item_name" "#CSGO_character_operator_dossier_op09_mythical" + "name" "character_operator_dossier_op11_mythical" + "item_description" "#CSGO_character_operator_dossier_op09_mythical_desc" + "loot_list_name" "lootlist_character_operator_dossier_op11_mythical" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_mythical" + "tag_text" "#CSGO_character_operator_dossier_op09_mythical" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20072" + } + "items" + { + "4768" { - "name" "coupon - kellybailey_01" - "item_name" "#coupon_kellybailey_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - kellybailey_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/kellybailey_01" + "item_name" "#CSGO_character_operator_dossier_op09_legendary" + "name" "character_operator_dossier_op11_legendary" + "item_description" "#CSGO_character_operator_dossier_op09_legendary_desc" + "loot_list_name" "lootlist_character_operator_dossier_op11_legendary" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_legendary" + "tag_text" "#CSGO_character_operator_dossier_op09_legendary" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20073" + } + "items" + { + "4769" { - "name" "coupon - skog_02" - "item_name" "#coupon_skog_02" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - skog_02" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/skog_02" + "item_name" "#CSGO_character_operator_dossier_op11_ancient1" + "name" "character_operator_dossier_op11_ancient1" + "item_description" "#CSGO_character_operator_dossier_op09_ancient_desc" + "loot_list_name" "lootlist_character_operator_dossier_op11_ancient1" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_ancient" + "tag_text" "#CSGO_character_operator_dossier_op09_ancient" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20074" + } + "items" + { + "4770" { - "name" "coupon - enfu_sticker_capsule" - "item_name" "#coupon_enfu_sticker_capsule" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - enfu_sticker_capsule" - "prefab" "coupon_enfu_capsule_prefab" + "item_name" "#CSGO_character_operator_dossier_op11_ancient2" + "name" "character_operator_dossier_op11_ancient2" + "item_description" "#CSGO_character_operator_dossier_op09_ancient_desc" + "loot_list_name" "lootlist_character_operator_dossier_op11_ancient2" + "image_inventory" "econ/weapon_cases/dossier" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "OperatorDossier" + { + "tag_value" "lootlist_character_operator_dossier_op09_ancient" + "tag_text" "#CSGO_character_operator_dossier_op09_ancient" + "tag_group" "OperatorDossier" + "tag_group_text" "#SFUI_InvTooltip_OperatorDossierTag" + } + } } - "20075" + } + "client_loot_lists" + { + "lootlist_character_operator_dossier_op11_rare" { - "name" "coupon - awp_country" - "item_name" "#coupon_awp_country" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - awp_country" - "prefab" "coupon_prefab" + "customplayer_ctm_st6_variantn" "1" + "customplayer_ctm_gendarmerie_variantd" "1" + "customplayer_ctm_sas_variantg" "1" + "customplayer_tm_leet_variantj" "1" + "customplayer_tm_jungle_raider_variantf" "1" } - "20076" + "lootlist_character_operator_dossier_op11_mythical" { - "name" "coupon - chi_bomb" - "item_name" "#coupon_chi_bomb" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - chi_bomb" - "prefab" "coupon_prefab" + "customplayer_tm_jungle_raider_variantd" "1" + "customplayer_ctm_gendarmerie_varianta" "1" + "customplayer_ctm_gendarmerie_variante" "1" + "customplayer_ctm_swat_variantk" "1" + "customplayer_tm_jungle_raider_variantf2" "1" } - "20077" + "lootlist_character_operator_dossier_op11_legendary" { - "name" "coupon - fox" - "item_name" "#coupon_fox" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - fox" - "prefab" "coupon_prefab" + "customplayer_ctm_diver_variantc" "1" + "customplayer_ctm_gendarmerie_variantb" "1" + "customplayer_tm_professional_varf5" "1" + "customplayer_tm_jungle_raider_varianta" "1" + "customplayer_tm_jungle_raider_variantc" "1" } - "20078" + "lootlist_character_operator_dossier_op11_ancient1" { - "name" "coupon - knifeclub" - "item_name" "#coupon_knifeclub" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - knifeclub" - "prefab" "coupon_prefab" + "customplayer_ctm_gendarmerie_variantc" "1" + "customplayer_ctm_diver_varianta" "1" + "customplayer_ctm_diver_variantb" "1" } - "20079" + "lootlist_character_operator_dossier_op11_ancient2" { - "name" "coupon - cs_on_the_mind" - "item_name" "#coupon_cs_on_the_mind" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - cs_on_the_mind" - "prefab" "coupon_prefab" + "customplayer_tm_jungle_raider_variantb" "1" + "customplayer_tm_jungle_raider_variantb2" "1" + "customplayer_tm_jungle_raider_variante" "1" } - "20080" + } + "paint_kits" + { + "801" { - "name" "coupon - ninja_defuse" - "item_name" "#coupon_ninja_defuse" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - ninja_defuse" - "prefab" "coupon_prefab" + "name" "cu_ak47_asiimov" + "description_string" "#PaintKit_cu_ak47_asiimov" + "description_tag" "#PaintKit_cu_ak47_asiimov_Tag" + "style" "7" + "pattern" "workshop/ak47_asiimov" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.700000" } - "20081" + "802" { - "name" "coupon - pros_dont_fake" - "item_name" "#coupon_pros_dont_fake" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - pros_dont_fake" - "prefab" "coupon_prefab" + "name" "cu_ump_arrows" + "description_string" "#PaintKit_cu_ump_arrows" + "description_tag" "#PaintKit_cu_ump_arrows_Tag" + "style" "7" + "pattern" "workshop/ump_arrows" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "64" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "20082" + "803" { - "name" "coupon - kawaiikiller_t" - "item_name" "#coupon_kawaiikiller_t" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - kawaiikiller_t" - "prefab" "coupon_prefab" + "name" "cu_awp_neonoir" + "description_string" "#PaintKit_cu_awp_neonoir" + "description_tag" "#PaintKit_cu_awp_neonoir_Tag" + "style" "7" + "pattern" "workshop/awp_neonoir" + "use_normal" "1" + "normal" "workshop/awp_neonoir_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "20083" + "804" { - "name" "coupon - baackstabber" - "item_name" "#coupon_baackstabber" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - baackstabber" - "prefab" "coupon_prefab" + "name" "gs_mp9_colony01" + "description_string" "#PaintKit_gs_mp9_colony01" + "description_tag" "#PaintKit_gs_mp9_colony01_Tag" + "style" "9" + "pattern" "workshop/mp9_colony01" + "color0" "128 128 128 255" + "color1" "198 198 198" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "125" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "20084" + "805" { - "name" "coupon - delicious_tears" - "item_name" "#coupon_delicious_tears" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - delicious_tears" - "prefab" "coupon_prefab" + "name" "gs_deagle_mecha" + "description_string" "#PaintKit_gs_deagle_mecha" + "description_tag" "#PaintKit_gs_deagle_mecha_Tag" + "style" "9" + "pattern" "workshop/deagle_mecha" + "color0" "54 54 54" + "color1" "194 194 194" + "color2" "143 133 110" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "70" + "phongintensity" "25" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "20085" + "806" { - "name" "coupon - danielsadowski_03" - "item_name" "#coupon_danielsadowski_03" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - danielsadowski_03" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/danielsadowski_03" + "name" "gs_g3sg1_savage" + "description_string" "#PaintKit_gs_g3sg1_savage" + "description_tag" "#PaintKit_gs_g3sg1_savage_Tag" + "style" "9" + "pattern" "workshop/g3sg1_savage" + "use_normal" "1" + "normal" "workshop/g3sg1_savage_normal" + "color0" "128 128 128 255" + "color1" "168 168 168" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "5" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "20086" + "807" { - "name" "coupon - awolnation_01" - "item_name" "#coupon_awolnation_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - awolnation_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/awolnation_01" + "name" "hy_galil_signal_red" + "description_string" "#PaintKit_hy_galil_signal_red" + "description_tag" "#PaintKit_hy_galil_signal_red_Tag" + "style" "2" + "pattern" "workshop/galil_signal_red" + "color0" "35 35 35" + "color1" "218 49 45" + "color2" "39 40 50" + "color3" "28 39 61" + "pattern_scale" "4.000000" + "phongexponent" "255" + "phongintensity" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "25.000000" + "pattern_rotate_end" "325.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "20087" + "808" { - "name" "coupon - mordfustang_01" - "item_name" "#coupon_mordfustang_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - mordfustang_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/mordfustang_01" + "name" "cu_glock18_corroden" + "description_string" "#PaintKit_cu_glock18_corroden" + "description_tag" "#PaintKit_cu_glock18_corroden_Tag" + "style" "7" + "pattern" "workshop/glock18_corroden" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" } - "20088" + "809" { - "name" "coupon - michaelbross_01" - "item_name" "#coupon_michaelbross_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - michaelbross_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/michaelbross_01" + "name" "gs_nova_hunter_brute" + "description_string" "#PaintKit_gs_nova_hunter_brute" + "description_tag" "#PaintKit_gs_nova_hunter_brute_Tag" + "style" "9" + "pattern" "workshop/nova_hunter_brute" + "use_normal" "1" + "normal" "workshop/nova_hunter_brute_normal" + "color0" "31 31 31" + "color1" "217 217 217" + "color2" "111 111 111" + "color3" "57 55 55" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "70" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "20089" + "810" { - "name" "coupon - ianhultquist_01" - "item_name" "#coupon_ianhultquist_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - ianhultquist_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/ianhultquist_01" + "name" "gs_mp5_festival_drip" + "description_string" "#PaintKit_gs_mp5_festival_drip" + "description_tag" "#PaintKit_gs_mp5_festival_drip_Tag" + "style" "9" + "pattern" "workshop/mp5_festival_drip" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "0 0 0" + "pattern_scale" "1" + "phongexponent" "50" + "phongintensity" "20" + "phongalbedoboost" "2" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0" + "pattern_offset_x_end" "0" + "pattern_offset_y_start" "0" + "pattern_offset_y_end" "0" + "pattern_rotate_start" "0" + "pattern_rotate_end" "0" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "20090" + "811" { - "name" "coupon - newbeatfund_01" - "item_name" "#coupon_newbeatfund_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - newbeatfund_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/newbeatfund_01" + "name" "gs_m4a4_chopper_ghost" + "description_string" "#PaintKit_gs_m4a4_chopper_ghost" + "description_tag" "#PaintKit_gs_m4a4_chopper_ghost_Tag" + "style" "9" + "pattern" "workshop/m4a4_chopper_ghost" + "use_normal" "1" + "normal" "workshop/m4a4_chopper_ghost_normal" + "color0" "51 51 51" + "color1" "233 233 233" + "color2" "158 158 158" + "color3" "38 35 34" + "pattern_scale" "1.000000" + "phongexponent" "30" + "phongintensity" "20" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "20091" + "812" { - "name" "coupon - beartooth_01" - "item_name" "#coupon_beartooth_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - beartooth_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/beartooth_01" + "name" "gs_mac10_exo_pipes" + "description_string" "#PaintKit_gs_mac10_exo_pipes" + "description_tag" "#PaintKit_gs_mac10_exo_pipes_Tag" + "style" "9" + "pattern" "workshop/mac10_exo_pipes" + "use_normal" "1" + "normal" "workshop/mac10_exo_pipes_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "255 255 255 255" + "color3" "255 255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "0" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" } - "20092" + "813" { - "name" "coupon - lenniemoore_01" - "item_name" "#coupon_lenniemoore_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - lenniemoore_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/lenniemoore_01" + "name" "aa_p250_gravediggers" + "description_string" "#PaintKit_aa_p250_gravediggers" + "description_tag" "#PaintKit_aa_p250_gravediggers_Tag" + "style" "6" + "pattern" "workshop/p250_gravediggers" + "color0" "74 28 24" + "color1" "153 44 29" + "color2" "27 19 28" + "color3" "121 57 16" + "pattern_scale" "1.800000" + "phongexponent" "172" + "phongalbedoboost" "20" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" } - "20093" + "814" { - "name" "coupon - darude_01" - "item_name" "#coupon_darude_01" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - darude_01" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/darude_01" + "name" "cu_sawedoff_black_sand" + "description_string" "#PaintKit_cu_sawedoff_black_sand" + "description_tag" "#PaintKit_cu_sawedoff_black_sand_Tag" + "style" "7" + "pattern" "workshop/sawedoff_black_sand" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" } - "20094" + "815" { - "name" "coupon - proxy_01_stattrak" - "item_name" "#coupon_proxy_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - proxy_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/proxy_01" - "will_produce_stattrak" "1" + "name" "gs_sg553_over_heated" + "description_string" "#PaintKit_gs_sg553_over_heated" + "description_tag" "#PaintKit_gs_sg553_over_heated_Tag" + "style" "9" + "pattern" "workshop/sg553_over_heated" + "use_normal" "0" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongintensity" "50" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.800000" } - "20095" + "816" { - "name" "coupon - kitheory_01_stattrak" - "item_name" "#coupon_kitheory_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - kitheory_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/kitheory_01" - "will_produce_stattrak" "1" + "name" "gs_tec9_fubar" + "description_string" "#PaintKit_gs_tec9_fubar" + "description_tag" "#PaintKit_gs_tec9_fubar_Tag" + "style" "9" + "pattern" "workshop/tec9_fubar" + "color0" "171 153 153" + "color1" "255 255 255" + "color2" "208 214 255" + "color3" "255 206 189" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "20" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.140000" + "wear_remap_max" "1.000000" } - "20096" + "817" { - "name" "coupon - troelsfolmann_01_stattrak" - "item_name" "#coupon_troelsfolmann_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - troelsfolmann_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/troelsfolmann_01" - "will_produce_stattrak" "1" + "name" "cu_usp_flashback" + "description_string" "#PaintKit_cu_usp_flashback" + "description_tag" "#PaintKit_cu_usp_flashback_Tag" + "style" "7" + "pattern" "workshop/usp_flashback" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "20097" + } + "items" + { + "1375" { - "name" "coupon - kellybailey_01_stattrak" - "item_name" "#coupon_kellybailey_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - kellybailey_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/kellybailey_01" - "will_produce_stattrak" "1" + "name" "community_21 Key" + "item_name" "#CSGO_crate_key_community_21" + "item_description" "#CSGO_crate_key_community_21_desc" + "first_sale_date" "2018-11-29" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_21" + "tool" + { + "restriction" "crate_community_21" + } } - "20098" + "4548" { - "name" "coupon - skog_02_stattrak" - "item_name" "#coupon_skog_02_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - skog_02_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/skog_02" - "will_produce_stattrak" "1" + "item_name" "#CSGO_crate_community_21" + "item_description" "#CSGO_crate_community_21_desc" + "name" "crate_community_21" + "image_inventory" "econ/weapon_cases/crate_community_21" + "model_player" "models/props/crates/csgo_drop_crate_dangerzone.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1375" "1" + } + "tool" + { + "restriction" "crate_community_21" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "259" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_21" + "tag_text" "#CSGO_set_community_21" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "20099" + } + "revolving_loot_lists" + { + "259" "crate_community_21" + } + "client_loot_lists" + { + "crate_community_21_rare" { - "name" "coupon - danielsadowski_03_stattrak" - "item_name" "#coupon_danielsadowski_03_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - danielsadowski_03_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/danielsadowski_03" - "will_produce_stattrak" "1" + "[gs_mp9_colony01]weapon_mp9" "1" + "[cu_glock18_corroden]weapon_glock" "1" + "[gs_nova_hunter_brute]weapon_nova" "1" + "[gs_m4a4_chopper_ghost]weapon_m4a1" "1" + "[cu_sawedoff_black_sand]weapon_sawedoff" "1" + "[gs_sg553_over_heated]weapon_sg556" "1" + "[gs_tec9_fubar]weapon_tec9" "1" } - "20100" + "crate_community_21_mythical" { - "name" "coupon - awolnation_01_stattrak" - "item_name" "#coupon_awolnation_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - awolnation_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/awolnation_01" - "will_produce_stattrak" "1" + "[gs_g3sg1_savage]weapon_g3sg1" "1" + "[hy_galil_signal_red]weapon_galilar" "1" + "[gs_mac10_exo_pipes]weapon_mac10" "1" + "[aa_p250_gravediggers]weapon_p250" "1" + "[cu_usp_flashback]weapon_usp_silencer" "1" } - "20101" + "crate_community_21_legendary" { - "name" "coupon - mordfustang_01_stattrak" - "item_name" "#coupon_mordfustang_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - mordfustang_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/mordfustang_01" - "will_produce_stattrak" "1" + "[cu_ump_arrows]weapon_ump45" "1" + "[gs_deagle_mecha]weapon_deagle" "1" + "[gs_mp5_festival_drip]weapon_mp5sd" "1" } - "20102" + "crate_community_21_ancient" { - "name" "coupon - michaelbross_01_stattrak" - "item_name" "#coupon_michaelbross_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - michaelbross_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/michaelbross_01" - "will_produce_stattrak" "1" + "[cu_ak47_asiimov]weapon_ak47" "1" + "[cu_awp_neonoir]weapon_awp" "1" } - "20103" + "crate_community_21" { - "name" "coupon - ianhultquist_01_stattrak" - "item_name" "#coupon_ianhultquist_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - ianhultquist_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/ianhultquist_01" - "will_produce_stattrak" "1" + "crate_community_21_rare" "1" + "crate_community_21_mythical" "1" + "crate_community_21_legendary" "1" + "crate_community_21_ancient" "1" + "set_community_20_unusual" "1" } - "20104" + } + "item_sets" + { + "set_community_21" { - "name" "coupon - newbeatfund_01_stattrak" - "item_name" "#coupon_newbeatfund_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - newbeatfund_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/newbeatfund_01" - "will_produce_stattrak" "1" + "name" "#CSGO_set_community_21" + "set_description" "#CSGO_set_community_21_desc" + "is_collection" "1" + "items" + { + "[gs_mp9_colony01]weapon_mp9" "1" + "[cu_glock18_corroden]weapon_glock" "1" + "[gs_nova_hunter_brute]weapon_nova" "1" + "[gs_m4a4_chopper_ghost]weapon_m4a1" "1" + "[cu_sawedoff_black_sand]weapon_sawedoff" "1" + "[gs_sg553_over_heated]weapon_sg556" "1" + "[gs_tec9_fubar]weapon_tec9" "1" + "[gs_g3sg1_savage]weapon_g3sg1" "1" + "[hy_galil_signal_red]weapon_galilar" "1" + "[gs_mac10_exo_pipes]weapon_mac10" "1" + "[aa_p250_gravediggers]weapon_p250" "1" + "[cu_usp_flashback]weapon_usp_silencer" "1" + "[cu_ump_arrows]weapon_ump45" "1" + "[gs_deagle_mecha]weapon_deagle" "1" + "[gs_mp5_festival_drip]weapon_mp5sd" "1" + "[cu_ak47_asiimov]weapon_ak47" "1" + "[cu_awp_neonoir]weapon_awp" "1" + } } - "20105" + } + "paint_kits_rarity" + { + "cu_ak47_asiimov" "legendary" + "cu_ump_arrows" "legendary" + "cu_awp_neonoir" "legendary" + "gs_mp9_colony01" "rare" + "gs_deagle_mecha" "mythical" + "gs_g3sg1_savage" "mythical" + "hy_galil_signal_red" "mythical" + "cu_glock18_corroden" "uncommon" + "gs_nova_hunter_brute" "rare" + "gs_mp5_festival_drip" "legendary" + "gs_m4a4_chopper_ghost" "uncommon" + "gs_mac10_exo_pipes" "mythical" + "aa_p250_gravediggers" "mythical" + "cu_sawedoff_black_sand" "rare" + "gs_sg553_over_heated" "rare" + "gs_tec9_fubar" "rare" + "cu_usp_flashback" "rare" + } + "paint_kits" + { + "835" { - "name" "coupon - beartooth_01_stattrak" - "item_name" "#coupon_beartooth_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - beartooth_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/beartooth_01" - "will_produce_stattrak" "1" + "name" "sp_famas_ghost_insects" + "description_string" "#PaintKit_sp_famas_ghost_insects" + "description_tag" "#PaintKit_sp_famas_ghost_insects_Tag" + "style" "3" + "pattern" "workshop/famas_ghost_insects" + "color0" "13 13 13" + "color1" "161 140 105" + "color2" "140 84 56" + "color3" "36 32 28" + "pattern_scale" "1.250000" + "phongexponent" "225" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "70.000000" + "pattern_rotate_end" "110.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "20106" + "836" { - "name" "coupon - lenniemoore_01_stattrak" - "item_name" "#coupon_lenniemoore_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - lenniemoore_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/lenniemoore_01" - "will_produce_stattrak" "1" + "name" "cu_ak47_aztec" + "description_string" "#PaintKit_cu_ak47_aztec" + "description_tag" "#PaintKit_cu_ak47_aztec_Tag" + "style" "7" + "pattern" "workshop/ak47_aztec" + "use_normal" "1" + "normal" "workshop/ak47_aztec_normal" + "pattern_scale" "1.000000" + "phongexponent" "210" + "phongintensity" "26" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "20107" + "837" { - "name" "coupon - darude_01_stattrak" - "item_name" "#coupon_darude_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - darude_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/darude_01" - "will_produce_stattrak" "1" + "name" "cu_five_seven_angry" + "description_string" "#PaintKit_cu_five_seven_angry" + "description_tag" "#PaintKit_cu_five_seven_angry_Tag" + "style" "7" + "pattern" "workshop/five_seven_angry" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "20108" + "838" { - "name" "coupon - danielsadowski_01_stattrak" - "item_name" "#coupon_danielsadowski_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - danielsadowski_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/danielsadowski_01" - "will_produce_stattrak" "1" + "name" "cu_awp_viper" + "description_string" "#PaintKit_cu_awp_viper" + "description_tag" "#PaintKit_cu_awp_viper_Tag" + "style" "7" + "pattern" "workshop/awp_viper" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "20109" + "839" { - "name" "coupon - noisia_01_stattrak" - "item_name" "#coupon_noisia_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - noisia_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/noisia_01" - "will_produce_stattrak" "1" + "name" "cu_tec9_bamboo" + "description_string" "#PaintKit_cu_tec9_bamboo" + "description_tag" "#PaintKit_cu_tec9_bamboo_Tag" + "style" "7" + "pattern" "workshop/tec9_bamboo" + "use_normal" "1" + "normal" "workshop/tec9_bamboo_normal" + "pattern_scale" "1.000000" + "phongexponent" "210" + "phongintensity" "65" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "20110" + "840" { - "name" "coupon - robertallaire_01_stattrak" - "item_name" "#coupon_robertallaire_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - robertallaire_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/robertallaire_01" - "will_produce_stattrak" "1" + "name" "gs_mac10_fish_bait" + "description_string" "#PaintKit_gs_mac10_fish_bait" + "description_tag" "#PaintKit_gs_mac10_fish_bait_Tag" + "style" "9" + "pattern" "workshop/mac10_fish_bait" + "color0" "187 187 187" + "color1" "169 169 169" + "color2" "215 215 215" + "color3" "230 230 230" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "1" + "phongalbedoboost" "9" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "20111" + "841" { - "name" "coupon - seanmurray_01_stattrak" - "item_name" "#coupon_seanmurray_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - seanmurray_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/seanmurray_01" - "will_produce_stattrak" "1" + "name" "gs_deagle_exo" + "description_string" "#PaintKit_gs_deagle_exo" + "description_tag" "#PaintKit_gs_deagle_exo_Tag" + "style" "9" + "pattern" "workshop/deagle_exo" + "use_normal" "1" + "normal" "workshop/deagle_exo_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "255 255 255 255" + "color3" "255 255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "18" + "phongintensity" "255" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" } - "20112" + "842" { - "name" "coupon - feedme_01_stattrak" - "item_name" "#coupon_feedme_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - feedme_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/feedme_01" - "will_produce_stattrak" "1" + "name" "sp_galil_akoben" + "description_string" "#PaintKit_sp_galil_akoben" + "description_tag" "#PaintKit_sp_galil_akoben_Tag" + "style" "3" + "pattern" "workshop/galil_akoben" + "color0" "116 38 12" + "color1" "255 216 0" + "color2" "234 232 232" + "color3" "7 9 21" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "1.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "20113" + "843" { - "name" "coupon - dren_01_stattrak" - "item_name" "#coupon_dren_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - dren_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/dren_01" - "will_produce_stattrak" "1" + "name" "cu_revolver_oppressor" + "description_string" "#PaintKit_cu_revolver_oppressor" + "description_tag" "#PaintKit_cu_revolver_oppressor_Tag" + "style" "7" + "pattern" "workshop/revolver_oppressor" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.250000" + "wear_remap_max" "0.800000" } - "20114" + "844" { - "name" "coupon - austinwintory_01_stattrak" - "item_name" "#coupon_austinwintory_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - austinwintory_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/austinwintory_01" - "will_produce_stattrak" "1" + "name" "gs_m4a4_emperor" + "description_string" "#PaintKit_gs_m4a4_emperor" + "description_tag" "#PaintKit_gs_m4a4_emperor_Tag" + "style" "9" + "pattern" "workshop/m4a4_emperor" + "color0" "134 95 34" + "color1" "207 188 188" + "color2" "66 50 39" + "color3" "187 152 103" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "2" + "phongalbedoboost" "14" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "20115" + "845" { - "name" "coupon - sasha_01_stattrak" - "item_name" "#coupon_sasha_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - sasha_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/sasha_01" - "will_produce_stattrak" "1" + "name" "cu_aug_momentum" + "description_string" "#PaintKit_cu_aug_momentum" + "description_tag" "#PaintKit_cu_aug_momentum_Tag" + "style" "7" + "pattern" "workshop/aug_momentum" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "1.000000" } - "20116" + "846" { - "name" "coupon - skog_01_stattrak" - "item_name" "#coupon_skog_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - skog_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/skog_01" - "will_produce_stattrak" "1" + "name" "gs_mp5sd_astromatic" + "description_string" "#PaintKit_gs_mp5sd_astromatic" + "description_tag" "#PaintKit_gs_mp5sd_astromatic_Tag" + "style" "9" + "pattern" "workshop/mp5sd_astromatic" + "use_normal" "1" + "normal" "workshop/mp5sd_astromatic_normal" + "color0" "255 255 255" + "color1" "136 136 136" + "color2" "255 255 255" + "color3" "148 98 68" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "64" + "phongalbedoboost" "32" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "20117" + "847" { - "name" "coupon - midnightriders_01_stattrak" - "item_name" "#coupon_midnightriders_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - midnightriders_01_stattrak" - "prefab" "valve coupon_prefab" - "image_inventory" "econ/music_kits/midnightriders_01" - "will_produce_stattrak" "1" + "name" "cu_mp7_racketeer" + "description_string" "#PaintKit_cu_mp7_racketeer" + "description_tag" "#PaintKit_cu_mp7_racketeer_Tag" + "style" "7" + "pattern" "workshop/mp7_racketeer" + "use_normal" "1" + "normal" "workshop/mp7_racketeer_norm" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "90" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.100000" + "wear_remap_max" "1.000000" } - "20118" + "848" { - "name" "coupon - danielsadowski_02_stattrak" - "item_name" "#coupon_danielsadowski_02_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - danielsadowski_02_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/danielsadowski_02" - "will_produce_stattrak" "1" + "name" "aq_p250_verdigris" + "description_string" "#PaintKit_aq_p250_verdigris" + "description_tag" "#PaintKit_aq_p250_verdigris_Tag" + "style" "8" + "pattern" "workshop/p250_verdigris" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "47 123 128" + "color3" "41 113 104" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongalbedoboost" "44" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "20119" + "849" { - "name" "coupon - hotlinemiami_01_stattrak" - "item_name" "#coupon_hotlinemiami_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - hotlinemiami_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/hotlinemiami_01" - "will_produce_stattrak" "1" + "name" "cu_p90_offworld" + "description_string" "#PaintKit_cu_p90_offworld" + "description_tag" "#PaintKit_cu_p90_offworld_Tag" + "style" "7" + "pattern" "workshop/p90_offworld" + "pattern_scale" "1.000000" + "phongexponent" "230" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "20120" + "850" { - "name" "coupon - mattlange_01_stattrak" - "item_name" "#coupon_mattlange_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - mattlange_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/mattlange_01" - "will_produce_stattrak" "1" + "name" "cu_xm1014_incinerator" + "description_string" "#PaintKit_cu_xm1014_incinerator" + "description_tag" "#PaintKit_cu_xm1014_incinerator_Tag" + "style" "7" + "pattern" "workshop/xm1014_incinerator" + "pattern_scale" "1.000000" + "phongexponent" "230" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.140000" + "wear_remap_max" "0.650000" } - "20121" + "851" { - "name" "coupon - mateomessina_01_stattrak" - "item_name" "#coupon_mateomessina_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - mateomessina_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/mateomessina_01" - "will_produce_stattrak" "1" + "name" "aa_ump45_moonrise_sunset" + "description_string" "#PaintKit_aa_ump45_moonrise_sunset" + "description_tag" "#PaintKit_aa_ump45_moonrise_sunset_Tag" + "style" "6" + "pattern" "workshop/ump45_moonrise" + "color0" "24 12 40" + "color1" "255 40 0" + "color2" "40 16 43" + "color3" "190 191 156" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongalbedoboost" "30" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" } - "20122" + "852" { - "name" "coupon - damjanmravunac_01_stattrak" - "item_name" "#coupon_damjanmravunac_01_stattrak" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - damjanmravunac_01_stattrak" - "prefab" "coupon_prefab" - "image_inventory" "econ/music_kits/damjanmravunac_01" - "will_produce_stattrak" "1" + "name" "am_doppler_phase1_widow" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "11 14 27" + "color1" "30 22 12" + "color2" "98 13 28" + "color3" "11 14 27" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "170.000000" + "pattern_rotate_end" "190.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" } - "20123" + "853" { - "name" "coupon - pinups_sticker_capsule" - "item_name" "#coupon_pinups_sticker_capsule" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - pinups_sticker_capsule" - "prefab" "coupon_pinups_capsule_prefab" + "name" "am_doppler_phase2_widow" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "11 14 27" + "color1" "99 9 36" + "color2" "30 22 12" + "color3" "99 9 36" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "170.000000" + "pattern_rotate_end" "190.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" } - "20124" + "854" { - "name" "coupon - slid3_sticker_capsule" - "item_name" "#coupon_slid3_sticker_capsule" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - slid3_sticker_capsule" - "prefab" "coupon_slid3_capsule_prefab" + "name" "am_doppler_phase3_widow" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "6 8 15" + "color1" "34 23 117" + "color2" "7 24 15" + "color3" "28 20 9" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "170.000000" + "pattern_rotate_end" "190.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" } - "20125" + "855" { - "name" "coupon - team_roles_sticker_capsule" - "item_name" "#coupon_team_roles_sticker_capsule" - "item_description" "#coupon_desc" - "loot_list_name" "coupon loot list - team_roles_sticker_capsule" - "prefab" "coupon_team_roles_capsule_prefab" + "name" "am_doppler_phase4_widow" + "description_string" "#PaintKit_am_marbleized" + "description_tag" "#PaintKit_am_marbleized_Tag" + "same_name_family_aggregate" "415-421,617-619,852-855" + "style" "5" + "pattern" "smoke2" + "color0" "7 9 18" + "color1" "34 23 117" + "color2" "12 31 174" + "color3" "28 20 9" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "170.000000" + "pattern_rotate_end" "190.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" } - } - "attributes" - { - "1" + "856" { - "name" "always tradable" - "attribute_class" "always_tradable" - "description_format" "value_is_additive" - "description_string" "#Attrib_AlwaysTradable" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "am_marble_fade_widow" + "description_string" "#PaintKit_am_marble_fade" + "description_tag" "#PaintKit_am_marble_fade_Tag" + "style" "5" + "pattern" "smoke2" + "color0" "9 8 8" + "color1" "156 123 10" + "color2" "143 43 30" + "color3" "30 61 131" + "pattern_scale" "1.600000" + "phongexponent" "34" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "170.000000" + "pattern_rotate_end" "190.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" } - "2" + "857" { - "name" "cannot trade" - "attribute_class" "cannot_trade" - "description_format" "value_is_additive" - "description_string" "#Attrib_CannotTrade" - "hidden" "1" - "effect_type" "negative" - "stored_as_integer" "1" + "name" "aq_damascus_prisma" + "description_string" "#PaintKit_aq_damascus_knife" + "description_tag" "#PaintKit_aq_damascus_Tag" + "style" "8" + "pattern" "damascus" + "color0" "59 64 68" + "color1" "91 95 100" + "color2" "30 31 31" + "color3" "8 5 1" + "pattern_scale" "3.000000" + "phongexponent" "8" + "phongalbedoboost" "25" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "3" + "858" { - "name" "referenced item id low" - "attribute_class" "referenced_item_id_low" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "aq_damascus_widow" + "description_string" "#PaintKit_aq_damascus_knife" + "description_tag" "#PaintKit_aq_damascus_Tag" + "style" "8" + "pattern" "damascus" + "color0" "59 64 68" + "color1" "91 95 100" + "color2" "30 31 31" + "color3" "8 5 1" + "pattern_scale" "3.000000" + "phongexponent" "8" + "phongalbedoboost" "25" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "40.000000" + "pattern_rotate_end" "40.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "4" + } + "items" + { + "1383" { - "name" "referenced item id high" - "attribute_class" "referenced_item_id_high" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "community_22 Key" + "item_name" "#CSGO_crate_key_community_22" + "item_description" "#CSGO_crate_key_community_22_desc" + "first_sale_date" "2019-03-05" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_22" + "tool" + { + "restriction" "crate_community_22" + } } - "6" + "4598" { - "name" "set item texture prefab" - "attribute_class" "set_item_texture_prefab" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "item_name" "#CSGO_crate_community_22" + "item_description" "#CSGO_crate_community_22_desc" + "name" "crate_community_22" + "image_inventory" "econ/weapon_cases/crate_community_22" + "model_player" "models/props/crates/csgo_drop_crate_community_22.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1383" "1" + } + "tool" + { + "restriction" "crate_community_22" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "274" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_22" + "tag_text" "#CSGO_set_community_22" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "7" + } + "revolving_loot_lists" + { + "274" "crate_community_22" + } + "client_loot_lists" + { + "crate_community_22_rare" { - "name" "set item texture seed" - "attribute_class" "set_item_texture_seed" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "[sp_famas_ghost_insects]weapon_famas" "1" + "[cu_ak47_aztec]weapon_ak47" "1" + "[gs_mac10_fish_bait]weapon_mac10" "1" + "[sp_galil_akoben]weapon_galilar" "1" + "[cu_mp7_racketeer]weapon_mp7" "1" + "[aq_p250_verdigris]weapon_p250" "1" + "[cu_p90_offworld]weapon_p90" "1" } - "8" + "crate_community_22_mythical" { - "name" "set item texture wear" - "attribute_class" "set_item_texture_wear" - "hidden" "1" - "description_string" "#Attrib_SetItemTextureWear" - "description_format" "value_is_additive" - "effect_type" "neutral" - "stored_as_integer" "0" + "[cu_awp_viper]weapon_awp" "1" + "[cu_tec9_bamboo]weapon_tec9" "1" + "[gs_deagle_exo]weapon_deagle" "1" + "[gs_mp5sd_astromatic]weapon_mp5sd" "1" + "[aa_ump45_moonrise_sunset]weapon_ump45" "1" } - "10" + "crate_community_22_legendary" { - "name" "has silencer" - "attribute_class" "has_silencer" - "description_format" "value_is_additive" - "description_string" "#Attrib_HasSilencer" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[cu_revolver_oppressor]weapon_revolver" "1" + "[cu_aug_momentum]weapon_aug" "1" + "[cu_xm1014_incinerator]weapon_xm1014" "1" } - "13" + "crate_community_22_ancient" { - "name" "has burst mode" - "attribute_class" "has_burst_mode" - "description_format" "value_is_additive" - "description_string" "#Attrib_HasBurstMode" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[cu_five_seven_angry]weapon_fiveseven" "1" + "[gs_m4a4_emperor]weapon_m4a1" "1" } - "14" + "crate_community_22" { - "name" "cycletime when in burst mode" - "attribute_class" "cycletime_when_in_burst_mode" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "crate_community_22_rare" "1" + "crate_community_22_mythical" "1" + "crate_community_22_legendary" "1" + "crate_community_22_ancient" "1" + "set_community_22_unusual" "1" } - "15" + } + "item_sets" + { + "set_community_22" { - "name" "time between burst shots" - "attribute_class" "time_between_burst_shots" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "#CSGO_set_community_22" + "set_description" "#CSGO_set_community_22_desc" + "is_collection" "1" + "items" + { + "[sp_famas_ghost_insects]weapon_famas" "1" + "[cu_ak47_aztec]weapon_ak47" "1" + "[gs_mac10_fish_bait]weapon_mac10" "1" + "[sp_galil_akoben]weapon_galilar" "1" + "[cu_mp7_racketeer]weapon_mp7" "1" + "[aq_p250_verdigris]weapon_p250" "1" + "[cu_p90_offworld]weapon_p90" "1" + "[cu_awp_viper]weapon_awp" "1" + "[cu_tec9_bamboo]weapon_tec9" "1" + "[gs_deagle_exo]weapon_deagle" "1" + "[gs_mp5sd_astromatic]weapon_mp5sd" "1" + "[aa_ump45_moonrise_sunset]weapon_ump45" "1" + "[cu_revolver_oppressor]weapon_revolver" "1" + "[cu_aug_momentum]weapon_aug" "1" + "[cu_xm1014_incinerator]weapon_xm1014" "1" + "[cu_five_seven_angry]weapon_fiveseven" "1" + "[gs_m4a4_emperor]weapon_m4a1" "1" + } } - "16" + } + "paint_kits_rarity" + { + "sp_famas_ghost_insects" "rare" + "cu_ak47_aztec" "uncommon" + "cu_five_seven_angry" "ancient" + "cu_awp_viper" "rare" + "cu_tec9_bamboo" "mythical" + "gs_mac10_fish_bait" "rare" + "gs_deagle_exo" "rare" + "sp_galil_akoben" "rare" + "cu_revolver_oppressor" "legendary" + "gs_m4a4_emperor" "legendary" + "cu_aug_momentum" "legendary" + "gs_mp5sd_astromatic" "mythical" + "cu_mp7_racketeer" "rare" + "aq_p250_verdigris" "rare" + "cu_p90_offworld" "rare" + "cu_xm1014_incinerator" "legendary" + "aa_ump45_moonrise_sunset" "mythical" + "am_doppler_phase1_widow" "mythical" + "am_doppler_phase2_widow" "mythical" + "am_doppler_phase3_widow" "mythical" + "am_doppler_phase4_widow" "mythical" + "am_marble_fade_widow" "legendary" + "aq_damascus_prisma" "mythical" + "aq_damascus_widow" "mythical" + } + "items" + { + "4601" { - "name" "unzoom after shot" - "attribute_class" "unzoom_after_shot" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "item_name" "#CSGO_set_overpass" + "name" "selfopeningitem_set_overpass" + "image_inventory" "econ/set_icons/set_overpass" + "loot_list_name" "set_overpass" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "17" + "4602" { - "name" "cycletime when zoomed" - "attribute_class" "cycletime_when_zoomed" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_cobblestone" + "name" "selfopeningitem_set_cobblestone" + "image_inventory" "econ/set_icons/set_cobblestone" + "loot_list_name" "set_cobblestone" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_cobblestone" + "tag_text" "#CSGO_set_cobblestone" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "18" + "4603" { - "name" "cannot shoot underwater" - "attribute_class" "cannot_shoot_underwater" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "item_name" "#CSGO_set_cache" + "name" "selfopeningitem_set_cache" + "image_inventory" "econ/set_icons/set_cache" + "loot_list_name" "set_cache" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_cache" + "tag_text" "#CSGO_set_cache" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "19" + "4604" { - "name" "in game price" - "attribute_class" "in_game_price" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_set_gods_and_monsters" + "name" "selfopeningitem_set_gods_and_monsters" + "image_inventory" "econ/set_icons/set_gods_and_monsters" + "loot_list_name" "set_gods_and_monsters" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_gods_and_monsters" + "tag_text" "#CSGO_set_gods_and_monsters" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "20" + "4605" { - "name" "primary clip size" - "attribute_class" "primary_clip_size" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_set_chopshop" + "name" "selfopeningitem_set_chopshop" + "image_inventory" "econ/set_icons/set_chopshop" + "loot_list_name" "set_chopshop" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_chopshop" + "tag_text" "#CSGO_set_chopshop" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "21" + "4606" { - "name" "secondary clip size" - "attribute_class" "secondary_clip_size" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_set_kimono" + "name" "selfopeningitem_set_kimono" + "image_inventory" "econ/set_icons/set_kimono" + "loot_list_name" "set_kimono" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_kimono" + "tag_text" "#CSGO_set_kimono" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "22" + "4608" { - "name" "is full auto" - "attribute_class" "is_full_auto" - "description_format" "value_is_additive" - "description_string" "#Attrib_FullAuto" - "hidden" "0" - "effect_type" "positive" - "attribute_type" "uint32" + "item_name" "#CSGO_set_canals" + "name" "selfopeningitem_set_canals" + "image_inventory" "econ/set_icons/set_canals" + "loot_list_name" "set_canals" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_canals" + "tag_text" "#CSGO_set_canals" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "23" + "4611" { - "name" "heat per shot" - "attribute_class" "heat_per_shot" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_norse" + "name" "selfopeningitem_set_norse" + "image_inventory" "econ/set_icons/set_norse" + "loot_list_name" "set_norse" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_norse" + "tag_text" "#CSGO_set_norse" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "24" + "4612" { - "name" "addon scale" - "attribute_class" "addon_scale" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_stmarc" + "name" "selfopeningitem_set_stmarc" + "image_inventory" "econ/set_icons/set_stmarc" + "loot_list_name" "set_stmarc" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_stmarc" + "tag_text" "#CSGO_set_stmarc" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "25" + "4720" { - "name" "tracer frequency" - "attribute_class" "tracer_frequency" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_set_op10_ct" + "name" "selfopeningitem_set_op10_ct" + "image_inventory" "econ/set_icons/set_op10_ct" + "loot_list_name" "set_op10_ct" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_op10_ct" + "tag_text" "#CSGO_set_op10_ct" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "26" + "4721" { - "name" "max player speed" - "attribute_class" "max_player_speed" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_op10_t" + "name" "selfopeningitem_set_op10_t" + "image_inventory" "econ/set_icons/set_op10_t" + "loot_list_name" "set_op10_t" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_op10_t" + "tag_text" "#CSGO_set_op10_t" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "27" + "4722" { - "name" "max player speed alt" - "attribute_class" "max_player_speed_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_op10_ancient" + "name" "selfopeningitem_set_op10_ancient" + "image_inventory" "econ/set_icons/set_op10_ancient" + "loot_list_name" "set_op10_ancient" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_op10_ancient" + "tag_text" "#CSGO_set_op10_ancient" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "28" + "4785" { - "name" "armor ratio" - "attribute_class" "armor_ratio" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_train_2021" + "name" "selfopeningitem_set_train_2021_rare_standalone" + "image_inventory" "econ/set_icons/set_train_2021" + "loot_list_name" "set_train_2021_rare_standalone" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_train_2021" + "tag_text" "#CSGO_set_train_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "29" + "4786" { - "name" "crosshair min distance" - "attribute_class" "crosshair_min_distance" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_set_train_2021" + "name" "selfopeningitem_set_train_2021_mythical_standalone" + "image_inventory" "econ/set_icons/set_train_2021" + "loot_list_name" "set_train_2021_mythical_standalone" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_train_2021" + "tag_text" "#CSGO_set_train_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "30" + "4787" { - "name" "crosshair delta distance" - "attribute_class" "crosshair_delta_distance" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_set_train_2021" + "name" "selfopeningitem_set_train_2021_legendary_standalone" + "image_inventory" "econ/set_icons/set_train_2021" + "loot_list_name" "set_train_2021_legendary_standalone" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_train_2021" + "tag_text" "#CSGO_set_train_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "31" + "4788" { - "name" "penetration" - "attribute_class" "penetration" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_train_2021" + "name" "selfopeningitem_set_train_2021_ancient_standalone" + "image_inventory" "econ/set_icons/set_train_2021" + "loot_list_name" "set_train_2021_ancient_standalone" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_train_2021" + "tag_text" "#CSGO_set_train_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "32" + "4792" { - "name" "damage" - "attribute_class" "damage" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_set_vertigo_2021" + "name" "selfopeningitem_set_vertigo_2021" + "image_inventory" "econ/set_icons/set_vertigo_2021" + "loot_list_name" "set_vertigo_2021" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_vertigo_2021" + "tag_text" "#CSGO_set_vertigo_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "33" + "4793" { - "name" "range" - "attribute_class" "range" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_dust_2_2021" + "name" "selfopeningitem_set_dust_2_2021" + "image_inventory" "econ/set_icons/set_dust_2_2021" + "loot_list_name" "set_dust_2_2021" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2_2021" + "tag_text" "#CSGO_set_dust_2_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "34" + "4794" { - "name" "range modifier" - "attribute_class" "range_modifier" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_set_mirage_2021" + "name" "selfopeningitem_set_mirage_2021" + "image_inventory" "econ/set_icons/set_mirage_2021" + "loot_list_name" "set_mirage_2021" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage_2021" + "tag_text" "#CSGO_set_mirage_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "35" + "4621" { - "name" "bullets" - "attribute_class" "bullets" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "item_name" "#CSGO_crate_spray_std2_1" + "name" "selfopeningitem_crate_spray_std2_1" + "item_description" "#CSGO_crate_spray_std2_1_desc" + "image_inventory" "econ/weapon_cases/crate_spray_std2" + "loot_list_name" "csgo_spray_std2_drops_1" + "prefab" "graffiti_box" + "item_type" "self_opening_purchase" + "tags" + { + "SprayCapsule" + { + "tag_value" "csgo_spray_std2_drops_1" + "tag_text" "#CSGO_crate_spray_std2_1" + "tag_group" "SprayCapsule" + "tag_group_text" "#SFUI_InvTooltip_SprayCapsuleTag" + } + } } - "36" + "4618" { - "name" "cycletime" - "attribute_class" "cycletime" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_crate_spray_std2_2" + "name" "selfopeningitem_crate_spray_std2_2" + "item_description" "#CSGO_crate_spray_std2_2_desc" + "image_inventory" "econ/weapon_cases/crate_spray_std2" + "loot_list_name" "csgo_spray_std2_drops_2" + "prefab" "graffiti_box" + "item_type" "self_opening_purchase" + "tags" + { + "SprayCapsule" + { + "tag_value" "csgo_spray_std2_drops_2" + "tag_text" "#CSGO_crate_spray_std2_2" + "tag_group" "SprayCapsule" + "tag_group_text" "#SFUI_InvTooltip_SprayCapsuleTag" + } + } } - "37" + "4617" { - "name" "time to idle" - "attribute_class" "time_to_idle" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_crate_spray_std3" + "name" "selfopeningitem_crate_spray_std3" + "item_description" "#CSGO_crate_spray_std3_desc" + "image_inventory" "econ/weapon_cases/crate_spray_std3" + "loot_list_name" "csgo_spray_std3_drops" + "prefab" "graffiti_box" + "item_type" "self_opening_purchase" + "tags" + { + "SprayCapsule" + { + "tag_value" "csgo_spray_std3_drops" + "tag_text" "#CSGO_crate_spray_std3" + "tag_group" "SprayCapsule" + "tag_group_text" "#SFUI_InvTooltip_SprayCapsuleTag" + } + } } - "38" + "4667" { - "name" "idle interval" - "attribute_class" "idle interval" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_crate_sticker_pack_shattered_web" + "name" "selfopeningitem_crate_sticker_pack_shattered_web" + "item_description" "#CSGO_crate_sticker_pack_shattered_web_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_shattered_web_capsule" + "loot_list_name" "crate_sticker_pack_shattered_web_lootlist" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_shattered_web_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_shattered_web" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "39" + "4723" { - "name" "flinch velocity modifier large" - "attribute_class" "flinch_velocity_modifier_large" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_crate_sticker_pack_recoil" + "name" "selfopeningitem_crate_sticker_pack_recoil" + "item_description" "#CSGO_crate_sticker_pack_recoil_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_recoil_capsule" + "loot_list_name" "crate_sticker_pack_recoil_lootlist" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_recoil_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_recoil" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "40" + "4731" { - "name" "flinch velocity modifier small" - "attribute_class" "flinch velocity modifier small" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_crate_sticker_pack_broken_fang" + "name" "selfopeningitem_crate_sticker_pack_broken_fang" + "item_description" "#CSGO_crate_sticker_pack_broken_fang_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_broken_fang_capsule" + "loot_list_name" "crate_sticker_pack_broken_fang_lootlist" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_broken_fang_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_broken_fang" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "41" + "4791" { - "name" "spread" - "attribute_class" "spread" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "item_name" "#CSGO_crate_sticker_pack_riptide_surfshop" + "name" "selfopeningitem_crate_sticker_pack_riptide_surfshop" + "item_description" "#CSGO_crate_sticker_pack_riptide_surfshop_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule" + "loot_list_name" "crate_sticker_pack_riptide_surfshop_lootlist" + "prefab" "weapon_case_base" + "item_type" "self_opening_purchase" + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_riptide_surfshop_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_riptide_surfshop" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "42" + } + "sticker_kits" + { + "3966" { - "name" "inaccuracy crouch" - "attribute_class" "inaccuracy_crouch" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_BigClucks_pack01" + "item_name" "#StickerKit_chicken_capsule_BigClucks_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_BigClucks_pack01" + "sticker_material" "chicken_capsule/BigClucks_pack01" + "item_rarity" "rare" } - "43" + "3967" { - "name" "inaccuracy stand" - "attribute_class" "inaccuracy_stand" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_BoneHead_pack01" + "item_name" "#StickerKit_chicken_capsule_BoneHead_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_BoneHead_pack01" + "sticker_material" "chicken_capsule/BoneHead_pack01" + "item_rarity" "rare" } - "44" + "3968" { - "name" "inaccuracy jump" - "attribute_class" "inaccuracy_jump" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_BukAWP_pack01" + "item_name" "#StickerKit_chicken_capsule_BukAWP_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_BukAWP_pack01" + "sticker_material" "chicken_capsule/BukAWP_pack01" + "item_rarity" "rare" } - "45" + "3969" { - "name" "inaccuracy land" - "attribute_class" "inaccuracy_land" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_DoubleDip_pack01" + "item_name" "#StickerKit_chicken_capsule_DoubleDip_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_DoubleDip_pack01" + "sticker_material" "chicken_capsule/DoubleDip_pack01" + "item_rarity" "rare" } - "46" + "3970" { - "name" "inaccuracy ladder" - "attribute_class" "inaccuracy_ladder" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_FowlPlay_pack01" + "item_name" "#StickerKit_chicken_capsule_FowlPlay_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_FowlPlay_pack01" + "sticker_material" "chicken_capsule/FowlPlay_pack01" + "item_rarity" "rare" } - "47" + "3971" { - "name" "inaccuracy fire" - "attribute_class" "inaccuracy_fire" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_HeadsUp_pack01" + "item_name" "#StickerKit_chicken_capsule_HeadsUp_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_HeadsUp_pack01" + "sticker_material" "chicken_capsule/HeadsUp_pack01" + "item_rarity" "rare" } - "48" + "3972" { - "name" "inaccuracy move" - "attribute_class" "inaccuracy_move" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_HotWings_pack01" + "item_name" "#StickerKit_chicken_capsule_HotWings_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_HotWings_pack01" + "sticker_material" "chicken_capsule/HotWings_pack01" + "item_rarity" "rare" } - "49" + "3973" { - "name" "spread alt" - "attribute_class" "spread_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_NestEgg_pack01" + "item_name" "#StickerKit_chicken_capsule_NestEgg_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_NestEgg_pack01" + "sticker_material" "chicken_capsule/NestEgg_pack01" + "item_rarity" "rare" } - "50" + "3974" { - "name" "inaccuracy crouch alt" - "attribute_class" "inaccuracy_crouch_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_RoostyBoosty_pack01" + "item_name" "#StickerKit_chicken_capsule_RoostyBoosty_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_RoostyBoosty_pack01" + "sticker_material" "chicken_capsule/RoostyBoosty_pack01" + "item_rarity" "rare" } - "51" + "3975" { - "name" "inaccuracy stand alt" - "attribute_class" "inaccuracy_stand_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_WhatWhat_pack01" + "item_name" "#StickerKit_chicken_capsule_WhatWhat_pack01" + "description_string" "#StickerKit_desc_chicken_capsule_WhatWhat_pack01" + "sticker_material" "chicken_capsule/WhatWhat_pack01" + "item_rarity" "rare" } - "52" + "3976" { - "name" "inaccuracy jump alt" - "attribute_class" "inaccuracy_jump_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_bonehead_holo" + "item_name" "#StickerKit_chicken_capsule_bonehead_holo" + "description_string" "#StickerKit_desc_chicken_capsule_bonehead_holo" + "sticker_material" "chicken_capsule/bonehead_holo" + "item_rarity" "mythical" } - "53" + "3977" { - "name" "inaccuracy land alt" - "attribute_class" "inaccuracy_land_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_doubledip_holo" + "item_name" "#StickerKit_chicken_capsule_doubledip_holo" + "description_string" "#StickerKit_desc_chicken_capsule_doubledip_holo" + "sticker_material" "chicken_capsule/doubledip_holo" + "item_rarity" "mythical" } - "54" + "3978" { - "name" "inaccuracy ladder alt" - "attribute_class" "inaccuracy_ladder_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_fowlplay_holo" + "item_name" "#StickerKit_chicken_capsule_fowlplay_holo" + "description_string" "#StickerKit_desc_chicken_capsule_fowlplay_holo" + "sticker_material" "chicken_capsule/fowlplay_holo" + "item_rarity" "mythical" } - "55" + "3979" { - "name" "inaccuracy fire alt" - "attribute_class" "inaccuracy_fire_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_hotwings_holo" + "item_name" "#StickerKit_chicken_capsule_hotwings_holo" + "description_string" "#StickerKit_desc_chicken_capsule_hotwings_holo" + "sticker_material" "chicken_capsule/hotwings_holo" + "item_rarity" "mythical" } - "56" + "3980" { - "name" "inaccuracy move alt" - "attribute_class" "inaccuracy_move_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_nestegg_holo" + "item_name" "#StickerKit_chicken_capsule_nestegg_holo" + "description_string" "#StickerKit_desc_chicken_capsule_nestegg_holo" + "sticker_material" "chicken_capsule/nestegg_holo" + "item_rarity" "mythical" } - "57" + "3981" { - "name" "recovery time crouch" - "attribute_class" "recovery_time_crouch" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_bigclucks_foil" + "item_name" "#StickerKit_chicken_capsule_bigclucks_foil" + "description_string" "#StickerKit_desc_chicken_capsule_bigclucks_foil" + "sticker_material" "chicken_capsule/bigclucks_foil" + "item_rarity" "legendary" } - "58" + "3982" { - "name" "recovery time stand" - "attribute_class" "recovery_time_stand" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "chicken_capsule_roostyboosty_foil" + "item_name" "#StickerKit_chicken_capsule_roostyboosty_foil" + "description_string" "#StickerKit_desc_chicken_capsule_roostyboosty_foil" + "sticker_material" "chicken_capsule/roostyboosty_foil" + "item_rarity" "legendary" } - "59" + } + "items" + { + "4477" + { + "item_name" "#CSGO_crate_sticker_pack_chicken_capsule" + "name" "crate_sticker_pack_chicken_capsule" + "item_description" "#CSGO_crate_sticker_pack_chicken_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_chicken_capsule" + "first_sale_date" "2019/06/10" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "276" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_chicken_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_chicken_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "276" "crate_sticker_pack_chicken_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_chicken_capsule_rare" { - "name" "recoil seed" - "attribute_class" "recoil_seed" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "[chicken_capsule_BigClucks_pack01]sticker" "1" + "[chicken_capsule_BoneHead_pack01]sticker" "1" + "[chicken_capsule_BukAWP_pack01]sticker" "1" + "[chicken_capsule_DoubleDip_pack01]sticker" "1" + "[chicken_capsule_FowlPlay_pack01]sticker" "1" + "[chicken_capsule_HeadsUp_pack01]sticker" "1" + "[chicken_capsule_HotWings_pack01]sticker" "1" + "[chicken_capsule_NestEgg_pack01]sticker" "1" + "[chicken_capsule_RoostyBoosty_pack01]sticker" "1" + "[chicken_capsule_WhatWhat_pack01]sticker" "1" } - "60" + "crate_sticker_pack_chicken_capsule_mythical" { - "name" "recoil angle" - "attribute_class" "recoil_angle" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "[chicken_capsule_bonehead_holo]sticker" "1" + "[chicken_capsule_doubledip_holo]sticker" "1" + "[chicken_capsule_fowlplay_holo]sticker" "1" + "[chicken_capsule_hotwings_holo]sticker" "1" + "[chicken_capsule_nestegg_holo]sticker" "1" } - "61" + "crate_sticker_pack_chicken_capsule_legendary" { - "name" "recoil angle variance" - "attribute_class" "recoil_angle_variance" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "[chicken_capsule_bigclucks_foil]sticker" "1" + "[chicken_capsule_roostyboosty_foil]sticker" "1" } - "62" + "crate_sticker_pack_chicken_capsule_lootlist" { - "name" "recoil magnitude" - "attribute_class" "recoil_magnitude" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "crate_sticker_pack_chicken_capsule_rare" "1" + "crate_sticker_pack_chicken_capsule_mythical" "1" + "crate_sticker_pack_chicken_capsule_legendary" "1" } - "63" + } + "paint_kits" + { + "884" { - "name" "recoil magnitude variance" - "attribute_class" "recoil_magnitude_variance" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "cu_bizon_road_warrior" + "description_string" "#PaintKit_cu_bizon_road_warrior" + "description_tag" "#PaintKit_cu_bizon_road_warrior_Tag" + "style" "7" + "pattern" "workshop/bizon_road_warrior" + "use_normal" "1" + "normal" "workshop/bizon_road_warrior_normal" + "pattern_scale" "1.000000" + "phongexponent" "166" + "phongintensity" "34" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "64" + "885" { - "name" "recoil angle alt" - "attribute_class" "recoil_angle_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "gs_ak47_nibbler" + "description_string" "#PaintKit_gs_ak47_nibbler" + "description_tag" "#PaintKit_gs_ak47_nibbler_Tag" + "style" "9" + "pattern" "workshop/ak47_nibbler" + "use_normal" "1" + "normal" "workshop/ak47_nibbler_normal" + "color0" "188 188 188" + "color1" "210 210 210" + "color2" "225 225 225" + "color3" "227 190 158" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "1" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "65" + "886" { - "name" "recoil angle variance alt" - "attribute_class" "recoil_angle_variance_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "cu_aug_whitefang" + "description_string" "#PaintKit_cu_aug_whitefang" + "description_tag" "#PaintKit_cu_aug_whitefang_Tag" + "style" "7" + "pattern" "workshop/aug_whitefang" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "66" + "887" { - "name" "recoil magnitude alt" - "attribute_class" "recoil_magnitude_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "cu_awp_virus" + "description_string" "#PaintKit_cu_awp_virus" + "description_tag" "#PaintKit_cu_awp_virus_Tag" + "style" "7" + "pattern" "workshop/awp_virus" + "use_normal" "1" + "normal" "workshop/awp_virus_normal" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "67" + "888" { - "name" "recoil magnitude variance alt" - "attribute_class" "recoil_magnitude_variance_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "gs_mp5_etch" + "description_string" "#PaintKit_gs_mp5_etch" + "description_tag" "#PaintKit_gs_mp5_etch_Tag" + "style" "9" + "pattern" "workshop/mp5_etch" + "use_normal" "1" + "normal" "workshop/mp5_etch_normal" + "color0" "128 128 128" + "color1" "243 243 243" + "color2" "15 8 8" + "color3" "22 30 31" + "pattern_scale" "1.000000" + "phongexponent" "189" + "phongintensity" "9" + "phongalbedoboost" "34" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.680000" } - "68" + "889" { - "name" "set supply crate series" - "attribute_class" "supply_crate_series" - "description_string" "#Attrib_SupplyCrateSeries" - "description_format" "value_is_additive" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "gs_tec9_decimator" + "description_string" "#PaintKit_gs_tec9_decimator" + "description_tag" "#PaintKit_gs_tec9_decimator_Tag" + "style" "9" + "pattern" "workshop/tec9_decimator" + "color0" "81 87 96" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "99 89 75" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "120" + "phongalbedoboost" "35" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "69" + "890" { - "name" "minutes played" - "attribute_class" "minutes_played" - "description_string" "#Attrib_MinutesPlayedAsHrs" - "description_format" "value_is_mins_as_hours" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "0" - "score" "10000" + "name" "cu_nova_featherswing" + "description_string" "#PaintKit_cu_nova_featherswing" + "description_tag" "#PaintKit_cu_nova_featherswing_Tag" + "style" "7" + "pattern" "workshop/nova_featherswing" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "70" + "891" { - "name" "alternate icon" - "attribute_class" "alternate_icon" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "cu_g3sg1_blacksand" + "description_string" "#PaintKit_cu_g3sg1_blacksand" + "description_tag" "#PaintKit_cu_g3sg1_blacksand_Tag" + "style" "7" + "pattern" "workshop/g3sg1_blacksand" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "71" + "892" { - "name" "season access" - "attribute_class" "season_access" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "gs_r8_memento" + "description_string" "#PaintKit_gs_r8_memento" + "description_tag" "#PaintKit_gs_r8_memento_Tag" + "style" "9" + "pattern" "workshop/r8_memento" + "use_normal" "1" + "normal" "workshop/r8_memento_normal" + "color0" "255 255 255" + "color1" "212 210 206" + "color2" "186 173 150" + "color3" "75 72 62" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongintensity" "150" + "phongalbedoboost" "17" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "72" + "893" { - "name" "disallow recycling" - "attribute_class" "disallow_recycling" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "cu_mp7_replica" + "description_string" "#PaintKit_cu_mp7_replica" + "description_tag" "#PaintKit_cu_mp7_replica_Tag" + "style" "7" + "pattern" "workshop/mp7_replica" + "use_normal" "1" + "normal" "workshop/mp7_replica_normal" + "pattern_scale" "1.000000" + "phongexponent" "190" + "phongintensity" "45" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "73" + "894" { - "name" "upgrade threshold" - "attribute_class" "upgrade_threshold" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "cu_p2000_obsidian" + "description_string" "#PaintKit_cu_p2000_obsidian" + "description_tag" "#PaintKit_cu_p2000_obsidian_Tag" + "style" "7" + "pattern" "workshop/p2000_obsidian" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "75" + "895" { - "name" "tradable after date" - "attribute_class" "tradable_after_date" - "description_format" "value_is_date" - "description_string" "#Attrib_TradableAfterDate" - "hidden" "1" - "effect_type" "negative" - "stored_as_integer" "1" + "name" "gs_dual_elites_rose" + "description_string" "#PaintKit_gs_dual_elites_rose" + "description_tag" "#PaintKit_gs_dual_elites_rose_Tag" + "style" "9" + "pattern" "workshop/dual_elites_rose" + "use_normal" "1" + "normal" "workshop/dual_elites_rose_normal" + "color0" "128 128 128 255" + "color1" "190 190 190" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "100" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "76" + "896" { - "name" "is revolver" - "attribute_class" "is_revolver" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "sp_scar20_striker_dust" + "description_string" "#PaintKit_sp_scar20_striker_dust" + "description_tag" "#PaintKit_sp_scar20_striker_dust_Tag" + "style" "3" + "pattern" "workshop/scar20_striker_dust" + "color0" "69 68 65" + "color1" "0 0 0" + "color2" "204 203 193" + "color3" "128 123 103" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" } - "78" + "897" { - "name" "elevate quality" - "attribute_class" "set_elevated_quality" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "cu_sg553_reactor" + "description_string" "#PaintKit_cu_sg553_reactor" + "description_tag" "#PaintKit_cu_sg553_reactor_Tag" + "style" "7" + "pattern" "workshop/sg553_reactor" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "111" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "79" + "898" { - "name" "cycletime alt" - "attribute_class" "cycletime_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "float" + "name" "gs_mac10_stalker" + "description_string" "#PaintKit_gs_mac10_stalker" + "description_tag" "#PaintKit_gs_mac10_stalker_Tag" + "style" "9" + "pattern" "workshop/mac10_stalker" + "use_normal" "1" + "normal" "workshop/mac10_stalker_normal" + "color0" "57 161 255" + "color1" "196 196 196" + "color2" "187 167 128" + "color3" "174 77 55" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "2" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "80" + "899" { - "name" "kill eater" - "attribute_class" "kill_eater" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "cu_ssg08_tickler" + "description_string" "#PaintKit_cu_ssg08_tickler" + "description_tag" "#PaintKit_cu_ssg08_tickler_Tag" + "style" "7" + "pattern" "workshop/ssg08_tickler" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.140000" + "wear_remap_max" "0.600000" } - "81" + "900" { - "name" "kill eater score type" - "attribute_class" "kill_eater_score_type" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "score" "6" - "stored_as_integer" "1" + "name" "gs_m249_warbird_veteran" + "description_string" "#PaintKit_gs_m249_warbird_veteran" + "description_tag" "#PaintKit_gs_m249_warbird_veteran_Tag" + "style" "9" + "pattern" "workshop/m249_warbird_veteran" + "use_normal" "0" + "color0" "255 255 255" + "color1" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "phongalbedoboost" "1" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.650000" } - "82" + } + "items" + { + "1384" { - "name" "kill eater user 1" - "attribute_class" "kill_eater_user_1" - "description_format" "value_is_additive" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "community_23 Key" + "item_name" "#CSGO_crate_key_community_23" + "item_description" "#CSGO_crate_key_community_23_desc" + "first_sale_date" "2019-06-12" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_23" + "tool" + { + "restriction" "crate_community_23" + } } - "83" + "4620" { - "name" "kill eater user score type 1" - "attribute_class" "kill_eater_user_score_type_1" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "score" "6" - "stored_as_integer" "1" + "item_name" "#CSGO_crate_community_23" + "item_description" "#CSGO_crate_community_23_desc" + "name" "crate_community_23" + "image_inventory" "econ/weapon_cases/crate_community_23" + "model_player" "models/props/crates/csgo_drop_crate_community_23.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1384" "1" + } + "tool" + { + "restriction" "crate_community_23" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "277" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_23" + "tag_text" "#CSGO_set_community_23" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "84" + } + "revolving_loot_lists" + { + "277" "crate_community_23" + } + "client_loot_lists" + { + "crate_community_23_rare" { - "name" "kill eater user 2" - "attribute_class" "kill_eater_user_2" - "description_format" "value_is_additive" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "[gs_mp5_etch]weapon_mp5sd" "1" + "[cu_nova_featherswing]weapon_nova" "1" + "[cu_g3sg1_blacksand]weapon_g3sg1" "1" + "[gs_r8_memento]weapon_revolver" "1" + "[gs_dual_elites_rose]weapon_elite" "1" + "[sp_scar20_striker_dust]weapon_scar20" "1" + "[gs_m249_warbird_veteran]weapon_m249" "1" } - "85" + "crate_community_23_mythical" { - "name" "kill eater user score type 2" - "attribute_class" "kill_eater_user_score_type_2" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "score" "6" - "stored_as_integer" "1" + "[cu_bizon_road_warrior]weapon_bizon" "1" + "[gs_ak47_nibbler]weapon_ak47" "1" + "[cu_aug_whitefang]weapon_aug" "1" + "[cu_mp7_replica]weapon_mp7" "1" + "[cu_p2000_obsidian]weapon_hkp2000" "1" } - "86" + "crate_community_23_legendary" { - "name" "kill eater user 3" - "attribute_class" "kill_eater_user_3" - "description_format" "value_is_additive" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "[gs_tec9_decimator]weapon_tec9" "1" + "[cu_sg553_reactor]weapon_sg556" "1" + "[cu_ssg08_tickler]weapon_ssg08" "1" } - "87" + "crate_community_23_ancient" { - "name" "kill eater user score type 3" - "attribute_class" "kill_eater_user_score_type_3" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "score" "6" - "stored_as_integer" "1" + "[cu_awp_virus]weapon_awp" "1" + "[gs_mac10_stalker]weapon_mac10" "1" } - "88" + "crate_community_23" { - "name" "kill eater 2" - "attribute_class" "kill_eater_2" - "description_format" "value_is_additive" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "crate_community_23_rare" "1" + "crate_community_23_mythical" "1" + "crate_community_23_legendary" "1" + "crate_community_23_ancient" "1" + "set_community_23_unusual" "1" + } + } + "item_sets" + { + "set_community_23" + { + "name" "#CSGO_set_community_23" + "set_description" "#CSGO_set_community_23_desc" + "is_collection" "1" + "items" + { + "[gs_mp5_etch]weapon_mp5sd" "1" + "[cu_nova_featherswing]weapon_nova" "1" + "[cu_g3sg1_blacksand]weapon_g3sg1" "1" + "[gs_r8_memento]weapon_revolver" "1" + "[gs_dual_elites_rose]weapon_elite" "1" + "[sp_scar20_striker_dust]weapon_scar20" "1" + "[gs_m249_warbird_veteran]weapon_m249" "1" + "[cu_bizon_road_warrior]weapon_bizon" "1" + "[gs_ak47_nibbler]weapon_ak47" "1" + "[cu_aug_whitefang]weapon_aug" "1" + "[cu_mp7_replica]weapon_mp7" "1" + "[cu_p2000_obsidian]weapon_hkp2000" "1" + "[gs_tec9_decimator]weapon_tec9" "1" + "[cu_sg553_reactor]weapon_sg556" "1" + "[cu_ssg08_tickler]weapon_ssg08" "1" + "[cu_awp_virus]weapon_awp" "1" + "[gs_mac10_stalker]weapon_mac10" "1" + } + } + } + "paint_kits_rarity" + { + "cu_bizon_road_warrior" "mythical" + "gs_ak47_nibbler" "rare" + "cu_aug_whitefang" "mythical" + "cu_awp_virus" "legendary" + "gs_mp5_etch" "rare" + "gs_tec9_decimator" "legendary" + "cu_nova_featherswing" "rare" + "cu_g3sg1_blacksand" "rare" + "gs_r8_memento" "rare" + "cu_mp7_replica" "mythical" + "cu_p2000_obsidian" "rare" + "gs_dual_elites_rose" "rare" + "sp_scar20_striker_dust" "rare" + "cu_sg553_reactor" "legendary" + "gs_mac10_stalker" "ancient" + "cu_ssg08_tickler" "legendary" + "gs_m249_warbird_veteran" "rare" + } + "sticker_kits" + { + "3983" + { + "name" "spray_std2_1g" + "item_name" "#SprayKit_std2_1g" + "description_string" "#SprayKit_desc_std2_1g" + "sticker_material" "default2019/1g" + "item_rarity" "common" } - "89" + "3984" { - "name" "kill eater score type 2" - "attribute_class" "kill_eater_score_type_2" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "score" "6" - "stored_as_integer" "1" + "name" "spray_std2_200iq" + "item_name" "#SprayKit_std2_200iq" + "description_string" "#SprayKit_desc_std2_200iq" + "sticker_material" "default2019/200iq" + "item_rarity" "common" } - "92" + "3985" { - "name" "tracer frequency alt" - "attribute_class" "tracer_frequency_alt" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "name" "spray_std2_applause" + "item_name" "#SprayKit_std2_applause" + "description_string" "#SprayKit_desc_std2_applause" + "sticker_material" "default2019/applause" + "item_rarity" "common" } - "93" + "3986" { - "name" "primary default clip size" - "attribute_class" "primary_default_clip_size" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "name" "spray_std2_beep" + "item_name" "#SprayKit_std2_beep" + "description_string" "#SprayKit_desc_std2_beep" + "sticker_material" "default2019/beep" + "item_rarity" "common" } - "94" + "3987" { - "name" "secondary default clip size" - "attribute_class" "secondary_default_clip_size" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "name" "spray_std2_boom" + "item_name" "#SprayKit_std2_boom" + "description_string" "#SprayKit_desc_std2_boom" + "sticker_material" "default2019/boom" + "item_rarity" "common" } - "95" + "3988" { - "name" "recipe filter" - "attribute_class" "recipe_filter" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "name" "spray_std2_brightstar" + "item_name" "#SprayKit_std2_brightstar" + "description_string" "#SprayKit_desc_std2_brightstar" + "sticker_material" "default2019/brightstar" + "item_rarity" "common" } - "97" + "3989" { - "name" "competitive kills" - "attribute_class" "competitive_kills" - "description_format" "value_is_additive" - "description_string" "#Attrib_CompetitiveKills" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "8000" + "name" "spray_std2_brokenheart" + "item_name" "#SprayKit_std2_brokenheart" + "description_string" "#SprayKit_desc_std2_brokenheart" + "sticker_material" "default2019/brokenheart" + "item_rarity" "common" } - "98" + "3990" { - "name" "competitive 3k" - "attribute_class" "competitive_3k" - "description_format" "value_is_additive" - "description_string" "#Attrib_Competitive3k" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "7000" + "name" "spray_std2_bubble_denied" + "item_name" "#SprayKit_std2_bubble_denied" + "description_string" "#SprayKit_desc_std2_bubble_denied" + "sticker_material" "default2019/bubble_denied" + "item_rarity" "common" } - "99" + "3991" { - "name" "competitive 4k" - "attribute_class" "competitive_4k" - "description_format" "value_is_additive" - "description_string" "#Attrib_Competitive4k" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "6900" + "name" "spray_std2_bubble_question" + "item_name" "#SprayKit_std2_bubble_question" + "description_string" "#SprayKit_desc_std2_bubble_question" + "sticker_material" "default2019/bubble_question" + "item_rarity" "common" } - "101" + "3992" { - "name" "competitive 5k" - "attribute_class" "competitive_5k" - "description_format" "value_is_additive" - "description_string" "#Attrib_Competitive5k" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "6800" + "name" "spray_std2_chef_kiss" + "item_name" "#SprayKit_std2_chef_kiss" + "description_string" "#SprayKit_desc_std2_chef_kiss" + "sticker_material" "default2019/chef_kiss" + "item_rarity" "common" } - "102" + "3993" { - "name" "competitive hsp" - "attribute_class" "competitive_hsp" - "description_format" "value_is_additive" - "description_string" "#Attrib_CompetitiveHSP" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" - "score" "7500" + "name" "spray_std2_chick" + "item_name" "#SprayKit_std2_chick" + "description_string" "#SprayKit_desc_std2_chick" + "sticker_material" "default2019/chick" + "item_rarity" "common" } - "103" + "3994" { - "name" "competitive wins" - "attribute_class" "competitive_wins" - "description_format" "value_is_additive" - "description_string" "#Attrib_CompetitiveWins" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "8500" + "name" "spray_std2_choke" + "item_name" "#SprayKit_std2_choke" + "description_string" "#SprayKit_desc_std2_choke" + "sticker_material" "default2019/choke" + "item_rarity" "common" } - "104" + "3995" { - "name" "competitive mvps" - "attribute_class" "competitive_mvps" - "description_format" "value_is_additive" - "description_string" "#Attrib_CompetitiveMVPs" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "8400" + "name" "spray_std2_chunkychicken" + "item_name" "#SprayKit_std2_chunkychicken" + "description_string" "#SprayKit_desc_std2_chunkychicken" + "sticker_material" "default2019/chunkychicken" + "item_rarity" "common" } - "105" + "3996" { - "name" "competitive minutes played" - "attribute_class" "competitive_minutes_played" - "description_string" "#Attrib_CompetitiveMinutesPlayedAsHrs" - "description_format" "value_is_mins_as_hours" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "9000" + "name" "spray_std2_dead_now" + "item_name" "#SprayKit_std2_dead_now" + "description_string" "#SprayKit_desc_std2_dead_now" + "sticker_material" "default2019/dead_now" + "item_rarity" "common" } - "106" + "3997" { - "name" "match wins" - "attribute_class" "match_wins" - "description_format" "value_is_additive" - "description_string" "#Attrib_MatchWins" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "9500" + "name" "spray_std2_fart" + "item_name" "#SprayKit_std2_fart" + "description_string" "#SprayKit_desc_std2_fart" + "sticker_material" "default2019/fart" + "item_rarity" "common" } - "107" + "3998" { - "name" "preferred sort" - "attribute_class" "preferred_sort" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "name" "spray_std2_goofy" + "item_name" "#SprayKit_std2_goofy" + "description_string" "#SprayKit_desc_std2_goofy" + "sticker_material" "default2019/goofy" + "item_rarity" "common" } - "111" + "3999" { - "name" "custom name attr" - "attribute_class" "custom_name_attr" - "attribute_type" "string" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" + "name" "spray_std2_grimace" + "item_name" "#SprayKit_std2_grimace" + "description_string" "#SprayKit_desc_std2_grimace" + "sticker_material" "default2019/grimace" + "item_rarity" "common" } - "112" + "4000" { - "name" "custom desc attr" - "attribute_class" "custom_desc_attr" - "attribute_type" "string" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" + "name" "spray_std2_happy_cat" + "item_name" "#SprayKit_std2_happy_cat" + "description_string" "#SprayKit_desc_std2_happy_cat" + "sticker_material" "default2019/happy_cat" + "item_rarity" "common" } - "113" + "4001" { - "name" "sticker slot 0 id" - "attribute_class" "sticker_slot_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "spray_std2_hop" + "item_name" "#SprayKit_std2_hop" + "description_string" "#SprayKit_desc_std2_hop" + "sticker_material" "default2019/hop" + "item_rarity" "common" } - "114" + "4002" { - "name" "sticker slot 0 wear" - "attribute_class" "sticker_slot_wear" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_kiss" + "item_name" "#SprayKit_std2_kiss" + "description_string" "#SprayKit_desc_std2_kiss" + "sticker_material" "default2019/kiss" + "item_rarity" "common" } - "115" + "4003" { - "name" "sticker slot 0 scale" - "attribute_class" "sticker_slot_scale" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_lightbulb" + "item_name" "#SprayKit_std2_lightbulb" + "description_string" "#SprayKit_desc_std2_lightbulb" + "sticker_material" "default2019/lightbulb" + "item_rarity" "common" } - "116" + "4004" { - "name" "sticker slot 0 rotation" - "attribute_class" "sticker_slot_rotation" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_little_crown" + "item_name" "#SprayKit_std2_little_crown" + "description_string" "#SprayKit_desc_std2_little_crown" + "sticker_material" "default2019/little_crown" + "item_rarity" "common" } - "117" + "4005" { - "name" "sticker slot 1 id" - "attribute_class" "sticker_slot_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "spray_std2_little_ez" + "item_name" "#SprayKit_std2_little_ez" + "description_string" "#SprayKit_desc_std2_little_ez" + "sticker_material" "default2019/little_ez" + "item_rarity" "common" } - "118" + "4006" { - "name" "sticker slot 1 wear" - "attribute_class" "sticker_slot_wear" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_littlebirds" + "item_name" "#SprayKit_std2_littlebirds" + "description_string" "#SprayKit_desc_std2_littlebirds" + "sticker_material" "default2019/littlebirds" + "item_rarity" "common" } - "119" + "4007" { - "name" "sticker slot 1 scale" - "attribute_class" "sticker_slot_scale" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_nt" + "item_name" "#SprayKit_std2_nt" + "description_string" "#SprayKit_desc_std2_nt" + "sticker_material" "default2019/nt" + "item_rarity" "common" } - "120" + "4008" { - "name" "sticker slot 1 rotation" - "attribute_class" "sticker_slot_rotation" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_okay" + "item_name" "#SprayKit_std2_okay" + "description_string" "#SprayKit_desc_std2_okay" + "sticker_material" "default2019/okay" + "item_rarity" "common" } - "121" + "4009" { - "name" "sticker slot 2 id" - "attribute_class" "sticker_slot_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "spray_std2_omg" + "item_name" "#SprayKit_std2_omg" + "description_string" "#SprayKit_desc_std2_omg" + "sticker_material" "default2019/omg" + "item_rarity" "common" } - "122" + "4010" { - "name" "sticker slot 2 wear" - "attribute_class" "sticker_slot_wear" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_oops" + "item_name" "#SprayKit_std2_oops" + "description_string" "#SprayKit_desc_std2_oops" + "sticker_material" "default2019/oops" + "item_rarity" "common" } - "123" + "4011" { - "name" "sticker slot 2 scale" - "attribute_class" "sticker_slot_scale" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_puke" + "item_name" "#SprayKit_std2_puke" + "description_string" "#SprayKit_desc_std2_puke" + "sticker_material" "default2019/puke" + "item_rarity" "common" } - "124" + "4012" { - "name" "sticker slot 2 rotation" - "attribute_class" "sticker_slot_rotation" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_rly" + "item_name" "#SprayKit_std2_rly" + "description_string" "#SprayKit_desc_std2_rly" + "sticker_material" "default2019/rly" + "item_rarity" "common" } - "125" + "4013" { - "name" "sticker slot 3 id" - "attribute_class" "sticker_slot_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "spray_std2_silverbullet" + "item_name" "#SprayKit_std2_silverbullet" + "description_string" "#SprayKit_desc_std2_silverbullet" + "sticker_material" "default2019/silverbullet" + "item_rarity" "common" } - "126" + "4014" { - "name" "sticker slot 3 wear" - "attribute_class" "sticker_slot_wear" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_smarm" + "item_name" "#SprayKit_std2_smarm" + "description_string" "#SprayKit_desc_std2_smarm" + "sticker_material" "default2019/smarm" + "item_rarity" "common" } - "127" + "4015" { - "name" "sticker slot 3 scale" - "attribute_class" "sticker_slot_scale" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_smirk" + "item_name" "#SprayKit_std2_smirk" + "description_string" "#SprayKit_desc_std2_smirk" + "sticker_material" "default2019/smirk" + "item_rarity" "common" } - "128" + "4016" { - "name" "sticker slot 3 rotation" - "attribute_class" "sticker_slot_rotation" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_smooch" + "item_name" "#SprayKit_std2_smooch" + "description_string" "#SprayKit_desc_std2_smooch" + "sticker_material" "default2019/smooch" + "item_rarity" "common" } - "129" + "4017" { - "name" "sticker slot 4 id" - "attribute_class" "sticker_slot_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "spray_std2_thoughtfull" + "item_name" "#SprayKit_std2_thoughtfull" + "description_string" "#SprayKit_desc_std2_thoughtfull" + "sticker_material" "default2019/thoughtfull" + "item_rarity" "common" } - "130" + "4018" { - "name" "sticker slot 4 wear" - "attribute_class" "sticker_slot_wear" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "name" "spray_std2_uhoh" + "item_name" "#SprayKit_std2_uhoh" + "description_string" "#SprayKit_desc_std2_uhoh" + "sticker_material" "default2019/uhoh" + "item_rarity" "common" } - "131" + } + "client_loot_lists" + { + "spray_std2_droplist_entry_1g" { - "name" "sticker slot 4 scale" - "attribute_class" "sticker_slot_scale" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "[spray_std2_1g]spray" "1" } - "132" + "spray_std2_droplist_entry_200iq" { - "name" "sticker slot 4 rotation" - "attribute_class" "sticker_slot_rotation" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "[spray_std2_200iq]spray" "1" } - "133" + "spray_std2_droplist_entry_applause" { - "name" "sticker slot 5 id" - "attribute_class" "sticker_slot_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_applause]spray" "1" } - "134" + "spray_std2_droplist_entry_beep" { - "name" "sticker slot 5 wear" - "attribute_class" "sticker_slot_wear" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "[spray_std2_beep]spray" "1" } - "135" + "spray_std2_droplist_entry_boom" { - "name" "sticker slot 5 scale" - "attribute_class" "sticker_slot_scale" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "[spray_std2_boom]spray" "1" } - "136" + "spray_std2_droplist_entry_brightstar" { - "name" "sticker slot 5 rotation" - "attribute_class" "sticker_slot_rotation" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" + "[spray_std2_brightstar]spray" "1" } - "137" + "spray_std2_droplist_entry_brokenheart" { - "name" "tournament event id" - "attribute_class" "tournament_event_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_brokenheart]spray" "1" } - "138" + "spray_std2_droplist_entry_bubble_denied" { - "name" "tournament event stage id" - "attribute_class" "tournament_event_stage_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_bubble_denied]spray" "1" } - "139" + "spray_std2_droplist_entry_bubble_question" { - "name" "tournament event team0 id" - "attribute_class" "tournament_event_team_id" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_bubble_question]spray" "1" } - "140" + "spray_std2_droplist_entry_chef_kiss" { - "name" "tournament event team1 id" - "attribute_class" "tournament_event_team_id" - "group" "only_on_unique" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_chef_kiss]spray" "1" } - "142" + "spray_std2_droplist_entry_chick" { - "name" "icon display model" - "attribute_class" "icon_display_model" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "attribute_type" "string" + "[spray_std2_chick]spray" "1" } - "143" + "spray_std2_droplist_entry_choke" { - "name" "buymenu display model" - "attribute_class" "buymenu_display_model" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "attribute_type" "string" + "[spray_std2_choke]spray" "1" } - "144" + "spray_std2_droplist_entry_chunkychicken" { - "name" "pedestal display model" - "attribute_class" "pedestal_display_model" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "attribute_type" "string" + "[spray_std2_chunkychicken]spray" "1" } - "145" + "spray_std2_droplist_entry_dead_now" { - "name" "magazine model" - "attribute_class" "magazine_model" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "attribute_type" "string" + "[spray_std2_dead_now]spray" "1" } - "146" + "spray_std2_droplist_entry_fart" { - "name" "uid model" - "attribute_class" "uid_model" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "attribute_type" "string" + "[spray_std2_fart]spray" "1" } - "147" + "spray_std2_droplist_entry_goofy" { - "name" "stattrak model" - "attribute_class" "stattrak_model" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "attribute_type" "string" + "[spray_std2_goofy]spray" "1" } - "150" + "spray_std2_droplist_entry_grimace" { - "name" "aimsight capable" - "attribute_class" "aimsight_capable" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "[spray_std2_grimace]spray" "1" } - "151" + "spray_std2_droplist_entry_happy_cat" { - "name" "aimsight eye pos" - "attribute_class" "aimsight_eye_pos" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "vector" + "[spray_std2_happy_cat]spray" "1" } - "154" + "spray_std2_droplist_entry_hop" { - "name" "aimsight pivot angle" - "attribute_class" "aimsight_pivot_angle" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "vector" + "[spray_std2_hop]spray" "1" } - "157" + "spray_std2_droplist_entry_kiss" { - "name" "aimsight speed up" - "attribute_class" "aimsight_speed_up" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "[spray_std2_kiss]spray" "1" } - "158" + "spray_std2_droplist_entry_lightbulb" { - "name" "aimsight speed down" - "attribute_class" "aimsight_speed_down" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "[spray_std2_lightbulb]spray" "1" } - "159" + "spray_std2_droplist_entry_little_crown" { - "name" "aimsight looseness" - "attribute_class" "aimsight_looseness" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "[spray_std2_little_crown]spray" "1" } - "160" + "spray_std2_droplist_entry_little_ez" { - "name" "aimsight fov" - "attribute_class" "aimsight_fov" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "[spray_std2_little_ez]spray" "1" } - "161" + "spray_std2_droplist_entry_littlebirds" + { + "[spray_std2_littlebirds]spray" "1" + } + "spray_std2_droplist_entry_nt" { - "name" "aimsight pivot forward" - "attribute_class" "aimsight_pivot_forward" - "description_format" "value_is_replace" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "0" + "[spray_std2_nt]spray" "1" } - "162" + "spray_std2_droplist_entry_okay" { - "name" "gifter account id" - "attribute_class" "gifter_account_id" - "description_format" "value_is_account_id" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_okay]spray" "1" } - "165" + "spray_std2_droplist_entry_omg" { - "name" "aimsight lens mask" - "attribute_class" "aimsight_lens_mask" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "attribute_type" "string" + "[spray_std2_omg]spray" "1" } - "166" + "spray_std2_droplist_entry_oops" { - "name" "music id" - "attribute_class" "music_id" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_oops]spray" "1" } - "168" + "spray_std2_droplist_entry_puke" { - "name" "quest id" - "attribute_class" "quest_id" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_puke]spray" "1" } - "169" + "spray_std2_droplist_entry_rly" { - "name" "quest points remaining" - "attribute_class" "quest_points_remaining" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_rly]spray" "1" } - "170" + "spray_std2_droplist_entry_silverbullet" { - "name" "quest reward lootlist" - "attribute_class" "quest_reward_lootlist" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "[spray_std2_silverbullet]spray" "1" } - "171" + "spray_std2_droplist_entry_smarm" { - "name" "quests complete" - "attribute_class" "quests_complete" - "description_format" "value_is_additive" - "description_string" "#Attrib_QuestsComplete" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "8600" + "[spray_std2_smarm]spray" "1" } - "172" + "spray_std2_droplist_entry_smirk" { - "name" "operation kills" - "attribute_class" "operation_kills" - "description_format" "value_is_additive" - "description_string" "#Attrib_OperationKills" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "8000" + "[spray_std2_smirk]spray" "1" } - "173" + "spray_std2_droplist_entry_smooch" { - "name" "operation 3k" - "attribute_class" "operation_3k" - "description_format" "value_is_additive" - "description_string" "#Attrib_Operation3k" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "7000" + "[spray_std2_smooch]spray" "1" } - "174" + "spray_std2_droplist_entry_thoughtfull" { - "name" "operation 4k" - "attribute_class" "operation_4k" - "description_format" "value_is_additive" - "description_string" "#Attrib_Operation4k" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "6900" + "[spray_std2_thoughtfull]spray" "1" } - "175" + "spray_std2_droplist_entry_uhoh" { - "name" "operation 5k" - "attribute_class" "operation_5k" - "description_format" "value_is_additive" - "description_string" "#Attrib_Operation5k" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "6800" + "[spray_std2_uhoh]spray" "1" } - "176" + "spray_std2_droplist_common_1" { - "name" "operation hsp" - "attribute_class" "operation_hsp" - "description_format" "value_is_additive" - "description_string" "#Attrib_OperationHSP" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "0" - "score" "7500" + "spray_std2_droplist_entry_applause" "1" + "spray_std2_droplist_entry_beep" "1" + "spray_std2_droplist_entry_boom" "1" + "spray_std2_droplist_entry_brightstar" "1" + "spray_std2_droplist_entry_brokenheart" "1" + "spray_std2_droplist_entry_chef_kiss" "1" + "spray_std2_droplist_entry_chick" "1" + "spray_std2_droplist_entry_chunkychicken" "1" + "spray_std2_droplist_entry_goofy" "1" + "spray_std2_droplist_entry_grimace" "1" + "spray_std2_droplist_entry_happy_cat" "1" + "spray_std2_droplist_entry_hop" "1" + "spray_std2_droplist_entry_kiss" "1" + "spray_std2_droplist_entry_lightbulb" "1" + "spray_std2_droplist_entry_little_crown" "1" + "spray_std2_droplist_entry_omg" "1" + "spray_std2_droplist_entry_silverbullet" "1" + "spray_std2_droplist_entry_smirk" "1" + "spray_std2_droplist_entry_thoughtfull" "1" } - "177" + "csgo_spray_std2_drops_1" { - "name" "operation mvps" - "attribute_class" "operation_mvps" - "description_format" "value_is_additive" - "description_string" "#Attrib_OperationMVPs" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "8400" + "spray_std2_droplist_common_1" "1" } - "178" + "unsealed_spray_std2_drops_1" { - "name" "operation minutes played" - "attribute_class" "operation_minutes_played" - "description_string" "#Attrib_OperationMinutesPlayedAsHrs" - "description_format" "value_is_mins_as_hours" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "9000" + "csgo_spray_std2_drops_1" "1" } - "179" + "spray_std2_droplist_common_2" { - "name" "operation wins" - "attribute_class" "operation_wins" - "description_format" "value_is_additive" - "description_string" "#Attrib_OperationWins" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" - "score" "9500" + "spray_std2_droplist_entry_1g" "1" + "spray_std2_droplist_entry_200iq" "1" + "spray_std2_droplist_entry_bubble_denied" "1" + "spray_std2_droplist_entry_bubble_question" "1" + "spray_std2_droplist_entry_choke" "1" + "spray_std2_droplist_entry_dead_now" "1" + "spray_std2_droplist_entry_fart" "1" + "spray_std2_droplist_entry_little_ez" "1" + "spray_std2_droplist_entry_littlebirds" "1" + "spray_std2_droplist_entry_nt" "1" + "spray_std2_droplist_entry_okay" "1" + "spray_std2_droplist_entry_oops" "1" + "spray_std2_droplist_entry_puke" "1" + "spray_std2_droplist_entry_rly" "1" + "spray_std2_droplist_entry_smarm" "1" + "spray_std2_droplist_entry_smooch" "1" + "spray_std2_droplist_entry_uhoh" "1" } - "180" + "csgo_spray_std2_drops_2" { - "name" "deployment date" - "attribute_class" "deployment_date" - "description_format" "value_is_date" - "description_string" "#Attrib_DeploymentDate" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "spray_std2_droplist_common_2" "1" } - "182" + "unsealed_spray_std2_drops_2" { - "name" "use after date" - "attribute_class" "use_after_date" - "description_format" "value_is_date" - "description_string" "#Attrib_UseAfterDate" - "hidden" "1" - "effect_type" "negative" - "stored_as_integer" "1" + "csgo_spray_std2_drops_2" "1" } - "183" + } + "paint_kits" + { + "902" { - "name" "expiration date" - "attribute_class" "expiration_date" - "description_string" "#Attrib_ExpirationDate" - "description_format" "value_is_date" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "aq_m249_aztec" + "description_string" "#PaintKit_aq_m249_aztec" + "description_tag" "#PaintKit_aq_m249_aztec_Tag" + "style" "8" + "pattern" "workshop/m249_aztec" + "use_normal" "1" + "normal" "workshop/m249_aztec_normal" + "color0" "88 68 28" + "color1" "255 255 255" + "color2" "150 150 136" + "color3" "29 106 32" + "pattern_scale" "1.000000" + "phongexponent" "50" + "phongalbedoboost" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "184" + "903" { - "name" "campaign id" - "attribute_class" "campaign_id" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "gs_dual_elites_classic" + "description_string" "#PaintKit_gs_dual_elites_classic" + "description_tag" "#PaintKit_gs_dual_elites_classic_Tag" + "style" "9" + "pattern" "workshop/dual_elites_classic" + "use_normal" "1" + "normal" "workshop/dual_elites_classic_normal" + "color0" "118 98 92" + "color1" "211 211 211" + "color2" "198 198 198" + "color3" "141 132 111" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "70" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "185" + "904" { - "name" "campaign completion bitfield" - "attribute_class" "campaign_completion_bitfield" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_famas_nuke_tension" + "description_string" "#PaintKit_cu_famas_nuke_tension" + "description_tag" "#PaintKit_cu_famas_nuke_tension_Tag" + "style" "7" + "pattern" "workshop/famas_nuclear_tension" + "use_normal" "1" + "normal" "workshop/famas_nuclear_tension_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "11" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "187" + "905" { - "name" "last campaign completion" - "attribute_class" "last_campaign_completion" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_tec9_flash" + "description_string" "#PaintKit_cu_tec9_flash" + "description_tag" "#PaintKit_cu_tec9_flash_Tag" + "style" "7" + "pattern" "workshop/tec9_flash" + "use_normal" "1" + "normal" "workshop/tec9_flash_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "188" + "906" { - "name" "operation points" - "attribute_class" "operation_points" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_fiveseven_gsg9" + "description_string" "#PaintKit_cu_fiveseven_gsg9" + "description_tag" "#PaintKit_cu_fiveseven_gsg9_Tag" + "style" "7" + "pattern" "workshop/fiveseven_gsg9" + "use_normal" "1" + "normal" "workshop/fiveseven_gsg9_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "197" + "907" { - "name" "kill award" - "attribute_class" "kill_award" - "description_format" "value_is_additive" - "hidden" "0" - "effect_type" "positive" - "attribute_type" "uint32" + "name" "gs_p250_inferno" + "description_string" "#PaintKit_gs_p250_inferno" + "description_tag" "#PaintKit_gs_p250_inferno_Tag" + "style" "9" + "pattern" "workshop/p250_inferno" + "use_normal" "1" + "normal" "workshop/p250_inferno_normal" + "color0" "45 60 48" + "color1" "190 190 190" + "color2" "121 116 107" + "color3" "105 113 93" + "pattern_scale" "1.000000" + "phongexponent" "5" + "phongintensity" "0" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.680000" } - "199" + "908" { - "name" "primary reserve ammo max" - "attribute_class" "primary_reserve_ammo_max" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "name" "gs_mac10_dust_crate" + "description_string" "#PaintKit_gs_mac10_dust_crate" + "description_tag" "#PaintKit_gs_mac10_dust_crate_Tag" + "style" "9" + "pattern" "workshop/mac10_dust_crate" + "use_normal" "1" + "normal" "workshop/mac10_dust_crate_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "182 182 177" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "200" + "909" { - "name" "secondary reserve ammo max" - "attribute_class" "secondary_reserve_ammo_max" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "attribute_type" "uint32" + "name" "gs_mag7_popdog" + "description_string" "#PaintKit_gs_mag7_popdog" + "description_tag" "#PaintKit_gs_mag7_popdog_Tag" + "style" "9" + "pattern" "workshop/mag7_popdog" + "use_normal" "1" + "normal" "workshop/mag7_popdog_normal" + "color0" "89 89 89" + "color1" "204 204 204" + "color2" "217 189 168" + "color3" "182 182 182" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "50" + "phongalbedoboost" "6" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "208" + "910" { - "name" "campaign 1 completion bitfield" - "attribute_class" "campaign_completion_bitfield" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_mp9_hydra" + "description_string" "#PaintKit_cu_mp9_hydra" + "description_tag" "#PaintKit_cu_mp9_hydra_Tag" + "style" "7" + "pattern" "workshop/mp9_hydra" + "use_normal" "1" + "normal" "workshop/mp9_hydra_normal" + "pattern_scale" "1.000000" + "phongexponent" "130" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "209" + "911" { - "name" "campaign 1 last completed quest" - "attribute_class" "campaign_last_completed_quest" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_p90_nostalgia" + "description_string" "#PaintKit_cu_p90_nostalgia" + "description_tag" "#PaintKit_cu_p90_nostalgia_Tag" + "style" "7" + "pattern" "workshop/p90_nostalgia" + "use_normal" "1" + "normal" "workshop/p90_nostalgia_normal" + "pattern_scale" "1.000000" + "phongexponent" "103" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.570000" } - "210" + "913" { - "name" "campaign 2 completion bitfield" - "attribute_class" "campaign_completion_bitfield" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "am_aug_death_by_doggy" + "description_string" "#PaintKit_am_aug_death_by_doggy" + "description_tag" "#PaintKit_am_aug_death_by_doggy_Tag" + "style" "5" + "pattern" "workshop/aug_death_by_doggy" + "color0" "21 19 23" + "color1" "52 133 167" + "color2" "190 77 125" + "color3" "81 134 75" + "pattern_scale" "2.200000" + "phongexponent" "180" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" } - "211" + "914" { - "name" "campaign 2 last completed quest" - "attribute_class" "campaign_last_completed_quest" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_scar_assault" + "description_string" "#PaintKit_cu_scar_assault" + "description_tag" "#PaintKit_cu_scar_assault_Tag" + "style" "7" + "pattern" "workshop/scar_assault" + "use_normal" "1" + "normal" "workshop/scar_assault_normal" + "pattern_scale" "1.000000" + "phongexponent" "130" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.620000" } - "212" + "915" { - "name" "campaign 3 completion bitfield" - "attribute_class" "campaign_completion_bitfield" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "gs_mp5_fbi" + "description_string" "#PaintKit_gs_mp5_fbi" + "description_tag" "#PaintKit_gs_mp5_fbi_Tag" + "style" "9" + "pattern" "workshop/mp5_fbi" + "use_normal" "1" + "normal" "workshop/mp5_fbi_normal" + "color0" "213 213 213" + "color1" "255 255 255" + "color2" "218 218 218" + "color3" "243 243 243" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "32" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "213" + "916" { - "name" "campaign 3 last completed quest" - "attribute_class" "campaign_last_completed_quest" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_ump_bomb" + "description_string" "#PaintKit_cu_ump_bomb" + "description_tag" "#PaintKit_cu_ump_bomb_Tag" + "style" "7" + "pattern" "workshop/ump_bomb" + "use_normal" "1" + "normal" "workshop/ump_bomb_normal" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "214" + "917" { - "name" "campaign 4 completion bitfield" - "attribute_class" "campaign_completion_bitfield" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_awp_wildfire" + "description_string" "#PaintKit_cu_awp_wildfire" + "description_tag" "#PaintKit_cu_awp_wildfire_Tag" + "style" "7" + "pattern" "workshop/awp_wildfire" + "use_normal" "1" + "normal" "workshop/awp_wildfire_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.010000" + "wear_remap_max" "0.700000" } - "215" + "918" { - "name" "campaign 4 last completed quest" - "attribute_class" "campaign_last_completed_quest" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "cu_glock_hero" + "description_string" "#PaintKit_cu_glock_hero" + "description_tag" "#PaintKit_cu_glock_hero_Tag" + "style" "7" + "pattern" "workshop/glock_hero" + "use_normal" "1" + "normal" "workshop/glock_hero_normal" + "pattern_scale" "1.000000" + "phongexponent" "90" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "919" + { + "name" "gs_famas_legacy_gold" + "description_string" "#PaintKit_gs_famas_legacy_gold" + "description_tag" "#PaintKit_gs_famas_legacy_gold_Tag" + "style" "9" + "pattern" "workshop/famas_legacy_gold" + "use_normal" "1" + "normal" "workshop/famas_legacy_gold_normal" + "color0" "175 175 175" + "color1" "255 255 255" + "color2" "118 118 118" + "color3" "135 135 135" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "75" + "phongalbedoboost" "90" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "216" + } + "items" + { + "1385" { - "name" "campaign 5 completion bitfield" - "attribute_class" "campaign_completion_bitfield" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "name" "community_24 Key" + "item_name" "#CSGO_crate_key_community_24" + "item_description" "#CSGO_crate_key_community_24_desc" + "first_sale_date" "2019-10-14" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_24" + "tool" + { + "restriction" "crate_community_24" + } } - "217" + "4669" { - "name" "campaign 5 last completed quest" - "attribute_class" "campaign_last_completed_quest" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "item_name" "#CSGO_crate_community_24" + "item_description" "#CSGO_crate_community_24_desc" + "name" "crate_community_24" + "image_inventory" "econ/weapon_cases/crate_community_24" + "model_player" "models/props/crates/csgo_drop_crate_community_24.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1385" "1" + } + "tool" + { + "restriction" "crate_community_24" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "293" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_24" + "tag_text" "#CSGO_set_community_24" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_24_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_24_unusual_itemname" + "image_unusual_item" "econ/weapon_cases/crate_community_24_rare_item" } - "218" + } + "revolving_loot_lists" + { + "293" "crate_community_24" + } + "client_loot_lists" + { + "crate_community_24_rare" { - "name" "campaign 6 completion bitfield" - "attribute_class" "campaign_completion_bitfield" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "[gs_dual_elites_classic]weapon_elite" "1" + "[cu_tec9_flash]weapon_tec9" "1" + "[gs_mac10_dust_crate]weapon_mac10" "1" + "[gs_mag7_popdog]weapon_mag7" "1" + "[cu_scar_assault]weapon_scar20" "1" + "[cu_famas_nuke_tension]weapon_famas" "1" + "[cu_glock_hero]weapon_glock" "1" } - "219" + "crate_community_24_mythical" { - "name" "campaign 6 last completed quest" - "attribute_class" "campaign_last_completed_quest" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "[aq_m249_aztec]weapon_m249" "1" + "[gs_mp5_fbi]weapon_mp5sd" "1" + "[cu_fiveseven_gsg9]weapon_fiveseven" "1" + "[gs_p250_inferno]weapon_p250" "1" + "[cu_ump_bomb]weapon_ump45" "1" } - "220" + "crate_community_24_legendary" { - "name" "operation bonus points" - "attribute_class" "operation_bonus_points" - "description_format" "value_is_additive" - "description_string" "#Attrib_OperationBonusXP" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "[cu_mp9_hydra]weapon_mp9" "1" + "[cu_p90_nostalgia]weapon_p90" "1" + "[am_aug_death_by_doggy]weapon_aug" "1" } - "221" + "crate_community_24_ancient" { - "name" "prestige year" - "attribute_class" "prestige_year" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "neutral" - "stored_as_integer" "1" + "[cu_awp_wildfire]weapon_awp" "1" + "[gs_famas_legacy_gold]weapon_famas" "1" } - "222" + "crate_community_24" { - "name" "issue date" - "attribute_class" "issue_date" - "description_format" "value_is_date" - "description_string" "#Attrib_IssueDate" - "hidden" "0" - "effect_type" "positive" - "stored_as_integer" "1" + "crate_community_24_rare" "1" + "crate_community_24_mythical" "1" + "crate_community_24_legendary" "1" + "crate_community_24_ancient" "1" + "set_community_24_unusual" "1" } - "223" + } + "item_sets" + { + "set_community_24" { - "name" "tournament mvp account id" - "attribute_class" "tournament_mvp_account_id" - "description_format" "value_is_additive" - "hidden" "1" - "effect_type" "positive" - "stored_as_integer" "1" + "name" "#CSGO_set_community_24" + "set_description" "#CSGO_set_community_24_desc" + "is_collection" "1" + "items" + { + "[gs_dual_elites_classic]weapon_elite" "1" + "[cu_tec9_flash]weapon_tec9" "1" + "[gs_mac10_dust_crate]weapon_mac10" "1" + "[gs_mag7_popdog]weapon_mag7" "1" + "[cu_scar_assault]weapon_scar20" "1" + "[cu_famas_nuke_tension]weapon_famas" "1" + "[cu_glock_hero]weapon_glock" "1" + "[aq_m249_aztec]weapon_m249" "1" + "[gs_mp5_fbi]weapon_mp5sd" "1" + "[cu_fiveseven_gsg9]weapon_fiveseven" "1" + "[gs_p250_inferno]weapon_p250" "1" + "[cu_ump_bomb]weapon_ump45" "1" + "[cu_mp9_hydra]weapon_mp9" "1" + "[cu_p90_nostalgia]weapon_p90" "1" + "[am_aug_death_by_doggy]weapon_aug" "1" + "[cu_awp_wildfire]weapon_awp" "1" + "[gs_famas_legacy_gold]weapon_famas" "1" + } } } + "paint_kits_rarity" + { + "aq_m249_aztec" "mythical" + "gs_dual_elites_classic" "rare" + "gs_mp5_fbi" "mythical" + "cu_tec9_flash" "rare" + "cu_fiveseven_gsg9" "mythical" + "gs_p250_inferno" "mythical" + "gs_mac10_dust_crate" "rare" + "gs_mag7_popdog" "rare" + "cu_mp9_hydra" "legendary" + "cu_p90_nostalgia" "legendary" + "am_aug_death_by_doggy" "legendary" + "cu_scar_assault" "rare" + "cu_famas_nuke_tension" "rare" + "cu_glock_hero" "uncommon" + "cu_ump_bomb" "mythical" + "cu_awp_wildfire" "legendary" + "gs_famas_legacy_gold" "ancient" + } "sticker_kits" { - "0" + "4513" { - "name" "default" - "item_name" "#StickerKit_Default" - "description_string" "#StickerKit_Desc_Default" + "name" "cs20_anniversary_pixel_holo" + "item_name" "#StickerKit_cs20_anniversary_pixel_holo" + "description_string" "#StickerKit_desc_cs20_anniversary_pixel_holo" + "sticker_material" "cs20/cs20_anniversary_pixel_holo" + "item_rarity" "mythical" } - "1" + "4514" { - "name" "dh_gologo1" - "item_name" "#StickerKit_dh_gologo1" - "description_string" "#StickerKit_desc_dh_gologo1" - "sticker_material" "dreamhack/dh_gologo1" - "tournament_event_id" "1" + "name" "cs20_2old_glossy" + "item_name" "#StickerKit_cs20_2old_glossy" + "description_string" "#StickerKit_desc_cs20_2old_glossy" + "sticker_material" "cs20/cs20_2old_glossy" + "item_rarity" "rare" } - "2" + "4515" { - "name" "dh_gologo1_holo" - "item_name" "#StickerKit_dh_gologo1_holo" - "description_string" "#StickerKit_desc_dh_gologo1_holo" - "sticker_material" "dreamhack/dh_gologo1_holo" - "tournament_event_id" "1" + "name" "cs20_arctic_avenger" + "item_name" "#StickerKit_cs20_arctic_avenger" + "description_string" "#StickerKit_desc_cs20_arctic_avenger" + "sticker_material" "cs20/cs20_arctic_avenger" + "item_rarity" "rare" } - "3" + "4516" { - "name" "dh_gologo2" - "item_name" "#StickerKit_dh_gologo2" - "description_string" "#StickerKit_desc_dh_gologo2" - "sticker_material" "dreamhack/dh_gologo2" - "tournament_event_id" "1" + "name" "cs20_aztec_beast" + "item_name" "#StickerKit_cs20_aztec_beast" + "description_string" "#StickerKit_desc_cs20_aztec_beast" + "sticker_material" "cs20/cs20_aztec_beast" + "item_rarity" "rare" } - "4" + "4517" { - "name" "dh_gologo2_holo" - "item_name" "#StickerKit_dh_gologo2_holo" - "description_string" "#StickerKit_desc_dh_gologo2_holo" - "sticker_material" "dreamhack/dh_gologo2_holo" - "tournament_event_id" "1" + "name" "cs20_sas_boom" + "item_name" "#StickerKit_cs20_sas_boom" + "description_string" "#StickerKit_desc_cs20_sas_boom" + "sticker_material" "cs20/cs20_sas_boom" + "item_rarity" "rare" } - "5" + "4518" { - "name" "dh_snowflake2" - "item_name" "#StickerKit_dh_snowflake2" - "description_string" "#StickerKit_desc_dh_snowflake2" - "sticker_material" "dreamhack/dh_snowflake2" - "tournament_event_id" "1" + "name" "cs20_c4_friend" + "item_name" "#StickerKit_cs20_c4_friend" + "description_string" "#StickerKit_desc_cs20_c4_friend" + "sticker_material" "cs20/cs20_c4_friend" + "item_rarity" "rare" } - "6" + "4519" { - "name" "dh_snowflake3" - "item_name" "#StickerKit_dh_snowflake3" - "description_string" "#StickerKit_desc_dh_snowflake3" - "sticker_material" "dreamhack/dh_snowflake3" - "tournament_event_id" "1" + "name" "cs20_clutchman_holo" + "item_name" "#StickerKit_cs20_clutchman_holo" + "description_string" "#StickerKit_desc_cs20_clutchman_holo" + "sticker_material" "cs20/cs20_clutchman_holo" + "item_rarity" "mythical" } - "7" + "4520" { - "name" "dh_bears" - "item_name" "#StickerKit_dh_bears" - "description_string" "#StickerKit_desc_dh_bears" - "sticker_material" "dreamhack/dh_bears" - "tournament_event_id" "1" + "name" "cs20_anniversary_foil" + "item_name" "#StickerKit_cs20_anniversary_foil" + "description_string" "#StickerKit_desc_cs20_anniversary_foil" + "sticker_material" "cs20/cs20_anniversary_foil" + "item_rarity" "legendary" } - "8" + "4521" { - "name" "dh_bears_holo" - "item_name" "#StickerKit_dh_bears_holo" - "description_string" "#StickerKit_desc_dh_bears_holo" - "sticker_material" "dreamhack/dh_bears_holo" - "tournament_event_id" "1" + "name" "cs20_door_stuck_foil" + "item_name" "#StickerKit_cs20_door_stuck_foil" + "description_string" "#StickerKit_desc_cs20_door_stuck_foil" + "sticker_material" "cs20/cs20_door_stuck_foil" + "item_rarity" "legendary" } - "9" + "4522" { - "name" "dh_mountain" - "item_name" "#StickerKit_dh_mountain" - "description_string" "#StickerKit_desc_dh_mountain" - "sticker_material" "dreamhack/dh_mountain" - "tournament_event_id" "1" + "name" "cs20_dragon_lore_foil" + "item_name" "#StickerKit_cs20_dragon_lore_foil" + "description_string" "#StickerKit_desc_cs20_dragon_lore_foil" + "sticker_material" "cs20/cs20_dragon_lore_foil" + "item_rarity" "legendary" } - "10" + "4523" { - "name" "dh_mountain_holo" - "item_name" "#StickerKit_dh_mountain_holo" - "description_string" "#StickerKit_desc_dh_mountain_holo" - "sticker_material" "dreamhack/dh_mountain_holo" - "tournament_event_id" "1" + "name" "cs20_dz_guinea_pig_holo" + "item_name" "#StickerKit_cs20_dz_guinea_pig_holo" + "description_string" "#StickerKit_desc_cs20_dz_guinea_pig_holo" + "sticker_material" "cs20/cs20_dz_guinea_pig_holo" + "item_rarity" "mythical" } - "11" + "4524" { - "name" "dh_snowman" - "item_name" "#StickerKit_dh_snowman" - "description_string" "#StickerKit_desc_dh_snowman" - "sticker_material" "dreamhack/dh_snowman" - "tournament_event_id" "1" + "name" "cs20_andre_sas" + "item_name" "#StickerKit_cs20_andre_sas" + "description_string" "#StickerKit_desc_cs20_andre_sas" + "sticker_material" "cs20/cs20_andre_sas" + "item_rarity" "rare" } - "12" + "4525" { - "name" "dh_snowman_holo" - "item_name" "#StickerKit_dh_snowman_holo" - "description_string" "#StickerKit_desc_dh_snowman_holo" - "sticker_material" "dreamhack/dh_snowman_holo" - "tournament_event_id" "1" + "name" "cs20_fire_in_the_hole_holo" + "item_name" "#StickerKit_cs20_fire_in_the_hole_holo" + "description_string" "#StickerKit_desc_cs20_fire_in_the_hole_holo" + "sticker_material" "cs20/cs20_fire_in_the_hole_holo" + "item_rarity" "mythical" } - "13" + "4526" { - "name" "std_thirteen" - "item_name" "#StickerKit_std_thirteen" - "description_string" "#StickerKit_desc_std_thirteen" - "sticker_material" "standard/thirteen" + "name" "cs20_nuke_beast" + "item_name" "#StickerKit_cs20_nuke_beast" + "description_string" "#StickerKit_desc_cs20_nuke_beast" + "sticker_material" "cs20/cs20_nuke_beast" "item_rarity" "rare" } - "14" + "4527" { - "name" "std_aces_high" - "item_name" "#StickerKit_std_aces_high" - "description_string" "#StickerKit_desc_std_aces_high" - "sticker_material" "standard/aces_high" + "name" "cs20_map_office" + "item_name" "#StickerKit_cs20_map_office" + "description_string" "#StickerKit_desc_cs20_map_office" + "sticker_material" "cs20/cs20_map_office" "item_rarity" "rare" } - "15" + "4528" { - "name" "std_aces_high_holo" - "item_name" "#StickerKit_std_aces_high_holo" - "description_string" "#StickerKit_desc_std_aces_high_holo" - "sticker_material" "standard/aces_high_holo" + "name" "cs20_boost_holo" + "item_name" "#StickerKit_cs20_boost_holo" + "description_string" "#StickerKit_desc_cs20_boost_holo" + "sticker_material" "cs20/cs20_boost_holo" "item_rarity" "mythical" } - "16" + "4529" { - "name" "std_conquered" - "item_name" "#StickerKit_std_conquered" - "description_string" "#StickerKit_desc_std_conquered" - "sticker_material" "standard/conquered" - "item_rarity" "rare" + "name" "cs20_rush_holo" + "item_name" "#StickerKit_cs20_rush_holo" + "description_string" "#StickerKit_desc_cs20_rush_holo" + "sticker_material" "cs20/cs20_rush_holo" + "item_rarity" "mythical" } - "17" + "4530" { - "name" "std_destroy" - "item_name" "#StickerKit_std_destroy" - "description_string" "#StickerKit_desc_std_destroy" - "sticker_material" "standard/destroy" + "name" "cs20_pixel_separatist" + "item_name" "#StickerKit_cs20_pixel_separatist" + "description_string" "#StickerKit_desc_cs20_pixel_separatist" + "sticker_material" "cs20/cs20_pixel_separatist" "item_rarity" "rare" } - "18" + "4531" { - "name" "std_dispatch" - "item_name" "#StickerKit_std_dispatch" - "description_string" "#StickerKit_desc_std_dispatch" - "sticker_material" "standard/dispatch" + "name" "cs20_surf" + "item_name" "#StickerKit_cs20_surf" + "description_string" "#StickerKit_desc_cs20_surf" + "sticker_material" "cs20/cs20_surf" "item_rarity" "rare" } - "19" + "4532" { - "name" "std_fearsome" - "item_name" "#StickerKit_std_fearsome" - "description_string" "#StickerKit_desc_std_fearsome" - "sticker_material" "standard/fearsome" + "name" "cs20_tarot_temperance" + "item_name" "#StickerKit_cs20_tarot_temperance" + "description_string" "#StickerKit_desc_cs20_tarot_temperance" + "sticker_material" "cs20/cs20_tarot_temperance" "item_rarity" "rare" } - "20" + } + "items" + { + "4670" { - "name" "std_fearsome_holo" - "item_name" "#StickerKit_std_fearsome_holo" - "description_string" "#StickerKit_desc_std_fearsome_holo" - "sticker_material" "standard/fearsome_holo" - "item_rarity" "mythical" + "item_name" "#CSGO_crate_sticker_pack_cs20_capsule" + "item_description" "#CSGO_crate_sticker_pack_cs20_capsule_desc" + "name" "crate_sticker_pack_cs20_capsule" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_cs20_capsule" + "first_sale_date" "2019/10/16" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "294" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_cs20_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_cs20_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "21" + } + "revolving_loot_lists" + { + "294" "crate_sticker_pack_cs20_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_cs20_capsule_rare" { - "name" "std_guarding_hell" - "item_name" "#StickerKit_std_guarding_hell" - "description_string" "#StickerKit_desc_std_guarding_hell" - "sticker_material" "standard/guarding_hell" - "item_rarity" "rare" + "[cs20_2old_glossy]sticker" "1" + "[cs20_arctic_avenger]sticker" "1" + "[cs20_aztec_beast]sticker" "1" + "[cs20_sas_boom]sticker" "1" + "[cs20_c4_friend]sticker" "1" + "[cs20_andre_sas]sticker" "1" + "[cs20_nuke_beast]sticker" "1" + "[cs20_map_office]sticker" "1" + "[cs20_pixel_separatist]sticker" "1" + "[cs20_surf]sticker" "1" + "[cs20_tarot_temperance]sticker" "1" } - "22" + "crate_sticker_pack_cs20_capsule_mythical" { - "name" "std_lemon" - "item_name" "#StickerKit_std_lemon" - "description_string" "#StickerKit_desc_std_lemon" - "sticker_material" "standard/lemon" - "item_rarity" "rare" + "[cs20_anniversary_pixel_holo]sticker" "1" + "[cs20_clutchman_holo]sticker" "1" + "[cs20_dz_guinea_pig_holo]sticker" "1" + "[cs20_fire_in_the_hole_holo]sticker" "1" + "[cs20_boost_holo]sticker" "1" + "[cs20_rush_holo]sticker" "1" } - "23" + "crate_sticker_pack_cs20_capsule_legendary" { - "name" "std_luck" - "item_name" "#StickerKit_std_luck" - "description_string" "#StickerKit_desc_std_luck" - "sticker_material" "standard/luck" - "item_rarity" "rare" + "[cs20_anniversary_foil]sticker" "1" + "[cs20_door_stuck_foil]sticker" "1" + "[cs20_dragon_lore_foil]sticker" "1" } - "24" + "crate_sticker_pack_cs20_capsule_lootlist" { - "name" "std_vigilance" - "item_name" "#StickerKit_std_vigilance" - "description_string" "#StickerKit_desc_std_vigilance" - "sticker_material" "standard/vigilance" - "item_rarity" "rare" + "crate_sticker_pack_cs20_capsule_rare" "1" + "crate_sticker_pack_cs20_capsule_mythical" "1" + "crate_sticker_pack_cs20_capsule_legendary" "1" } - "25" + } + "paint_kits" + { + "879" { - "name" "std_vigilance_holo" - "item_name" "#StickerKit_std_vigilance_holo" - "description_string" "#StickerKit_desc_std_vigilance_holo" - "sticker_material" "standard/vigilance_holo" - "item_rarity" "mythical" + "name" "aa_fade_ump" + "description_string" "#PaintKit_aa_fade" + "description_tag" "#PaintKit_aa_fade_Tag" + "style" "6" + "pattern" "fade" + "color0" "44 41 39 255" + "color1" "84 52 14 255" + "color2" "71 18 28 255" + "color3" "28 31 57 255" + "pattern_scale" "1.150000" + "phongexponent" "34" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "-0.700000" + "pattern_offset_x_end" "-0.700000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "-55.000000" + "pattern_rotate_end" "-65.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" } - "26" + "880" { - "name" "std_thirteen_foil" - "item_name" "#StickerKit_std_thirteen_foil" - "description_string" "#StickerKit_desc_std_thirteen_foil" - "sticker_material" "standard/thirteen_foil" - "item_rarity" "legendary" + "name" "hy_desert_bloom" + "description_string" "#PaintKit_hy_desert_bloom" + "description_tag" "#PaintKit_hy_desert_bloom_Tag" + "style" "2" + "pattern" "desert_bloom" + "color0" "128 114 92" + "color1" "114 168 178" + "color2" "47 47 55" + "color3" "28 23 32" + "pattern_scale" "2.700000" + "phongexponent" "165" + "phongintensity" "15" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.490000" } - "27" + "921" { - "name" "std_luck_foil" - "item_name" "#StickerKit_std_luck_foil" - "description_string" "#StickerKit_desc_std_luck_foil" - "sticker_material" "standard/luck_foil" - "item_rarity" "legendary" + "name" "gs_ak47_gold_arabesque" + "description_string" "#PaintKit_gs_ak47_gold_arabesque" + "description_tag" "#PaintKit_gs_ak47_gold_arabesque_Tag" + "style" "9" + "pattern" "ak47_gold_arabesque" + "use_normal" "1" + "normal" "ak47_gold_arabesque_normal" + "color0" "136 136 136" + "color1" "255 254 213" + "color2" "161 152 63" + "color3" "165 157 111" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "75" + "phongalbedoboost" "25" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "31" + "922" { - "name" "std2_bish_holo" - "item_name" "#StickerKit_std2_bish_holo" - "description_string" "#StickerKit_desc_std2_bish_holo" - "sticker_material" "stickers2/bish_holo" - "item_rarity" "mythical" + "name" "am_lizard_red" + "description_string" "#PaintKit_am_lizard_red" + "description_tag" "#PaintKit_am_lizard_red_Tag" + "style" "5" + "pattern" "iguana_skin" + "color0" "194 70 37" + "color1" "149 60 45" + "color2" "248 201 110" + "color3" "24 11 25" + "pattern_scale" "1.900000" + "phongexponent" "200" + "phongalbedoboost" "15" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.370000" } - "32" + "924" { - "name" "std2_bash_holo" - "item_name" "#StickerKit_std2_bash_holo" - "description_string" "#StickerKit_desc_std2_bash_holo" - "sticker_material" "stickers2/bash_holo" - "item_rarity" "mythical" + "name" "hy_brush_camo_tan" + "description_string" "#PaintKit_hy_brush_camo_tan" + "description_tag" "#PaintKit_hy_brush_camo_tan_Tag" + "style" "2" + "pattern" "brush_camo" + "color0" "83 68 61 255" + "color1" "131 105 87 255" + "color2" "189 181 157" + "color3" "161 145 115 255" + "pattern_scale" "1.500000" + "phongexponent" "255" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "33" + "925" { - "name" "std2_bosh_holo" - "item_name" "#StickerKit_std2_bosh_holo" - "description_string" "#StickerKit_desc_std2_bosh_holo" - "sticker_material" "stickers2/bosh_holo" - "item_rarity" "mythical" + "name" "hy_ddpat_desert" + "description_string" "#PaintKit_hy_ddpat" + "description_tag" "#PaintKit_hy_ddpat_desert_Tag" + "style" "2" + "pattern" "ddpat" + "color0" "149 137 119" + "color1" "87 57 42 255" + "color2" "113 97 79" + "color3" "99 70 47 255" + "pattern_scale" "3.200000" + "phongexponent" "16" + "phongintensity" "13" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "34" + "926" { - "name" "std2_banana" - "item_name" "#StickerKit_std2_banana" - "description_string" "#StickerKit_desc_std2_banana" - "sticker_material" "stickers2/banana" - "item_rarity" "rare" + "name" "hy_ddpat_urban_red" + "description_string" "#PaintKit_hy_ddpat_urban_red" + "description_tag" "#PaintKit_hy_ddpat_urban_red_Tag" + "style" "2" + "pattern" "ddpat" + "color0" "41 43 50 255" + "color1" "106 104 111 255" + "color2" "128 34 34" + "color3" "66 67 72 255" + "pattern_scale" "2.000000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "35" + "927" { - "name" "std2_bomb_code" - "item_name" "#StickerKit_std2_bomb_code" - "description_string" "#StickerKit_desc_std2_bomb_code" - "sticker_material" "stickers2/bomb_code" - "item_rarity" "rare" + "name" "hy_dry_wood" + "description_string" "#PaintKit_hy_dry_wood" + "description_tag" "#PaintKit_hy_dry_wood_Tag" + "style" "2" + "pattern" "dry_wood" + "color0" "85 80 74" + "color1" "37 27 31" + "color2" "117 88 59" + "color3" "134 125 99" + "pattern_scale" "5.000000" + "phongexponent" "255" + "phongintensity" "7" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "45.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.480000" + "pearlescent" "0.000000" } - "36" + "928" { - "name" "std2_chicken_lover" - "item_name" "#StickerKit_std2_chicken_lover" - "description_string" "#StickerKit_desc_std2_chicken_lover" - "sticker_material" "stickers2/chicken_lover" - "item_rarity" "rare" + "name" "hy_desert_multicam" + "description_string" "#PaintKit_hy_desert_multicam" + "description_tag" "#PaintKit_hy_desert_multicam_Tag" + "style" "2" + "pattern" "multicam_02" + "color0" "132 120 110" + "color1" "57 32 30" + "color2" "152 142 122" + "color3" "17 14 12" + "pattern_scale" "2.000000" + "phongexponent" "32" + "phongintensity" "25" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "37" + "929" { - "name" "std_crown_foil" - "item_name" "#StickerKit_std_crown_foil" - "description_string" "#StickerKit_desc_std_crown_foil" - "sticker_material" "stickers2/crown_foil" - "item_rarity" "legendary" + "name" "hy_torn_camo_paints" + "description_string" "#PaintKit_hy_torn_camo_paints" + "description_tag" "#PaintKit_hy_torn_camo_paints_Tag" + "style" "2" + "pattern" "torn_camo" + "color0" "55 104 120" + "color1" "139 105 77" + "color2" "11 36 52 255" + "color3" "153 142 122" + "pattern_scale" "2.500000" + "phongexponent" "255" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "38" + "930" { - "name" "std2_goodgame" - "item_name" "#StickerKit_std2_goodgame" - "description_string" "#StickerKit_desc_std2_goodgame" - "sticker_material" "stickers2/goodgame" - "item_rarity" "rare" + "name" "sp_moro_carving_lightblue" + "description_string" "#PaintKit_sp_moro_carving_lightblue" + "description_tag" "#PaintKit_sp_moro_carving_lightblue_Tag" + "style" "3" + "pattern" "moro_carving" + "color0" "15 11 3 255" + "color1" "107 127 106" + "color2" "157 135 92" + "color3" "105 72 72" + "pattern_scale" "1.800000" + "phongexponent" "155" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "315.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + "pearlescent" "0.000000" } - "39" + "931" { - "name" "std2_goodluck" - "item_name" "#StickerKit_std2_goodluck" - "description_string" "#StickerKit_desc_std2_goodluck" - "sticker_material" "stickers2/goodluck" - "item_rarity" "rare" + "name" "sp_moro_carving_yellow" + "description_string" "#PaintKit_sp_moro_carving_yellow" + "description_tag" "#PaintKit_sp_moro_carving_yellow_Tag" + "style" "3" + "pattern" "moro_carving" + "color0" "4 21 3" + "color1" "127 112 96" + "color2" "111 93 59" + "color3" "125 121 59" + "pattern_scale" "2.300000" + "phongexponent" "155" + "phongintensity" "25" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "40" + "932" { - "name" "std2_havefun" - "item_name" "#StickerKit_std2_havefun" - "description_string" "#StickerKit_desc_std2_havefun" - "sticker_material" "stickers2/havefun" - "item_rarity" "rare" + "name" "sp_moro_textile_purple_yellow" + "description_string" "#PaintKit_sp_moro_textile_purple_yellow" + "description_tag" "#PaintKit_sp_moro_textile_purple_yellow_Tag" + "style" "3" + "pattern" "moro_textile" + "color0" "0 0 0" + "color1" "99 66 120" + "color2" "98 75 35" + "color3" "103 99 85" + "pattern_scale" "3.200000" + "phongexponent" "155" + "phongintensity" "25" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "315.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "41" + "933" { - "name" "std2_lets_roll_oll" - "item_name" "#StickerKit_std2_lets_roll_oll" - "description_string" "#StickerKit_desc_std2_lets_roll_oll" - "sticker_material" "stickers2/lets_roll_oll" - "item_rarity" "rare" + "name" "sp_palm_night" + "description_string" "#PaintKit_sp_palm_night" + "description_tag" "#PaintKit_sp_palm_night_Tag" + "style" "3" + "pattern" "palm" + "color0" "8 12 8" + "color1" "42 43 44" + "color2" "63 63 78" + "color3" "37 41 43" + "pattern_scale" "1.500000" + "phongexponent" "190" + "phongintensity" "17" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "42" + "934" { - "name" "std2_lets_roll_oll_holo" - "item_name" "#StickerKit_std2_lets_roll_oll_holo" - "description_string" "#StickerKit_desc_std2_lets_roll_oll_holo" - "sticker_material" "stickers2/lets_roll_oll_holo" - "item_rarity" "mythical" + "name" "sp_desert_skulls" + "description_string" "#PaintKit_sp_desert_skulls" + "description_tag" "#PaintKit_sp_desert_skulls_Tag" + "style" "3" + "pattern" "desert_skulls" + "color0" "183 154 112" + "color1" "117 74 74" + "color2" "201 198 177" + "color3" "6 9 30" + "pattern_scale" "1.200000" + "phongexponent" "165" + "phongintensity" "15" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "43" + "935" { - "name" "std2_metal" - "item_name" "#StickerKit_std2_metal" - "description_string" "#StickerKit_desc_std2_metal" - "sticker_material" "stickers2/metal" - "item_rarity" "rare" + "name" "sp_zebracam_red" + "description_string" "#PaintKit_sp_zebracam_red" + "description_tag" "#PaintKit_sp_zebracam_red_Tag" + "style" "3" + "pattern" "tiger" + "color0" "67 67 67" + "color1" "63 20 20" + "color2" "22 22 22" + "color3" "17 12 12" + "pattern_scale" "1.280000" + "phongexponent" "32" + "phongintensity" "5" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-10.000000" + "pattern_rotate_end" "7.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.480000" + "pearlescent" "0.000000" } - "44" + "1052" { - "name" "std2_nice_shot" - "item_name" "#StickerKit_std2_nice_shot" - "description_string" "#StickerKit_desc_std2_nice_shot" - "sticker_material" "stickers2/nice_shot" - "item_rarity" "rare" + "name" "cu_ssg08_scorpion" + "description_string" "#PaintKit_cu_ssg08_scorpion" + "description_tag" "#PaintKit_cu_ssg08_scorpion_Tag" + "style" "7" + "pattern" "ssg08_scorpion" + "use_normal" "1" + "normal" "ssg08_scorpion_normal" + "pattern_scale" "1.000000" + "phongexponent" "165" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "46" + } + "client_loot_lists" + { + "set_dust_2_2021_common" { - "name" "std2_stupid_banana_foil" - "item_name" "#StickerKit_std2_stupid_banana_foil" - "description_string" "#StickerKit_desc_std2_stupid_banana_foil" - "sticker_material" "stickers2/stupid_banana_foil" - "item_rarity" "legendary" + "[hy_brush_camo_tan]weapon_revolver" "1" + "[hy_ddpat_desert]weapon_p90" "1" + "[sp_desert_skulls]weapon_sg556" "1" + "[sp_zebracam_red]weapon_mp7" "1" + "[hy_desert_bloom]weapon_sawedoff" "1" } - "47" + "set_dust_2_2021_uncommon" { - "name" "std2_welcome_clutch" - "item_name" "#StickerKit_std2_welcome_clutch" - "description_string" "#StickerKit_desc_std2_welcome_clutch" - "sticker_material" "stickers2/welcome_clutch" - "item_rarity" "rare" + "[hy_dry_wood]weapon_aug" "1" + "[sp_moro_carving_yellow]weapon_mp9" "1" + "[sp_moro_textile_purple_yellow]weapon_fiveseven" "1" + "[sp_palm_night]weapon_m249" "1" } - "48" + "set_dust_2_2021_rare" { - "name" "kat2014_3dmax" - "item_name" "#StickerKit_kat2014_3dmax" - "description_string" "#StickerKit_desc_kat2014_3dmax" - "sticker_material" "emskatowice2014/3dmax" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "28" + "[hy_desert_multicam]weapon_p250" "1" + "[hy_torn_camo_paints]weapon_nova" "1" + "[sp_moro_carving_lightblue]weapon_g3sg1" "1" + "[aa_fade_metallic]weapon_galilar" "1" } - "49" + "set_dust_2_2021_mythical" { - "name" "kat2014_3dmax_holo" - "item_name" "#StickerKit_kat2014_3dmax_holo" - "description_string" "#StickerKit_desc_kat2014_3dmax_holo" - "sticker_material" "emskatowice2014/3dmax_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "28" + "[am_lizard_red]weapon_usp_silencer" "1" + "[hy_ddpat_urban_red]weapon_m4a1" "1" + "[aq_oiled]weapon_mac10" "1" } - "50" + "set_dust_2_2021_legendary" { - "name" "kat2014_complexity" - "item_name" "#StickerKit_kat2014_complexity" - "description_string" "#StickerKit_desc_kat2014_complexity" - "sticker_material" "emskatowice2014/complexity" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "3" + "[aa_fade_ump]weapon_ump45" "1" + "[cu_ssg08_scorpion]weapon_ssg08" "1" } - "51" + "set_dust_2_2021_ancient" { - "name" "kat2014_complexity_holo" - "item_name" "#StickerKit_kat2014_complexity_holo" - "description_string" "#StickerKit_desc_kat2014_complexity_holo" - "sticker_material" "emskatowice2014/complexity_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "3" + "[gs_ak47_gold_arabesque]weapon_ak47" "1" } - "52" + "set_dust_2_2021" { - "name" "kat2014_dignitas" - "item_name" "#StickerKit_kat2014_dignitas" - "description_string" "#StickerKit_desc_kat2014_dignitas" - "sticker_material" "emskatowice2014/dignitas" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "24" + "set_dust_2_2021_common" "1" + "set_dust_2_2021_uncommon" "1" + "set_dust_2_2021_rare" "1" + "set_dust_2_2021_mythical" "1" + "set_dust_2_2021_legendary" "1" + "set_dust_2_2021_ancient" "1" } - "53" + } + "item_sets" + { + "set_dust_2_2021" { - "name" "kat2014_dignitas_holo" - "item_name" "#StickerKit_kat2014_dignitas_holo" - "description_string" "#StickerKit_desc_kat2014_dignitas_holo" - "sticker_material" "emskatowice2014/dignitas_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "24" + "name" "#CSGO_set_dust_2_2021" + "set_description" "#CSGO_set_dust_2_2021_desc" + "is_collection" "1" + "items" + { + "[hy_brush_camo_tan]weapon_revolver" "1" + "[hy_ddpat_desert]weapon_p90" "1" + "[sp_desert_skulls]weapon_sg556" "1" + "[sp_zebracam_red]weapon_mp7" "1" + "[hy_desert_bloom]weapon_sawedoff" "1" + "[hy_dry_wood]weapon_aug" "1" + "[sp_moro_carving_yellow]weapon_mp9" "1" + "[sp_moro_textile_purple_yellow]weapon_fiveseven" "1" + "[sp_palm_night]weapon_m249" "1" + "[hy_desert_multicam]weapon_p250" "1" + "[hy_torn_camo_paints]weapon_nova" "1" + "[sp_moro_carving_lightblue]weapon_g3sg1" "1" + "[aa_fade_metallic]weapon_galilar" "1" + "[am_lizard_red]weapon_usp_silencer" "1" + "[hy_ddpat_urban_red]weapon_m4a1" "1" + "[aq_oiled]weapon_mac10" "1" + "[aa_fade_ump]weapon_ump45" "1" + "[cu_ssg08_scorpion]weapon_ssg08" "1" + "[gs_ak47_gold_arabesque]weapon_ak47" "1" + } } - "55" + } + "paint_kits_rarity" + { + "gs_ak47_gold_arabesque" "legendary" + "aa_fade_ump" "legendary" + "am_lizard_red" "rare" + "cu_ssg08_scorpion" "legendary" + "hy_brush_camo_tan" "common" + "hy_ddpat_desert" "common" + "hy_ddpat_urban_red" "rare" + "hy_dry_wood" "uncommon" + "hy_desert_multicam" "rare" + "hy_desert_bloom" "common" + "hy_torn_camo_paints" "rare" + "sp_moro_carving_lightblue" "rare" + "sp_moro_carving_yellow" "uncommon" + "sp_moro_textile_purple_yellow" "uncommon" + "sp_palm_night" "uncommon" + "sp_desert_skulls" "common" + "sp_zebracam_red" "common" + } + "paint_kits" + { + "818" { - "name" "kat2014_fnatic" - "item_name" "#StickerKit_kat2014_fnatic" - "description_string" "#StickerKit_desc_kat2014_fnatic" - "sticker_material" "emskatowice2014/fnatic" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "6" + "name" "am_ddpat_purple" + "description_string" "#PaintKit_am_ddpat_purple" + "description_tag" "#PaintKit_am_ddpat_purple_Tag" + "style" "5" + "pattern" "ddpat" + "color0" "45 39 50" + "color1" "104 94 109" + "color2" "60 47 82" + "color3" "70 66 72" + "pattern_scale" "2.000000" + "phongexponent" "16" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "56" + "819" { - "name" "kat2014_fnatic_holo" - "item_name" "#StickerKit_kat2014_fnatic_holo" - "description_string" "#StickerKit_desc_kat2014_fnatic_holo" - "sticker_material" "emskatowice2014/fnatic_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "6" + "name" "gs_awp_hydra" + "description_string" "#PaintKit_gs_awp_hydra" + "description_tag" "#PaintKit_gs_awp_hydra_Tag" + "style" "9" + "pattern" "awp_hydra" + "use_normal" "1" + "normal" "awp_hydra_normal" + "color0" "143 142 142" + "color1" "203 194 187" + "color2" "133 104 93" + "color3" "134 121 119" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "57" + "820" { - "name" "kat2014_hellraisers" - "item_name" "#StickerKit_kat2014_hellraisers" - "description_string" "#StickerKit_desc_kat2014_hellraisers" - "sticker_material" "emskatowice2014/hellraisers" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "25" + "name" "am_mirage_flowers_metalic" + "description_string" "#PaintKit_am_mirage_flowers_metalic" + "description_tag" "#PaintKit_am_mirage_flowers_metalic_Tag" + "style" "5" + "pattern" "mirage_flowers" + "color0" "8 8 8 255" + "color1" "101 82 52" + "color2" "52 37 22" + "color3" "45 27 27" + "pattern_scale" "3.000000" + "phongexponent" "15" + "phongalbedoboost" "85" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + "pearlescent" "0.000000" } - "58" + "821" { - "name" "kat2014_hellraisers_holo" - "item_name" "#StickerKit_kat2014_hellraisers_holo" - "description_string" "#StickerKit_desc_kat2014_hellraisers_holo" - "sticker_material" "emskatowice2014/hellraisers_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "25" + "name" "am_moro_textile_bright" + "description_string" "#PaintKit_am_moro_textile_bright" + "description_tag" "#PaintKit_am_moro_textile_bright_Tag" + "style" "5" + "pattern" "moro_textile" + "color0" "0 4 25" + "color1" "181 13 13" + "color2" "75 87 21" + "color3" "34 96 35" + "pattern_scale" "1.900000" + "phongexponent" "155" + "phongalbedoboost" "25" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.370000" + "pearlescent" "0.000000" } - "59" + "822" { - "name" "kat2014_ibuypower" - "item_name" "#StickerKit_kat2014_ibuypower" - "description_string" "#StickerKit_desc_kat2014_ibuypower" - "sticker_material" "emskatowice2014/ibuypower" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "5" + "name" "am_navy_shine" + "description_string" "#PaintKit_am_navy_shine" + "description_tag" "#PaintKit_am_navy_shine_Tag" + "style" "5" + "pattern" "caustics" + "color0" "25 26 31" + "color1" "38 34 34 255" + "color2" "28 32 43 255" + "color3" "19 20 28" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "60" + "823" { - "name" "kat2014_ibuypower_holo" - "item_name" "#StickerKit_kat2014_ibuypower_holo" - "description_string" "#StickerKit_desc_kat2014_ibuypower_holo" - "sticker_material" "emskatowice2014/ibuypower_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "5" + "name" "gs_aug_sand_storm" + "description_string" "#PaintKit_gs_aug_sand_storm" + "description_tag" "#PaintKit_gs_aug_sand_storm_Tag" + "style" "9" + "pattern" "sand_storm" + "color0" "85 79 79" + "color1" "205 195 154" + "color2" "151 116 97" + "color3" "169 144 77" + "pattern_scale" "1.000000" + "phongexponent" "155" + "phongintensity" "50" + "phongalbedoboost" "25" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "61" + "824" { - "name" "kat2014_ldlc" - "item_name" "#StickerKit_kat2014_ldlc" - "description_string" "#StickerKit_desc_kat2014_ldlc" - "sticker_material" "emskatowice2014/ldlc" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "26" + "name" "sp_dry_wood" + "description_string" "#PaintKit_sp_dry_wood" + "description_tag" "#PaintKit_sp_dry_wood_Tag" + "style" "3" + "pattern" "dry_wood" + "color0" "77 68 61" + "color1" "36 26 29" + "color2" "111 82 67" + "color3" "137 124 98" + "pattern_scale" "3.000000" + "phongexponent" "244" + "phongintensity" "2" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "pearlescent" "0.000000" } - "62" + "825" { - "name" "kat2014_ldlc_holo" - "item_name" "#StickerKit_kat2014_ldlc_holo" - "description_string" "#StickerKit_desc_kat2014_ldlc_holo" - "sticker_material" "emskatowice2014/ldlc_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "26" + "name" "sp_desert_skulls_dawn" + "description_string" "#PaintKit_sp_desert_skulls_dawn" + "description_tag" "#PaintKit_sp_desert_skulls_dawn_Tag" + "style" "3" + "pattern" "desert_skulls" + "color0" "61 53 62" + "color1" "180 157 149" + "color2" "98 92 106" + "color3" "14 25 50" + "pattern_scale" "2.000000" + "phongexponent" "165" + "phongintensity" "15" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.440000" } - "63" + "826" { - "name" "kat2014_lgb" - "item_name" "#StickerKit_kat2014_lgb" - "description_string" "#StickerKit_desc_kat2014_lgb" - "sticker_material" "emskatowice2014/lgb" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "9" + "name" "sp_mirage_flowers_tan" + "description_string" "#PaintKit_sp_mirage_flowers_tan" + "description_tag" "#PaintKit_sp_mirage_flowers_tan_Tag" + "style" "3" + "pattern" "mirage_flowers" + "color0" "111 104 79" + "color1" "63 40 26" + "color2" "34 27 9" + "color3" "27 20 10" + "pattern_scale" "2.500000" + "phongexponent" "15" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "pearlescent" "0.000000" } - "64" + "827" { - "name" "kat2014_lgb_holo" - "item_name" "#StickerKit_kat2014_lgb_holo" - "description_string" "#StickerKit_desc_kat2014_lgb_holo" - "sticker_material" "emskatowice2014/lgb_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "9" + "name" "sp_moro_carving_burnt" + "description_string" "#PaintKit_sp_moro_carving_burnt" + "description_tag" "#PaintKit_sp_moro_carving_burnt_Tag" + "style" "3" + "pattern" "moro_carving" + "color0" "3 4 21 255" + "color1" "86 62 30" + "color2" "108 64 64" + "color3" "115 79 89" + "pattern_scale" "1.550000" + "phongexponent" "245" + "phongintensity" "11" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "315.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "65" + "828" { - "name" "kat2014_mousesports" - "item_name" "#StickerKit_kat2014_mousesports" - "description_string" "#StickerKit_desc_kat2014_mousesports" - "sticker_material" "emskatowice2014/mousesports" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "29" + "name" "sp_moro_textile_green_vine" + "description_string" "#PaintKit_sp_moro_textile_green_vine" + "description_tag" "#PaintKit_sp_moro_textile_green_vine_Tag" + "style" "3" + "pattern" "moro_textile" + "color0" "7 17 0 255" + "color1" "158 145 145" + "color2" "107 107 64 255" + "color3" "68 86 59" + "pattern_scale" "1.500000" + "phongexponent" "155" + "phongintensity" "25" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "315.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.470000" + "pearlescent" "0.000000" } - "66" + "829" { - "name" "kat2014_mousesports_holo" - "item_name" "#StickerKit_kat2014_mousesports_holo" - "description_string" "#StickerKit_desc_kat2014_mousesports_holo" - "sticker_material" "emskatowice2014/mousesports_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "29" + "name" "hy_lizard_skin" + "description_string" "#PaintKit_hy_lizard_skin" + "description_tag" "#PaintKit_hy_lizard_skin_Tag" + "style" "2" + "pattern" "iguana_skin" + "color0" "108 109 71" + "color1" "104 113 69" + "color2" "55 52 40" + "color3" "24 26 22" + "pattern_scale" "1.900000" + "phongexponent" "200" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "67" + "764" { - "name" "kat2014_mystik" - "item_name" "#StickerKit_kat2014_mystik" - "description_string" "#StickerKit_desc_kat2014_mystik" - "sticker_material" "emskatowice2014/mystik" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "7" + "name" "gs_deagle_fennec" + "description_string" "#PaintKit_gs_deagle_fennec" + "description_tag" "#PaintKit_gs_deagle_fennec_Tag" + "style" "9" + "pattern" "deagle_fennec" + "use_normal" "1" + "normal" "deagle_fennec_normal" + "color0" "126 114 99" + "color1" "205 200 195" + "color2" "154 142 124" + "color3" "136 122 115" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "68" + "765" { - "name" "kat2014_mystik_holo" - "item_name" "#StickerKit_kat2014_mystik_holo" - "description_string" "#StickerKit_desc_kat2014_mystik_holo" - "sticker_material" "emskatowice2014/mystik_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "7" + "name" "aa_desert_bloom_bright" + "description_string" "#PaintKit_aa_desert_bloom_bright" + "description_tag" "#PaintKit_aa_desert_bloom_bright_Tag" + "style" "6" + "pattern" "desert_bloom" + "color0" "210 168 130" + "color1" "153 71 11" + "color2" "230 150 181" + "color3" "48 31 41" + "pattern_scale" "1.400000" + "phongexponent" "165" + "phongalbedoboost" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.490000" } - "69" + "923" { - "name" "kat2014_navi" - "item_name" "#StickerKit_kat2014_navi" - "description_string" "#StickerKit_desc_kat2014_navi" - "sticker_material" "emskatowice2014/navi" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "12" + "name" "gs_mp5_neon_flektarn" + "description_string" "#PaintKit_gs_mp5_neon_flektarn" + "description_tag" "#PaintKit_gs_mp5_neon_flektarn_Tag" + "style" "9" + "pattern" "mp5_neon_flektarn" + "color0" "235 224 106" + "color1" "241 234 204" + "color2" "89 113 112" + "color3" "102 78 114" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "75" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + "pearlescent" "0.000000" } - "70" + } + "client_loot_lists" + { + "set_mirage_2021_common" { - "name" "kat2014_navi_holo" - "item_name" "#StickerKit_kat2014_navi_holo" - "description_string" "#StickerKit_desc_kat2014_navi_holo" - "sticker_material" "emskatowice2014/navi_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "12" + "[sp_desert_skulls_dawn]weapon_p250" "1" + "[hy_lizard_skin]weapon_bizon" "1" + "[am_navy_shine]weapon_mag7" "1" + "[sp_mirage_flowers_tan]weapon_mac10" "1" + "[sp_zebracam_red]weapon_ssg08" "1" } - "71" + "set_mirage_2021_uncommon" { - "name" "kat2014_ninjasinpyjamas" - "item_name" "#StickerKit_kat2014_ninjasinpyjamas" - "description_string" "#StickerKit_desc_kat2014_ninjasinpyjamas" - "sticker_material" "emskatowice2014/ninjasinpyjamas" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "1" + "[sp_dry_wood]weapon_elite" "1" + "[hy_varicamo_desert]weapon_famas" "1" + "[sp_palm_night]weapon_cz75a" "1" + "[sp_moro_textile_green_vine]weapon_p90" "1" } - "72" + "set_mirage_2021_rare" { - "name" "kat2014_ninjasinpyjamas_holo" - "item_name" "#StickerKit_kat2014_ninjasinpyjamas_holo" - "description_string" "#StickerKit_desc_kat2014_ninjasinpyjamas_holo" - "sticker_material" "emskatowice2014/ninjasinpyjamas_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "1" + "[am_ddpat_purple]weapon_usp_silencer" "1" + "[am_mirage_flowers_metalic]weapon_mp9" "1" + "[sp_moro_carving_burnt]weapon_m249" "1" + "[aa_desert_bloom_bright]weapon_sg556" "1" } - "73" + "set_mirage_2021_mythical" { - "name" "kat2014_reason" - "item_name" "#StickerKit_kat2014_reason" - "description_string" "#StickerKit_desc_kat2014_reason" - "sticker_material" "emskatowice2014/reason" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "30" + "[am_moro_textile_bright]weapon_xm1014" "1" + "[hy_ddpat_pink]weapon_glock" "1" + "[gs_aug_sand_storm]weapon_aug" "1" } - "74" + "set_mirage_2021_legendary" { - "name" "kat2014_reason_holo" - "item_name" "#StickerKit_kat2014_reason_holo" - "description_string" "#StickerKit_desc_kat2014_reason_holo" - "sticker_material" "emskatowice2014/reason_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "30" + "[gs_mp5_neon_flektarn]weapon_mp5sd" "1" + "[gs_deagle_fennec]weapon_deagle" "1" } - "75" + "set_mirage_2021_ancient" { - "name" "kat2014_titan" - "item_name" "#StickerKit_kat2014_titan" - "description_string" "#StickerKit_desc_kat2014_titan" - "sticker_material" "emskatowice2014/titan" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "27" + "[gs_awp_hydra]weapon_awp" "1" } - "76" + "set_mirage_2021" { - "name" "kat2014_titan_holo" - "item_name" "#StickerKit_kat2014_titan_holo" - "description_string" "#StickerKit_desc_kat2014_titan_holo" - "sticker_material" "emskatowice2014/titan_holo" - "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "27" + "set_mirage_2021_common" "1" + "set_mirage_2021_uncommon" "1" + "set_mirage_2021_rare" "1" + "set_mirage_2021_mythical" "1" + "set_mirage_2021_legendary" "1" + "set_mirage_2021_ancient" "1" } - "77" + } + "item_sets" + { + "set_mirage_2021" { - "name" "kat2014_virtuspro" - "item_name" "#StickerKit_kat2014_virtuspro" - "description_string" "#StickerKit_desc_kat2014_virtuspro" - "sticker_material" "emskatowice2014/virtuspro" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "31" + "name" "#CSGO_set_mirage_2021" + "set_description" "#CSGO_set_mirage_2021_desc" + "is_collection" "1" + "items" + { + "[sp_desert_skulls_dawn]weapon_p250" "1" + "[hy_lizard_skin]weapon_bizon" "1" + "[am_navy_shine]weapon_mag7" "1" + "[sp_mirage_flowers_tan]weapon_mac10" "1" + "[sp_zebracam_red]weapon_ssg08" "1" + "[sp_dry_wood]weapon_elite" "1" + "[hy_varicamo_desert]weapon_famas" "1" + "[sp_palm_night]weapon_cz75a" "1" + "[sp_moro_textile_green_vine]weapon_p90" "1" + "[am_ddpat_purple]weapon_usp_silencer" "1" + "[am_mirage_flowers_metalic]weapon_mp9" "1" + "[sp_moro_carving_burnt]weapon_m249" "1" + "[aa_desert_bloom_bright]weapon_sg556" "1" + "[am_moro_textile_bright]weapon_xm1014" "1" + "[hy_ddpat_pink]weapon_glock" "1" + "[gs_aug_sand_storm]weapon_aug" "1" + "[gs_mp5_neon_flektarn]weapon_mp5sd" "1" + "[gs_deagle_fennec]weapon_deagle" "1" + "[gs_awp_hydra]weapon_awp" "1" + } } - "78" + } + "paint_kits_rarity" + { + "am_ddpat_purple" "uncommon" + "hy_lizard_skin" "common" + "gs_awp_hydra" "legendary" + "am_mirage_flowers_metalic" "rare" + "aa_desert_bloom_bright" "rare" + "am_moro_textile_bright" "mythical" + "gs_deagle_fennec" "mythical" + "am_navy_shine" "common" + "gs_aug_sand_storm" "mythical" + "sp_dry_wood" "uncommon" + "sp_desert_skulls_dawn" "common" + "sp_mirage_flowers_tan" "common" + "sp_moro_carving_burnt" "rare" + "sp_moro_textile_green_vine" "uncommon" + "sp_palm_night" "uncommon" + "gs_mp5_neon_flektarn" "legendary" + } + "sticker_kits" + { + "4550" { - "name" "kat2014_virtuspro_holo" - "item_name" "#StickerKit_kat2014_virtuspro_holo" - "description_string" "#StickerKit_desc_kat2014_virtuspro_holo" - "sticker_material" "emskatowice2014/virtuspro_holo" + "name" "patch_banana" + "item_name" "#PatchKit_patch_banana" + "description_string" "#PatchKit_desc_patch_banana" + "patch_material" "case01/patch_banana" "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "31" } - "79" + "4551" { - "name" "kat2014_voxeminor" - "item_name" "#StickerKit_kat2014_voxeminor" - "description_string" "#StickerKit_desc_kat2014_voxeminor" - "sticker_material" "emskatowice2014/voxeminor" - "item_rarity" "rare" - "tournament_event_id" "3" - "tournament_team_id" "32" + "name" "patch_boss" + "item_name" "#PatchKit_patch_boss" + "description_string" "#PatchKit_desc_patch_boss" + "patch_material" "case01/patch_boss" + "item_rarity" "legendary" } - "80" + "4552" { - "name" "kat2014_voxeminor_holo" - "item_name" "#StickerKit_kat2014_voxeminor_holo" - "description_string" "#StickerKit_desc_kat2014_voxeminor_holo" - "sticker_material" "emskatowice2014/voxeminor_holo" + "name" "patch_chickenlover" + "item_name" "#PatchKit_patch_chickenlover" + "description_string" "#PatchKit_desc_patch_chickenlover" + "patch_material" "case01/patch_chickenlover" "item_rarity" "mythical" - "tournament_event_id" "3" - "tournament_team_id" "32" } - "81" + "4553" { - "name" "kat2014_esl1_foil" - "item_name" "#StickerKit_kat2014_esl1_foil" - "description_string" "#StickerKit_desc_kat2014_esl1_foil" - "sticker_material" "emskatowice2014/wolf_esl_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" + "name" "patch_clutch" + "item_name" "#PatchKit_patch_clutch" + "description_string" "#PatchKit_desc_patch_clutch" + "patch_material" "case01/patch_clutch" + "item_rarity" "mythical" } - "82" + "4554" { - "name" "kat2014_esl2_foil" - "item_name" "#StickerKit_kat2014_esl2_foil" - "description_string" "#StickerKit_desc_kat2014_esl2_foil" - "sticker_material" "emskatowice2014/wolf_skull_esl_foil" + "name" "patch_dragon" + "item_name" "#PatchKit_patch_dragon" + "description_string" "#PatchKit_desc_patch_dragon" + "patch_material" "case01/patch_dragon" "item_rarity" "legendary" - "tournament_event_id" "3" } - "83" + "4555" { - "name" "kat2014_3dmax_foil" - "item_name" "#StickerKit_kat2014_3dmax_foil" - "description_string" "#StickerKit_desc_kat2014_3dmax_foil" - "sticker_material" "emskatowice2014/3dmax_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "28" + "name" "patch_easypeasy" + "item_name" "#PatchKit_patch_easypeasy" + "description_string" "#PatchKit_desc_patch_easypeasy" + "patch_material" "case01/patch_easypeasy" + "item_rarity" "mythical" } - "84" + "4556" { - "name" "kat2014_complexity_foil" - "item_name" "#StickerKit_kat2014_complexity_foil" - "description_string" "#StickerKit_desc_kat2014_complexity_foil" - "sticker_material" "emskatowice2014/complexity_foil" + "name" "patch_fury" + "item_name" "#PatchKit_patch_fury" + "description_string" "#PatchKit_desc_patch_fury" + "patch_material" "case01/patch_fury" "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "3" } - "85" + "4557" { - "name" "kat2014_dignitas_foil" - "item_name" "#StickerKit_kat2014_dignitas_foil" - "description_string" "#StickerKit_desc_kat2014_dignitas_foil" - "sticker_material" "emskatowice2014/dignitas_foil" + "name" "patch_howl" + "item_name" "#PatchKit_patch_howl" + "description_string" "#PatchKit_desc_patch_howl" + "patch_material" "case01/patch_howl" "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "24" } - "86" + "4558" { - "name" "kat2014_fnatic_foil" - "item_name" "#StickerKit_kat2014_fnatic_foil" - "description_string" "#StickerKit_desc_kat2014_fnatic_foil" - "sticker_material" "emskatowice2014/fnatic_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "6" + "name" "patch_koi" + "item_name" "#PatchKit_patch_koi" + "description_string" "#PatchKit_desc_patch_koi" + "patch_material" "case01/patch_koi" + "item_rarity" "mythical" } - "87" + "4559" { - "name" "kat2014_hellraisers_foil" - "item_name" "#StickerKit_kat2014_hellraisers_foil" - "description_string" "#StickerKit_desc_kat2014_hellraisers_foil" - "sticker_material" "emskatowice2014/hellraisers_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "25" + "name" "patch_longevity" + "item_name" "#PatchKit_patch_longevity" + "description_string" "#PatchKit_desc_patch_longevity" + "patch_material" "case01/patch_longevity" + "item_rarity" "mythical" } - "88" + "4560" { - "name" "kat2014_ibuypower_foil" - "item_name" "#StickerKit_kat2014_ibuypower_foil" - "description_string" "#StickerKit_desc_kat2014_ibuypower_foil" - "sticker_material" "emskatowice2014/ibuypower_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "5" + "name" "patch_wildfire" + "item_name" "#PatchKit_patch_wildfire" + "description_string" "#PatchKit_desc_patch_wildfire" + "patch_material" "case01/patch_wildfire" + "item_rarity" "rare" } - "89" + "4561" { - "name" "kat2014_ldlc_foil" - "item_name" "#StickerKit_kat2014_ldlc_foil" - "description_string" "#StickerKit_desc_kat2014_ldlc_foil" - "sticker_material" "emskatowice2014/ldlc_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "26" + "name" "patch_vigilance" + "item_name" "#PatchKit_patch_vigilance" + "description_string" "#PatchKit_desc_patch_vigilance" + "patch_material" "case01/patch_vigilance" + "item_rarity" "mythical" } - "90" + "4562" { - "name" "kat2014_lgb_foil" - "item_name" "#StickerKit_kat2014_lgb_foil" - "description_string" "#StickerKit_desc_kat2014_lgb_foil" - "sticker_material" "emskatowice2014/lgb_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "9" + "name" "patch_bloodhound" + "item_name" "#PatchKit_patch_bloodhound" + "description_string" "#PatchKit_desc_patch_bloodhound" + "patch_material" "case01/patch_bloodhound" + "item_rarity" "rare" } - "91" + "4563" { - "name" "kat2014_mousesports_foil" - "item_name" "#StickerKit_kat2014_mousesports_foil" - "description_string" "#StickerKit_desc_kat2014_mousesports_foil" - "sticker_material" "emskatowice2014/mousesports_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "29" + "name" "patch_bravo" + "item_name" "#PatchKit_patch_bravo" + "description_string" "#PatchKit_desc_patch_bravo" + "patch_material" "case01/patch_bravo" + "item_rarity" "rare" } - "92" + "4564" { - "name" "kat2014_mystik_foil" - "item_name" "#StickerKit_kat2014_mystik_foil" - "description_string" "#StickerKit_desc_kat2014_mystik_foil" - "sticker_material" "emskatowice2014/mystik_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "7" + "name" "patch_breakout" + "item_name" "#PatchKit_patch_breakout" + "description_string" "#PatchKit_desc_patch_breakout" + "patch_material" "case01/patch_breakout" + "item_rarity" "rare" } - "93" + "4565" { - "name" "kat2014_navi_foil" - "item_name" "#StickerKit_kat2014_navi_foil" - "description_string" "#StickerKit_desc_kat2014_navi_foil" - "sticker_material" "emskatowice2014/navi_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "12" + "name" "patch_dangerzone" + "item_name" "#PatchKit_patch_dangerzone" + "description_string" "#PatchKit_desc_patch_dangerzone" + "patch_material" "case01/patch_dangerzone" + "item_rarity" "mythical" } - "94" + "4566" { - "name" "kat2014_ninjasinpyjamas_foil" - "item_name" "#StickerKit_kat2014_ninjasinpyjamas_foil" - "description_string" "#StickerKit_desc_kat2014_ninjasinpyjamas_foil" - "sticker_material" "emskatowice2014/ninjasinpyjamas_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "1" + "name" "patch_hydra" + "item_name" "#PatchKit_patch_hydra" + "description_string" "#PatchKit_desc_patch_hydra" + "patch_material" "case01/patch_hydra" + "item_rarity" "rare" } - "95" + "4567" { - "name" "kat2014_reason_foil" - "item_name" "#StickerKit_kat2014_reason_foil" - "description_string" "#StickerKit_desc_kat2014_reason_foil" - "sticker_material" "emskatowice2014/reason_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "30" + "name" "patch_payback" + "item_name" "#PatchKit_patch_payback" + "description_string" "#PatchKit_desc_patch_payback" + "patch_material" "case01/patch_payback" + "item_rarity" "rare" } - "96" + "4568" { - "name" "kat2014_titan_foil" - "item_name" "#StickerKit_kat2014_titan_foil" - "description_string" "#StickerKit_desc_kat2014_titan_foil" - "sticker_material" "emskatowice2014/titan_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "27" + "name" "patch_phoenix" + "item_name" "#PatchKit_patch_phoenix" + "description_string" "#PatchKit_desc_patch_phoenix" + "patch_material" "case01/patch_phoenix" + "item_rarity" "rare" } - "97" + "4569" { - "name" "kat2014_virtuspro_foil" - "item_name" "#StickerKit_kat2014_virtuspro_foil" - "description_string" "#StickerKit_desc_kat2014_virtuspro_foil" - "sticker_material" "emskatowice2014/virtuspro_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "31" + "name" "patch_shatteredweb" + "item_name" "#PatchKit_patch_shatteredweb" + "description_string" "#PatchKit_desc_patch_shatteredweb" + "patch_material" "case01/patch_shatteredweb" + "item_rarity" "rare" } - "98" + "4570" { - "name" "kat2014_voxeminor_foil" - "item_name" "#StickerKit_kat2014_voxeminor_foil" - "description_string" "#StickerKit_desc_kat2014_voxeminor_foil" - "sticker_material" "emskatowice2014/voxeminor_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" - "tournament_team_id" "32" + "name" "patch_vanguard" + "item_name" "#PatchKit_patch_vanguard" + "description_string" "#PatchKit_desc_patch_vanguard" + "patch_material" "case01/patch_vanguard" + "item_rarity" "rare" } - "99" - { - "name" "kat2014_wolf_esl_gold_foil" - "item_name" "#StickerKit_kat2014_wolf_esl_gold_foil" - "description_string" "#StickerKit_desc_kat2014_wolf_esl_gold_foil" - "sticker_material" "emskatowice2014/wolf_esl_gold_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" + } + "items" + { + "4610" + { + "name" "crate_patch_pack01" + "item_name" "#CSGO_crate_patch_pack01" + "item_description" "#CSGO_crate_patch_pack01_desc" + "model_player" "models/props/crates/patch_envelope.mdl" + "image_inventory" "econ/weapon_cases/crate_patch_pack01" + "prefab" "patch_capsule" + "first_sale_date" "2020/02/24" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "296" + } + } + "tags" + { + "PatchCapsule" + { + "tag_value" "crate_patch_pack01" + "tag_text" "#CSGO_crate_patch_pack01" + "tag_group" "PatchCapsule" + "tag_group_text" "#SFUI_InvTooltip_PatchCapsuleTag" + } + } } - "100" - { - "name" "kat2014_wolf_skull_esl_gold_foil" - "item_name" "#StickerKit_kat2014_wolf_skull_esl_gold_foil" - "description_string" "#StickerKit_desc_kat2014_wolf_skull_esl_gold_foil" - "sticker_material" "emskatowice2014/wolf_skull_esl_gold_foil" - "item_rarity" "legendary" - "tournament_event_id" "3" + } + "revolving_loot_lists" + { + "296" "crate_patch_pack01" + } + "client_loot_lists" + { + "crate_patch_pack01_rare" + { + "[patch_payback]patch" "1" + "[patch_bravo]patch" "1" + "[patch_phoenix]patch" "1" + "[patch_breakout]patch" "1" + "[patch_vanguard]patch" "1" + "[patch_bloodhound]patch" "1" + "[patch_wildfire]patch" "1" + "[patch_hydra]patch" "1" + "[patch_shatteredweb]patch" "1" + } + "crate_patch_pack01_mythical" + { + "[patch_dangerzone]patch" "1" + "[patch_easypeasy]patch" "1" + "[patch_chickenlover]patch" "1" + "[patch_banana]patch" "1" + "[patch_clutch]patch" "1" + "[patch_koi]patch" "1" + "[patch_longevity]patch" "1" + "[patch_vigilance]patch" "1" + } + "crate_patch_pack01_legendary" + { + "[patch_fury]patch" "1" + "[patch_dragon]patch" "1" + "[patch_boss]patch" "1" + "[patch_howl]patch" "1" + } + "crate_patch_pack01" + { + "crate_patch_pack01_rare" "1" + "crate_patch_pack01_mythical" "1" + "crate_patch_pack01_legendary" "1" } - "101" + } + "sticker_kits" + { + "4571" { - "name" "comm01_backstab" - "item_name" "#StickerKit_comm01_backstab" - "description_string" "#StickerKit_desc_comm01_backstab" - "sticker_material" "community01/backstab" + "name" "patch_silver" + "item_name" "#PatchKit_patch_silver" + "description_string" "#PatchKit_desc_patch_silver" + "patch_material" "case_skillgroups/patch_silver" "item_rarity" "rare" } - "102" + "4572" { - "name" "comm01_black_king" - "item_name" "#StickerKit_comm01_black_king" - "description_string" "#StickerKit_desc_comm01_black_king" - "sticker_material" "community01/black_king" + "name" "patch_goldnova1" + "item_name" "#PatchKit_patch_goldnova1" + "description_string" "#PatchKit_desc_patch_goldnova1" + "patch_material" "case_skillgroups/patch_goldnova1" "item_rarity" "rare" } - "103" + "4575" { - "name" "comm01_howling_dawn" - "item_name" "#StickerKit_comm01_howling_dawn" - "description_string" "#StickerKit_desc_comm01_howling_dawn" - "sticker_material" "community01/howling_dawn" + "name" "patch_goldnovamaster" + "item_name" "#PatchKit_patch_goldnovamaster" + "description_string" "#PatchKit_desc_patch_goldnovamaster" + "patch_material" "case_skillgroups/patch_goldnovamaster" "item_rarity" "rare" } - "104" + "4576" { - "name" "comm01_bomb_doge" - "item_name" "#StickerKit_comm01_bomb_doge" - "description_string" "#StickerKit_desc_comm01_bomb_doge" - "sticker_material" "community01/bomb_doge" + "name" "patch_masterguardian1" + "item_name" "#PatchKit_patch_masterguardian1" + "description_string" "#PatchKit_desc_patch_masterguardian1" + "patch_material" "case_skillgroups/patch_masterguardian1" "item_rarity" "rare" } - "105" + "4578" { - "name" "comm01_burn_them_all" - "item_name" "#StickerKit_comm01_burn_them_all" - "description_string" "#StickerKit_desc_comm01_burn_them_all" - "sticker_material" "community01/burn_them_all" + "name" "patch_masterguardianelite" + "item_name" "#PatchKit_patch_masterguardianelite" + "description_string" "#PatchKit_desc_patch_masterguardianelite" + "patch_material" "case_skillgroups/patch_masterguardianelite" "item_rarity" "rare" } - "106" + "4579" { - "name" "comm01_harp_of_war" - "item_name" "#StickerKit_comm01_harp_of_war" - "description_string" "#StickerKit_desc_comm01_harp_of_war" - "sticker_material" "community01/harp_of_war" + "name" "patch_dmg" + "item_name" "#PatchKit_patch_dmg" + "description_string" "#PatchKit_desc_patch_dmg" + "patch_material" "case_skillgroups/patch_dmg" "item_rarity" "mythical" } - "107" + "4580" { - "name" "comm01_flammable_foil" - "item_name" "#StickerKit_comm01_flammable_foil" - "description_string" "#StickerKit_desc_comm01_flammable_foil" - "sticker_material" "community01/flammable_foil" - "item_rarity" "legendary" + "name" "patch_legendaryeagle" + "item_name" "#PatchKit_patch_legendaryeagle" + "description_string" "#PatchKit_desc_patch_legendaryeagle" + "patch_material" "case_skillgroups/patch_legendaryeagle" + "item_rarity" "mythical" } - "108" + "4581" { - "name" "comm01_headhunter_foil" - "item_name" "#StickerKit_comm01_headhunter_foil" - "description_string" "#StickerKit_desc_comm01_headhunter_foil" - "sticker_material" "community01/headhunter_foil" - "item_rarity" "legendary" + "name" "patch_legendaryeaglemaster" + "item_name" "#PatchKit_patch_legendaryeaglemaster" + "description_string" "#PatchKit_desc_patch_legendaryeaglemaster" + "patch_material" "case_skillgroups/patch_legendaryeaglemaster" + "item_rarity" "mythical" } - "109" + "4582" { - "name" "comm01_llama_cannon" - "item_name" "#StickerKit_comm01_llama_cannon" - "description_string" "#StickerKit_desc_comm01_llama_cannon" - "sticker_material" "community01/llama_cannon" - "item_rarity" "rare" + "name" "patch_supreme" + "item_name" "#PatchKit_patch_supreme" + "description_string" "#PatchKit_desc_patch_supreme" + "patch_material" "case_skillgroups/patch_supreme" + "item_rarity" "mythical" } - "110" + "4583" { - "name" "comm01_new_sheriff_foil" - "item_name" "#StickerKit_comm01_new_sheriff_foil" - "description_string" "#StickerKit_desc_comm01_new_sheriff_foil" - "sticker_material" "community01/new_sheriff_foil" + "name" "patch_globalelite" + "item_name" "#PatchKit_patch_globalelite" + "description_string" "#PatchKit_desc_patch_globalelite" + "patch_material" "case_skillgroups/patch_globalelite" "item_rarity" "legendary" } - "111" + "4584" { - "name" "comm01_other_awp" - "item_name" "#StickerKit_comm01_other_awp" - "description_string" "#StickerKit_desc_comm01_other_awp" - "sticker_material" "community01/other_awp" + "name" "patch_dmg2" + "item_name" "#PatchKit_patch_dmg1" + "description_string" "#PatchKit_desc_patch_dmg" + "patch_material" "case_skillgroups/patch_dmg2" "item_rarity" "rare" } - "112" + "4585" { - "name" "comm01_shavemaster" - "item_name" "#StickerKit_comm01_shavemaster" - "description_string" "#StickerKit_desc_comm01_shavemaster" - "sticker_material" "community01/shavemaster" + "name" "patch_legendaryeagle2" + "item_name" "#PatchKit_patch_legendaryeagle" + "description_string" "#PatchKit_desc_patch_legendaryeagle" + "patch_material" "case_skillgroups/patch_legendaryeagle2" "item_rarity" "rare" } - "113" + "4586" { - "name" "comm01_skull" - "item_name" "#StickerKit_comm01_skull" - "description_string" "#StickerKit_desc_comm01_skull" - "sticker_material" "community01/skull" + "name" "patch_legendaryeaglemaster2" + "item_name" "#PatchKit_patch_legendaryeaglemaster1" + "description_string" "#PatchKit_desc_patch_legendaryeaglemaster" + "patch_material" "case_skillgroups/patch_legendaryeaglemaster2" "item_rarity" "rare" } - "114" + "4587" { - "name" "comm01_sneaky_beaky" - "item_name" "#StickerKit_comm01_sneaky_beaky" - "description_string" "#StickerKit_desc_comm01_sneaky_beaky" - "sticker_material" "community01/sneaky_beaky" + "name" "patch_silver_demon" + "item_name" "#PatchKit_patch_silver_demon" + "description_string" "#PatchKit_desc_patch_silver_demon" + "patch_material" "case_skillgroups/patch_silver_demon" + "item_rarity" "legendary" + } + "4588" + { + "name" "patch_suprememaster" + "item_name" "#PatchKit_patch_suprememaster" + "description_string" "#PatchKit_desc_patch_suprememaster" + "patch_material" "case_skillgroups/patch_suprememaster" "item_rarity" "rare" } - "115" + "4697" { - "name" "comm01_swag_foil" - "item_name" "#StickerKit_comm01_swag_foil" - "description_string" "#StickerKit_desc_comm01_swag_foil" - "sticker_material" "community01/swag_foil" - "item_rarity" "legendary" + "name" "patch_globalelite2" + "item_name" "#PatchKit_patch_globalelite1" + "description_string" "#PatchKit_desc_patch_globalelite" + "patch_material" "case_skillgroups/patch_globalelite2" + "item_rarity" "rare" } - "116" + "4699" { - "name" "comm01_teamwork_holo" - "item_name" "#StickerKit_comm01_teamwork_holo" - "description_string" "#StickerKit_desc_comm01_teamwork_holo" - "sticker_material" "community01/teamwork_holo" + "name" "patch_masterguardian3" + "item_name" "#PatchKit_patch_masterguardian" + "description_string" "#PatchKit_desc_patch_masterguardian1" + "patch_material" "case_skillgroups/patch_masterguardian3" "item_rarity" "mythical" } - "117" + "4700" { - "name" "comm01_to_b_or_not_to_b" - "item_name" "#StickerKit_comm01_to_b_or_not_to_b" - "description_string" "#StickerKit_desc_comm01_to_b_or_not_to_b" - "sticker_material" "community01/to_b_or_not_to_b" - "item_rarity" "rare" + "name" "patch_goldnova4" + "item_name" "#PatchKit_patch_goldnova" + "description_string" "#PatchKit_desc_patch_goldnova1" + "patch_material" "case_skillgroups/patch_goldnova4" + "item_rarity" "mythical" } - "118" + } + "items" + { + "4614" + { + "name" "crate_patch_pack02" + "item_name" "#CSGO_crate_patch_pack02" + "item_description" "#CSGO_crate_patch_pack02_desc" + "model_player" "models/props/crates/patch_envelope02.mdl" + "image_inventory" "econ/weapon_cases/crate_patch_pack02" + "prefab" "patch_capsule" + "first_sale_date" "2020/02/24" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "298" + } + } + "tags" + { + "PatchCapsule" + { + "tag_value" "crate_patch_pack02" + "tag_text" "#CSGO_crate_patch_pack02" + "tag_group" "PatchCapsule" + "tag_group_text" "#SFUI_InvTooltip_PatchCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "298" "crate_patch_pack02" + } + "client_loot_lists" + { + "crate_patch_pack02_legendary" { - "name" "comm01_winged_defuser" - "item_name" "#StickerKit_comm01_winged_defuser" - "description_string" "#StickerKit_desc_comm01_winged_defuser" - "sticker_material" "community01/winged_defuser" - "item_rarity" "rare" + "[patch_globalelite]patch" "1" + "[patch_silver_demon]patch" "1" } - "119" + "crate_patch_pack02_mythical" { - "name" "comm01_pocket_bbq" - "item_name" "#StickerKit_comm01_pocket_bbq" - "description_string" "#StickerKit_desc_comm01_pocket_bbq" - "sticker_material" "community01/pocket_bbq" - "item_rarity" "rare" + "[patch_goldnova4]patch" "1" + "[patch_masterguardian3]patch" "1" + "[patch_legendaryeaglemaster]patch" "1" + "[patch_dmg]patch" "1" + "[patch_supreme]patch" "1" } - "120" + "crate_patch_pack02_rare" { - "name" "comm01_death_comes" - "item_name" "#StickerKit_comm01_death_comes" - "description_string" "#StickerKit_desc_comm01_death_comes" - "sticker_material" "community01/death_comes" - "item_rarity" "rare" + "[patch_silver]patch" "1" + "[patch_goldnova1]patch" "1" + "[patch_goldnovamaster]patch" "1" + "[patch_masterguardian1]patch" "1" + "[patch_masterguardianelite]patch" "1" + "[patch_dmg2]patch" "1" + "[patch_legendaryeagle2]patch" "1" + "[patch_legendaryeaglemaster2]patch" "1" + "[patch_suprememaster]patch" "1" + "[patch_globalelite2]patch" "1" } - "121" + "crate_patch_pack02" { - "name" "comm01_rekt_holo" - "item_name" "#StickerKit_comm01_rekt_holo" - "description_string" "#StickerKit_desc_comm01_rekt_holo" - "sticker_material" "community01/rekt" - "item_rarity" "mythical" + "crate_patch_pack02_rare" "1" + "crate_patch_pack02_mythical" "1" + "crate_patch_pack02_legendary" "1" } - "122" + } + "sticker_kits" + { + "4937" { - "name" "cologne2014_cloud9" - "item_name" "#StickerKit_cologne2014_cloud9" - "description_string" "#StickerKit_desc_cologne2014_cloud9" - "sticker_material" "cologne2014/cloud9" + "name" "patch_op11_abandon_hope" + "item_name" "#PatchKit_patch_op11_abandon_hope" + "description_string" "#PatchKit_desc_patch_op11_abandon_hope" + "patch_material" "case_op11/patch_op11_abandon_hope" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "33" } - "123" + "4938" { - "name" "cologne2014_cloud9_holo" - "item_name" "#StickerKit_cologne2014_cloud9_holo" - "description_string" "#StickerKit_desc_cologne2014_cloud9_holo" - "sticker_material" "cologne2014/cloud9_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "33" + "name" "patch_op11_anchor" + "item_name" "#PatchKit_patch_op11_anchor" + "description_string" "#PatchKit_desc_patch_op11_anchor" + "patch_material" "case_op11/patch_op11_anchor" + "item_rarity" "rare" } - "124" + "4939" { - "name" "cologne2014_fnatic" - "item_name" "#StickerKit_cologne2014_fnatic" - "description_string" "#StickerKit_desc_cologne2014_fnatic" - "sticker_material" "cologne2014/fnatic" + "name" "patch_op11_cruising" + "item_name" "#PatchKit_patch_op11_cruising" + "description_string" "#PatchKit_desc_patch_op11_cruising" + "patch_material" "case_op11/patch_op11_cruising" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "6" } - "125" + "4940" { - "name" "cologne2014_fnatic_holo" - "item_name" "#StickerKit_cologne2014_fnatic_holo" - "description_string" "#StickerKit_desc_cologne2014_fnatic_holo" - "sticker_material" "cologne2014/fnatic_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "6" + "name" "patch_op11_frog_skeleton" + "item_name" "#PatchKit_patch_op11_frog_skeleton" + "description_string" "#PatchKit_desc_patch_op11_frog_skeleton" + "patch_material" "case_op11/patch_op11_frog_skeleton" + "item_rarity" "legendary" } - "126" + "4941" { - "name" "cologne2014_hellraisers" - "item_name" "#StickerKit_cologne2014_hellraisers" - "description_string" "#StickerKit_desc_cologne2014_hellraisers" - "sticker_material" "cologne2014/hellraisers" + "name" "patch_op11_mad_sushi" + "item_name" "#PatchKit_patch_op11_mad_sushi" + "description_string" "#PatchKit_desc_patch_op11_mad_sushi" + "patch_material" "case_op11/patch_op11_mad_sushi" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "25" } - "127" + "4942" { - "name" "cologne2014_hellraisers_holo" - "item_name" "#StickerKit_cologne2014_hellraisers_holo" - "description_string" "#StickerKit_desc_cologne2014_hellraisers_holo" - "sticker_material" "cologne2014/hellraisers_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "25" + "name" "patch_op11_pink_squid" + "item_name" "#PatchKit_patch_op11_pink_squid" + "description_string" "#PatchKit_desc_patch_op11_pink_squid" + "patch_material" "case_op11/patch_op11_pink_squid" + "item_rarity" "rare" } - "128" + "4943" { - "name" "cologne2014_ninjasinpyjamas" - "item_name" "#StickerKit_cologne2014_ninjasinpyjamas" - "description_string" "#StickerKit_desc_cologne2014_ninjasinpyjamas" - "sticker_material" "cologne2014/ninjasinpyjamas" + "name" "patch_op11_piranha" + "item_name" "#PatchKit_patch_op11_piranha" + "description_string" "#PatchKit_desc_patch_op11_piranha" + "patch_material" "case_op11/patch_op11_piranha" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "1" } - "129" + "4944" { - "name" "cologne2014_ninjasinpyjamas_holo" - "item_name" "#StickerKit_cologne2014_ninjasinpyjamas_holo" - "description_string" "#StickerKit_desc_cologne2014_ninjasinpyjamas_holo" - "sticker_material" "cologne2014/ninjasinpyjamas_holo" + "name" "patch_op11_siren" + "item_name" "#PatchKit_patch_op11_siren" + "description_string" "#PatchKit_desc_patch_op11_siren" + "patch_material" "case_op11/patch_op11_siren" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "1" } - "130" + "4945" { - "name" "cologne2014_teamdignitas" - "item_name" "#StickerKit_cologne2014_teamdignitas" - "description_string" "#StickerKit_desc_cologne2014_teamdignitas" - "sticker_material" "cologne2014/teamdignitas" - "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "24" + "name" "patch_op11_skull_crossswords" + "item_name" "#PatchKit_patch_op11_skull_crossswords" + "description_string" "#PatchKit_desc_patch_op11_skull_crossswords" + "patch_material" "case_op11/patch_op11_skull_crossswords" + "item_rarity" "mythical" } - "131" + "4946" { - "name" "cologne2014_teamdignitas_holo" - "item_name" "#StickerKit_cologne2014_teamdignitas_holo" - "description_string" "#StickerKit_desc_cologne2014_teamdignitas_holo" - "sticker_material" "cologne2014/teamdignitas_holo" + "name" "patch_op11_sunset_wave" + "item_name" "#PatchKit_patch_op11_sunset_wave" + "description_string" "#PatchKit_desc_patch_op11_sunset_wave" + "patch_material" "case_op11/patch_op11_sunset_wave" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "24" } - "132" + "4947" { - "name" "cologne2014_teamldlc" - "item_name" "#StickerKit_cologne2014_teamldlc" - "description_string" "#StickerKit_desc_cologne2014_teamldlc" - "sticker_material" "cologne2014/teamldlc" - "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "26" + "name" "patch_op11_fish_go" + "item_name" "#PatchKit_patch_op11_fish_go" + "description_string" "#PatchKit_desc_patch_op11_fish_go" + "patch_material" "case_op11/patch_op11_fish_go" + "item_rarity" "legendary" } - "133" + "4948" { - "name" "cologne2014_teamldlc_holo" - "item_name" "#StickerKit_cologne2014_teamldlc_holo" - "description_string" "#StickerKit_desc_cologne2014_teamldlc_holo" - "sticker_material" "cologne2014/teamldlc_holo" + "name" "patch_op11_cthulhu" + "item_name" "#PatchKit_patch_op11_cthulhu" + "description_string" "#PatchKit_desc_patch_op11_cthulhu" + "patch_material" "case_op11/patch_op11_cthulhu" + "item_rarity" "legendary" + } + "4949" + { + "name" "patch_op11_meal_time" + "item_name" "#PatchKit_patch_op11_meal_time" + "description_string" "#PatchKit_desc_patch_op11_meal_time" + "patch_material" "case_op11/patch_op11_meal_time" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "26" } - "134" + } + "items" + { + "4795" + { + "name" "crate_patch_pack03" + "item_name" "#CSGO_crate_patch_pack03" + "item_description" "#CSGO_crate_patch_pack03_desc" + "model_player" "models/props/crates/patch_envelope03.mdl" + "image_inventory" "econ/weapon_cases/crate_patch_pack03" + "prefab" "patch_capsule" + "first_sale_date" "2021/09/01" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "323" + } + } + "tags" + { + "PatchCapsule" + { + "tag_value" "crate_patch_pack03" + "tag_text" "#CSGO_crate_patch_pack03" + "tag_group" "PatchCapsule" + "tag_group_text" "#SFUI_InvTooltip_PatchCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "323" "crate_patch_pack03" + } + "client_loot_lists" + { + "crate_patch_pack03_rare" { - "name" "cologne2014_virtuspro" - "item_name" "#StickerKit_cologne2014_virtuspro" - "description_string" "#StickerKit_desc_cologne2014_virtuspro" - "sticker_material" "cologne2014/virtuspro" - "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "31" + "[patch_op11_abandon_hope]patch" "1" + "[patch_op11_anchor]patch" "1" + "[patch_op11_cruising]patch" "1" + "[patch_op11_mad_sushi]patch" "1" + "[patch_op11_pink_squid]patch" "1" + "[patch_op11_piranha]patch" "1" } - "135" + "crate_patch_pack03_mythical" { - "name" "cologne2014_virtuspro_holo" - "item_name" "#StickerKit_cologne2014_virtuspro_holo" - "description_string" "#StickerKit_desc_cologne2014_virtuspro_holo" - "sticker_material" "cologne2014/virtuspro_holo" + "[patch_op11_siren]patch" "1" + "[patch_op11_skull_crossswords]patch" "1" + "[patch_op11_meal_time]patch" "1" + "[patch_op11_sunset_wave]patch" "1" + } + "crate_patch_pack03_legendary" + { + "[patch_op11_cthulhu]patch" "1" + "[patch_op11_frog_skeleton]patch" "1" + "[patch_op11_fish_go]patch" "1" + } + "crate_patch_pack03" + { + "crate_patch_pack03_rare" "1" + "crate_patch_pack03_mythical" "1" + "crate_patch_pack03_legendary" "1" + } + } + "sticker_kits" + { + "4589" + { + "name" "patch_hlalyx_alyx" + "item_name" "#PatchKit_patch_hlalyx_alyx" + "description_string" "#PatchKit_desc_patch_hlalyx_alyx" + "patch_material" "casehlalyx/patch_hlalyx_alyx" + "item_rarity" "legendary" + } + "4591" + { + "name" "patch_hlalyx_headcrab_green" + "item_name" "#PatchKit_patch_hlalyx_headcrab_green" + "description_string" "#PatchKit_desc_patch_hlalyx_headcrab_green" + "patch_material" "casehlalyx/patch_hlalyx_headcrab_green" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "31" } - "136" + "4592" { - "name" "cologne2014_copenhagenwolves" - "item_name" "#StickerKit_cologne2014_copenhagenwolves" - "description_string" "#StickerKit_desc_cologne2014_copenhagenwolves" - "sticker_material" "cologne2014/copenhagenwolves" + "name" "patch_hlalyx_vort" + "item_name" "#PatchKit_patch_hlalyx_vort" + "description_string" "#PatchKit_desc_patch_hlalyx_vort" + "patch_material" "casehlalyx/patch_hlalyx_vort" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "10" } - "137" + "4593" { - "name" "cologne2014_copenhagenwolves_holo" - "item_name" "#StickerKit_cologne2014_copenhagenwolves_holo" - "description_string" "#StickerKit_desc_cologne2014_copenhagenwolves_holo" - "sticker_material" "cologne2014/copenhagenwolves_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "10" + "name" "patch_hlalyx_headcrab_teal" + "item_name" "#PatchKit_patch_hlalyx_headcrab_teal" + "description_string" "#PatchKit_desc_patch_hlalyx_headcrab_teal" + "patch_material" "casehlalyx/patch_hlalyx_headcrab_teal" + "item_rarity" "rare" } - "138" + "4594" { - "name" "cologne2014_datteam" - "item_name" "#StickerKit_cologne2014_datteam" - "description_string" "#StickerKit_desc_cologne2014_datteam" - "sticker_material" "cologne2014/datteam" + "name" "patch_hlalyx_lambda_copper" + "item_name" "#PatchKit_patch_hlalyx_lambda_copper" + "description_string" "#PatchKit_desc_patch_hlalyx_lambda_copper" + "patch_material" "casehlalyx/patch_hlalyx_lambda_copper" + "item_rarity" "legendary" + } + "4595" + { + "name" "patch_hlalyx_hearts" + "item_name" "#PatchKit_patch_hlalyx_hearts" + "description_string" "#PatchKit_desc_patch_hlalyx_hearts" + "patch_material" "casehlalyx/patch_hlalyx_hearts" + "item_rarity" "legendary" + } + "4596" + { + "name" "patch_hlalyx_combine_front" + "item_name" "#PatchKit_patch_hlalyx_combine_front" + "description_string" "#PatchKit_desc_patch_hlalyx_combine_front" + "patch_material" "casehlalyx/patch_hlalyx_combine_front" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "34" } - "139" + "4597" { - "name" "cologne2014_datteam_holo" - "item_name" "#StickerKit_cologne2014_datteam_holo" - "description_string" "#StickerKit_desc_cologne2014_datteam_holo" - "sticker_material" "cologne2014/datteam_holo" + "name" "patch_hlalyx_blackmesa" + "item_name" "#PatchKit_patch_hlalyx_blackmesa" + "description_string" "#PatchKit_desc_patch_hlalyx_blackmesa" + "patch_material" "casehlalyx/patch_hlalyx_blackmesa" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "34" } - "140" + "4598" { - "name" "cologne2014_epsilonesports" - "item_name" "#StickerKit_cologne2014_epsilonesports" - "description_string" "#StickerKit_desc_cologne2014_epsilonesports" - "sticker_material" "cologne2014/epsilonesports" + "name" "patch_hlalyx_cmb" + "item_name" "#PatchKit_patch_hlalyx_cmb" + "description_string" "#PatchKit_desc_patch_hlalyx_cmb" + "patch_material" "casehlalyx/patch_hlalyx_cmb" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "35" } - "141" + "4599" { - "name" "cologne2014_epsilonesports_holo" - "item_name" "#StickerKit_cologne2014_epsilonesports_holo" - "description_string" "#StickerKit_desc_cologne2014_epsilonesports_holo" - "sticker_material" "cologne2014/epsilonesports_holo" + "name" "patch_hlalyx_lambda_orange" + "item_name" "#PatchKit_patch_hlalyx_lambda_orange" + "description_string" "#PatchKit_desc_patch_hlalyx_lambda_orange" + "patch_material" "casehlalyx/patch_hlalyx_lambda_orange" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "35" } - "142" + "4600" { - "name" "cologne2014_ibuypower" - "item_name" "#StickerKit_cologne2014_ibuypower" - "description_string" "#StickerKit_desc_cologne2014_ibuypower" - "sticker_material" "cologne2014/ibuypower" + "name" "patch_hlalyx_c17" + "item_name" "#PatchKit_patch_hlalyx_c17" + "description_string" "#PatchKit_desc_patch_hlalyx_c17" + "patch_material" "casehlalyx/patch_hlalyx_c17" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "5" } - "143" + } + "items" + { + "4615" + { + "name" "crate_patch_pack_hlalyx" + "item_name" "#CSGO_crate_patch_pack_hlalyx" + "item_description" "#CSGO_crate_patch_pack_hlalyx_desc" + "model_player" "models/props/crates/patch_envelope_hlalyx.mdl" + "image_inventory" "econ/weapon_cases/crate_patch_pack_hlalyx" + "prefab" "patch_capsule" + "first_sale_date" "2020/03/23" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "302" + } + } + "tags" + { + "PatchCapsule" + { + "tag_value" "crate_patch_pack_hlalyx" + "tag_text" "#CSGO_crate_patch_pack_hlalyx" + "tag_group" "PatchCapsule" + "tag_group_text" "#SFUI_InvTooltip_PatchCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "302" "crate_patch_pack_hlalyx" + } + "client_loot_lists" + { + "crate_patch_pack_hlalyx_rare" { - "name" "cologne2014_ibuypower_holo" - "item_name" "#StickerKit_cologne2014_ibuypower_holo" - "description_string" "#StickerKit_desc_cologne2014_ibuypower_holo" - "sticker_material" "cologne2014/ibuypower_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "5" + "[patch_hlalyx_combine_front]patch" "1" + "[patch_hlalyx_headcrab_teal]patch" "1" + "[patch_hlalyx_vort]patch" "1" + "[patch_hlalyx_cmb]patch" "1" + "[patch_hlalyx_c17]patch" "1" } - "144" + "crate_patch_pack_hlalyx_mythical" { - "name" "cologne2014_londonconspiracy" - "item_name" "#StickerKit_cologne2014_londonconspiracy" - "description_string" "#StickerKit_desc_cologne2014_londonconspiracy" - "sticker_material" "cologne2014/londonconspiracy" + "[patch_hlalyx_lambda_orange]patch" "1" + "[patch_hlalyx_blackmesa]patch" "1" + "[patch_hlalyx_headcrab_green]patch" "1" + } + "crate_patch_pack_hlalyx_legendary" + { + "[patch_hlalyx_lambda_copper]patch" "1" + "[patch_hlalyx_alyx]patch" "1" + "[patch_hlalyx_hearts]patch" "1" + } + "crate_patch_pack_hlalyx" + { + "crate_patch_pack_hlalyx_rare" "1" + "crate_patch_pack_hlalyx_mythical" "1" + "crate_patch_pack_hlalyx_legendary" "1" + } + } + "sticker_kits" + { + "4601" + { + "name" "last_vance" + "item_name" "#StickerKit_last_vance" + "description_string" "#StickerKit_desc_last_vance" + "sticker_material" "alyx/last_vance" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "36" } - "145" + "4602" { - "name" "cologne2014_londonconspiracy_holo" - "item_name" "#StickerKit_cologne2014_londonconspiracy_holo" - "description_string" "#StickerKit_desc_cologne2014_londonconspiracy_holo" - "sticker_material" "cologne2014/londonconspiracy_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "36" + "name" "art_vort" + "item_name" "#StickerKit_art_vort" + "description_string" "#StickerKit_desc_art_vort" + "sticker_material" "alyx/art_vort" + "item_rarity" "rare" } - "146" + "4603" { - "name" "cologne2014_navi" - "item_name" "#StickerKit_cologne2014_navi" - "description_string" "#StickerKit_desc_cologne2014_navi" - "sticker_material" "cologne2014/navi" + "name" "big_hugs" + "item_name" "#StickerKit_big_hugs" + "description_string" "#StickerKit_desc_big_hugs" + "sticker_material" "alyx/big_hugs" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "12" } - "147" + "4604" { - "name" "cologne2014_navi_holo" - "item_name" "#StickerKit_cologne2014_navi_holo" - "description_string" "#StickerKit_desc_cologne2014_navi_holo" - "sticker_material" "cologne2014/navi_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "12" + "name" "combine_mask_broken" + "item_name" "#StickerKit_combine_mask_broken" + "description_string" "#StickerKit_desc_combine_mask_broken" + "sticker_material" "alyx/combine_mask_broken" + "item_rarity" "rare" } - "148" + "4605" { - "name" "cologne2014_titan" - "item_name" "#StickerKit_cologne2014_titan" - "description_string" "#StickerKit_desc_cologne2014_titan" - "sticker_material" "cologne2014/titan" + "name" "gnome_mercy" + "item_name" "#StickerKit_gnome_mercy" + "description_string" "#StickerKit_desc_gnome_mercy" + "sticker_material" "alyx/gnome_mercy" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "27" } - "149" + "4606" { - "name" "cologne2014_titan_holo" - "item_name" "#StickerKit_cologne2014_titan_holo" - "description_string" "#StickerKit_desc_cologne2014_titan_holo" - "sticker_material" "cologne2014/titan_holo" - "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "27" + "name" "greetings" + "item_name" "#StickerKit_greetings" + "description_string" "#StickerKit_desc_greetings" + "sticker_material" "alyx/greetings" + "item_rarity" "rare" } - "150" + "4607" { - "name" "cologne2014_voxeminor" - "item_name" "#StickerKit_cologne2014_voxeminor" - "description_string" "#StickerKit_desc_cologne2014_voxeminor" - "sticker_material" "cologne2014/voxeminor" + "name" "lambda" + "item_name" "#StickerKit_lambda" + "description_string" "#StickerKit_desc_lambda" + "sticker_material" "alyx/lambda" "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "32" } - "151" + "4608" { - "name" "cologne2014_voxeminor_holo" - "item_name" "#StickerKit_cologne2014_voxeminor_holo" - "description_string" "#StickerKit_desc_cologne2014_voxeminor_holo" - "sticker_material" "cologne2014/voxeminor_holo" + "name" "vortigaunt_holo" + "item_name" "#StickerKit_vortigaunt_holo" + "description_string" "#StickerKit_desc_vortigaunt_holo" + "sticker_material" "alyx/vortigaunt_holo" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "32" } - "152" + "4609" { - "name" "cologne2014_wolf" - "item_name" "#StickerKit_cologne2014_wolf" - "description_string" "#StickerKit_desc_cologne2014_wolf" - "sticker_material" "cologne2014/wolf" - "item_rarity" "rare" - "tournament_event_id" "4" - "tournament_team_id" "37" + "name" "big_hugs_holo" + "item_name" "#StickerKit_big_hugs_holo" + "description_string" "#StickerKit_desc_big_hugs_holo" + "sticker_material" "alyx/big_hugs_holo" + "item_rarity" "mythical" } - "153" + "4610" { - "name" "cologne2014_wolf_holo" - "item_name" "#StickerKit_cologne2014_wolf_holo" - "description_string" "#StickerKit_desc_cologne2014_wolf_holo" - "sticker_material" "cologne2014/wolf_holo" + "name" "combine_mask_broken_holo" + "item_name" "#StickerKit_combine_mask_broken_holo" + "description_string" "#StickerKit_desc_combine_mask_broken_holo" + "sticker_material" "alyx/combine_mask_broken_holo" "item_rarity" "mythical" - "tournament_event_id" "4" - "tournament_team_id" "37" } - "154" + "4611" { - "name" "cologne2014_esl_a" - "item_name" "#StickerKit_cologne2014_esl_a" - "description_string" "#StickerKit_desc_cologne2014_esl_a" - "sticker_material" "cologne2014/esl_a" - "item_rarity" "legendary" - "tournament_event_id" "4" + "name" "lambda_holo" + "item_name" "#StickerKit_lambda_holo" + "description_string" "#StickerKit_desc_lambda_holo" + "sticker_material" "alyx/lambda_holo" + "item_rarity" "mythical" } - "155" + "4612" { - "name" "cologne2014_esl_b" - "item_name" "#StickerKit_cologne2014_esl_b" - "description_string" "#StickerKit_desc_cologne2014_esl_b" - "sticker_material" "cologne2014/esl_b" + "name" "last_vance_gold" + "item_name" "#StickerKit_last_vance_gold" + "description_string" "#StickerKit_desc_last_vance_gold" + "sticker_material" "alyx/last_vance_gold" "item_rarity" "legendary" - "tournament_event_id" "4" } - "156" + "4613" { - "name" "cologne2014_cloud9_foil" - "item_name" "#StickerKit_cologne2014_cloud9_foil" - "description_string" "#StickerKit_desc_cologne2014_cloud9_foil" - "sticker_material" "cologne2014/cloud9_foil" + "name" "health_foil" + "item_name" "#StickerKit_health_foil" + "description_string" "#StickerKit_desc_health_foil" + "sticker_material" "alyx/health_foil" "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "33" } - "157" + } + "items" + { + "4694" { - "name" "cologne2014_fnatic_foil" - "item_name" "#StickerKit_cologne2014_fnatic_foil" - "description_string" "#StickerKit_desc_cologne2014_fnatic_foil" - "sticker_material" "cologne2014/fnatic_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "6" + "item_name" "#CSGO_crate_sticker_pack_hlalyx_capsule" + "item_description" "#CSGO_crate_sticker_pack_hlalyx_capsule_desc" + "name" "crate_sticker_pack_hlalyx_capsule" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_hlalyx_capsule" + "first_sale_date" "2020/03/23" + "prefab" "weapon_case_base" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "301" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_hlalyx_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_hlalyx_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "158" + } + "revolving_loot_lists" + { + "301" "crate_sticker_pack_hlalyx_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_hlalyx_capsule_rare" { - "name" "cologne2014_hellraisers_foil" - "item_name" "#StickerKit_cologne2014_hellraisers_foil" - "description_string" "#StickerKit_desc_cologne2014_hellraisers_foil" - "sticker_material" "cologne2014/hellraisers_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "25" + "[last_vance]sticker" "1" + "[art_vort]sticker" "1" + "[big_hugs]sticker" "1" + "[combine_mask_broken]sticker" "1" + "[gnome_mercy]sticker" "1" + "[greetings]sticker" "1" + "[lambda]sticker" "1" } - "159" + "crate_sticker_pack_hlalyx_capsule_mythical" { - "name" "cologne2014_ninjasinpyjamas_foil" - "item_name" "#StickerKit_cologne2014_ninjasinpyjamas_foil" - "description_string" "#StickerKit_desc_cologne2014_ninjasinpyjamas_foil" - "sticker_material" "cologne2014/ninjasinpyjamas_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "1" + "[vortigaunt_holo]sticker" "1" + "[big_hugs_holo]sticker" "1" + "[combine_mask_broken_holo]sticker" "1" + "[lambda_holo]sticker" "1" } - "160" + "crate_sticker_pack_hlalyx_capsule_legendary" { - "name" "cologne2014_teamdignitas_foil" - "item_name" "#StickerKit_cologne2014_teamdignitas_foil" - "description_string" "#StickerKit_desc_cologne2014_teamdignitas_foil" - "sticker_material" "cologne2014/teamdignitas_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "24" + "[last_vance_gold]sticker" "1" + "[health_foil]sticker" "1" } - "161" + "crate_sticker_pack_hlalyx_capsule_lootlist" { - "name" "cologne2014_teamldlc_foil" - "item_name" "#StickerKit_cologne2014_teamldlc_foil" - "description_string" "#StickerKit_desc_cologne2014_teamldlc_foil" - "sticker_material" "cologne2014/teamldlc_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "26" + "crate_sticker_pack_hlalyx_capsule_rare" "1" + "crate_sticker_pack_hlalyx_capsule_mythical" "1" + "crate_sticker_pack_hlalyx_capsule_legendary" "1" } - "162" + } + "paint_kits" + { + "941" { - "name" "cologne2014_virtuspro_foil" - "item_name" "#StickerKit_cologne2014_virtuspro_foil" - "description_string" "#StickerKit_desc_cologne2014_virtuspro_foil" - "sticker_material" "cologne2014/virtuspro_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "31" + "name" "cu_ak-47_phantom_disruptor" + "description_string" "#PaintKit_cu_ak-47_phantom_disruptor" + "description_tag" "#PaintKit_cu_ak-47_phantom_disruptor_Tag" + "style" "7" + "pattern" "workshop/ak-47_phantom_disruptor" + "use_normal" "1" + "normal" "workshop/ak-47_phantom_disruptor_normal" + "pattern_scale" "1.000000" + "phongexponent" "210" + "phongintensity" "18" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "163" + "942" { - "name" "cologne2014_copenhagenwolves_foil" - "item_name" "#StickerKit_cologne2014_copenhagenwolves_foil" - "description_string" "#StickerKit_desc_cologne2014_copenhagenwolves_foil" - "sticker_material" "cologne2014/copenhagenwolves_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "10" + "name" "gs_aug_thunderstorm" + "description_string" "#PaintKit_gs_aug_thunderstorm" + "description_tag" "#PaintKit_gs_aug_thunderstorm_Tag" + "style" "9" + "pattern" "workshop/aug_thunderstorm" + "use_normal" "1" + "normal" "workshop/aug_thunderstorm_normal" + "color0" "76 78 80" + "color1" "189 189 189" + "color2" "199 199 199" + "color3" "65 65 65" + "pattern_scale" "1.000000" + "phongexponent" "60" + "phongintensity" "30" + "phongalbedoboost" "6" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "164" + "943" { - "name" "cologne2014_datteam_foil" - "item_name" "#StickerKit_cologne2014_datteam_foil" - "description_string" "#StickerKit_desc_cologne2014_datteam_foil" - "sticker_material" "cologne2014/datteam_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "34" + "name" "cu_awp_vein" + "description_string" "#PaintKit_cu_awp_vein" + "description_tag" "#PaintKit_cu_awp_vein_Tag" + "style" "7" + "pattern" "workshop/awp_vein" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.050000" + "wear_remap_max" "0.700000" } - "165" + "944" + { + "name" "cu_cz75_cerakote" + "description_string" "#PaintKit_cu_cz75_cerakote" + "description_tag" "#PaintKit_cu_cz75_cerakote_Tag" + "style" "7" + "pattern" "workshop/cz75_cerakote" + "use_normal" "1" + "normal" "workshop/cz75_cerakote_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "945" + { + "name" "cu_deagle_replica" + "description_string" "#PaintKit_cu_deagle_replica" + "description_tag" "#PaintKit_cu_deagle_replica_Tag" + "style" "7" + "pattern" "workshop/deagle_replica" + "use_normal" "1" + "normal" "workshop/deagle_replica_normal" + "pattern_scale" "1.000000" + "phongexponent" "175" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "946" + { + "name" "cu_m4a1s_csgo2048" + "description_string" "#PaintKit_cu_m4a1s_csgo2048" + "description_tag" "#PaintKit_cu_m4a1s_csgo2048_Tag" + "style" "7" + "pattern" "workshop/m4a1s_csgo2048" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "75" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.840000" + } + "947" { - "name" "cologne2014_epsilonesports_foil" - "item_name" "#StickerKit_cologne2014_epsilonesports_foil" - "description_string" "#StickerKit_desc_cologne2014_epsilonesports_foil" - "sticker_material" "cologne2014/epsilonesports_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "35" + "name" "cu_mac10_nacre" + "description_string" "#PaintKit_cu_mac10_nacre" + "description_tag" "#PaintKit_cu_mac10_nacre_Tag" + "style" "7" + "pattern" "workshop/mac10_nacre" + "use_normal" "1" + "normal" "workshop/mac10_nacre_normal" + "pattern_scale" "1.000000" + "phongexponent" "215" + "phongintensity" "55" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "55.000000" } - "166" + "948" { - "name" "cologne2014_ibuypower_foil" - "item_name" "#StickerKit_cologne2014_ibuypower_foil" - "description_string" "#StickerKit_desc_cologne2014_ibuypower_foil" - "sticker_material" "cologne2014/ibuypower_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "5" + "name" "gs_mag7_justice" + "description_string" "#PaintKit_gs_mag7_justice" + "description_tag" "#PaintKit_gs_mag7_justice_Tag" + "style" "9" + "pattern" "workshop/mag7_justice" + "use_normal" "0" + "color0" "140 229 255" + "color1" "199 199 199" + "color2" "173 143 103" + "color3" "101 63 63" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "12" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "167" + "949" { - "name" "cologne2014_londonconspiracy_foil" - "item_name" "#StickerKit_cologne2014_londonconspiracy_foil" - "description_string" "#StickerKit_desc_cologne2014_londonconspiracy_foil" - "sticker_material" "cologne2014/londonconspiracy_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "36" + "name" "cu_mp5_desert_strike" + "description_string" "#PaintKit_cu_mp5_desert_strike" + "description_tag" "#PaintKit_cu_mp5_desert_strike_Tag" + "style" "7" + "pattern" "workshop/mp5_desert_strike" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "168" + "950" { - "name" "cologne2014_navi_foil" - "item_name" "#StickerKit_cologne2014_navi_foil" - "description_string" "#StickerKit_desc_cologne2014_navi_foil" - "sticker_material" "cologne2014/navi_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "12" + "name" "cu_negev_prototype" + "description_string" "#PaintKit_cu_negev_prototype" + "description_tag" "#PaintKit_cu_negev_prototype_Tag" + "style" "7" + "pattern" "workshop/negev_prototype" + "use_normal" "1" + "normal" "workshop/negev_prototype_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "169" + "951" { - "name" "cologne2014_titan_foil" - "item_name" "#StickerKit_cologne2014_titan_foil" - "description_string" "#StickerKit_desc_cologne2014_titan_foil" - "sticker_material" "cologne2014/titan_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "27" + "name" "aq_p2000_acid_clover" + "description_string" "#PaintKit_aq_p2000_acid_clover" + "description_tag" "#PaintKit_aq_p2000_acid_clover_Tag" + "style" "8" + "pattern" "workshop/p2000_acid_clover" + "color0" "139 139 139" + "color1" "112 112 112" + "color2" "106 88 58" + "color3" "124 124 124" + "pattern_scale" "1.200000" + "phongexponent" "129" + "phongalbedoboost" "55" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "170" + "952" { - "name" "cologne2014_voxeminor_foil" - "item_name" "#StickerKit_cologne2014_voxeminor_foil" - "description_string" "#StickerKit_desc_cologne2014_voxeminor_foil" - "sticker_material" "cologne2014/voxeminor_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "32" + "name" "gs_r8_leviathan" + "description_string" "#PaintKit_gs_r8_leviathan" + "description_tag" "#PaintKit_gs_r8_leviathan_Tag" + "style" "9" + "pattern" "workshop/r8_leviathan" + "use_normal" "1" + "normal" "workshop/r8_leviathan_normal" + "color0" "128 128 128 255" + "color1" "255 255 255" + "color2" "0 230 222" + "color3" "181 122 53" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "33" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "pearlescent" "0.000000" } - "171" + "953" { - "name" "cologne2014_wolf_foil" - "item_name" "#StickerKit_cologne2014_wolf_foil" - "description_string" "#StickerKit_desc_cologne2014_wolf_foil" - "sticker_material" "cologne2014/wolf_foil" - "item_rarity" "legendary" - "tournament_event_id" "4" - "tournament_team_id" "37" + "name" "cu_sawedoff_apocalypto" + "description_string" "#PaintKit_cu_sawedoff_apocalypto" + "description_tag" "#PaintKit_cu_sawedoff_apocalypto_Tag" + "style" "7" + "pattern" "workshop/sawedoff_apocalypto" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "55" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "172" + "954" { - "name" "cologne2014_esl_c" - "item_name" "#StickerKit_cologne2014_esl_c" - "description_string" "#StickerKit_desc_cologne2014_esl_c" - "sticker_material" "cologne2014/esl_c" - "item_rarity" "legendary" - "tournament_event_id" "4" + "name" "gs_scar20_enforcer" + "description_string" "#PaintKit_gs_scar20_enforcer" + "description_tag" "#PaintKit_gs_scar20_enforcer_Tag" + "style" "9" + "pattern" "workshop/scar20_enforcer" + "use_normal" "1" + "normal" "workshop/scar20_enforcer_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "40" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "173" + "955" { - "name" "bossyburger" - "item_name" "#StickerKit_comm02_bossyburger" - "description_string" "#StickerKit_desc_comm02_bossyburger" - "sticker_material" "community02/bossyburger" - "item_rarity" "rare" + "name" "cu_sg553_darkwing" + "description_string" "#PaintKit_cu_sg553_darkwing" + "description_tag" "#PaintKit_cu_sg553_darkwing_Tag" + "style" "7" + "pattern" "workshop/sg553_darkwing" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "174" + "956" { - "name" "catcall" - "item_name" "#StickerKit_comm02_catcall" - "description_string" "#StickerKit_desc_comm02_catcall" - "sticker_material" "community02/catcall" - "item_rarity" "rare" + "name" "cu_ssg08_fever_dream" + "description_string" "#PaintKit_cu_ssg08_fever_dream" + "description_tag" "#PaintKit_cu_ssg08_fever_dream_Tag" + "style" "7" + "pattern" "workshop/ssg08_fever_dream" + "use_normal" "1" + "normal" "workshop/ssg08_fever_dream_normal" + "pattern_scale" "1.000000" + "phongexponent" "250" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.720000" } - "175" + "957" { - "name" "chickenstrike" - "item_name" "#StickerKit_comm02_chickenstrike" - "description_string" "#StickerKit_desc_comm02_chickenstrike" - "sticker_material" "community02/chickenstrike" - "item_rarity" "rare" + "name" "cu_glock18_warmaiden" + "description_string" "#PaintKit_cu_glock18_warmaiden" + "description_tag" "#PaintKit_cu_glock18_warmaiden_Tag" + "style" "7" + "pattern" "workshop/glock18_warmaiden" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "176" + } + "items" + { + "1386" { - "name" "ctbanana" - "item_name" "#StickerKit_comm02_ctbanana" - "description_string" "#StickerKit_desc_comm02_ctbanana" - "sticker_material" "community02/ctbanana" - "item_rarity" "rare" + "name" "community_25 Key" + "item_name" "#CSGO_crate_key_community_25" + "item_description" "#CSGO_crate_key_community_25_desc" + "first_sale_date" "2020-03-24" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_25" + "tool" + { + "restriction" "crate_community_25" + } } - "177" + "4695" { - "name" "dontworryimpro" - "item_name" "#StickerKit_comm02_dontworryimpro" - "description_string" "#StickerKit_desc_comm02_dontworryimpro" - "sticker_material" "community02/dontworryimpro" - "item_rarity" "rare" + "item_name" "#CSGO_crate_community_25" + "item_description" "#CSGO_crate_community_25_desc" + "name" "crate_community_25" + "image_inventory" "econ/weapon_cases/crate_community_25" + "model_player" "models/props/crates/csgo_drop_crate_community_25.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1386" "1" + } + "tool" + { + "restriction" "crate_community_25" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "303" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_25" + "tag_text" "#CSGO_set_community_25" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "178" + } + "revolving_loot_lists" + { + "303" "crate_community_25" + } + "client_loot_lists" + { + "crate_community_25_rare" { - "name" "fightlikeagirl" - "item_name" "#StickerKit_comm02_fightlikeagirl" - "description_string" "#StickerKit_desc_comm02_fightlikeagirl" - "sticker_material" "community02/fightlikeagirl" - "item_rarity" "rare" + "[gs_aug_thunderstorm]weapon_aug" "1" + "[cu_awp_vein]weapon_awp" "1" + "[cu_cz75_cerakote]weapon_cz75a" "1" + "[cu_deagle_replica]weapon_deagle" "1" + "[cu_mp5_desert_strike]weapon_mp5sd" "1" + "[cu_negev_prototype]weapon_negev" "1" + "[gs_r8_leviathan]weapon_revolver" "1" } - "179" + "crate_community_25_mythical" { - "name" "handmadeflash" - "item_name" "#StickerKit_comm02_handmadeflash" - "description_string" "#StickerKit_desc_comm02_handmadeflash" - "sticker_material" "community02/handmadeflash" - "item_rarity" "rare" + "[aq_p2000_acid_clover]weapon_hkp2000" "1" + "[cu_sawedoff_apocalypto]weapon_sawedoff" "1" + "[gs_scar20_enforcer]weapon_scar20" "1" + "[cu_sg553_darkwing]weapon_sg556" "1" + "[cu_ssg08_fever_dream]weapon_ssg08" "1" } - "180" + "crate_community_25_legendary" { - "name" "kawaiikiller" - "item_name" "#StickerKit_comm02_kawaiikiller" - "description_string" "#StickerKit_desc_comm02_kawaiikiller" - "sticker_material" "community02/kawaiikiller" - "item_rarity" "rare" + "[cu_ak-47_phantom_disruptor]weapon_ak47" "1" + "[cu_mac10_nacre]weapon_mac10" "1" + "[gs_mag7_justice]weapon_mag7" "1" } - "181" + "crate_community_25_ancient" { - "name" "neluthebear" - "item_name" "#StickerKit_comm02_neluthebear" - "description_string" "#StickerKit_desc_comm02_neluthebear" - "sticker_material" "community02/neluthebear" - "item_rarity" "rare" + "[cu_m4a1s_csgo2048]weapon_m4a1_silencer" "1" + "[cu_glock18_warmaiden]weapon_glock" "1" } - "182" + "crate_community_25" { - "name" "oneshotonekill" - "item_name" "#StickerKit_comm02_oneshotonekill" - "description_string" "#StickerKit_desc_comm02_oneshotonekill" - "sticker_material" "community02/oneshotonekill" - "item_rarity" "rare" + "crate_community_25_rare" "1" + "crate_community_25_mythical" "1" + "crate_community_25_legendary" "1" + "crate_community_25_ancient" "1" + "set_community_22_unusual" "1" } - "183" + } + "item_sets" + { + "set_community_25" { - "name" "shootingstar" - "item_name" "#StickerKit_comm02_shootingstar" - "description_string" "#StickerKit_desc_comm02_shootingstar" - "sticker_material" "community02/shootingstar" - "item_rarity" "rare" + "name" "#CSGO_set_community_25" + "set_description" "#CSGO_set_community_25_desc" + "is_collection" "1" + "items" + { + "[gs_aug_thunderstorm]weapon_aug" "1" + "[cu_awp_vein]weapon_awp" "1" + "[cu_cz75_cerakote]weapon_cz75a" "1" + "[cu_deagle_replica]weapon_deagle" "1" + "[cu_mp5_desert_strike]weapon_mp5sd" "1" + "[cu_negev_prototype]weapon_negev" "1" + "[gs_r8_leviathan]weapon_revolver" "1" + "[aq_p2000_acid_clover]weapon_hkp2000" "1" + "[cu_sawedoff_apocalypto]weapon_sawedoff" "1" + "[gs_scar20_enforcer]weapon_scar20" "1" + "[cu_sg553_darkwing]weapon_sg556" "1" + "[cu_ssg08_fever_dream]weapon_ssg08" "1" + "[cu_ak-47_phantom_disruptor]weapon_ak47" "1" + "[cu_mac10_nacre]weapon_mac10" "1" + "[gs_mag7_justice]weapon_mag7" "1" + "[cu_m4a1s_csgo2048]weapon_m4a1_silencer" "1" + "[cu_glock18_warmaiden]weapon_glock" "1" + } } - "184" + } + "paint_kits_rarity" + { + "cu_ak-47_phantom_disruptor" "mythical" + "gs_aug_thunderstorm" "rare" + "cu_awp_vein" "uncommon" + "cu_cz75_cerakote" "rare" + "cu_deagle_replica" "uncommon" + "cu_m4a1s_csgo2048" "legendary" + "cu_mac10_nacre" "legendary" + "gs_mag7_justice" "legendary" + "cu_mp5_desert_strike" "rare" + "cu_negev_prototype" "rare" + "aq_p2000_acid_clover" "rare" + "gs_r8_leviathan" "rare" + "cu_sawedoff_apocalypto" "mythical" + "gs_scar20_enforcer" "mythical" + "cu_sg553_darkwing" "mythical" + "cu_ssg08_fever_dream" "mythical" + "cu_glock18_warmaiden" "legendary" + } + "paint_kits" + { + "958" { - "name" "toncat" - "item_name" "#StickerKit_comm02_toncat" - "description_string" "#StickerKit_desc_comm02_toncat" - "sticker_material" "community02/toncat" - "item_rarity" "rare" + "name" "cu_negev_ultralight" + "description_string" "#PaintKit_cu_negev_ultralight" + "description_tag" "#PaintKit_cu_negev_ultralight_Tag" + "style" "7" + "pattern" "workshop/negev_ultralight" + "use_normal" "1" + "normal" "workshop/negev_ultralight_normal" + "pattern_scale" "1.000000" + "phongexponent" "140" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.790000" + "pearlescent" "2.000000" } - "185" + "959" { - "name" "warpenguin" - "item_name" "#StickerKit_comm02_warpenguin" - "description_string" "#StickerKit_desc_comm02_warpenguin" - "sticker_material" "community02/warpenguin" - "item_rarity" "rare" + "name" "cu_ak47_anubis" + "description_string" "#PaintKit_cu_ak47_anubis" + "description_tag" "#PaintKit_cu_ak47_anubis_Tag" + "style" "7" + "pattern" "workshop/ak47_anubis" + "use_normal" "1" + "normal" "workshop/ak47_anubis_normal" + "pattern_scale" "1.000000" + "phongexponent" "170" + "phongintensity" "18" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "186" + "960" { - "name" "windywalking" - "item_name" "#StickerKit_comm02_windywalking" - "description_string" "#StickerKit_desc_comm02_windywalking" - "sticker_material" "community02/windywalking" - "item_rarity" "rare" + "name" "aq_p2000_lost_world" + "description_string" "#PaintKit_aq_p2000_lost_world" + "description_tag" "#PaintKit_aq_p2000_lost_world_Tag" + "style" "8" + "pattern" "workshop/p2000_lost_world" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "10" + "phongalbedoboost" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "187" + "961" { - "name" "blitzkrieg" - "item_name" "#StickerKit_comm02_blitzkrieg" - "description_string" "#StickerKit_desc_comm02_blitzkrieg" - "sticker_material" "community02/blitzkrieg" - "item_rarity" "rare" + "name" "cu_mag7_monster_call" + "description_string" "#PaintKit_cu_mag7_monster_call" + "description_tag" "#PaintKit_cu_mag7_monster_call_Tag" + "style" "7" + "pattern" "workshop/mag7_monster_call" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "1" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "188" + "962" { - "name" "pigeonmaster" - "item_name" "#StickerKit_comm02_pigeonmaster" - "description_string" "#StickerKit_desc_comm02_pigeonmaster" - "sticker_material" "community02/pigeonmaster" - "item_rarity" "rare" + "name" "cu_deag_printstream" + "description_string" "#PaintKit_cu_printstream" + "description_tag" "#PaintKit_cu_printstream_Tag" + "style" "7" + "pattern" "workshop/deag_printstream" + "use_normal" "1" + "normal" "workshop/deag_printstream_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "200" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + "pearlescent" "20.000000" } - "189" + "963" { - "name" "terrorized" - "item_name" "#StickerKit_comm02_terrorized" - "description_string" "#StickerKit_desc_comm02_terrorized" - "sticker_material" "community02/terrorized" - "item_rarity" "rare" + "name" "cu_glock_eyecontact" + "description_string" "#PaintKit_cu_glock_eyecontact" + "description_tag" "#PaintKit_cu_glock_eyecontact_Tag" + "style" "7" + "pattern" "workshop/glock_eyecontact" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "65" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "190" + "964" { - "name" "tilldeathdouspart" - "item_name" "#StickerKit_comm02_tilldeathdouspart" - "description_string" "#StickerKit_desc_comm02_tilldeathdouspart" - "sticker_material" "community02/tilldeathdouspart" - "item_rarity" "rare" + "name" "gs_tec9_guerilla" + "description_string" "#PaintKit_gs_tec9_guerilla" + "description_tag" "#PaintKit_gs_tec9_guerilla_Tag" + "style" "9" + "pattern" "workshop/tec9_guerilla" + "use_normal" "1" + "normal" "workshop/tec9_guerilla_normal" + "color0" "128 128 128 255" + "color1" "190 190 190" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "25" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "191" + "965" { - "name" "stayfrosty" - "item_name" "#StickerKit_comm02_stayfrosty" - "description_string" "#StickerKit_desc_comm02_stayfrosty" - "sticker_material" "community02/stayfrosty" - "item_rarity" "rare" + "name" "cu_mac10_isoonna" + "description_string" "#PaintKit_cu_mac10_isoonna" + "description_tag" "#PaintKit_cu_mac10_isoonna_Tag" + "style" "7" + "pattern" "workshop/mac10_isoonna" + "use_normal" "1" + "normal" "workshop/mac10_isoonna_normal" + "pattern_scale" "1.000000" + "phongexponent" "40" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "192" + "966" { - "name" "doomed" - "item_name" "#StickerKit_comm02_doomed" - "description_string" "#StickerKit_desc_comm02_doomed" - "sticker_material" "community02/doomed" - "item_rarity" "rare" + "name" "gs_sg553_rusty" + "description_string" "#PaintKit_gs_sg553_rusty" + "description_tag" "#PaintKit_gs_sg553_rusty_Tag" + "style" "9" + "pattern" "workshop/sg553_rusty" + "use_normal" "1" + "normal" "workshop/sg553_rusty_normal" + "color0" "145 205 210" + "color1" "255 255 255" + "color2" "130 181 149" + "color3" "136 140 147" + "pattern_scale" "1.000000" + "phongexponent" "0" + "phongintensity" "0" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "193" + "967" { - "name" "queenofpain" - "item_name" "#StickerKit_comm02_queenofpain" - "description_string" "#StickerKit_desc_comm02_queenofpain" - "sticker_material" "community02/queenofpain" - "item_rarity" "rare" + "name" "cu_ssg08_mainframe" + "description_string" "#PaintKit_cu_ssg08_mainframe" + "description_tag" "#PaintKit_cu_ssg08_mainframe_Tag" + "style" "7" + "pattern" "workshop/ssg08_mainframe" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "125" + "phongintensity" "7" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "194" + "968" { - "name" "trickorthreat" - "item_name" "#StickerKit_comm02_trickorthreat" - "description_string" "#StickerKit_desc_comm02_trickorthreat" - "sticker_material" "community02/trickorthreat" - "item_rarity" "rare" + "name" "cu_p250_cassette" + "description_string" "#PaintKit_cu_p250_cassette" + "description_tag" "#PaintKit_cu_p250_cassette_Tag" + "style" "7" + "pattern" "workshop/p250_casette" + "use_normal" "1" + "normal" "workshop/p250_casette_normal" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "195" + "969" { - "name" "trickortreat" - "item_name" "#StickerKit_comm02_trickortreat" - "description_string" "#StickerKit_desc_comm02_trickortreat" - "sticker_material" "community02/trickortreat" - "item_rarity" "rare" + "name" "gs_p90_container" + "description_string" "#PaintKit_gs_p90_container" + "description_tag" "#PaintKit_gs_p90_container_Tag" + "style" "9" + "pattern" "workshop/p90_container" + "use_normal" "1" + "normal" "workshop/p90_container_normal" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "196" + "970" { - "name" "witch" - "item_name" "#StickerKit_comm02_witch" - "description_string" "#StickerKit_desc_comm02_witch" - "sticker_material" "community02/witch" - "item_rarity" "rare" + "name" "cu_xm1014_amulet_blue" + "description_string" "#PaintKit_cu_xm1014_amulet_blue" + "description_tag" "#PaintKit_cu_xm1014_amulet_blue_Tag" + "style" "7" + "pattern" "workshop/xm1014_amulet_blue" + "use_normal" "1" + "normal" "workshop/xm1014_amulet_blue_normal" + "pattern_scale" "1.000000" + "phongexponent" "90" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "197" + "971" { - "name" "zombielover" - "item_name" "#StickerKit_comm02_zombielover" - "description_string" "#StickerKit_desc_comm02_zombielover" - "sticker_material" "community02/zombielover" - "item_rarity" "rare" + "name" "cu_m4a4_queenfairy" + "description_string" "#PaintKit_cu_m4a4_queenfairy" + "description_tag" "#PaintKit_cu_m4a4_queenfairy_Tag" + "style" "7" + "pattern" "workshop/m4a4_queenfairy" + "use_normal" "1" + "normal" "workshop/m4a4_queenfairy_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.730000" + "pearlescent" "2.000000" } - "198" + "972" { - "name" "dhw2014_fnatic" - "item_name" "#StickerKit_dhw2014_fnatic" - "description_string" "#StickerKit_desc_dhw2014_fnatic" - "sticker_material" "dhw2014/fnatic" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "6" + "name" "gs_galil_phoenix" + "description_string" "#PaintKit_gs_galil_phoenix" + "description_tag" "#PaintKit_gs_galil_phoenix_Tag" + "style" "9" + "pattern" "workshop/galil_phoenix" + "use_normal" "1" + "normal" "workshop/galil_phoenix_normal" + "color0" "147 98 45" + "color1" "245 251 253" + "color2" "149 149 149" + "color3" "246 222 205" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "30" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "199" + "973" { - "name" "dhw2014_fnatic_holo" - "item_name" "#StickerKit_dhw2014_fnatic_holo" - "description_string" "#StickerKit_desc_dhw2014_fnatic_holo" - "sticker_material" "dhw2014/fnatic_holo" - "item_rarity" "mythical" - "tournament_event_id" "5" - "tournament_team_id" "6" + "name" "gs_bizon_hellraider" + "description_string" "#PaintKit_gs_bizon_hellraider" + "description_tag" "#PaintKit_gs_bizon_hellraider_Tag" + "style" "9" + "pattern" "workshop/bizon_hellraider" + "use_normal" "1" + "normal" "workshop/bizon_hellraider_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "234 219 208" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "phongalbedoboost" "50" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "200" + "974" { - "name" "dhw2014_fnatic_foil" - "item_name" "#StickerKit_dhw2014_fnatic_foil" - "description_string" "#StickerKit_desc_dhw2014_fnatic_foil" - "sticker_material" "dhw2014/fnatic_foil" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "6" + "name" "gs_mp5sd_wasteland_legacy" + "description_string" "#PaintKit_gs_mp5sd_wasteland_legacy" + "description_tag" "#PaintKit_gs_mp5sd_wasteland_legacy_Tag" + "style" "9" + "pattern" "workshop/mp5sd_wasteland_legacy" + "use_normal" "1" + "normal" "workshop/mp5sd_wasteland_legacy_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "244 147 21" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "100" + "phongalbedoboost" "2" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "201" + } + "items" + { + "1387" { - "name" "dhw2014_cloud9" - "item_name" "#StickerKit_dhw2014_cloud9" - "description_string" "#StickerKit_desc_dhw2014_cloud9" - "sticker_material" "dhw2014/cloud9" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "33" + "name" "community_26 Key" + "item_name" "#CSGO_crate_key_community_26" + "item_description" "#CSGO_crate_key_community_26_desc" + "first_sale_date" "2020-07-13" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_26" + "tool" + { + "restriction" "crate_community_26" + } } - "202" + "4698" { - "name" "dhw2014_cloud9_holo" - "item_name" "#StickerKit_dhw2014_cloud9_holo" - "description_string" "#StickerKit_desc_dhw2014_cloud9_holo" - "sticker_material" "dhw2014/cloud9_holo" - "item_rarity" "mythical" - "tournament_event_id" "5" - "tournament_team_id" "33" + "item_name" "#CSGO_crate_community_26" + "item_description" "#CSGO_crate_community_26_desc" + "name" "crate_community_26" + "image_inventory" "econ/weapon_cases/crate_community_26" + "model_player" "models/props/crates/csgo_drop_crate_community_26.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1387" "1" + } + "tool" + { + "restriction" "crate_community_26" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "307" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_26" + "tag_text" "#CSGO_set_community_26" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "203" + } + "revolving_loot_lists" + { + "307" "crate_community_26" + } + "client_loot_lists" + { + "crate_community_26_rare" { - "name" "dhw2014_cloud9_foil" - "item_name" "#StickerKit_dhw2014_cloud9_foil" - "description_string" "#StickerKit_desc_dhw2014_cloud9_foil" - "sticker_material" "dhw2014/cloud9_foil" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "33" + "[cu_negev_ultralight]weapon_negev" "1" + "[aq_p2000_lost_world]weapon_hkp2000" "1" + "[gs_sg553_rusty]weapon_sg556" "1" + "[cu_ssg08_mainframe]weapon_ssg08" "1" + "[cu_p250_cassette]weapon_p250" "1" + "[gs_p90_container]weapon_p90" "1" + "[gs_bizon_hellraider]weapon_bizon" "1" } - "207" + "crate_community_26_mythical" { - "name" "dhw2014_virtuspro" - "item_name" "#StickerKit_dhw2014_virtuspro" - "description_string" "#StickerKit_desc_dhw2014_virtuspro" - "sticker_material" "dhw2014/virtuspro" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "31" + "[cu_mag7_monster_call]weapon_mag7" "1" + "[gs_tec9_guerilla]weapon_tec9" "1" + "[cu_mac10_isoonna]weapon_mac10" "1" + "[gs_galil_phoenix]weapon_galilar" "1" + "[gs_mp5sd_wasteland_legacy]weapon_mp5sd" "1" } - "208" + "crate_community_26_legendary" { - "name" "dhw2014_virtuspro_holo" - "item_name" "#StickerKit_dhw2014_virtuspro_holo" - "description_string" "#StickerKit_desc_dhw2014_virtuspro_holo" - "sticker_material" "dhw2014/virtuspro_holo" - "item_rarity" "mythical" - "tournament_event_id" "5" - "tournament_team_id" "31" + "[cu_m4a4_queenfairy]weapon_m4a1" "1" + "[cu_glock_eyecontact]weapon_glock" "1" + "[cu_xm1014_amulet_blue]weapon_xm1014" "1" } - "209" + "crate_community_26_ancient" { - "name" "dhw2014_virtuspro_foil" - "item_name" "#StickerKit_dhw2014_virtuspro_foil" - "description_string" "#StickerKit_desc_dhw2014_virtuspro_foil" - "sticker_material" "dhw2014/virtuspro_foil" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "31" + "[cu_deag_printstream]weapon_deagle" "1" + "[cu_ak47_anubis]weapon_ak47" "1" } - "210" + "crate_community_26" { - "name" "dhw2014_ninjasinpyjamas" - "item_name" "#StickerKit_dhw2014_ninjasinpyjamas" - "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas" - "sticker_material" "dhw2014/ninjasinpyjamas" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "1" + "crate_community_26_rare" "1" + "crate_community_26_mythical" "1" + "crate_community_26_legendary" "1" + "crate_community_26_ancient" "1" + "set_community_23_unusual" "1" } - "211" + } + "item_sets" + { + "set_community_26" { - "name" "dhw2014_ninjasinpyjamas_holo" - "item_name" "#StickerKit_dhw2014_ninjasinpyjamas_holo" - "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas_holo" - "sticker_material" "dhw2014/ninjasinpyjamas_holo" - "item_rarity" "mythical" - "tournament_event_id" "5" - "tournament_team_id" "1" + "name" "#CSGO_set_community_26" + "set_description" "#CSGO_set_community_26_desc" + "is_collection" "1" + "items" + { + "[cu_negev_ultralight]weapon_negev" "1" + "[aq_p2000_lost_world]weapon_hkp2000" "1" + "[gs_sg553_rusty]weapon_sg556" "1" + "[cu_ssg08_mainframe]weapon_ssg08" "1" + "[cu_p250_cassette]weapon_p250" "1" + "[gs_p90_container]weapon_p90" "1" + "[gs_bizon_hellraider]weapon_bizon" "1" + "[cu_mag7_monster_call]weapon_mag7" "1" + "[gs_tec9_guerilla]weapon_tec9" "1" + "[cu_mac10_isoonna]weapon_mac10" "1" + "[gs_galil_phoenix]weapon_galilar" "1" + "[gs_mp5sd_wasteland_legacy]weapon_mp5sd" "1" + "[cu_m4a4_queenfairy]weapon_m4a1" "1" + "[cu_glock_eyecontact]weapon_glock" "1" + "[cu_xm1014_amulet_blue]weapon_xm1014" "1" + "[cu_deag_printstream]weapon_deagle" "1" + "[cu_ak47_anubis]weapon_ak47" "1" + } } - "212" + } + "paint_kits_rarity" + { + "cu_negev_ultralight" "rare" + "cu_ak47_anubis" "legendary" + "aq_p2000_lost_world" "uncommon" + "cu_mag7_monster_call" "mythical" + "cu_deag_printstream" "legendary" + "cu_glock_eyecontact" "mythical" + "gs_tec9_guerilla" "mythical" + "cu_mac10_isoonna" "mythical" + "gs_sg553_rusty" "rare" + "cu_ssg08_mainframe" "rare" + "cu_p250_cassette" "rare" + "gs_p90_container" "rare" + "cu_xm1014_amulet_blue" "legendary" + "cu_m4a4_queenfairy" "mythical" + "gs_galil_phoenix" "mythical" + "gs_bizon_hellraider" "rare" + "gs_mp5sd_wasteland_legacy" "mythical" + } + "paint_kits_rarity" + { + "slick_rezan" "ancient" + "slick_jaguar_yellow" "ancient" + "slick_jaguar_white" "ancient" + "slick_stitched_black_white" "ancient" + "sporty_slingshot" "ancient" + "sporty_hunter" "ancient" + "sporty_houndstooth_red" "ancient" + "sporty_jaguar" "ancient" + "motorcycle_checker_flag_blue_green" "ancient" + "motorcycle_smoke" "ancient" + "motorcycle_carbonfiber_red" "ancient" + "motorcycle_commando_ksk" "ancient" + "handwrap_fabric_houndstooth_orange" "ancient" + "handwrap_leathery_fabric_giraffe" "ancient" + "handwrap_leathery_snakeskin_orange" "ancient" + "handwrap_leathery_caution" "ancient" + "specialist_fbi" "ancient" + "specialist_tiger_orange" "ancient" + "specialist_ricksaw_camo" "ancient" + "specialist_marble_fade" "ancient" + "operation10_metalic_green" "ancient" + "operation10_poison_frog_black_yellow" "ancient" + "operation10_floral" "ancient" + "operation10_snakeskin_black" "ancient" + } + "sticker_kits" + { + "4631" { - "name" "dhw2014_ninjasinpyjamas_foil" - "item_name" "#StickerKit_dhw2014_ninjasinpyjamas_foil" - "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas_foil" - "sticker_material" "dhw2014/ninjasinpyjamas_foil" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "1" + "name" "spray_std3_ak47" + "item_name" "#SprayKit_std3_ak47" + "description_string" "#SprayKit_desc_std3_ak47" + "sticker_material" "default2020/ak47" + "item_rarity" "common" } - "213" + "4632" { - "name" "dhw2014_navi" - "item_name" "#StickerKit_dhw2014_navi" - "description_string" "#StickerKit_desc_dhw2014_navi" - "sticker_material" "dhw2014/navi" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "12" + "name" "spray_std3_aug" + "item_name" "#SprayKit_std3_aug" + "description_string" "#SprayKit_desc_std3_aug" + "sticker_material" "default2020/aug" + "item_rarity" "common" } - "214" + "4633" { - "name" "dhw2014_navi_holo" - "item_name" "#StickerKit_dhw2014_navi_holo" - "description_string" "#StickerKit_desc_dhw2014_navi_holo" - "sticker_material" "dhw2014/navi_holo" - "item_rarity" "mythical" - "tournament_event_id" "5" - "tournament_team_id" "12" + "name" "spray_std3_awp" + "item_name" "#SprayKit_std3_awp" + "description_string" "#SprayKit_desc_std3_awp" + "sticker_material" "default2020/awp" + "item_rarity" "common" } - "215" + "4634" { - "name" "dhw2014_navi_foil" - "item_name" "#StickerKit_dhw2014_navi_foil" - "description_string" "#StickerKit_desc_dhw2014_navi_foil" - "sticker_material" "dhw2014/navi_foil" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "12" + "name" "spray_std3_bizon" + "item_name" "#SprayKit_std3_bizon" + "description_string" "#SprayKit_desc_std3_bizon" + "sticker_material" "default2020/bizon" + "item_rarity" "common" } - "219" + "4635" { - "name" "dhw2014_dignitas" - "item_name" "#StickerKit_dhw2014_teamdignitas" - "description_string" "#StickerKit_desc_dhw2014_teamdignitas" - "sticker_material" "dhw2014/dignitas" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "24" + "name" "spray_std3_cz" + "item_name" "#SprayKit_std3_cz" + "description_string" "#SprayKit_desc_std3_cz" + "sticker_material" "default2020/cz" + "item_rarity" "common" } - "220" + "4636" { - "name" "dhw2014_dignitas_holo" - "item_name" "#StickerKit_dhw2014_teamdignitas_holo" - "description_string" "#StickerKit_desc_dhw2014_teamdignitas_holo" - "sticker_material" "dhw2014/dignitas_holo" - "item_rarity" "mythical" - "tournament_event_id" "5" - "tournament_team_id" "24" + "name" "spray_std3_famas" + "item_name" "#SprayKit_std3_famas" + "description_string" "#SprayKit_desc_std3_famas" + "sticker_material" "default2020/famas" + "item_rarity" "common" } - "221" + "4637" { - "name" "dhw2014_dignitas_foil" - "item_name" "#StickerKit_dhw2014_teamdignitas_foil" - "description_string" "#StickerKit_desc_dhw2014_teamdignitas_foil" - "sticker_material" "dhw2014/dignitas_foil" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "24" + "name" "spray_std3_galil" + "item_name" "#SprayKit_std3_galil" + "description_string" "#SprayKit_desc_std3_galil" + "sticker_material" "default2020/galil" + "item_rarity" "common" } - "222" + "4638" { - "name" "dhw2014_bravadogaming" - "item_name" "#StickerKit_dhw2014_bravadogaming" - "description_string" "#StickerKit_desc_dhw2014_bravadogaming" - "sticker_material" "dhw2014/bravadogaming" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "40" + "name" "spray_std3_m4a1" + "item_name" "#SprayKit_std3_m4a1" + "description_string" "#SprayKit_desc_std3_m4a1" + "sticker_material" "default2020/m4a1" + "item_rarity" "common" } - "223" + "4639" { - "name" "dhw2014_escgaming" - "item_name" "#StickerKit_dhw2014_escgaming" - "description_string" "#StickerKit_desc_dhw2014_escgaming" - "sticker_material" "dhw2014/escgaming" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "42" + "name" "spray_std3_m4a4" + "item_name" "#SprayKit_std3_m4a4" + "description_string" "#SprayKit_desc_std3_m4a4" + "sticker_material" "default2020/m4a4" + "item_rarity" "common" } - "224" + "4640" { - "name" "dhw2014_hellraisers" - "item_name" "#StickerKit_dhw2014_hellraisers" - "description_string" "#StickerKit_desc_dhw2014_hellraisers" - "sticker_material" "dhw2014/hellraisers" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "25" + "name" "spray_std3_mac10" + "item_name" "#SprayKit_std3_mac10" + "description_string" "#SprayKit_desc_std3_mac10" + "sticker_material" "default2020/mac10" + "item_rarity" "common" } - "225" + "4641" { - "name" "dhw2014_ibuypower" - "item_name" "#StickerKit_dhw2014_ibuypower" - "description_string" "#StickerKit_desc_dhw2014_ibuypower" - "sticker_material" "dhw2014/ibuypower" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "5" + "name" "spray_std3_mp7" + "item_name" "#SprayKit_std3_mp7" + "description_string" "#SprayKit_desc_std3_mp7" + "sticker_material" "default2020/mp7" + "item_rarity" "common" } - "226" + "4642" { - "name" "dhw2014_pentasports" - "item_name" "#StickerKit_dhw2014_pentasports" - "description_string" "#StickerKit_desc_dhw2014_pentasports" - "sticker_material" "dhw2014/pentasports" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "39" + "name" "spray_std3_mp9" + "item_name" "#SprayKit_std3_mp9" + "description_string" "#SprayKit_desc_std3_mp9" + "sticker_material" "default2020/mp9" + "item_rarity" "common" } - "227" + "4643" { - "name" "dhw2014_planetkeydynamics" - "item_name" "#StickerKit_dhw2014_planetkeydynamics" - "description_string" "#StickerKit_desc_dhw2014_planetkeydynamics" - "sticker_material" "dhw2014/planetkeydynamics" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "41" + "name" "spray_std3_p90" + "item_name" "#SprayKit_std3_p90" + "description_string" "#SprayKit_desc_std3_p90" + "sticker_material" "default2020/p90" + "item_rarity" "common" } - "228" + "4644" { - "name" "dhw2014_teamldlc" - "item_name" "#StickerKit_dhw2014_teamldlc" - "description_string" "#StickerKit_desc_dhw2014_teamldlc" - "sticker_material" "dhw2014/teamldlc" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "26" + "name" "spray_std3_sg553" + "item_name" "#SprayKit_std3_sg553" + "description_string" "#SprayKit_desc_std3_sg553" + "sticker_material" "default2020/sg553" + "item_rarity" "common" } - "229" + "4645" { - "name" "dhw2014_myxmg" - "item_name" "#StickerKit_dhw2014_myxmg" - "description_string" "#StickerKit_desc_dhw2014_myxmg" - "sticker_material" "dhw2014/myxmg" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "38" + "name" "spray_std3_ump" + "item_name" "#SprayKit_std3_ump" + "description_string" "#SprayKit_desc_std3_ump" + "sticker_material" "default2020/ump" + "item_rarity" "common" } - "230" + "4646" { - "name" "dhw2014_dhw" - "item_name" "#StickerKit_dhw2014_dhw" - "description_string" "#StickerKit_desc_dhw2014_dhw" - "sticker_material" "dhw2014/dreamhackwinter2014" - "item_rarity" "rare" - "tournament_event_id" "5" + "name" "spray_std3_xm1014" + "item_name" "#SprayKit_std3_xm1014" + "description_string" "#SprayKit_desc_std3_xm1014" + "sticker_material" "default2020/xm1014" + "item_rarity" "common" } - "231" + } + "client_loot_lists" + { + "spray_std3_droplist_entry_ak47" { - "name" "dhw2014_dhw_foil" - "item_name" "#StickerKit_dhw2014_dhw_foil" - "description_string" "#StickerKit_desc_dhw2014_dhw_foil" - "sticker_material" "dhw2014/dreamhackwinter2014_foil" - "item_rarity" "legendary" - "tournament_event_id" "5" + "[spray_std3_ak47]spray" "1" } - "232" + "spray_std3_droplist_entry_aug" { - "name" "dhw2014_3dmax" - "item_name" "#StickerKit_dhw2014_3dmax" - "description_string" "#StickerKit_desc_dhw2014_3dmax" - "sticker_material" "dhw2014/3dmax" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "28" + "[spray_std3_aug]spray" "1" } - "233" + "spray_std3_droplist_entry_awp" { - "name" "dhw2014_copenhagenwolves" - "item_name" "#StickerKit_dhw2014_copenhagenwolves" - "description_string" "#StickerKit_desc_dhw2014_copenhagenwolves" - "sticker_material" "dhw2014/copenhagenwolves" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "10" + "[spray_std3_awp]spray" "1" } - "234" - { - "name" "dhw2014_datteam" - "item_name" "#StickerKit_dhw2014_datteam" - "description_string" "#StickerKit_desc_dhw2014_datteam" - "sticker_material" "dhw2014/datteam" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "34" + "spray_std3_droplist_entry_bizon" + { + "[spray_std3_bizon]spray" "1" } - "235" + "spray_std3_droplist_entry_cz" { - "name" "dhw2014_londonconspiracy" - "item_name" "#StickerKit_dhw2014_londonconspiracy" - "description_string" "#StickerKit_desc_dhw2014_londonconspiracy" - "sticker_material" "dhw2014/londonconspiracy" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "36" + "[spray_std3_cz]spray" "1" } - "236" + "spray_std3_droplist_entry_famas" { - "name" "dhw2014_mousesports" - "item_name" "#StickerKit_dhw2014_mousesports" - "description_string" "#StickerKit_desc_dhw2014_mousesports" - "sticker_material" "dhw2014/mousesports" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "29" + "[spray_std3_famas]spray" "1" } - "237" + "spray_std3_droplist_entry_galil" { - "name" "dhw2014_3dmax_gold" - "item_name" "#StickerKit_dhw2014_3dmax_gold" - "description_string" "#StickerKit_desc_dhw2014_3dmax_gold" - "sticker_material" "dhw2014/3dmax_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "28" + "[spray_std3_galil]spray" "1" } - "238" + "spray_std3_droplist_entry_m4a1" { - "name" "dhw2014_bravadogaming_gold" - "item_name" "#StickerKit_dhw2014_bravadogaming_gold" - "description_string" "#StickerKit_desc_dhw2014_bravadogaming_gold" - "sticker_material" "dhw2014/bravadogaming_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "40" + "[spray_std3_m4a1]spray" "1" } - "239" + "spray_std3_droplist_entry_m4a4" { - "name" "dhw2014_cloud9_gold" - "item_name" "#StickerKit_dhw2014_cloud9_gold" - "description_string" "#StickerKit_desc_dhw2014_cloud9_gold" - "sticker_material" "dhw2014/cloud9_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "33" + "[spray_std3_m4a4]spray" "1" } - "240" + "spray_std3_droplist_entry_mac10" { - "name" "dhw2014_copenhagenwolves_gold" - "item_name" "#StickerKit_dhw2014_copenhagenwolves_gold" - "description_string" "#StickerKit_desc_dhw2014_copenhagenwolves_gold" - "sticker_material" "dhw2014/copenhagenwolves_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "10" + "[spray_std3_mac10]spray" "1" } - "241" + "spray_std3_droplist_entry_mp7" { - "name" "dhw2014_datteam_gold" - "item_name" "#StickerKit_dhw2014_datteam_gold" - "description_string" "#StickerKit_desc_dhw2014_datteam_gold" - "sticker_material" "dhw2014/datteam_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "34" + "[spray_std3_mp7]spray" "1" } - "242" + "spray_std3_droplist_entry_mp9" { - "name" "dhw2014_dignitas_gold" - "item_name" "#StickerKit_dhw2014_dignitas_gold" - "description_string" "#StickerKit_desc_dhw2014_dignitas_gold" - "sticker_material" "dhw2014/dignitas_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "24" + "[spray_std3_mp9]spray" "1" } - "243" + "spray_std3_droplist_entry_p90" { - "name" "dhw2014_escgaming_gold" - "item_name" "#StickerKit_dhw2014_escgaming_gold" - "description_string" "#StickerKit_desc_dhw2014_escgaming_gold" - "sticker_material" "dhw2014/escgaming_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "42" + "[spray_std3_p90]spray" "1" } - "244" + "spray_std3_droplist_entry_sg553" { - "name" "dhw2014_fnatic_gold" - "item_name" "#StickerKit_dhw2014_fnatic_gold" - "description_string" "#StickerKit_desc_dhw2014_fnatic_gold" - "sticker_material" "dhw2014/fnatic_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "6" + "[spray_std3_sg553]spray" "1" } - "245" + "spray_std3_droplist_entry_ump" { - "name" "dhw2014_hellraisers_gold" - "item_name" "#StickerKit_dhw2014_hellraisers_gold" - "description_string" "#StickerKit_desc_dhw2014_hellraisers_gold" - "sticker_material" "dhw2014/hellraisers_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "25" + "[spray_std3_ump]spray" "1" } - "246" + "spray_std3_droplist_entry_xm1014" { - "name" "dhw2014_ibuypower_gold" - "item_name" "#StickerKit_dhw2014_ibuypower_gold" - "description_string" "#StickerKit_desc_dhw2014_ibuypower_gold" - "sticker_material" "dhw2014/ibuypower_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "5" + "[spray_std3_xm1014]spray" "1" } - "247" + "spray_std3_droplist_common" { - "name" "dhw2014_londonconspiracy_gold" - "item_name" "#StickerKit_dhw2014_londonconspiracy_gold" - "description_string" "#StickerKit_desc_dhw2014_londonconspiracy_gold" - "sticker_material" "dhw2014/londonconspiracy_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "36" + "spray_std3_droplist_entry_ak47" "1" + "spray_std3_droplist_entry_aug" "1" + "spray_std3_droplist_entry_awp" "1" + "spray_std3_droplist_entry_bizon" "1" + "spray_std3_droplist_entry_cz" "1" + "spray_std3_droplist_entry_famas" "1" + "spray_std3_droplist_entry_galil" "1" + "spray_std3_droplist_entry_m4a1" "1" + "spray_std3_droplist_entry_m4a4" "1" + "spray_std3_droplist_entry_mac10" "1" + "spray_std3_droplist_entry_mp7" "1" + "spray_std3_droplist_entry_mp9" "1" + "spray_std3_droplist_entry_p90" "1" + "spray_std3_droplist_entry_sg553" "1" + "spray_std3_droplist_entry_ump" "1" + "spray_std3_droplist_entry_xm1014" "1" } - "248" + "csgo_spray_std3_drops" { - "name" "dhw2014_mousesports_gold" - "item_name" "#StickerKit_dhw2014_mousesports_gold" - "description_string" "#StickerKit_desc_dhw2014_mousesports_gold" - "sticker_material" "dhw2014/mousesports_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "29" + "spray_std3_droplist_common" "1" } - "249" + "unsealed_spray_std3_drops" { - "name" "dhw2014_myxmg_gold" - "item_name" "#StickerKit_dhw2014_myxmg_gold" - "description_string" "#StickerKit_desc_dhw2014_myxmg_gold" - "sticker_material" "dhw2014/myxmg_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "38" + "csgo_spray_std3_drops" "1" } - "250" + } + "paint_kits" + { + "975" { - "name" "dhw2014_navi_gold" - "item_name" "#StickerKit_dhw2014_navi_gold" - "description_string" "#StickerKit_desc_dhw2014_navi_gold" - "sticker_material" "dhw2014/navi_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "12" + "name" "gs_awp_exoskeleton" + "description_string" "#PaintKit_gs_awp_exoskeleton" + "description_tag" "#PaintKit_gs_awp_exoskeleton_Tag" + "style" "9" + "pattern" "workshop/awp_exoskeleton" + "use_normal" "1" + "normal" "workshop/awp_exoskeleton_normal" + "color0" "96 140 184" + "color1" "143 163 163" + "color2" "130 163 163" + "color3" "204 160 73" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongintensity" "80" + "phongalbedoboost" "64" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "1.500000" } - "251" + "976" { - "name" "dhw2014_ninjasinpyjamas_gold" - "item_name" "#StickerKit_dhw2014_ninjasinpyjamas_gold" - "description_string" "#StickerKit_desc_dhw2014_ninjasinpyjamas_gold" - "sticker_material" "dhw2014/ninjasinpyjamas_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "1" + "name" "gs_cz75_vendetta" + "description_string" "#PaintKit_gs_cz75_vendetta" + "description_tag" "#PaintKit_gs_cz75_vendetta_Tag" + "style" "9" + "pattern" "workshop/cz75_vendetta" + "use_normal" "1" + "normal" "workshop/cz75_vendetta_normal" + "color0" "106 53 53" + "color1" "197 206 211" + "color2" "245 229 213" + "color3" "249 214 193" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "75" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "252" + "977" { - "name" "dhw2014_pentasports_gold" - "item_name" "#StickerKit_dhw2014_pentasports_gold" - "description_string" "#StickerKit_desc_dhw2014_pentasports_gold" - "sticker_material" "dhw2014/pentasports_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "39" + "name" "hy_p90_dino_rampage" + "description_string" "#PaintKit_hy_p90_dino_rampage" + "description_tag" "#PaintKit_hy_p90_dino_rampage_Tag" + "style" "2" + "pattern" "workshop/dino_rampage" + "color0" "9 12 19" + "color1" "200 199 139" + "color2" "38 47 40" + "color3" "147 104 60" + "pattern_scale" "1.500000" + "phongexponent" "175" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "253" + "978" { - "name" "dhw2014_planetkeydynamics_gold" - "item_name" "#StickerKit_dhw2014_planetkeydynamics_gold" - "description_string" "#StickerKit_desc_dhw2014_planetkeydynamics_gold" - "sticker_material" "dhw2014/planetkeydynamics_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "41" + "name" "gs_dual_elites_dezastre" + "description_string" "#PaintKit_gs_dual_elites_dezastre" + "description_tag" "#PaintKit_gs_dual_elites_dezastre_Tag" + "style" "9" + "pattern" "workshop/dual_elites_dezastre" + "use_normal" "1" + "normal" "workshop/dual_elites_dezastre_normal" + "color0" "123 123 123" + "color1" "255 255 255" + "color2" "235 235 235" + "color3" "18 39 64" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "254" + "979" { - "name" "dhw2014_teamldlc_gold" - "item_name" "#StickerKit_dhw2014_teamldlc_gold" - "description_string" "#StickerKit_desc_dhw2014_teamldlc_gold" - "sticker_material" "dhw2014/teamldlc_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "26" + "name" "cu_five_seven_diary" + "description_string" "#PaintKit_cu_five_seven_diary" + "description_tag" "#PaintKit_cu_five_seven_diary_Tag" + "style" "7" + "pattern" "workshop/five_seven_diary" + "use_normal" "1" + "normal" "workshop/five_seven_diary_normal" + "pattern_scale" "1.000000" + "phongexponent" "190" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.900000" } - "255" + "980" { - "name" "dhw2014_virtuspro_gold" - "item_name" "#StickerKit_dhw2014_virtuspro_gold" - "description_string" "#StickerKit_desc_dhw2014_virtuspro_gold" - "sticker_material" "dhw2014/virtuspro_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "31" + "name" "gs_g3sg1_disrupt" + "description_string" "#PaintKit_gs_g3sg1_disrupt" + "description_tag" "#PaintKit_gs_g3sg1_disrupt_Tag" + "style" "9" + "pattern" "workshop/g3sg1_disrupt" + "use_normal" "1" + "normal" "workshop/g3sg1_disrupt_normal" + "color0" "140 93 93" + "color1" "246 246 246" + "color2" "231 231 231" + "color3" "112 103 140" + "pattern_scale" "1.000000" + "phongexponent" "225" + "phongintensity" "5" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "256" + "981" { - "name" "dhw2014_flipsid3" - "item_name" "#StickerKit_dhw2014_flipsid3" - "description_string" "#StickerKit_desc_dhw2014_flipsid3" - "sticker_material" "dhw2014/flipsid3" - "item_rarity" "rare" - "tournament_event_id" "5" - "tournament_team_id" "43" + "name" "gs_galil_vandal" + "description_string" "#PaintKit_gs_galil_vandal" + "description_tag" "#PaintKit_gs_galil_vandal_Tag" + "style" "9" + "pattern" "workshop/galil_vandal" + "use_normal" "1" + "normal" "workshop/galil_vandal_normal" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "1" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "257" + "982" { - "name" "dhw2014_flipsid3_gold" - "item_name" "#StickerKit_dhw2014_flipsid3_gold" - "description_string" "#StickerKit_desc_dhw2014_flipsid3_gold" - "sticker_material" "dhw2014/flipsid3_gold" - "item_rarity" "legendary" - "tournament_event_id" "5" - "tournament_team_id" "43" + "name" "cu_p250_infect" + "description_string" "#PaintKit_cu_p250_infect" + "description_tag" "#PaintKit_cu_p250_infect_Tag" + "style" "7" + "pattern" "workshop/p250_infect" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "234" + "phongintensity" "4" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "258" + "983" { - "name" "blood_broiler" - "item_name" "#StickerKit_comm02_blood_broiler" - "description_string" "#StickerKit_desc_comm02_blood_broiler" - "sticker_material" "community02/blood_broiler" - "item_rarity" "rare" + "name" "cu_m249_deep_relief" + "description_string" "#PaintKit_cu_m249_deep_relief" + "description_tag" "#PaintKit_cu_m249_deep_relief_Tag" + "style" "7" + "pattern" "workshop/m249_deep_relief" + "use_normal" "1" + "normal" "workshop/m249_deep_relief_normal" + "pattern_scale" "1.000000" + "phongexponent" "220" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "259" + "984" { - "name" "dinked" - "item_name" "#StickerKit_comm02_dinked" - "description_string" "#StickerKit_desc_comm02_dinked" - "sticker_material" "community02/dinked" - "item_rarity" "rare" + "name" "cu_m4a1s_printstream" + "description_string" "#PaintKit_cu_m4a1s_printstream" + "description_tag" "#PaintKit_cu_printstream_Tag" + "style" "7" + "pattern" "workshop/m4a1s_printstream" + "use_normal" "1" + "normal" "workshop/m4a1s_printstream_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "225" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + "pearlescent" "120.000000" } - "260" + "985" { - "name" "drugwarveteran" - "item_name" "#StickerKit_comm02_drugwarveteran" - "description_string" "#StickerKit_desc_comm02_drugwarveteran" - "sticker_material" "community02/drugwarveteran" - "item_rarity" "rare" + "name" "cu_m4a4_cyberpunk" + "description_string" "#PaintKit_cu_m4a4_cyberpunk" + "description_tag" "#PaintKit_cu_m4a4_cyberpunk_Tag" + "style" "7" + "pattern" "workshop/m4a4_cyberpunk" + "use_normal" "1" + "normal" "workshop/m4a4_cyberpunk_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "8" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.980000" } - "261" + "986" { - "name" "hohoho" - "item_name" "#StickerKit_comm02_hohoho" - "description_string" "#StickerKit_desc_comm02_hohoho" - "sticker_material" "community02/hohoho" - "item_rarity" "rare" + "name" "gs_mp5_conditionzero" + "description_string" "#PaintKit_gs_mp5_conditionzero" + "description_tag" "#PaintKit_gs_mp5_conditionzero_Tag" + "style" "9" + "pattern" "workshop/mp5_conditionzero" + "use_normal" "1" + "normal" "workshop/mp5_conditionzero_normal" + "color0" "186 186 186" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "186 186 186" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "40" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "262" + "987" { - "name" "massivepear" - "item_name" "#StickerKit_comm02_massivepear" - "description_string" "#StickerKit_desc_comm02_massivepear" - "sticker_material" "community02/massivepear" - "item_rarity" "rare" + "name" "cu_nova_polymer" + "description_string" "#PaintKit_cu_nova_polymer" + "description_tag" "#PaintKit_cu_nova_polymer_Tag" + "style" "7" + "pattern" "workshop/nova_polymer" + "use_normal" "1" + "normal" "workshop/nova_polymer_normal" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "133" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "263" + "988" { - "name" "mylittlefriend" - "item_name" "#StickerKit_comm02_mylittlefriend" - "description_string" "#StickerKit_desc_comm02_mylittlefriend" - "sticker_material" "community02/mylittlefriend" - "item_rarity" "rare" + "name" "cu_glock_noir" + "description_string" "#PaintKit_cu_glock_noir" + "description_tag" "#PaintKit_cu_glock_noir_Tag" + "style" "7" + "pattern" "workshop/glock_noir" + "use_normal" "1" + "normal" "workshop/glock_noir_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "264" + "989" { - "name" "pandamonium" - "item_name" "#StickerKit_comm02_pandamonium" - "description_string" "#StickerKit_desc_comm02_pandamonium" - "sticker_material" "community02/pandamonium" - "item_rarity" "rare" + "name" "cu_ssg08_chromatic" + "description_string" "#PaintKit_cu_ssg08_chromatic" + "description_tag" "#PaintKit_cu_ssg08_chromatic_Tag" + "style" "7" + "pattern" "workshop/ssg08_chromatic" + "use_normal" "1" + "normal" "workshop/ssg08_chromatic_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "265" + "990" { - "name" "pieceofcake" - "item_name" "#StickerKit_comm02_pieceofcake" - "description_string" "#StickerKit_desc_comm02_pieceofcake" - "sticker_material" "community02/pieceofcake" - "item_rarity" "rare" + "name" "gs_ump_gold_bismuth" + "description_string" "#PaintKit_gs_ump_gold_bismuth" + "description_tag" "#PaintKit_gs_ump_gold_bismuth_Tag" + "style" "9" + "pattern" "workshop/ump_gold_bismuth" + "use_normal" "1" + "normal" "workshop/ump_gold_bismuth_normal" + "color0" "91 91 91" + "color1" "226 226 226" + "color2" "184 190 196" + "color3" "113 106 97" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "70" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "991" + { + "name" "cu_usp_krokos" + "description_string" "#PaintKit_cu_usp_krokos" + "description_tag" "#PaintKit_cu_usp_krokos_Tag" + "style" "7" + "pattern" "workshop/usp_krokos" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + "pearlescent" "100.000000" + } + } + "items" + { + "1388" + { + "name" "community_27 Key" + "item_name" "#CSGO_crate_key_community_27" + "item_description" "#CSGO_crate_key_community_27_desc" + "first_sale_date" "2020-10-14" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_27" + "tool" + { + "restriction" "crate_community_27" + } } - "266" + "4717" { - "name" "saschicken" - "item_name" "#StickerKit_comm02_saschicken" - "description_string" "#StickerKit_desc_comm02_saschicken" - "sticker_material" "community02/saschicken" - "item_rarity" "rare" + "item_name" "#CSGO_crate_community_27" + "item_description" "#CSGO_crate_community_27_desc" + "name" "crate_community_27" + "image_inventory" "econ/weapon_cases/crate_community_27" + "model_player" "models/props/crates/csgo_drop_crate_community_27.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1388" "1" + } + "tool" + { + "restriction" "crate_community_27" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "308" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_27" + "tag_text" "#CSGO_set_community_27" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_15_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_15_unusual_itemname" } - "267" + } + "revolving_loot_lists" + { + "308" "crate_community_27" + } + "client_loot_lists" + { + "crate_community_27_rare" { - "name" "thuglife" - "item_name" "#StickerKit_comm02_thuglife" - "description_string" "#StickerKit_desc_comm02_thuglife" - "sticker_material" "community02/thuglife" - "item_rarity" "rare" + "[gs_cz75_vendetta]weapon_cz75a" "1" + "[hy_p90_dino_rampage]weapon_p90" "1" + "[gs_g3sg1_disrupt]weapon_g3sg1" "1" + "[gs_galil_vandal]weapon_galilar" "1" + "[cu_p250_infect]weapon_p250" "1" + "[cu_m249_deep_relief]weapon_m249" "1" + "[gs_mp5_conditionzero]weapon_mp5sd" "1" } - "268" + "crate_community_27_mythical" { - "name" "trekt" - "item_name" "#StickerKit_comm02_trekt" - "description_string" "#StickerKit_desc_comm02_trekt" - "sticker_material" "community02/trekt" - "item_rarity" "rare" + "[gs_awp_exoskeleton]weapon_awp" "1" + "[gs_dual_elites_dezastre]weapon_elite" "1" + "[cu_nova_polymer]weapon_nova" "1" + "[cu_ssg08_chromatic]weapon_ssg08" "1" + "[gs_ump_gold_bismuth]weapon_ump45" "1" } - "269" + "crate_community_27_legendary" { - "name" "warowl" - "item_name" "#StickerKit_comm02_warowl" - "description_string" "#StickerKit_desc_comm02_warowl" - "sticker_material" "community02/warowl" - "item_rarity" "rare" + "[cu_five_seven_diary]weapon_fiveseven" "1" + "[cu_m4a4_cyberpunk]weapon_m4a1" "1" + "[cu_usp_krokos]weapon_usp_silencer" "1" } - "270" + "crate_community_27_ancient" { - "name" "workforfood" - "item_name" "#StickerKit_comm02_workforfood" - "description_string" "#StickerKit_desc_comm02_workforfood" - "sticker_material" "community02/workforfood" - "item_rarity" "rare" + "[cu_m4a1s_printstream]weapon_m4a1_silencer" "1" + "[cu_glock_noir]weapon_glock" "1" } - "271" + "crate_community_27" { - "name" "phoenix_foil" - "item_name" "#StickerKit_comm02_phoenix_foil" - "description_string" "#StickerKit_desc_comm02_phoenix_foil" - "sticker_material" "community02/phoenix_foil" - "item_rarity" "rare" + "crate_community_27_rare" "1" + "crate_community_27_mythical" "1" + "crate_community_27_legendary" "1" + "crate_community_27_ancient" "1" + "set_glove_3_unusual" "1" } - "272" + } + "item_sets" + { + "set_community_27" { - "name" "bombsquad_foil" - "item_name" "#StickerKit_comm02_bombsquad_foil" - "description_string" "#StickerKit_desc_comm02_bombsquad_foil" - "sticker_material" "community02/bombsquad_foil" - "item_rarity" "rare" + "name" "#CSGO_set_community_27" + "set_description" "#CSGO_set_community_27_desc" + "is_collection" "1" + "items" + { + "[gs_cz75_vendetta]weapon_cz75a" "1" + "[hy_p90_dino_rampage]weapon_p90" "1" + "[gs_g3sg1_disrupt]weapon_g3sg1" "1" + "[gs_galil_vandal]weapon_galilar" "1" + "[cu_p250_infect]weapon_p250" "1" + "[cu_m249_deep_relief]weapon_m249" "1" + "[gs_mp5_conditionzero]weapon_mp5sd" "1" + "[gs_awp_exoskeleton]weapon_awp" "1" + "[gs_dual_elites_dezastre]weapon_elite" "1" + "[cu_nova_polymer]weapon_nova" "1" + "[cu_ssg08_chromatic]weapon_ssg08" "1" + "[gs_ump_gold_bismuth]weapon_ump45" "1" + "[cu_five_seven_diary]weapon_fiveseven" "1" + "[cu_m4a4_cyberpunk]weapon_m4a1" "1" + "[cu_usp_krokos]weapon_usp_silencer" "1" + "[cu_m4a1s_printstream]weapon_m4a1_silencer" "1" + "[cu_glock_noir]weapon_glock" "1" + } } - "273" + } + "paint_kits_rarity" + { + "gs_awp_exoskeleton" "rare" + "gs_cz75_vendetta" "rare" + "hy_p90_dino_rampage" "rare" + "gs_dual_elites_dezastre" "mythical" + "cu_five_seven_diary" "legendary" + "gs_g3sg1_disrupt" "rare" + "gs_galil_vandal" "rare" + "cu_p250_infect" "rare" + "cu_m249_deep_relief" "rare" + "cu_m4a1s_printstream" "legendary" + "cu_m4a4_cyberpunk" "mythical" + "gs_mp5_conditionzero" "rare" + "cu_nova_polymer" "mythical" + "cu_glock_noir" "legendary" + "cu_ssg08_chromatic" "mythical" + "gs_ump_gold_bismuth" "mythical" + "cu_usp_krokos" "mythical" + } + "paint_kits" + { + "992" { - "name" "flickshot" - "item_name" "#StickerKit_comm02_flickshot" - "description_string" "#StickerKit_desc_comm02_flickshot" - "sticker_material" "community02/flickshot" - "item_rarity" "rare" + "name" "am_numbers_bronze" + "description_string" "#PaintKit_am_numbers_bronze" + "description_tag" "#PaintKit_am_numbers_bronze_Tag" + "style" "5" + "pattern" "numbers" + "color0" "59 34 20" + "color1" "101 97 95" + "color2" "63 53 47" + "color3" "94 84 73" + "pattern_scale" "1.000000" + "phongexponent" "66" + "phongalbedoboost" "18" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.300000" } - "274" + "993" { - "name" "headshot_guarantee" - "item_name" "#StickerKit_comm02_headshot_guarantee" - "description_string" "#StickerKit_desc_comm02_headshot_guarantee" - "sticker_material" "community02/headshot_guarantee" - "item_rarity" "rare" + "name" "cu_csgo_camo" + "description_string" "#PaintKit_cu_csgo_camo" + "description_tag" "#PaintKit_cu_csgo_camo_Tag" + "style" "7" + "pattern" "cs_camo" + "pattern_scale" "3.000000" + "phongexponent" "25" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "275" + "994" { - "name" "eco_rush" - "item_name" "#StickerKit_comm02_eco_rush" - "description_string" "#StickerKit_desc_comm02_eco_rush" - "sticker_material" "community02/eco_rush" - "item_rarity" "rare" + "name" "am_authority_brown" + "description_string" "#PaintKit_am_authority_brown" + "description_tag" "#PaintKit_am_authority_brown_Tag" + "style" "5" + "pattern" "authority" + "color0" "141 130 96" + "color1" "83 54 43" + "color2" "149 132 95" + "color3" "38 31 20" + "pattern_scale" "4.600000" + "phongexponent" "25" + "phongalbedoboost" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "276" + "995" { - "name" "just_trolling" - "item_name" "#StickerKit_comm02_just_trolling" - "description_string" "#StickerKit_desc_comm02_just_trolling" - "sticker_material" "community02/just_trolling" - "item_rarity" "rare" + "name" "am_intelligence_grey" + "description_string" "#PaintKit_am_intelligence_grey" + "description_tag" "#PaintKit_am_intelligence_grey_Tag" + "style" "5" + "pattern" "intelligence" + "color0" "59 56 52" + "color1" "128 94 44" + "color2" "177 124 62" + "color3" "31 54 57" + "pattern_scale" "4.000000" + "phongexponent" "25" + "phongalbedoboost" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "278" + "996" { - "name" "firestarter_holo" - "item_name" "#StickerKit_comm02_firestarter_holo" - "description_string" "#StickerKit_desc_comm02_firestarter_holo" - "sticker_material" "community02/firestarter_holo" - "item_rarity" "rare" + "name" "am_intelligence_orange" + "description_string" "#PaintKit_am_intelligence_orange" + "description_tag" "#PaintKit_am_intelligence_orange_Tag" + "style" "2" + "pattern" "intelligence" + "color0" "171 105 38" + "color1" "43 220 222" + "color2" "137 137 137" + "color3" "116 59 24" + "pattern_scale" "2.500000" + "phongexponent" "2" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "279" + "997" { - "name" "lucky_cat_foil" - "item_name" "#StickerKit_comm02_lucky_cat_foil" - "description_string" "#StickerKit_desc_comm02_lucky_cat_foil" - "sticker_material" "community02/lucky_cat_foil" - "item_rarity" "rare" + "name" "am_numbers_red_blue" + "description_string" "#PaintKit_am_numbers_red_blue" + "description_tag" "#PaintKit_am_numbers_red_blue_Tag" + "style" "5" + "pattern" "numbers_flipped" + "color0" "115 46 32" + "color1" "194 180 156" + "color2" "139 169 185" + "color3" "46 103 131" + "pattern_scale" "2.000000" + "phongexponent" "25" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "280" + "998" { - "name" "robot_head" - "item_name" "#StickerKit_comm02_robot_head" - "description_string" "#StickerKit_desc_comm02_robot_head" - "sticker_material" "community02/robot_head" - "item_rarity" "rare" + "name" "hy_numbers_green" + "description_string" "#PaintKit_hy_numbers_green" + "description_tag" "#PaintKit_hy_numbers_green_Tag" + "style" "2" + "pattern" "numbers" + "color0" "85 92 56" + "color1" "105 108 40" + "color2" "35 43 36" + "color3" "142 135 101" + "pattern_scale" "1.800000" + "phongexponent" "25" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "281" + "999" { - "name" "witchcraft" - "item_name" "#StickerKit_comm02_witchcraft" - "description_string" "#StickerKit_desc_comm02_witchcraft" - "sticker_material" "community02/witchcraft" - "item_rarity" "rare" + "name" "am_numbers_magenta" + "description_string" "#PaintKit_am_numbers_magenta" + "description_tag" "#PaintKit_am_numbers_magenta_Tag" + "style" "5" + "pattern" "numbers_flipped" + "color0" "18 30 78 255" + "color1" "95 27 27 255" + "color2" "7 7 5 255" + "color3" "8 12 26 255" + "pattern_scale" "1.200000" + "phongexponent" "25" + "phongalbedoboost" "36" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + "pearlescent" "-1.500000" } - "282" + "1002" { - "name" "wanna_fight" - "item_name" "#StickerKit_comm02_wanna_fight" - "description_string" "#StickerKit_desc_comm02_wanna_fight" - "sticker_material" "community02/wanna_fight" - "item_rarity" "rare" + "name" "aa_fade_red_blue" + "description_string" "#PaintKit_aa_fade_red_blue" + "description_tag" "#PaintKit_aa_fade_red_blue_Tag" + "style" "6" + "pattern" "fade" + "color0" "88 16 16" + "color1" "72 16 19" + "color2" "15 14 14" + "color3" "31 80 136" + "pattern_scale" "2.000000" + "phongexponent" "34" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "-1.480000" + "pattern_offset_x_end" "0.600000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "10.000000" + "pattern_rotate_end" "20.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.100000" } - "283" + "1003" { - "name" "hostage_rescue" - "item_name" "#StickerKit_comm02_hostage_rescue" - "description_string" "#StickerKit_desc_comm02_hostage_rescue" - "sticker_material" "community02/hostage_rescue" - "item_rarity" "rare" + "name" "cu_ump_crime_scene" + "description_string" "#PaintKit_cu_ump_crime_scene" + "description_tag" "#PaintKit_cu_ump_crime_scene_Tag" + "style" "7" + "pattern" "ump_crimescene" + "pattern_scale" "1.000000" + "phongexponent" "155" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.750000" } - "284" + "1026" { - "name" "hamster_hawk" - "item_name" "#StickerKit_comm02_hamster_hawk" - "description_string" "#StickerKit_desc_comm02_hamster_hawk" - "sticker_material" "community02/hamster_hawk" - "item_rarity" "rare" + "name" "aa_awp_fade" + "description_string" "#PaintKit_aa_fade" + "description_tag" "#PaintKit_aa_fade_Tag" + "style" "6" + "pattern" "fade" + "color0" "44 41 39 255" + "color1" "84 52 14 255" + "color2" "71 18 28 255" + "color3" "28 31 57 255" + "pattern_scale" "1.260000" + "phongexponent" "34" + "phongalbedoboost" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "-0.700000" + "pattern_offset_x_end" "-0.700000" + "pattern_offset_y_start" "-0.700000" + "pattern_offset_y_end" "-0.700000" + "pattern_rotate_start" "-55.000000" + "pattern_rotate_end" "-65.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" } - "285" + "1027" { - "name" "headless_chicken" - "item_name" "#StickerKit_comm02_headless_chicken" - "description_string" "#StickerKit_desc_comm02_headless_chicken" - "sticker_material" "community02/headless_chicken" - "item_rarity" "rare" + "name" "am_intelligence_magenta" + "description_string" "#PaintKit_am_intelligence_magenta" + "description_tag" "#PaintKit_am_intelligence_magenta_Tag" + "style" "5" + "pattern" "intelligence" + "color0" "22 21 20" + "color1" "255 93 147" + "color2" "87 215 230" + "color3" "43 30 30" + "pattern_scale" "2.500000" + "phongexponent" "66" + "phongalbedoboost" "12" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "286" + "1028" { - "name" "eslkatowice2015_3dmax" - "item_name" "#StickerKit_eslkatowice2015_3dmax" - "description_string" "#StickerKit_desc_eslkatowice2015_3dmax" - "sticker_material" "eslkatowice2015/3dmax" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "28" + "name" "hy_authority_purple" + "description_string" "#PaintKit_hy_authority_purple" + "description_tag" "#PaintKit_hy_authority_purple_Tag" + "style" "2" + "pattern" "authority" + "color0" "246 221 175" + "color1" "127 44 18" + "color2" "54 35 58" + "color3" "8 9 54" + "pattern_scale" "3.400000" + "phongexponent" "32" + "phongintensity" "20" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "287" + "1017" { - "name" "eslkatowice2015_3dmax_holo" - "item_name" "#StickerKit_eslkatowice2015_3dmax_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_3dmax_holo" - "sticker_material" "eslkatowice2015/3dmax_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "28" + "name" "am_m4a1s_bluesmoke" + "description_string" "#PaintKit_am_m4a1s_bluesmoke" + "description_tag" "#PaintKit_am_m4a1s_bluesmoke_Tag" + "style" "5" + "pattern" "smoke" + "color0" "75 147 255" + "color1" "4 9 61" + "color2" "33 33 33" + "color3" "4 30 80" + "pattern_scale" "2.000000" + "phongexponent" "120" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-20.000000" + "pattern_rotate_end" "20.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.080000" + "pearlescent" "-0.300000" } - "288" + } + "client_loot_lists" + { + "set_op10_ct_common" { - "name" "eslkatowice2015_3dmax_foil" - "item_name" "#StickerKit_eslkatowice2015_3dmax_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_3dmax_foil" - "sticker_material" "eslkatowice2015/3dmax_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "28" + "[am_authority_brown]weapon_xm1014" "1" + "[am_intelligence_grey]weapon_aug" "1" + "[am_army_shine]weapon_mp9" "1" + "[hy_forest_night]weapon_p250" "1" + "[sp_tape_short_jungle]weapon_cz75a" "1" } - "289" + "set_op10_ct_uncommon" { - "name" "eslkatowice2015_3dmax_gold" - "item_name" "#StickerKit_eslkatowice2015_3dmax_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_3dmax_gold" - "sticker_material" "eslkatowice2015/3dmax_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "28" + "[am_numbers_bronze]weapon_deagle" "1" + "[hy_numbers_green]weapon_elite" "1" + "[so_orange_accents3]weapon_mp5sd" "1" + "[am_carbon_fiber]weapon_mag7" "1" } - "290" + "set_op10_ct_rare" { - "name" "eslkatowice2015_cloud9" - "item_name" "#StickerKit_eslkatowice2015_cloud9" - "description_string" "#StickerKit_desc_eslkatowice2015_cloud9" - "sticker_material" "eslkatowice2015/cloud9" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "52" + "[cu_csgo_camo]weapon_m4a1" "1" + "[am_intelligence_orange]weapon_ssg08" "1" + "[am_numbers_red_blue]weapon_hkp2000" "1" + "[hy_authority_purple]weapon_scar20" "1" } - "291" + "set_op10_ct_mythical" { - "name" "eslkatowice2015_cloud9_holo" - "item_name" "#StickerKit_eslkatowice2015_cloud9_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_cloud9_holo" - "sticker_material" "eslkatowice2015/cloud9_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "52" + "[am_numbers_magenta]weapon_famas" "1" + "[aa_fade_red_blue]weapon_fiveseven" "1" + "[cu_ump_crime_scene]weapon_ump45" "1" } - "292" + "set_op10_ct_legendary" { - "name" "eslkatowice2015_cloud9_foil" - "item_name" "#StickerKit_eslkatowice2015_cloud9_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_cloud9_foil" - "sticker_material" "eslkatowice2015/cloud9_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "52" + "[am_m4a1s_bluesmoke]weapon_m4a1_silencer" "1" + "[am_intelligence_magenta]weapon_usp_silencer" "1" } - "293" + "set_op10_ct_ancient" { - "name" "eslkatowice2015_cloud9_gold" - "item_name" "#StickerKit_eslkatowice2015_cloud9_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_cloud9_gold" - "sticker_material" "eslkatowice2015/cloud9_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "52" + "[aa_awp_fade]weapon_awp" "1" } - "294" + "set_op10_ct" { - "name" "eslkatowice2015_counterlogic" - "item_name" "#StickerKit_eslkatowice2015_counterlogic" - "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic" - "sticker_material" "eslkatowice2015/counterlogic" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "49" + "set_op10_ct_common" "1" + "set_op10_ct_uncommon" "1" + "set_op10_ct_rare" "1" + "set_op10_ct_mythical" "1" + "set_op10_ct_legendary" "1" + "set_op10_ct_ancient" "1" } - "295" + } + "item_sets" + { + "set_op10_ct" { - "name" "eslkatowice2015_counterlogic_holo" - "item_name" "#StickerKit_eslkatowice2015_counterlogic_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic_holo" - "sticker_material" "eslkatowice2015/counterlogic_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "49" + "name" "#CSGO_set_op10_ct" + "set_description" "#CSGO_set_op10_ct_desc" + "is_collection" "1" + "items" + { + "[am_authority_brown]weapon_xm1014" "1" + "[am_intelligence_grey]weapon_aug" "1" + "[am_army_shine]weapon_mp9" "1" + "[hy_forest_night]weapon_p250" "1" + "[sp_tape_short_jungle]weapon_cz75a" "1" + "[am_numbers_bronze]weapon_deagle" "1" + "[hy_numbers_green]weapon_elite" "1" + "[so_orange_accents3]weapon_mp5sd" "1" + "[am_carbon_fiber]weapon_mag7" "1" + "[cu_csgo_camo]weapon_m4a1" "1" + "[am_intelligence_orange]weapon_ssg08" "1" + "[am_numbers_red_blue]weapon_hkp2000" "1" + "[hy_authority_purple]weapon_scar20" "1" + "[am_numbers_magenta]weapon_famas" "1" + "[aa_fade_red_blue]weapon_fiveseven" "1" + "[cu_ump_crime_scene]weapon_ump45" "1" + "[am_intelligence_magenta]weapon_usp_silencer" "1" + "[am_m4a1s_bluesmoke]weapon_m4a1_silencer" "1" + "[aa_awp_fade]weapon_awp" "1" + } } - "296" + } + "paint_kits_rarity" + { + "am_numbers_bronze" "common" + "cu_csgo_camo" "uncommon" + "am_authority_brown" "common" + "am_intelligence_grey" "common" + "am_intelligence_orange" "rare" + "hy_authority_purple" "rare" + "am_numbers_red_blue" "uncommon" + "hy_numbers_green" "uncommon" + "am_numbers_magenta" "mythical" + "aa_awp_fade" "legendary" + "aa_fade_red_blue" "mythical" + "cu_ump_crime_scene" "mythical" + "am_intelligence_magenta" "mythical" + "am_m4a1s_bluesmoke" "mythical" + } + "paint_kits" + { + "1004" { - "name" "eslkatowice2015_counterlogic_foil" - "item_name" "#StickerKit_eslkatowice2015_counterlogic_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic_foil" - "sticker_material" "eslkatowice2015/counterlogic_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "49" + "name" "cu_ak_xray" + "description_string" "#PaintKit_cu_ak_xray" + "description_tag" "#PaintKit_cu_ak_xray_Tag" + "style" "7" + "pattern" "ak_xray" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "55" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "297" + "1005" { - "name" "eslkatowice2015_counterlogic_gold" - "item_name" "#StickerKit_eslkatowice2015_counterlogic_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_counterlogic_gold" - "sticker_material" "eslkatowice2015/counterlogic_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "49" + "name" "am_heist_plans_green" + "description_string" "#PaintKit_am_heist_plans_green" + "description_tag" "#PaintKit_am_heist_plans_green_Tag" + "style" "5" + "pattern" "heist" + "color0" "120 127 113" + "color1" "106 97 86" + "color2" "50 46 42" + "color3" "153 151 139" + "pattern_scale" "2.000000" + "phongexponent" "32" + "phongalbedoboost" "-1" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "300" + "1006" { - "name" "eslkatowice2015_esl_a_foil" - "item_name" "#StickerKit_eslkatowice2015_esl_a_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_esl_a_foil" - "sticker_material" "eslkatowice2015/esl_a_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" + "name" "am_heist_plans_purple" + "description_string" "#PaintKit_am_heist_plans_purple" + "description_tag" "#PaintKit_am_heist_plans_purple_Tag" + "style" "5" + "pattern" "heist" + "color0" "51 60 91" + "color1" "16 30 40" + "color2" "15 17 26" + "color3" "101 64 73" + "pattern_scale" "7.000000" + "phongexponent" "25" + "phongalbedoboost" "36" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "301" + "1007" { - "name" "eslkatowice2015_esl_a_gold" - "item_name" "#StickerKit_eslkatowice2015_esl_a_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_esl_a_gold" - "sticker_material" "eslkatowice2015/esl_a_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" + "name" "am_heist_plans_yellow" + "description_string" "#PaintKit_am_heist_plans_yellow" + "description_tag" "#PaintKit_am_heist_plans_yellow_Tag" + "style" "5" + "pattern" "heist" + "color0" "19 13 13" + "color1" "94 94 94" + "color2" "35 34 33" + "color3" "185 140 30" + "pattern_scale" "2.000000" + "phongexponent" "80" + "phongalbedoboost" "69" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "302" + "1008" { - "name" "eslkatowice2015_flipsid3" - "item_name" "#StickerKit_eslkatowice2015_flipsid3" - "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3" - "sticker_material" "eslkatowice2015/flipsid3" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "43" + "name" "hy_houndstooth_brown" + "description_string" "#PaintKit_hy_houndstooth_brown" + "description_tag" "#PaintKit_hy_houndstooth_brown_Tag" + "style" "2" + "pattern" "pattern_houndstooth" + "color0" "30 29 24" + "color1" "82 66 40" + "color2" "50 46 40" + "color3" "31 31 31" + "pattern_scale" "5.500000" + "phongexponent" "16" + "phongintensity" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.720000" + "pattern_offset_y_end" "0.720000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "303" + "1009" { - "name" "eslkatowice2015_flipsid3_holo" - "item_name" "#StickerKit_eslkatowice2015_flipsid3_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3_holo" - "sticker_material" "eslkatowice2015/flipsid3_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "43" + "name" "gs_mac10_snake" + "description_string" "#PaintKit_gs_mac10_snake" + "description_tag" "#PaintKit_gs_mac10_snake_Tag" + "style" "9" + "pattern" "mac10_snake" + "use_normal" "1" + "normal" "mac10_snake_normal" + "color0" "30 30 30" + "color1" "169 160 160" + "color2" "94 67 67" + "color3" "136 110 110" + "pattern_scale" "1.000000" + "phongexponent" "130" + "phongintensity" "29" + "phongalbedoboost" "75" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "304" + "1010" { - "name" "eslkatowice2015_flipsid3_foil" - "item_name" "#StickerKit_eslkatowice2015_flipsid3_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3_foil" - "sticker_material" "eslkatowice2015/flipsid3_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "43" + "name" "hy_phoenix_tags_lilac" + "description_string" "#PaintKit_hy_phoenix_tags_lilac" + "description_tag" "#PaintKit_hy_phoenix_tags_lilac_Tag" + "style" "2" + "pattern" "phoenix_tags" + "color0" "76 87 88" + "color1" "83 83 83" + "color2" "61 50 55" + "color3" "87 72 72" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "50.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "305" + "1011" { - "name" "eslkatowice2015_flipsid3_gold" - "item_name" "#StickerKit_eslkatowice2015_flipsid3_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_flipsid3_gold" - "sticker_material" "eslkatowice2015/flipsid3_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "43" + "name" "am_phoenix_tags_blue" + "description_string" "#PaintKit_am_phoenix_tags_blue" + "description_tag" "#PaintKit_am_phoenix_tags_blue_Tag" + "style" "2" + "pattern" "phoenix_tags" + "color0" "70 52 128" + "color1" "44 89 171" + "color2" "23 26 42" + "color3" "64 103 155" + "pattern_scale" "2.400000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "20.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "306" + "1012" { - "name" "eslkatowice2015_fnatic" - "item_name" "#StickerKit_eslkatowice2015_fnatic" - "description_string" "#StickerKit_desc_eslkatowice2015_fnatic" - "sticker_material" "eslkatowice2015/fnatic" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "6" + "name" "hy_phoenix_tags_red" + "description_string" "#PaintKit_hy_phoenix_tags_red" + "description_tag" "#PaintKit_hy_phoenix_tags_red_Tag" + "style" "2" + "pattern" "phoenix_tags" + "color0" "122 40 40" + "color1" "207 171 132" + "color2" "28 30 41 255" + "color3" "67 64 61" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "50.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "307" + "1013" { - "name" "eslkatowice2015_fnatic_holo" - "item_name" "#StickerKit_eslkatowice2015_fnatic_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_fnatic_holo" - "sticker_material" "eslkatowice2015/fnatic_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "6" + "name" "sp_phoenix_tags_purple" + "description_string" "#PaintKit_sp_phoenix_tags_purple" + "description_tag" "#PaintKit_sp_phoenix_tags_purple_Tag" + "style" "3" + "pattern" "phoenix_tags" + "color0" "96 104 210" + "color1" "200 100 203" + "color2" "26 20 26" + "color3" "27 29 66" + "pattern_scale" "1.300000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "160.000000" + "pattern_rotate_end" "220.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "308" + "1014" { - "name" "eslkatowice2015_fnatic_foil" - "item_name" "#StickerKit_eslkatowice2015_fnatic_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_fnatic_foil" - "sticker_material" "eslkatowice2015/fnatic_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "6" + "name" "hy_tigers_tan" + "description_string" "#PaintKit_hy_tigers_tan" + "description_tag" "#PaintKit_hy_tigers_tan_Tag" + "style" "2" + "pattern" "tigers" + "color0" "80 66 48" + "color1" "97 78 56" + "color2" "72 50 41" + "color3" "38 31 31 255" + "pattern_scale" "5.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "309" + "1015" { - "name" "eslkatowice2015_fnatic_gold" - "item_name" "#StickerKit_eslkatowice2015_fnatic_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_fnatic_gold" - "sticker_material" "eslkatowice2015/fnatic_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "6" + "name" "am_tigers_brown" + "description_string" "#PaintKit_am_tigers_brown" + "description_tag" "#PaintKit_am_tigers_brown_Tag" + "style" "5" + "pattern" "tigers" + "color0" "177 158 117" + "color1" "109 73 47" + "color2" "95 69 63" + "color3" "11 14 11 255" + "pattern_scale" "3.700000" + "phongexponent" "32" + "phongalbedoboost" "-1" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "240.000000" + "pattern_rotate_end" "290.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "310" + "1016" { - "name" "eslkatowice2015_hellraisers" - "item_name" "#StickerKit_eslkatowice2015_hellraisers" - "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers" - "sticker_material" "eslkatowice2015/hellraisers" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "25" + "name" "cu_money_glock" + "description_string" "#PaintKit_cu_money" + "description_tag" "#PaintKit_cu_money_Tag" + "style" "7" + "pattern" "money" + "use_normal" "0" + "pattern_scale" "3.000000" + "phongexponent" "255" + "phongintensity" "255" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" } - "311" + "1029" { - "name" "eslkatowice2015_hellraisers_holo" - "item_name" "#StickerKit_eslkatowice2015_hellraisers_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers_holo" - "sticker_material" "eslkatowice2015/hellraisers_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "25" + "name" "am_tigers_blue" + "description_string" "#PaintKit_am_tigers_blue" + "description_tag" "#PaintKit_am_tigers_blue_Tag" + "style" "5" + "pattern" "tigers" + "color0" "227 227 170" + "color1" "211 134 51" + "color2" "230 121 115" + "color3" "35 116 137" + "pattern_scale" "2.900000" + "phongexponent" "255" + "phongalbedoboost" "-1" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "30.000000" + "pattern_rotate_end" "30.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "312" + "1030" { - "name" "eslkatowice2015_hellraisers_foil" - "item_name" "#StickerKit_eslkatowice2015_hellraisers_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers_foil" - "sticker_material" "eslkatowice2015/hellraisers_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "25" + "name" "hy_p250_tiger" + "description_string" "#PaintKit_hy_tiger" + "description_tag" "#PaintKit_hy_tiger_Tag" + "style" "2" + "pattern" "tiger" + "color0" "224 213 206 255" + "color1" "182 102 43" + "color2" "34 26 21" + "color3" "162 85 22" + "pattern_scale" "1.800000" + "phongexponent" "16" + "phongintensity" "13" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "3.000000" + "pattern_offset_y_start" "0.180000" + "pattern_offset_y_end" "0.800000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.060000" + "wear_remap_max" "0.800000" } - "313" + } + "client_loot_lists" + { + "set_op10_t_common" { - "name" "eslkatowice2015_hellraisers_gold" - "item_name" "#StickerKit_eslkatowice2015_hellraisers_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_hellraisers_gold" - "sticker_material" "eslkatowice2015/hellraisers_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "25" + "[am_heist_plans_green]weapon_elite" "1" + "[hy_phoenix_tags_lilac]weapon_tec9" "1" + "[hy_tigers_tan]weapon_sawedoff" "1" + "[hy_nerodia]weapon_bizon" "1" + "[sp_zebracam]weapon_m249" "1" } - "314" + "set_op10_t_uncommon" { - "name" "eslkatowice2015_keyd" - "item_name" "#StickerKit_eslkatowice2015_keyd" - "description_string" "#StickerKit_desc_eslkatowice2015_keyd" - "sticker_material" "eslkatowice2015/keyd" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "50" + "[am_heist_plans_yellow]weapon_mp7" "1" + "[hy_houndstooth_brown]weapon_ump45" "1" + "[am_phoenix_tags_blue]weapon_revolver" "1" + "[aq_steel]weapon_nova" "1" } - "315" + "set_op10_t_rare" { - "name" "eslkatowice2015_keyd_holo" - "item_name" "#StickerKit_eslkatowice2015_keyd_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_keyd_holo" - "sticker_material" "eslkatowice2015/keyd_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "50" + "[am_heist_plans_purple]weapon_deagle" "1" + "[hy_phoenix_tags_red]weapon_negev" "1" + "[am_tigers_brown]weapon_p90" "1" + "[hy_p250_tiger]weapon_p250" "1" } - "316" + "set_op10_t_mythical" { - "name" "eslkatowice2015_keyd_foil" - "item_name" "#StickerKit_eslkatowice2015_keyd_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_keyd_foil" - "sticker_material" "eslkatowice2015/keyd_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "50" + "[sp_phoenix_tags_purple]weapon_galilar" "1" + "[aa_vertigo]weapon_sg556" "1" + "[cu_money_glock]weapon_glock" "1" } - "317" + "set_op10_t_legendary" { - "name" "eslkatowice2015_keyd_gold" - "item_name" "#StickerKit_eslkatowice2015_keyd_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_keyd_gold" - "sticker_material" "eslkatowice2015/keyd_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "50" + "[am_tigers_blue]weapon_awp" "1" + "[gs_mac10_snake]weapon_mac10" "1" } - "318" + "set_op10_t_ancient" { - "name" "eslkatowice2015_lgb" - "item_name" "#StickerKit_eslkatowice2015_lgb" - "description_string" "#StickerKit_desc_eslkatowice2015_lgb" - "sticker_material" "eslkatowice2015/lgb" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "9" + "[cu_ak_xray]weapon_ak47" "1" } - "319" + "set_op10_t" { - "name" "eslkatowice2015_lgb_holo" - "item_name" "#StickerKit_eslkatowice2015_lgb_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_lgb_holo" - "sticker_material" "eslkatowice2015/lgb_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "9" + "set_op10_t_common" "1" + "set_op10_t_uncommon" "1" + "set_op10_t_rare" "1" + "set_op10_t_mythical" "1" + "set_op10_t_legendary" "1" + "set_op10_t_ancient" "1" } - "320" + } + "item_sets" + { + "set_op10_t" { - "name" "eslkatowice2015_lgb_foil" - "item_name" "#StickerKit_eslkatowice2015_lgb_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_lgb_foil" - "sticker_material" "eslkatowice2015/lgb_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "9" + "name" "#CSGO_set_op10_t" + "set_description" "#CSGO_set_op10_t_desc" + "is_collection" "1" + "items" + { + "[am_heist_plans_green]weapon_elite" "1" + "[hy_phoenix_tags_lilac]weapon_tec9" "1" + "[hy_tigers_tan]weapon_sawedoff" "1" + "[hy_nerodia]weapon_bizon" "1" + "[sp_zebracam]weapon_m249" "1" + "[am_heist_plans_yellow]weapon_mp7" "1" + "[hy_houndstooth_brown]weapon_ump45" "1" + "[am_phoenix_tags_blue]weapon_revolver" "1" + "[aq_steel]weapon_nova" "1" + "[am_heist_plans_purple]weapon_deagle" "1" + "[hy_phoenix_tags_red]weapon_negev" "1" + "[am_tigers_brown]weapon_p90" "1" + "[hy_p250_tiger]weapon_p250" "1" + "[sp_phoenix_tags_purple]weapon_galilar" "1" + "[aa_vertigo]weapon_sg556" "1" + "[cu_money_glock]weapon_glock" "1" + "[am_tigers_blue]weapon_awp" "1" + "[gs_mac10_snake]weapon_mac10" "1" + "[cu_ak_xray]weapon_ak47" "1" + } } - "321" + } + "paint_kits_rarity" + { + "cu_ak_xray" "legendary" + "am_heist_plans_green" "common" + "am_heist_plans_purple" "uncommon" + "am_heist_plans_yellow" "uncommon" + "hy_houndstooth_brown" "uncommon" + "gs_mac10_snake" "legendary" + "hy_phoenix_tags_lilac" "common" + "am_phoenix_tags_blue" "uncommon" + "hy_phoenix_tags_red" "rare" + "sp_phoenix_tags_purple" "mythical" + "hy_tigers_tan" "common" + "am_tigers_brown" "rare" + "hy_p250_tiger" "rare" + "cu_money_glock" "rare" + "am_tigers_blue" "mythical" + } + "paint_kits" + { + "1000" { - "name" "eslkatowice2015_lgb_gold" - "item_name" "#StickerKit_eslkatowice2015_lgb_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_lgb_gold" - "sticker_material" "eslkatowice2015/lgb_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "9" + "name" "cu_jaguar_p90" + "description_string" "#PaintKit_cu_jaguar_p90" + "description_tag" "#PaintKit_cu_jaguar_p90_Tag" + "style" "7" + "pattern" "jaguar_leather_p90" + "use_normal" "1" + "normal" "jaguar_leather_p90_normal" + "pattern_scale" "1.000000" + "phongexponent" "0" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "322" + "1001" { - "name" "eslkatowice2015_navi" - "item_name" "#StickerKit_eslkatowice2015_navi" - "description_string" "#StickerKit_desc_eslkatowice2015_navi" - "sticker_material" "eslkatowice2015/navi" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "12" + "name" "cu_m4a1_snake" + "description_string" "#PaintKit_cu_m4a1_snake" + "description_tag" "#PaintKit_cu_m4a1_snake_Tag" + "style" "7" + "pattern" "snake_m4a1s" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongintensity" "40" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "323" + "1018" { - "name" "eslkatowice2015_navi_holo" - "item_name" "#StickerKit_eslkatowice2015_navi_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_navi_holo" - "sticker_material" "eslkatowice2015/navi_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "12" + "name" "cu_ak_jaguar" + "description_string" "#PaintKit_cu_ak_jaguar" + "description_tag" "#PaintKit_cu_ak_jaguar_Tag" + "style" "7" + "pattern" "jaguar_ak47" + "use_normal" "1" + "normal" "jaguar_ak47_normal" + "pattern_scale" "1.000000" + "phongexponent" "60" + "phongintensity" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "324" + "1019" { - "name" "eslkatowice2015_navi_foil" - "item_name" "#StickerKit_eslkatowice2015_navi_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_navi_foil" - "sticker_material" "eslkatowice2015/navi_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "12" + "name" "am_black_panther" + "description_string" "#PaintKit_am_black_panther" + "description_tag" "#PaintKit_am_black_panther_Tag" + "style" "5" + "pattern" "jaguar_print" + "color0" "10 10 10" + "color1" "21 19 17" + "color2" "16 15 14" + "color3" "18 16 15" + "pattern_scale" "4.750000" + "phongexponent" "125" + "phongalbedoboost" "90" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "325" + "1020" { - "name" "eslkatowice2015_navi_gold" - "item_name" "#StickerKit_eslkatowice2015_navi_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_navi_gold" - "sticker_material" "eslkatowice2015/navi_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "12" + "name" "aa_ancient_brown" + "description_string" "#PaintKit_aa_ancient_brown" + "description_tag" "#PaintKit_aa_ancient_brown_Tag" + "style" "6" + "pattern" "ancient_pattern" + "color0" "51 45 20" + "color1" "37 45 43" + "color2" "86 56 37" + "color3" "27 27 27" + "pattern_scale" "1.800000" + "phongexponent" "32" + "phongalbedoboost" "-1" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "50.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "326" + "1021" { - "name" "eslkatowice2015_ninjasinpyjamas" - "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas" - "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas" - "sticker_material" "eslkatowice2015/ninjasinpyjamas" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "1" + "name" "am_ancient_warm" + "description_string" "#PaintKit_am_ancient_warm" + "description_tag" "#PaintKit_am_ancient_warm_Tag" + "style" "5" + "pattern" "ancient_tiles" + "color0" "113 116 97" + "color1" "183 45 45" + "color2" "198 194 149" + "color3" "32 32 28" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongalbedoboost" "8" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + } + "1022" + { + "name" "aa_ruins_green" + "description_string" "#PaintKit_aa_ruins_green" + "description_tag" "#PaintKit_aa_ruins_green_Tag" + "style" "6" + "pattern" "ancient_ruins" + "color0" "79 73 55" + "color1" "89 99 49" + "color2" "131 131 53" + "color3" "27 22 22" + "pattern_scale" "1.800000" + "phongexponent" "32" + "phongalbedoboost" "-1" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "327" + "1023" { - "name" "eslkatowice2015_ninjasinpyjamas_holo" - "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_holo" - "sticker_material" "eslkatowice2015/ninjasinpyjamas_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "1" + "name" "hy_drywood_green" + "description_string" "#PaintKit_hy_drywood_green" + "description_tag" "#PaintKit_hy_drywood_green_Tag" + "style" "2" + "pattern" "dry_wood" + "color0" "87 123 35" + "color1" "38 55 15" + "color2" "102 108 72" + "color3" "77 78 56" + "pattern_scale" "3.000000" + "phongexponent" "32" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "328" + "1024" { - "name" "eslkatowice2015_ninjasinpyjamas_foil" - "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_foil" - "sticker_material" "eslkatowice2015/ninjasinpyjamas_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "1" + "name" "hy_ancient_tiles_peach" + "description_string" "#PaintKit_hy_ancient_tiles_peach" + "description_tag" "#PaintKit_hy_ancient_tiles_peach_Tag" + "style" "2" + "pattern" "ancient_tiles" + "color0" "139 133 112" + "color1" "203 142 98" + "color2" "81 84 68" + "color3" "35 37 31" + "pattern_scale" "3.800000" + "phongexponent" "32" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "329" + "1025" { - "name" "eslkatowice2015_ninjasinpyjamas_gold" - "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_gold" - "sticker_material" "eslkatowice2015/ninjasinpyjamas_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "1" + "name" "am_gold_brick" + "description_string" "#PaintKit_am_gold_brick" + "description_tag" "#PaintKit_am_gold_brick_Tag" + "style" "5" + "pattern" "noise" + "color0" "135 97 15" + "color1" "161 152 94" + "color2" "159 152 76" + "color3" "97 79 17" + "pattern_scale" "8.000000" + "phongexponent" "32" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "330" + "1031" { - "name" "eslkatowice2015_pentasports" - "item_name" "#StickerKit_eslkatowice2015_pentasports" - "description_string" "#StickerKit_desc_eslkatowice2015_pentasports" - "sticker_material" "eslkatowice2015/pentasports" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "39" + "name" "sp_ancient_bright" + "description_string" "#PaintKit_sp_ancient_bright" + "description_tag" "#PaintKit_sp_ancient_bright_Tag" + "style" "3" + "pattern" "ancient_pattern" + "color0" "104 129 122" + "color1" "183 45 45" + "color2" "178 164 68" + "color3" "32 32 28" + "pattern_scale" "2.600000" + "phongexponent" "32" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.450000" } - "331" + "1032" { - "name" "eslkatowice2015_pentasports_holo" - "item_name" "#StickerKit_eslkatowice2015_pentasports_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_pentasports_holo" - "sticker_material" "eslkatowice2015/pentasports_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "39" + "name" "hy_ruins_red" + "description_string" "#PaintKit_hy_ruins_red" + "description_tag" "#PaintKit_hy_ruins_red_Tag" + "style" "2" + "pattern" "ancient_ruins" + "color0" "139 133 112" + "color1" "122 127 38" + "color2" "174 63 57" + "color3" "24 25 5" + "pattern_scale" "3.800000" + "phongexponent" "32" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "332" + "1033" { - "name" "eslkatowice2015_pentasports_foil" - "item_name" "#StickerKit_eslkatowice2015_pentasports_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_pentasports_foil" - "sticker_material" "eslkatowice2015/pentasports_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "39" + "name" "am_jade" + "description_string" "#PaintKit_am_jade" + "description_tag" "#PaintKit_am_jade_Tag" + "style" "5" + "pattern" "smoke2" + "color0" "36 71 28" + "color1" "119 149 49" + "color2" "19 49 20" + "color3" "23 85 68" + "pattern_scale" "1.600000" + "phongexponent" "40" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.200000" } - "333" + "1034" { - "name" "eslkatowice2015_pentasports_gold" - "item_name" "#StickerKit_eslkatowice2015_pentasports_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_pentasports_gold" - "sticker_material" "eslkatowice2015/pentasports_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "39" + "name" "am_ancient_wine" + "description_string" "#PaintKit_am_ancient_wine" + "description_tag" "#PaintKit_am_ancient_wine_Tag" + "style" "5" + "pattern" "ancient_pattern" + "color0" "70 90 94" + "color1" "134 110 64" + "color2" "78 37 19" + "color3" "39 11 11" + "pattern_scale" "2.700000" + "phongexponent" "32" + "phongalbedoboost" "-1" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "90.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.760000" } - "334" + } + "client_loot_lists" + { + "set_op10_ancient_common" { - "name" "eslkatowice2015_teamenvyus" - "item_name" "#StickerKit_eslkatowice2015_teamenvyus" - "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus" - "sticker_material" "eslkatowice2015/teamenvyus" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "46" + "[aa_ancient_brown]weapon_p90" "1" + "[aa_ruins_green]weapon_sg556" "1" + "[am_army_shine]weapon_nova" "1" + "[sp_tape_short_jungle]weapon_ssg08" "1" + "[so_night]weapon_revolver" "1" } - "335" + "set_op10_ancient_uncommon" { - "name" "eslkatowice2015_teamenvyus_holo" - "item_name" "#StickerKit_eslkatowice2015_teamenvyus_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus_holo" - "sticker_material" "eslkatowice2015/teamenvyus_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "46" + "[am_black_panther]weapon_hkp2000" "1" + "[hy_drywood_green]weapon_mp7" "1" + "[am_ancient_wine]weapon_g3sg1" "1" + "[an_silver]weapon_cz75a" "1" } - "336" + "set_op10_ancient_rare" { - "name" "eslkatowice2015_teamenvyus_foil" - "item_name" "#StickerKit_eslkatowice2015_teamenvyus_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus_foil" - "sticker_material" "eslkatowice2015/teamenvyus_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "46" + "[hy_ancient_tiles_peach]weapon_tec9" "1" + "[am_jade]weapon_aug" "1" + "[hy_ruins_red]weapon_galilar" "1" + "[am_zebra_dark]weapon_famas" "1" } - "337" + "set_op10_ancient_mythical" { - "name" "eslkatowice2015_teamenvyus_gold" - "item_name" "#StickerKit_eslkatowice2015_teamenvyus_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_teamenvyus_gold" - "sticker_material" "eslkatowice2015/teamenvyus_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "46" + "[am_ancient_warm]weapon_xm1014" "1" + "[am_gold_brick]weapon_mac10" "1" + "[sp_ancient_bright]weapon_usp_silencer" "1" } - "338" + "set_op10_ancient_legendary" { - "name" "eslkatowice2015_teamsolomid" - "item_name" "#StickerKit_eslkatowice2015_teamsolomid" - "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid" - "sticker_material" "eslkatowice2015/teamsolomid" - "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "51" + "[cu_jaguar_p90]weapon_p90" "1" + "[cu_ak_jaguar]weapon_ak47" "1" } - "339" + "set_op10_ancient_ancient" { - "name" "eslkatowice2015_teamsolomid_holo" - "item_name" "#StickerKit_eslkatowice2015_teamsolomid_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid_holo" - "sticker_material" "eslkatowice2015/teamsolomid_holo" - "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "51" + "[cu_m4a1_snake]weapon_m4a1_silencer" "1" } - "340" + "set_op10_ancient" { - "name" "eslkatowice2015_teamsolomid_foil" - "item_name" "#StickerKit_eslkatowice2015_teamsolomid_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid_foil" - "sticker_material" "eslkatowice2015/teamsolomid_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "51" + "set_op10_ancient_common" "1" + "set_op10_ancient_uncommon" "1" + "set_op10_ancient_rare" "1" + "set_op10_ancient_mythical" "1" + "set_op10_ancient_legendary" "1" + "set_op10_ancient_ancient" "1" } - "341" + } + "item_sets" + { + "set_op10_ancient" { - "name" "eslkatowice2015_teamsolomid_gold" - "item_name" "#StickerKit_eslkatowice2015_teamsolomid_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_teamsolomid_gold" - "sticker_material" "eslkatowice2015/teamsolomid_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "51" + "name" "#CSGO_set_op10_ancient" + "set_description" "#CSGO_set_op10_ancient_desc" + "is_collection" "1" + "items" + { + "[aa_ancient_brown]weapon_p90" "1" + "[aa_ruins_green]weapon_sg556" "1" + "[am_army_shine]weapon_nova" "1" + "[sp_tape_short_jungle]weapon_ssg08" "1" + "[so_night]weapon_revolver" "1" + "[am_black_panther]weapon_hkp2000" "1" + "[hy_drywood_green]weapon_mp7" "1" + "[am_ancient_wine]weapon_g3sg1" "1" + "[an_silver]weapon_cz75a" "1" + "[hy_ancient_tiles_peach]weapon_tec9" "1" + "[am_jade]weapon_aug" "1" + "[hy_ruins_red]weapon_galilar" "1" + "[am_zebra_dark]weapon_famas" "1" + "[am_ancient_warm]weapon_xm1014" "1" + "[am_gold_brick]weapon_mac10" "1" + "[sp_ancient_bright]weapon_usp_silencer" "1" + "[cu_jaguar_p90]weapon_p90" "1" + "[cu_ak_jaguar]weapon_ak47" "1" + "[cu_m4a1_snake]weapon_m4a1_silencer" "1" + } } - "342" + } + "paint_kits_rarity" + { + "cu_ak_jaguar" "mythical" + "aa_ancient_brown" "common" + "am_ancient_warm" "mythical" + "aa_ruins_green" "common" + "am_black_panther" "common" + "am_ancient_wine" "uncommon" + "hy_drywood_green" "uncommon" + "cu_m4a1_snake" "legendary" + "hy_ancient_tiles_peach" "rare" + "hy_ruins_red" "rare" + "sp_ancient_bright" "rare" + "am_jade" "rare" + "am_gold_brick" "mythical" + "cu_jaguar_p90" "legendary" + } + "sticker_kits" + { + "4649" { - "name" "eslkatowice2015_titan" - "item_name" "#StickerKit_eslkatowice2015_titan" - "description_string" "#StickerKit_desc_eslkatowice2015_titan" - "sticker_material" "eslkatowice2015/titan" + "name" "recoil_ak47" + "item_name" "#StickerKit_recoil_ak47" + "description_string" "#StickerKit_desc_recoil_ak47" + "sticker_material" "recoil/ak47_recoil" "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "27" } - "343" + "4650" { - "name" "eslkatowice2015_titan_holo" - "item_name" "#StickerKit_eslkatowice2015_titan_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_titan_holo" - "sticker_material" "eslkatowice2015/titan_holo" + "name" "recoil_ak47_gold" + "item_name" "#StickerKit_recoil_ak47_gold" + "description_string" "#StickerKit_desc_recoil_ak47_gold" + "sticker_material" "recoil/ak47_recoil_gold" "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "27" - } - "344" - { - "name" "eslkatowice2015_titan_foil" - "item_name" "#StickerKit_eslkatowice2015_titan_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_titan_foil" - "sticker_material" "eslkatowice2015/titan_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "27" - } - "345" - { - "name" "eslkatowice2015_titan_gold" - "item_name" "#StickerKit_eslkatowice2015_titan_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_titan_gold" - "sticker_material" "eslkatowice2015/titan_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "27" } - "346" + "4651" { - "name" "eslkatowice2015_virtuspro" - "item_name" "#StickerKit_eslkatowice2015_virtuspro" - "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro" - "sticker_material" "eslkatowice2015/virtuspro" + "name" "recoil_aug" + "item_name" "#StickerKit_recoil_aug" + "description_string" "#StickerKit_desc_recoil_aug" + "sticker_material" "recoil/aug_recoil" "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "31" } - "347" + "4652" { - "name" "eslkatowice2015_virtuspro_holo" - "item_name" "#StickerKit_eslkatowice2015_virtuspro_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro_holo" - "sticker_material" "eslkatowice2015/virtuspro_holo" + "name" "recoil_aug_gold" + "item_name" "#StickerKit_recoil_aug_gold" + "description_string" "#StickerKit_desc_recoil_aug_gold" + "sticker_material" "recoil/aug_recoil_gold" "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "31" } - "348" + "4653" { - "name" "eslkatowice2015_virtuspro_foil" - "item_name" "#StickerKit_eslkatowice2015_virtuspro_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro_foil" - "sticker_material" "eslkatowice2015/virtuspro_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "31" + "name" "recoil_awp" + "item_name" "#StickerKit_recoil_awp" + "description_string" "#StickerKit_desc_recoil_awp" + "sticker_material" "recoil/awp_recoil" + "item_rarity" "rare" } - "349" + "4654" { - "name" "eslkatowice2015_virtuspro_gold" - "item_name" "#StickerKit_eslkatowice2015_virtuspro_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_virtuspro_gold" - "sticker_material" "eslkatowice2015/virtuspro_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "31" + "name" "recoil_awp_gold" + "item_name" "#StickerKit_recoil_awp_gold" + "description_string" "#StickerKit_desc_recoil_awp_gold" + "sticker_material" "recoil/awp_recoil_gold" + "item_rarity" "mythical" } - "350" + "4655" { - "name" "eslkatowice2015_voxeminor" - "item_name" "#StickerKit_eslkatowice2015_voxeminor" - "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor" - "sticker_material" "eslkatowice2015/voxeminor" + "name" "recoil_bizon" + "item_name" "#StickerKit_recoil_bizon" + "description_string" "#StickerKit_desc_recoil_bizon" + "sticker_material" "recoil/bizon_recoil" "item_rarity" "rare" - "tournament_event_id" "6" - "tournament_team_id" "32" } - "351" + "4656" { - "name" "eslkatowice2015_voxeminor_holo" - "item_name" "#StickerKit_eslkatowice2015_voxeminor_holo" - "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor_holo" - "sticker_material" "eslkatowice2015/voxeminor_holo" + "name" "recoil_bizon_gold" + "item_name" "#StickerKit_recoil_bizon_gold" + "description_string" "#StickerKit_desc_recoil_bizon_gold" + "sticker_material" "recoil/bizon_recoil_gold" "item_rarity" "mythical" - "tournament_event_id" "6" - "tournament_team_id" "32" } - "352" + "4657" { - "name" "eslkatowice2015_voxeminor_foil" - "item_name" "#StickerKit_eslkatowice2015_voxeminor_foil" - "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor_foil" - "sticker_material" "eslkatowice2015/voxeminor_foil" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "32" + "name" "recoil_cz" + "item_name" "#StickerKit_recoil_cz" + "description_string" "#StickerKit_desc_recoil_cz" + "sticker_material" "recoil/cz_recoil" + "item_rarity" "rare" } - "353" + "4658" { - "name" "eslkatowice2015_voxeminor_gold" - "item_name" "#StickerKit_eslkatowice2015_voxeminor_gold" - "description_string" "#StickerKit_desc_eslkatowice2015_voxeminor_gold" - "sticker_material" "eslkatowice2015/voxeminor_gold" - "item_rarity" "legendary" - "tournament_event_id" "6" - "tournament_team_id" "32" + "name" "recoil_cz_gold" + "item_name" "#StickerKit_recoil_cz_gold" + "description_string" "#StickerKit_desc_recoil_cz_gold" + "sticker_material" "recoil/cz_recoil_gold" + "item_rarity" "mythical" } - "354" + "4659" { - "name" "eslkatowice2015_esl_a" - "item_name" "#StickerKit_eslkatowice2015_esl_a" - "description_string" "#StickerKit_desc_eslkatowice2015_esl_a" - "sticker_material" "eslkatowice2015/esl_a" + "name" "recoil_famas" + "item_name" "#StickerKit_recoil_famas" + "description_string" "#StickerKit_desc_recoil_famas" + "sticker_material" "recoil/famas_recoil" "item_rarity" "rare" - "tournament_event_id" "6" } - "355" + "4660" { - "name" "enfu_chicken" - "item_name" "#StickerKit_enfu_chicken" - "description_string" "#StickerKit_desc_enfu_chicken" - "sticker_material" "enfu_capsule/chicken" - "item_rarity" "rare" + "name" "recoil_famas_gold" + "item_name" "#StickerKit_recoil_famas_gold" + "description_string" "#StickerKit_desc_recoil_famas_gold" + "sticker_material" "recoil/famas_recoil_gold" + "item_rarity" "mythical" } - "356" + "4661" { - "name" "enfu_bombsquad" - "item_name" "#StickerKit_enfu_bombsquad" - "description_string" "#StickerKit_desc_enfu_bombsquad" - "sticker_material" "enfu_capsule/enfu_bombsquad" + "name" "recoil_galil" + "item_name" "#StickerKit_recoil_galil" + "description_string" "#StickerKit_desc_recoil_galil" + "sticker_material" "recoil/galil_recoil" "item_rarity" "rare" } - "357" - { - "name" "enfu_bombsquad_foil" - "item_name" "#StickerKit_enfu_bombsquad_foil" - "description_string" "#StickerKit_desc_enfu_bombsquad_foil" - "sticker_material" "enfu_capsule/enfu_bombsquad_foil" - "item_rarity" "legendary" - } - "358" + "4662" { - "name" "enfu_guru" - "item_name" "#StickerKit_enfu_guru" - "description_string" "#StickerKit_desc_enfu_guru" - "sticker_material" "enfu_capsule/guru" - "item_rarity" "rare" + "name" "recoil_galil_gold" + "item_name" "#StickerKit_recoil_galil_gold" + "description_string" "#StickerKit_desc_recoil_galil_gold" + "sticker_material" "recoil/galil_recoil_gold" + "item_rarity" "mythical" } - "359" + "4663" { - "name" "enfu_ninja" - "item_name" "#StickerKit_enfu_ninja" - "description_string" "#StickerKit_desc_enfu_ninja" - "sticker_material" "enfu_capsule/ninja" + "name" "recoil_m4a1" + "item_name" "#StickerKit_recoil_m4a1" + "description_string" "#StickerKit_desc_recoil_m4a1" + "sticker_material" "recoil/m4a1_recoil" "item_rarity" "rare" } - "360" + "4664" { - "name" "enfu_ninja_foil" - "item_name" "#StickerKit_enfu_ninja_foil" - "description_string" "#StickerKit_desc_enfu_ninja_foil" - "sticker_material" "enfu_capsule/ninja_foil" - "item_rarity" "legendary" + "name" "recoil_m4a1_gold" + "item_name" "#StickerKit_recoil_m4a1_gold" + "description_string" "#StickerKit_desc_recoil_m4a1_gold" + "sticker_material" "recoil/m4a1_recoil_gold" + "item_rarity" "mythical" } - "361" + "4665" { - "name" "enfu_samurai" - "item_name" "#StickerKit_enfu_samurai" - "description_string" "#StickerKit_desc_enfu_samurai" - "sticker_material" "enfu_capsule/samurai" + "name" "recoil_m4a4" + "item_name" "#StickerKit_recoil_m4a4" + "description_string" "#StickerKit_desc_recoil_m4a4" + "sticker_material" "recoil/m4a4_recoil" "item_rarity" "rare" } - "362" + "4666" { - "name" "enfu_skullfulilboney" - "item_name" "#StickerKit_enfu_skullfulilboney" - "description_string" "#StickerKit_desc_enfu_skullfulilboney" - "sticker_material" "enfu_capsule/skullfulilboney" - "item_rarity" "rare" + "name" "recoil_m4a4_gold" + "item_name" "#StickerKit_recoil_m4a4_gold" + "description_string" "#StickerKit_desc_recoil_m4a4_gold" + "sticker_material" "recoil/m4a4_recoil_gold" + "item_rarity" "mythical" } - "363" + "4667" { - "name" "enfu_skullfuskulltorgeist" - "item_name" "#StickerKit_enfu_skullfuskulltorgeist" - "description_string" "#StickerKit_desc_enfu_skullfuskulltorgeist" - "sticker_material" "enfu_capsule/skullfuskulltorgeist" + "name" "recoil_mac10" + "item_name" "#StickerKit_recoil_mac10" + "description_string" "#StickerKit_desc_recoil_mac10" + "sticker_material" "recoil/mac10_recoil" "item_rarity" "rare" } - "364" + "4668" { - "name" "enfu_skullfutrooop" - "item_name" "#StickerKit_enfu_skullfutrooop" - "description_string" "#StickerKit_desc_enfu_skullfutrooop" - "sticker_material" "enfu_capsule/skullfutrooop" - "item_rarity" "rare" + "name" "recoil_mac10_gold" + "item_name" "#StickerKit_recoil_mac10_gold" + "description_string" "#StickerKit_desc_recoil_mac10_gold" + "sticker_material" "recoil/mac10_recoil_gold" + "item_rarity" "mythical" } - "365" + "4669" { - "name" "enfu_soldier" - "item_name" "#StickerKit_enfu_soldier" - "description_string" "#StickerKit_desc_enfu_soldier" - "sticker_material" "enfu_capsule/soldier" + "name" "recoil_mp7" + "item_name" "#StickerKit_recoil_mp7" + "description_string" "#StickerKit_desc_recoil_mp7" + "sticker_material" "recoil/mp7_recoil" "item_rarity" "rare" } - "366" + "4670" { - "name" "enfu_spartan" - "item_name" "#StickerKit_enfu_spartan" - "description_string" "#StickerKit_desc_enfu_spartan" - "sticker_material" "enfu_capsule/spartan" - "item_rarity" "rare" + "name" "recoil_mp7_gold" + "item_name" "#StickerKit_recoil_mp7_gold" + "description_string" "#StickerKit_desc_recoil_mp7_gold" + "sticker_material" "recoil/mp7_recoil_gold" + "item_rarity" "mythical" } - "367" + "4671" { - "name" "enfu_unicorn" - "item_name" "#StickerKit_enfu_unicorn" - "description_string" "#StickerKit_desc_enfu_unicorn" - "sticker_material" "enfu_capsule/unicorn" + "name" "recoil_mp9" + "item_name" "#StickerKit_recoil_mp9" + "description_string" "#StickerKit_desc_recoil_mp9" + "sticker_material" "recoil/mp9_recoil" "item_rarity" "rare" } - "368" + "4672" { - "name" "enfu_unicorn_holo" - "item_name" "#StickerKit_enfu_unicorn_holo" - "description_string" "#StickerKit_desc_enfu_unicorn_holo" - "sticker_material" "enfu_capsule/unicorn_holo" + "name" "recoil_mp9_gold" + "item_name" "#StickerKit_recoil_mp9_gold" + "description_string" "#StickerKit_desc_recoil_mp9_gold" + "sticker_material" "recoil/mp9_recoil_gold" "item_rarity" "mythical" } - "369" + "4673" { - "name" "enfu_zombie" - "item_name" "#StickerKit_enfu_zombie" - "description_string" "#StickerKit_desc_enfu_zombie" - "sticker_material" "enfu_capsule/zombie" + "name" "recoil_p90" + "item_name" "#StickerKit_recoil_p90" + "description_string" "#StickerKit_desc_recoil_p90" + "sticker_material" "recoil/p90_recoil" "item_rarity" "rare" } - "370" + "4674" { - "name" "awp_country" - "item_name" "#StickerKit_comm02_awp_country" - "description_string" "#StickerKit_desc_comm02_awp_country" - "sticker_material" "community02/awp_country" - "item_rarity" "rare" + "name" "recoil_p90_gold" + "item_name" "#StickerKit_recoil_p90_gold" + "description_string" "#StickerKit_desc_recoil_p90_gold" + "sticker_material" "recoil/p90_recoil_gold" + "item_rarity" "mythical" } - "371" + "4675" { - "name" "chi_bomb" - "item_name" "#StickerKit_comm02_chi_bomb" - "description_string" "#StickerKit_desc_comm02_chi_bomb" - "sticker_material" "community02/chi_bomb" + "name" "recoil_sg553" + "item_name" "#StickerKit_recoil_sg553" + "description_string" "#StickerKit_desc_recoil_sg553" + "sticker_material" "recoil/sg553_recoil" "item_rarity" "rare" } - "372" + "4676" { - "name" "fox" - "item_name" "#StickerKit_comm02_fox" - "description_string" "#StickerKit_desc_comm02_fox" - "sticker_material" "community02/fox" - "item_rarity" "rare" + "name" "recoil_sg553_gold" + "item_name" "#StickerKit_recoil_sg553_gold" + "description_string" "#StickerKit_desc_recoil_sg553_gold" + "sticker_material" "recoil/sg553_recoil_gold" + "item_rarity" "mythical" } - "373" + "4677" { - "name" "knifeclub" - "item_name" "#StickerKit_comm02_knifeclub" - "description_string" "#StickerKit_desc_comm02_knifeclub" - "sticker_material" "community02/knifeclub" + "name" "recoil_ump" + "item_name" "#StickerKit_recoil_ump" + "description_string" "#StickerKit_desc_recoil_ump" + "sticker_material" "recoil/ump_recoil" "item_rarity" "rare" } - "374" + "4678" { - "name" "cs_on_the_mind" - "item_name" "#StickerKit_comm02_cs_on_the_mind" - "description_string" "#StickerKit_desc_comm02_cs_on_the_mind" - "sticker_material" "community02/cs_on_the_mind" - "item_rarity" "rare" + "name" "recoil_ump_gold" + "item_name" "#StickerKit_recoil_ump_gold" + "description_string" "#StickerKit_desc_recoil_ump_gold" + "sticker_material" "recoil/ump_recoil_gold" + "item_rarity" "mythical" } - "375" + "4679" { - "name" "ninja_defuse" - "item_name" "#StickerKit_comm02_ninja_defuse" - "description_string" "#StickerKit_desc_comm02_ninja_defuse" - "sticker_material" "community02/ninja_defuse" + "name" "recoil_xm1014" + "item_name" "#StickerKit_recoil_xm1014" + "description_string" "#StickerKit_desc_recoil_xm1014" + "sticker_material" "recoil/xm1014_recoil" "item_rarity" "rare" } - "376" + "4680" { - "name" "pros_dont_fake" - "item_name" "#StickerKit_comm02_pros_dont_fake" - "description_string" "#StickerKit_desc_comm02_pros_dont_fake" - "sticker_material" "community02/pros_dont_fake" - "item_rarity" "rare" + "name" "recoil_xm1014_gold" + "item_name" "#StickerKit_recoil_xm1014_gold" + "description_string" "#StickerKit_desc_recoil_xm1014_gold" + "sticker_material" "recoil/xm1014_recoil_gold" + "item_rarity" "mythical" } - "377" - { - "name" "kawaiikiller_t" - "item_name" "#StickerKit_comm02_kawaiikiller_t" - "description_string" "#StickerKit_desc_comm02_kawaiikiller_t" - "sticker_material" "community02/kawaiikiller_t" - "item_rarity" "rare" + } + "items" + { + "4719" + { + "item_name" "#CSGO_crate_sticker_pack_recoil" + "name" "crate_sticker_pack_recoil" + "item_description" "#CSGO_crate_sticker_pack_recoil_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_recoil_capsule" + "first_sale_date" "2019/10/1" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "309" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_recoil_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_recoil" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "309" "crate_sticker_pack_recoil_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_recoil_rare" + { + "[recoil_ak47]sticker" "1" + "[recoil_aug]sticker" "1" + "[recoil_awp]sticker" "1" + "[recoil_bizon]sticker" "1" + "[recoil_cz]sticker" "1" + "[recoil_famas]sticker" "1" + "[recoil_galil]sticker" "1" + "[recoil_m4a1]sticker" "1" + "[recoil_m4a4]sticker" "1" + "[recoil_mac10]sticker" "1" + "[recoil_mp7]sticker" "1" + "[recoil_mp9]sticker" "1" + "[recoil_p90]sticker" "1" + "[recoil_sg553]sticker" "1" + "[recoil_ump]sticker" "1" + "[recoil_xm1014]sticker" "1" + } + "crate_sticker_pack_recoil_mythical" + { + "[recoil_ak47_gold]sticker" "1" + "[recoil_aug_gold]sticker" "1" + "[recoil_awp_gold]sticker" "1" + "[recoil_bizon_gold]sticker" "1" + "[recoil_cz_gold]sticker" "1" + "[recoil_famas_gold]sticker" "1" + "[recoil_galil_gold]sticker" "1" + "[recoil_m4a1_gold]sticker" "1" + "[recoil_m4a4_gold]sticker" "1" + "[recoil_mac10_gold]sticker" "1" + "[recoil_mp7_gold]sticker" "1" + "[recoil_mp9_gold]sticker" "1" + "[recoil_p90_gold]sticker" "1" + "[recoil_sg553_gold]sticker" "1" + "[recoil_ump_gold]sticker" "1" + "[recoil_xm1014_gold]sticker" "1" + } + "crate_sticker_pack_recoil_lootlist" + { + "crate_sticker_pack_recoil_rare" "1" + "crate_sticker_pack_recoil_mythical" "1" } - "378" + } + "sticker_kits" + { + "4797" { - "name" "baackstabber" - "item_name" "#StickerKit_comm02_baackstabber" - "description_string" "#StickerKit_desc_comm02_baackstabber" - "sticker_material" "community02/baackstabber" + "name" "poorly_drawn_ava" + "item_name" "#StickerKit_poorly_drawn_ava" + "description_string" "#StickerKit_desc_poorly_drawn_ava" + "sticker_material" "poorly_drawn/ava" "item_rarity" "rare" } - "379" + "4798" { - "name" "delicious_tears" - "item_name" "#StickerKit_comm02_delicious_tears" - "description_string" "#StickerKit_desc_comm02_delicious_tears" - "sticker_material" "community02/delicious_tears" + "name" "poorly_drawn_balkan" + "item_name" "#StickerKit_poorly_drawn_balkan" + "description_string" "#StickerKit_desc_poorly_drawn_balkan" + "sticker_material" "poorly_drawn/balkan" "item_rarity" "rare" } - "380" + "4799" { - "name" "eslcologne2015_signature_pronax" - "item_name" "#StickerKit_eslcologne2015_signature_pronax" - "description_string" "#StickerKit_desc_eslcologne2015_signature_pronax" - "sticker_material" "cologne2015/sig_pronax" + "name" "poorly_drawn_bloody_darryl" + "item_name" "#StickerKit_poorly_drawn_bloody_darryl" + "description_string" "#StickerKit_desc_poorly_drawn_bloody_darryl" + "sticker_material" "poorly_drawn/bloody_darryl" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "9419182" - } - "381" - { - "name" "eslcologne2015_signature_pronax_foil" - "item_name" "#StickerKit_eslcologne2015_signature_pronax_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_pronax_foil" - "sticker_material" "cologne2015/sig_pronax_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "9419182" - } - "382" - { - "name" "eslcologne2015_signature_pronax_gold" - "item_name" "#StickerKit_eslcologne2015_signature_pronax_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_pronax_gold" - "sticker_material" "cologne2015/sig_pronax_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "9419182" } - "383" + "4800" { - "name" "eslcologne2015_signature_flusha" - "item_name" "#StickerKit_eslcologne2015_signature_flusha" - "description_string" "#StickerKit_desc_eslcologne2015_signature_flusha" - "sticker_material" "cologne2015/sig_flusha" + "name" "poorly_drawn_chicken" + "item_name" "#StickerKit_poorly_drawn_chicken" + "description_string" "#StickerKit_desc_poorly_drawn_chicken" + "sticker_material" "poorly_drawn/chicken" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "31082355" - } - "384" - { - "name" "eslcologne2015_signature_flusha_foil" - "item_name" "#StickerKit_eslcologne2015_signature_flusha_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_flusha_foil" - "sticker_material" "cologne2015/sig_flusha_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "31082355" } - "385" + "4801" { - "name" "eslcologne2015_signature_flusha_gold" - "item_name" "#StickerKit_eslcologne2015_signature_flusha_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_flusha_gold" - "sticker_material" "cologne2015/sig_flusha_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "31082355" + "name" "poorly_drawn_fbi" + "item_name" "#StickerKit_poorly_drawn_fbi" + "description_string" "#StickerKit_desc_poorly_drawn_fbi" + "sticker_material" "poorly_drawn/fbi" + "item_rarity" "rare" } - "386" + "4802" { - "name" "eslcologne2015_signature_jw" - "item_name" "#StickerKit_eslcologne2015_signature_jw" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jw" - "sticker_material" "cologne2015/sig_jw" + "name" "poorly_drawn_idf" + "item_name" "#StickerKit_poorly_drawn_idf" + "description_string" "#StickerKit_desc_poorly_drawn_idf" + "sticker_material" "poorly_drawn/idf" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "71288472" } - "387" + "4803" { - "name" "eslcologne2015_signature_jw_foil" - "item_name" "#StickerKit_eslcologne2015_signature_jw_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jw_foil" - "sticker_material" "cologne2015/sig_jw_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "71288472" + "name" "poorly_drawn_leet_crew" + "item_name" "#StickerKit_poorly_drawn_leet_crew" + "description_string" "#StickerKit_desc_poorly_drawn_leet_crew" + "sticker_material" "poorly_drawn/leet_crew" + "item_rarity" "rare" } - "388" + "4804" { - "name" "eslcologne2015_signature_jw_gold" - "item_name" "#StickerKit_eslcologne2015_signature_jw_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jw_gold" - "sticker_material" "cologne2015/sig_jw_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "71288472" + "name" "poorly_drawn_number_k" + "item_name" "#StickerKit_poorly_drawn_number_k" + "description_string" "#StickerKit_desc_poorly_drawn_number_k" + "sticker_material" "poorly_drawn/number_k" + "item_rarity" "rare" } - "389" + "4805" { - "name" "eslcologne2015_signature_krimz" - "item_name" "#StickerKit_eslcologne2015_signature_krimz" - "description_string" "#StickerKit_desc_eslcologne2015_signature_krimz" - "sticker_material" "cologne2015/sig_krimz" + "name" "poorly_drawn_sas" + "item_name" "#StickerKit_poorly_drawn_sas" + "description_string" "#StickerKit_desc_poorly_drawn_sas" + "sticker_material" "poorly_drawn/sas" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "71385856" } - "390" + "4806" { - "name" "eslcologne2015_signature_krimz_foil" - "item_name" "#StickerKit_eslcologne2015_signature_krimz_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_krimz_foil" - "sticker_material" "cologne2015/sig_krimz_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "71385856" + "name" "poorly_drawn_terrorist" + "item_name" "#StickerKit_poorly_drawn_terrorist" + "description_string" "#StickerKit_desc_poorly_drawn_terrorist" + "sticker_material" "poorly_drawn/terrorist" + "item_rarity" "rare" } - "391" + "4807" { - "name" "eslcologne2015_signature_krimz_gold" - "item_name" "#StickerKit_eslcologne2015_signature_krimz_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_krimz_gold" - "sticker_material" "cologne2015/sig_krimz_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "71385856" + "name" "poorly_drawn_ava_holo" + "item_name" "#StickerKit_poorly_drawn_ava_holo" + "description_string" "#StickerKit_desc_poorly_drawn_ava_holo" + "sticker_material" "poorly_drawn/ava_holo" + "item_rarity" "mythical" } - "392" + "4808" { - "name" "eslcologne2015_signature_olofmeister" - "item_name" "#StickerKit_eslcologne2015_signature_olofmeister" - "description_string" "#StickerKit_desc_eslcologne2015_signature_olofmeister" - "sticker_material" "cologne2015/sig_olofmeister" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "28361465" + "name" "poorly_drawn_balkan_holo" + "item_name" "#StickerKit_poorly_drawn_balkan_holo" + "description_string" "#StickerKit_desc_poorly_drawn_balkan_holo" + "sticker_material" "poorly_drawn/balkan_holo" + "item_rarity" "mythical" } - "393" + "4809" { - "name" "eslcologne2015_signature_olofmeister_foil" - "item_name" "#StickerKit_eslcologne2015_signature_olofmeister_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_olofmeister_foil" - "sticker_material" "cologne2015/sig_olofmeister_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "28361465" + "name" "poorly_drawn_bloody_darryl_holo" + "item_name" "#StickerKit_poorly_drawn_bloody_darryl_holo" + "description_string" "#StickerKit_desc_poorly_drawn_bloody_darryl_holo" + "sticker_material" "poorly_drawn/bloody_darryl_holo" + "item_rarity" "mythical" } - "394" + "4810" { - "name" "eslcologne2015_signature_olofmeister_gold" - "item_name" "#StickerKit_eslcologne2015_signature_olofmeister_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_olofmeister_gold" - "sticker_material" "cologne2015/sig_olofmeister_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" - "tournament_player_id" "28361465" + "name" "poorly_drawn_chicken_holo" + "item_name" "#StickerKit_poorly_drawn_chicken_holo" + "description_string" "#StickerKit_desc_poorly_drawn_chicken_holo" + "sticker_material" "poorly_drawn/chicken_holo" + "item_rarity" "mythical" } - "395" + "4811" { - "name" "eslcologne2015_signature_fallen" - "item_name" "#StickerKit_eslcologne2015_signature_fallen" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fallen" - "sticker_material" "cologne2015/sig_fallen" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "424467" + "name" "poorly_drawn_fbi_holo" + "item_name" "#StickerKit_poorly_drawn_fbi_holo" + "description_string" "#StickerKit_desc_poorly_drawn_fbi_holo" + "sticker_material" "poorly_drawn/fbi_holo" + "item_rarity" "mythical" } - "396" + "4812" { - "name" "eslcologne2015_signature_fallen_foil" - "item_name" "#StickerKit_eslcologne2015_signature_fallen_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fallen_foil" - "sticker_material" "cologne2015/sig_fallen_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "424467" + "name" "poorly_drawn_idf_holo" + "item_name" "#StickerKit_poorly_drawn_idf_holo" + "description_string" "#StickerKit_desc_poorly_drawn_idf_holo" + "sticker_material" "poorly_drawn/idf_holo" + "item_rarity" "mythical" } - "397" + "4813" { - "name" "eslcologne2015_signature_fallen_gold" - "item_name" "#StickerKit_eslcologne2015_signature_fallen_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fallen_gold" - "sticker_material" "cologne2015/sig_fallen_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "424467" + "name" "poorly_drawn_leet_crew_holo" + "item_name" "#StickerKit_poorly_drawn_leet_crew_holo" + "description_string" "#StickerKit_desc_poorly_drawn_leet_crew_holo" + "sticker_material" "poorly_drawn/leet_crew_holo" + "item_rarity" "mythical" } - "398" + "4814" { - "name" "eslcologne2015_signature_steel" - "item_name" "#StickerKit_eslcologne2015_signature_steel" - "description_string" "#StickerKit_desc_eslcologne2015_signature_steel" - "sticker_material" "cologne2015/sig_steel" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "54512474" + "name" "poorly_drawn_number_k_holo" + "item_name" "#StickerKit_poorly_drawn_number_k_holo" + "description_string" "#StickerKit_desc_poorly_drawn_number_k_holo" + "sticker_material" "poorly_drawn/number_k_holo" + "item_rarity" "mythical" } - "399" + "4815" { - "name" "eslcologne2015_signature_steel_foil" - "item_name" "#StickerKit_eslcologne2015_signature_steel_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_steel_foil" - "sticker_material" "cologne2015/sig_steel_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "54512474" + "name" "poorly_drawn_sas_holo" + "item_name" "#StickerKit_poorly_drawn_sas_holo" + "description_string" "#StickerKit_desc_poorly_drawn_sas_holo" + "sticker_material" "poorly_drawn/sas_holo" + "item_rarity" "mythical" } - "400" + "4816" { - "name" "eslcologne2015_signature_steel_gold" - "item_name" "#StickerKit_eslcologne2015_signature_steel_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_steel_gold" - "sticker_material" "cologne2015/sig_steel_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "54512474" + "name" "poorly_drawn_terrorist_holo" + "item_name" "#StickerKit_poorly_drawn_terrorist_holo" + "description_string" "#StickerKit_desc_poorly_drawn_terrorist_holo" + "sticker_material" "poorly_drawn/terrorist_holo" + "item_rarity" "mythical" } - "401" - { - "name" "eslcologne2015_signature_fer" - "item_name" "#StickerKit_eslcologne2015_signature_fer" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fer" - "sticker_material" "cologne2015/sig_fer" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "38921219" + } + "items" + { + "4746" + { + "item_name" "#CSGO_crate_sticker_pack_poorly_drawn_capsule" + "name" "crate_sticker_pack_poorly_drawn" + "item_description" "#CSGO_crate_sticker_pack_poorly_drawn_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_poorly_drawn_capsule" + "first_sale_date" "2021/02/14" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "314" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_poorly_drawn_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_poorly_drawn_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "402" - { - "name" "eslcologne2015_signature_fer_foil" - "item_name" "#StickerKit_eslcologne2015_signature_fer_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fer_foil" - "sticker_material" "cologne2015/sig_fer_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "38921219" + } + "revolving_loot_lists" + { + "314" "crate_sticker_pack_poorly_drawn_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_poorly_drawn_rare" + { + "[poorly_drawn_ava]sticker" "1" + "[poorly_drawn_balkan]sticker" "1" + "[poorly_drawn_bloody_darryl]sticker" "1" + "[poorly_drawn_chicken]sticker" "1" + "[poorly_drawn_fbi]sticker" "1" + "[poorly_drawn_idf]sticker" "1" + "[poorly_drawn_leet_crew]sticker" "1" + "[poorly_drawn_number_k]sticker" "1" + "[poorly_drawn_sas]sticker" "1" + "[poorly_drawn_terrorist]sticker" "1" + } + "crate_sticker_pack_poorly_drawn_mythical" + { + "[poorly_drawn_ava_holo]sticker" "1" + "[poorly_drawn_balkan_holo]sticker" "1" + "[poorly_drawn_bloody_darryl_holo]sticker" "1" + "[poorly_drawn_chicken_holo]sticker" "1" + "[poorly_drawn_fbi_holo]sticker" "1" + "[poorly_drawn_idf_holo]sticker" "1" + "[poorly_drawn_leet_crew_holo]sticker" "1" + "[poorly_drawn_number_k_holo]sticker" "1" + "[poorly_drawn_sas_holo]sticker" "1" + "[poorly_drawn_terrorist_holo]sticker" "1" + } + "crate_sticker_pack_poorly_drawn_lootlist" + { + "crate_sticker_pack_poorly_drawn_rare" "1" + "crate_sticker_pack_poorly_drawn_mythical" "1" } - "403" + } + "paint_kits" + { + "1035" { - "name" "eslcologne2015_signature_fer_gold" - "item_name" "#StickerKit_eslcologne2015_signature_fer_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fer_gold" - "sticker_material" "cologne2015/sig_fer_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "38921219" + "name" "gs_ak47_professional" + "description_string" "#PaintKit_gs_ak47_professional" + "description_tag" "#PaintKit_gs_ak47_professional_Tag" + "style" "9" + "pattern" "workshop/ak47_professional" + "use_normal" "1" + "normal" "workshop/ak47_professional_normal" + "color0" "128 128 128 255" + "color1" "150 150 150 255" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "155" + "phongalbedoboost" "90" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "404" + "1036" { - "name" "eslcologne2015_signature_boltz" - "item_name" "#StickerKit_eslcologne2015_signature_boltz" - "description_string" "#StickerKit_desc_eslcologne2015_signature_boltz" - "sticker_material" "cologne2015/sig_boltz" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "58113672" + "name" "cu_cz75_whirlwind" + "description_string" "#PaintKit_cu_cz75_whirlwind" + "description_tag" "#PaintKit_cu_cz75_whirlwind_Tag" + "style" "7" + "pattern" "workshop/cz75_whirlwind" + "use_normal" "1" + "normal" "workshop/cz75_whirlwind_normal" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "32" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + "pearlescent" "0.000000" } - "405" + "1037" { - "name" "eslcologne2015_signature_boltz_foil" - "item_name" "#StickerKit_eslcologne2015_signature_boltz_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_boltz_foil" - "sticker_material" "cologne2015/sig_boltz_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "58113672" + "name" "cu_mp9_food_chain" + "description_string" "#PaintKit_cu_mp9_food_chain" + "description_tag" "#PaintKit_cu_mp9_food_chain_Tag" + "style" "7" + "pattern" "workshop/mp9_food_chain" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "406" + "1038" { - "name" "eslcologne2015_signature_boltz_gold" - "item_name" "#StickerKit_eslcologne2015_signature_boltz_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_boltz_gold" - "sticker_material" "cologne2015/sig_boltz_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "58113672" + "name" "cu_galil_chroma_pink" + "description_string" "#PaintKit_cu_galil_chroma_pink" + "description_tag" "#PaintKit_cu_galil_chroma_pink_Tag" + "style" "7" + "pattern" "workshop/galil_chroma_pink" + "use_normal" "0" + "normal" "workshop/galil_chroma_pink_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "407" + "1039" { - "name" "eslcologne2015_signature_coldzera" - "item_name" "#StickerKit_eslcologne2015_signature_coldzera" - "description_string" "#StickerKit_desc_eslcologne2015_signature_coldzera" - "sticker_material" "cologne2015/sig_coldzera" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "79720871" + "name" "gs_glock_polymer" + "description_string" "#PaintKit_gs_glock_polymer" + "description_tag" "#PaintKit_gs_glock_polymer_Tag" + "style" "9" + "pattern" "workshop/glock_polymer" + "use_normal" "1" + "normal" "workshop/glock_polymer_normal" + "color0" "62 43 32" + "color1" "156 148 135" + "color2" "132 107 86" + "color3" "50 28 28" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "153" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "-0.500000" } - "408" + "1040" { - "name" "eslcologne2015_signature_coldzera_foil" - "item_name" "#StickerKit_eslcologne2015_signature_coldzera_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_coldzera_foil" - "sticker_material" "cologne2015/sig_coldzera_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "79720871" + "name" "gs_usps_hangedman" + "description_string" "#PaintKit_gs_usps_hangedman" + "description_tag" "#PaintKit_gs_usps_hangedman_Tag" + "style" "9" + "pattern" "workshop/usps_hangedman" + "use_normal" "0" + "color0" "214 183 146" + "color1" "177 177 177" + "color2" "165 129 93" + "color3" "250 212 97" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "54" + "phongalbedoboost" "25" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "409" + "1041" { - "name" "eslcologne2015_signature_coldzera_gold" - "item_name" "#StickerKit_eslcologne2015_signature_coldzera_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_coldzera_gold" - "sticker_material" "cologne2015/sig_coldzera_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" - "tournament_player_id" "79720871" + "name" "cu_m4a4_love" + "description_string" "#PaintKit_cu_m4a4_love" + "description_tag" "#PaintKit_cu_m4a4_love_Tag" + "style" "7" + "pattern" "workshop/m4a4_love" + "use_normal" "1" + "normal" "workshop/m4a4_love_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.790000" + "pearlescent" "10.000000" } - "410" + "1042" { - "name" "eslcologne2015_signature_guardian" - "item_name" "#StickerKit_eslcologne2015_signature_guardian" - "description_string" "#StickerKit_desc_eslcologne2015_signature_guardian" - "sticker_material" "cologne2015/sig_guardian" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "12065295" + "name" "gs_m249_combine" + "description_string" "#PaintKit_gs_m249_combine" + "description_tag" "#PaintKit_gs_m249_combine_Tag" + "style" "9" + "pattern" "workshop/m249_combine" + "use_normal" "1" + "normal" "workshop/m249_combine_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + "pearlescent" "0.000000" } - "411" + "1043" { - "name" "eslcologne2015_signature_guardian_foil" - "item_name" "#StickerKit_eslcologne2015_signature_guardian_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_guardian_foil" - "sticker_material" "cologne2015/sig_guardian_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "12065295" + "name" "cu_negev_devtexture" + "description_string" "#PaintKit_cu_negev_devtexture" + "description_tag" "#PaintKit_cu_negev_devtexture_Tag" + "style" "7" + "pattern" "workshop/negev_devtexture" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "80" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" } - "412" + "1044" { - "name" "eslcologne2015_signature_guardian_gold" - "item_name" "#StickerKit_eslcologne2015_signature_guardian_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_guardian_gold" - "sticker_material" "cologne2015/sig_guardian_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "12065295" + "name" "gs_p250_cybershell" + "description_string" "#PaintKit_gs_p250_cybershell" + "description_tag" "#PaintKit_gs_p250_cybershell_Tag" + "style" "9" + "pattern" "workshop/p250_cybershell" + "use_normal" "1" + "normal" "workshop/p250_cybershell_normal" + "color0" "120 100 80" + "color1" "255 255 255" + "color2" "150 140 120" + "color3" "170 100 50" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "150" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + "pearlescent" "0.000000" } - "413" + "1045" { - "name" "eslcologne2015_signature_zeus" - "item_name" "#StickerKit_eslcologne2015_signature_zeus" - "description_string" "#StickerKit_desc_eslcologne2015_signature_zeus" - "sticker_material" "cologne2015/sig_zeus" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "59062744" + "name" "cu_mac10_portable" + "description_string" "#PaintKit_cu_mac10_portable" + "description_tag" "#PaintKit_cu_mac10_portable_Tag" + "style" "7" + "pattern" "workshop/mac10_portable" + "use_normal" "1" + "normal" "workshop/mac10_portable_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "100" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "414" + "1046" { - "name" "eslcologne2015_signature_zeus_foil" - "item_name" "#StickerKit_eslcologne2015_signature_zeus_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_zeus_foil" - "sticker_material" "cologne2015/sig_zeus_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "59062744" + "name" "aq_xm1014_punk" + "description_string" "#PaintKit_aq_xm1014_punk" + "description_tag" "#PaintKit_aq_xm1014_punk_Tag" + "style" "8" + "pattern" "workshop/xm1014_punk" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "213 166 8" + "color3" "90 90 90" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongalbedoboost" "7" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "-1.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "-1.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "130.000000" + "pattern_rotate_end" "225.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" } - "415" + "1047" { - "name" "eslcologne2015_signature_zeus_gold" - "item_name" "#StickerKit_eslcologne2015_signature_zeus_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_zeus_gold" - "sticker_material" "cologne2015/sig_zeus_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "59062744" + "name" "gs_r8_rustking" + "description_string" "#PaintKit_gs_r8_rustking" + "description_tag" "#PaintKit_gs_r8_rustking_Tag" + "style" "9" + "pattern" "workshop/r8_rustking" + "use_normal" "1" + "normal" "workshop/r8_rustking_normal" + "color0" "255 255 255" + "color1" "216 216 216" + "color2" "174 148 122" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "30" + "phongintensity" "30" + "phongalbedoboost" "2" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "416" + "1048" { - "name" "eslcologne2015_signature_seized" - "item_name" "#StickerKit_eslcologne2015_signature_seized" - "description_string" "#StickerKit_desc_eslcologne2015_signature_seized" - "sticker_material" "cologne2015/sig_seized" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "3648428" + "name" "gs_sg553_deathmetal" + "description_string" "#PaintKit_gs_sg553_deathmetal" + "description_tag" "#PaintKit_gs_sg553_deathmetal_Tag" + "style" "9" + "pattern" "workshop/sg553_deathmetal" + "use_normal" "1" + "normal" "workshop/sg553_deathmetal_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "40" + "phongintensity" "155" + "phongalbedoboost" "20" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "417" + "1049" { - "name" "eslcologne2015_signature_seized_foil" - "item_name" "#StickerKit_eslcologne2015_signature_seized_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_seized_foil" - "sticker_material" "cologne2015/sig_seized_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "3648428" + "name" "am_ump45_electrowave" + "description_string" "#PaintKit_am_ump45_electrowave" + "description_tag" "#PaintKit_am_ump45_electrowave_Tag" + "style" "5" + "pattern" "workshop/ump45_electrowave" + "color0" "13 13 13" + "color1" "63 60 60" + "color2" "21 20 20" + "color3" "146 81 4" + "pattern_scale" "2.500000" + "phongexponent" "225" + "phongalbedoboost" "7" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "418" + "1050" { - "name" "eslcologne2015_signature_seized_gold" - "item_name" "#StickerKit_eslcologne2015_signature_seized_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_seized_gold" - "sticker_material" "cologne2015/sig_seized_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "3648428" + "name" "cu_deag_trigger_discipline" + "description_string" "#PaintKit_cu_deag_trigger_discipline" + "description_tag" "#PaintKit_cu_deag_trigger_discipline_Tag" + "style" "7" + "pattern" "workshop/deag_trigger_discipline" + "use_normal" "1" + "normal" "workshop/deag_trigger_discipline_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.970000" + "pearlescent" "0.000000" } - "419" + "1051" { - "name" "eslcologne2015_signature_edward" - "item_name" "#StickerKit_eslcologne2015_signature_edward" - "description_string" "#StickerKit_desc_eslcologne2015_signature_edward" - "sticker_material" "cologne2015/sig_edward" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "23429534" + "name" "sp_nova_wind_dispersal" + "description_string" "#PaintKit_sp_nova_wind_dispersal" + "description_tag" "#PaintKit_sp_nova_wind_dispersal_Tag" + "style" "3" + "pattern" "workshop/nova_wind_dispersal" + "color0" "26 20 13" + "color1" "179 177 170" + "color2" "203 196 172" + "color3" "64 105 128" + "pattern_scale" "0.700000" + "phongexponent" "10" + "phongintensity" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.250000" + "pattern_offset_y_end" "0.350000" + "pattern_rotate_start" "160.000000" + "pattern_rotate_end" "160.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "420" + } + "items" + { + "1389" { - "name" "eslcologne2015_signature_edward_foil" - "item_name" "#StickerKit_eslcologne2015_signature_edward_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_edward_foil" - "sticker_material" "cologne2015/sig_edward_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "23429534" + "name" "community_28 Key" + "item_name" "#CSGO_crate_key_community_28" + "item_description" "#CSGO_crate_key_community_28_desc" + "first_sale_date" "2021-03-26" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_28" + "tool" + { + "restriction" "crate_community_28" + } } - "421" + "4747" { - "name" "eslcologne2015_signature_edward_gold" - "item_name" "#StickerKit_eslcologne2015_signature_edward_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_edward_gold" - "sticker_material" "cologne2015/sig_edward_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "23429534" + "item_name" "#CSGO_crate_community_28" + "item_description" "#CSGO_crate_community_28_desc" + "name" "crate_community_28" + "image_inventory" "econ/weapon_cases/crate_community_28" + "model_player" "models/props/crates/csgo_drop_crate_community_28.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1389" "1" + } + "tool" + { + "restriction" "crate_community_28" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "315" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_28" + "tag_text" "#CSGO_set_community_28" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } + "loot_list_rare_item_footer" "#crate_community_15_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_15_unusual_itemname" } - "422" + } + "revolving_loot_lists" + { + "315" "crate_community_28" + } + "client_loot_lists" + { + "crate_community_28_rare" { - "name" "eslcologne2015_signature_flamie" - "item_name" "#StickerKit_eslcologne2015_signature_flamie" - "description_string" "#StickerKit_desc_eslcologne2015_signature_flamie" - "sticker_material" "cologne2015/sig_flamie" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "156257548" + "[gs_sg553_deathmetal]weapon_sg556" "1" + "[gs_glock_polymer]weapon_glock" "1" + "[gs_m249_combine]weapon_m249" "1" + "[cu_cz75_whirlwind]weapon_cz75a" "1" + "[am_ump45_electrowave]weapon_ump45" "1" + "[gs_r8_rustking]weapon_revolver" "1" + "[sp_nova_wind_dispersal]weapon_nova" "1" } - "423" + "crate_community_28_mythical" { - "name" "eslcologne2015_signature_flamie_foil" - "item_name" "#StickerKit_eslcologne2015_signature_flamie_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_flamie_foil" - "sticker_material" "cologne2015/sig_flamie_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "156257548" + "[gs_p250_cybershell]weapon_p250" "1" + "[cu_negev_devtexture]weapon_negev" "1" + "[cu_mac10_portable]weapon_mac10" "1" + "[cu_deag_trigger_discipline]weapon_deagle" "1" + "[gs_ak47_professional]weapon_ak47" "1" } - "424" + "crate_community_28_legendary" { - "name" "eslcologne2015_signature_flamie_gold" - "item_name" "#StickerKit_eslcologne2015_signature_flamie_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_flamie_gold" - "sticker_material" "cologne2015/sig_flamie_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" - "tournament_player_id" "156257548" + "[cu_mp9_food_chain]weapon_mp9" "1" + "[aq_xm1014_punk]weapon_xm1014" "1" + "[cu_galil_chroma_pink]weapon_galilar" "1" } - "425" + "crate_community_28_ancient" { - "name" "eslcologne2015_signature_xizt" - "item_name" "#StickerKit_eslcologne2015_signature_xizt" - "description_string" "#StickerKit_desc_eslcologne2015_signature_xizt" - "sticker_material" "cologne2015/sig_xizt" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "26224992" + "[gs_usps_hangedman]weapon_usp_silencer" "1" + "[cu_m4a4_love]weapon_m4a1" "1" } - "426" + "crate_community_28" { - "name" "eslcologne2015_signature_xizt_foil" - "item_name" "#StickerKit_eslcologne2015_signature_xizt_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_xizt_foil" - "sticker_material" "cologne2015/sig_xizt_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "26224992" + "crate_community_28_rare" "1" + "crate_community_28_mythical" "1" + "crate_community_28_legendary" "1" + "crate_community_28_ancient" "1" + "set_glove_3_unusual" "1" } - "427" + } + "item_sets" + { + "set_community_28" { - "name" "eslcologne2015_signature_xizt_gold" - "item_name" "#StickerKit_eslcologne2015_signature_xizt_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_xizt_gold" - "sticker_material" "cologne2015/sig_xizt_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "26224992" + "name" "#CSGO_set_community_28" + "set_description" "#CSGO_set_community_28_desc" + "is_collection" "1" + "items" + { + "[gs_glock_polymer]weapon_glock" "1" + "[gs_m249_combine]weapon_m249" "1" + "[gs_sg553_deathmetal]weapon_sg556" "1" + "[gs_r8_rustking]weapon_revolver" "1" + "[am_ump45_electrowave]weapon_ump45" "1" + "[sp_nova_wind_dispersal]weapon_nova" "1" + "[cu_cz75_whirlwind]weapon_cz75a" "1" + "[gs_ak47_professional]weapon_ak47" "1" + "[gs_p250_cybershell]weapon_p250" "1" + "[cu_negev_devtexture]weapon_negev" "1" + "[cu_mac10_portable]weapon_mac10" "1" + "[cu_deag_trigger_discipline]weapon_deagle" "1" + "[cu_mp9_food_chain]weapon_mp9" "1" + "[aq_xm1014_punk]weapon_xm1014" "1" + "[cu_galil_chroma_pink]weapon_galilar" "1" + "[gs_usps_hangedman]weapon_usp_silencer" "1" + "[cu_m4a4_love]weapon_m4a1" "1" + } } - "428" + } + "paint_kits_rarity" + { + "gs_ak47_professional" "rare" + "cu_cz75_whirlwind" "rare" + "cu_mp9_food_chain" "legendary" + "cu_galil_chroma_pink" "legendary" + "gs_glock_polymer" "uncommon" + "gs_usps_hangedman" "legendary" + "cu_m4a4_love" "legendary" + "gs_m249_combine" "rare" + "cu_negev_devtexture" "mythical" + "gs_p250_cybershell" "mythical" + "cu_mac10_portable" "mythical" + "aq_xm1014_punk" "legendary" + "gs_r8_rustking" "rare" + "gs_sg553_deathmetal" "rare" + "am_ump45_electrowave" "rare" + "cu_deag_trigger_discipline" "rare" + "sp_nova_wind_dispersal" "rare" + } + "paint_kits" + { + "1053" { - "name" "eslcologne2015_signature_forest" - "item_name" "#StickerKit_eslcologne2015_signature_forest" - "description_string" "#StickerKit_desc_eslcologne2015_signature_forest" - "sticker_material" "cologne2015/sig_forest" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "93724" + "name" "am_nuclear_pattern4_famas" + "description_string" "#PaintKit_am_nuclear_pattern4_famas" + "description_tag" "#PaintKit_am_nuclear_pattern4_famas_Tag" + "style" "5" + "pattern" "nuclear_pattern" + "color0" "212 95 17" + "color1" "246 213 29" + "color2" "16 14 8" + "color3" "7 7 7" + "pattern_scale" "2.200000" + "phongexponent" "1" + "phongalbedoboost" "66" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "1.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.400000" + "pearlescent" "0.000000" } - "429" + "1055" { - "name" "eslcologne2015_signature_forest_foil" - "item_name" "#StickerKit_eslcologne2015_signature_forest_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_forest_foil" - "sticker_material" "cologne2015/sig_forest_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "93724" + "name" "aa_spacerace_orange" + "description_string" "#PaintKit_aa_spacerace_orange" + "description_tag" "#PaintKit_aa_spacerace_orange_Tag" + "style" "6" + "pattern" "spacerace" + "color0" "156 139 106" + "color1" "171 97 70" + "color2" "196 153 99" + "color3" "12 14 26 255" + "pattern_scale" "2.200000" + "phongexponent" "235" + "phongalbedoboost" "40" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "430" + "1056" { - "name" "eslcologne2015_signature_forest_gold" - "item_name" "#StickerKit_eslcologne2015_signature_forest_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_forest_gold" - "sticker_material" "cologne2015/sig_forest_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "93724" + "name" "sp_spacerace_blue" + "description_string" "#PaintKit_sp_spacerace_blue" + "description_tag" "#PaintKit_sp_spacerace_blue_Tag" + "style" "3" + "pattern" "spacerace" + "color0" "36 54 72 255" + "color1" "132 166 189" + "color2" "187 178 128" + "color3" "12 14 26 255" + "pattern_scale" "1.900000" + "phongexponent" "175" + "phongintensity" "35" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "431" + "1058" { - "name" "eslcologne2015_signature_getright" - "item_name" "#StickerKit_eslcologne2015_signature_getright" - "description_string" "#StickerKit_desc_eslcologne2015_signature_getright" - "sticker_material" "cologne2015/sig_getright" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "21771190" + "name" "hy_technowar_rwb" + "description_string" "#PaintKit_hy_technowar_rwb" + "description_tag" "#PaintKit_hy_technowar_rwb_Tag" + "style" "2" + "pattern" "technowar" + "color0" "211 210 210" + "color1" "91 113 205" + "color2" "183 45 45 255" + "color3" "18 19 20 255" + "pattern_scale" "2.300000" + "phongexponent" "215" + "phongintensity" "25" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-90.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.440000" } - "432" + "1059" { - "name" "eslcologne2015_signature_getright_foil" - "item_name" "#StickerKit_eslcologne2015_signature_getright_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_getright_foil" - "sticker_material" "cologne2015/sig_getright_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "21771190" + "name" "sp_technowar_red" + "description_string" "#PaintKit_sp_technowar_red" + "description_tag" "#PaintKit_sp_technowar_red_Tag" + "style" "3" + "pattern" "technowar" + "color0" "216 213 163 255" + "color1" "148 53 53 255" + "color2" "183 134 81 255" + "color3" "15 15 15 255" + "pattern_scale" "1.000000" + "phongexponent" "224" + "phongintensity" "40" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "90.000000" + "pattern_rotate_end" "270.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.570000" } - "433" + "1060" { - "name" "eslcologne2015_signature_getright_gold" - "item_name" "#StickerKit_eslcologne2015_signature_getright_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_getright_gold" - "sticker_material" "cologne2015/sig_getright_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "21771190" + "name" "hy_trainarchitect_green" + "description_string" "#PaintKit_hy_trainarchitect_green" + "description_tag" "#PaintKit_hy_trainarchitect_green_Tag" + "style" "2" + "pattern" "trainarchitect" + "color0" "153 152 48" + "color1" "91 123 49" + "color2" "184 184 167" + "color3" "24 26 29 255" + "pattern_scale" "4.000000" + "phongexponent" "120" + "phongintensity" "32" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "434" + "1061" { - "name" "eslcologne2015_signature_friberg" - "item_name" "#StickerKit_eslcologne2015_signature_friberg" - "description_string" "#StickerKit_desc_eslcologne2015_signature_friberg" - "sticker_material" "cologne2015/sig_friberg" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "24295201" + "name" "hy_trainarchitect" + "description_string" "#PaintKit_hy_trainarchitect" + "description_tag" "#PaintKit_hy_trainarchitect_Tag" + "style" "2" + "pattern" "trainarchitect" + "color0" "208 199 154" + "color1" "71 36 36" + "color2" "121 40 40" + "color3" "13 8 8" + "pattern_scale" "4.200000" + "phongexponent" "175" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.580000" } - "435" + "1063" { - "name" "eslcologne2015_signature_friberg_foil" - "item_name" "#StickerKit_eslcologne2015_signature_friberg_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_friberg_foil" - "sticker_material" "cologne2015/sig_friberg_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "24295201" + "name" "gs_m4a4_coalition" + "description_string" "#PaintKit_gs_m4a4_coalition" + "description_tag" "#PaintKit_gs_m4a4_coalition_Tag" + "style" "9" + "pattern" "m4a4_coalition" + "use_normal" "1" + "normal" "m4a4_coalition_normal" + "color1" "222 222 222" + "pattern_scale" "1.000000" + "phongexponent" "190" + "phongintensity" "18" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.600000" } - "436" + "1064" { - "name" "eslcologne2015_signature_friberg_gold" - "item_name" "#StickerKit_eslcologne2015_signature_friberg_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_friberg_gold" - "sticker_material" "cologne2015/sig_friberg_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "24295201" + "name" "gs_train_cz75" + "description_string" "#PaintKit_gs_train_cz75" + "description_tag" "#PaintKit_gs_train_cz75_Tag" + "style" "9" + "pattern" "train_cz75" + "use_normal" "1" + "normal" "train_cz75_normal" + "color0" "128 128 128 255" + "color1" "236 236 236" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "190" + "phongintensity" "12" + "phongalbedoboost" "9" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "437" + "1065" { - "name" "eslcologne2015_signature_allu" - "item_name" "#StickerKit_eslcologne2015_signature_allu" - "description_string" "#StickerKit_desc_eslcologne2015_signature_allu" - "sticker_material" "cologne2015/sig_allu" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "1345246" + "name" "so_whiteout_riptide" + "description_string" "#PaintKit_so_whiteout" + "description_tag" "#PaintKit_so_whiteout_Tag" + "wear_default" "0.210000" + "style" "1" + "color0" "214 213 207" + "color1" "214 213 207" + "color2" "214 213 207" + "color3" "214 213 207" + "phongintensity" "10" } - "438" + "1067" { - "name" "eslcologne2015_signature_allu_foil" - "item_name" "#StickerKit_eslcologne2015_signature_allu_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_allu_foil" - "sticker_material" "cologne2015/sig_allu_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "1345246" + "name" "cu_mac10_propaganda" + "description_string" "#PaintKit_cu_mac10_propaganda" + "description_tag" "#PaintKit_cu_mac10_propaganda_Tag" + "style" "7" + "pattern" "mac10_propaganda" + "use_normal" "1" + "normal" "mac10_propaganda_normal" + "pattern_scale" "1.000000" + "phongexponent" "195" + "phongintensity" "87" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.620000" } - "439" + "1119" { - "name" "eslcologne2015_signature_allu_gold" - "item_name" "#StickerKit_eslcologne2015_signature_allu_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_allu_gold" - "sticker_material" "cologne2015/sig_allu_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" - "tournament_player_id" "1345246" + "name" "am_emerald_marbleized_glock" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "1119-1123" + "style" "5" + "pattern" "smoke2" + "color0" "2 69 34" + "color1" "15 15 1" + "color2" "1 13 17 255" + "color3" "8 2 22 255" + "pattern_scale" "3.000000" + "phongexponent" "180" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "440" + "1120" { - "name" "eslcologne2015_signature_kennys" - "item_name" "#StickerKit_eslcologne2015_signature_kennys" - "description_string" "#StickerKit_desc_eslcologne2015_signature_kennys" - "sticker_material" "cologne2015/sig_kennys" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "64640068" + "name" "am_gamma_doppler_phase1_glock" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "1119-1123" + "style" "5" + "pattern" "smoke2" + "color0" "11 14 27 255" + "color1" "30 22 12 255" + "color2" "13 98 45" + "color3" "11 14 27 255" + "pattern_scale" "3.000000" + "phongexponent" "180" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "441" + "1121" { - "name" "eslcologne2015_signature_kennys_foil" - "item_name" "#StickerKit_eslcologne2015_signature_kennys_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_kennys_foil" - "sticker_material" "cologne2015/sig_kennys_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "64640068" + "name" "am_gamma_doppler_phase2_glock" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "1119-1123" + "style" "5" + "pattern" "smoke2" + "color0" "9 15 18" + "color1" "9 99 45" + "color2" "23 30 12" + "color3" "9 99 49" + "pattern_scale" "3.000000" + "phongexponent" "180" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "442" + "1122" { - "name" "eslcologne2015_signature_kennys_gold" - "item_name" "#StickerKit_eslcologne2015_signature_kennys_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_kennys_gold" - "sticker_material" "cologne2015/sig_kennys_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "64640068" + "name" "am_gamma_doppler_phase3_glock" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "1119-1123" + "style" "5" + "pattern" "smoke2" + "color0" "6 8 15 255" + "color1" "23 105 117" + "color2" "6 63 13" + "color3" "20 28 9" + "pattern_scale" "3.000000" + "phongexponent" "180" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "443" + "1123" { - "name" "eslcologne2015_signature_kioshima" - "item_name" "#StickerKit_eslcologne2015_signature_kioshima" - "description_string" "#StickerKit_desc_eslcologne2015_signature_kioshima" - "sticker_material" "cologne2015/sig_kioshima" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "40517167" + "name" "am_gamma_doppler_phase4_glock" + "description_string" "#PaintKit_am_marbleized_g" + "description_tag" "#PaintKit_am_marbleized_g_Tag" + "same_name_family_aggregate" "1119-1123" + "style" "5" + "pattern" "smoke2" + "color0" "7 9 18" + "color1" "23 117 103" + "color2" "97 165 43" + "color3" "28 26 9" + "pattern_scale" "3.000000" + "phongexponent" "180" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-50.000000" + "pattern_rotate_end" "-70.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "444" + } + "client_loot_lists" + { + "set_train_2021_rare" { - "name" "eslcologne2015_signature_kioshima_foil" - "item_name" "#StickerKit_eslcologne2015_signature_kioshima_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_kioshima_foil" - "sticker_material" "cologne2015/sig_kioshima_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "40517167" + "[sp_spacerace_blue]weapon_deagle" "1" + "[sp_technowar_red]weapon_m4a1_silencer" "1" + "[hy_trainarchitect_green]weapon_ssg08" "1" + "[aa_fade_metallic]weapon_aug" "1" + "[hy_varicamo_red]weapon_ump45" "1" + "[hy_mesh_safetyorange]weapon_tec9" "1" + "[aa_flames]weapon_revolver" "1" } - "445" + "set_train_2021_rare_standalone" { - "name" "eslcologne2015_signature_kioshima_gold" - "item_name" "#StickerKit_eslcologne2015_signature_kioshima_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_kioshima_gold" - "sticker_material" "cologne2015/sig_kioshima_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "40517167" + "set_train_2021_rare" "1" } - "446" + "set_train_2021_mythical" { - "name" "eslcologne2015_signature_happy" - "item_name" "#StickerKit_eslcologne2015_signature_happy" - "description_string" "#StickerKit_desc_eslcologne2015_signature_happy" - "sticker_material" "cologne2015/sig_happy" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "17975624" + "[gs_train_cz75]weapon_cz75a" "1" + "[hy_technowar_rwb]weapon_awp" "1" + "[aa_spacerace_orange]weapon_hkp2000" "1" + "[hy_trainarchitect]weapon_mp5sd" "1" + "[am_crystallized]weapon_nova" "1" } - "447" + "set_train_2021_mythical_standalone" { - "name" "eslcologne2015_signature_happy_foil" - "item_name" "#StickerKit_eslcologne2015_signature_happy_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_happy_foil" - "sticker_material" "cologne2015/sig_happy_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "17975624" + "set_train_2021_mythical" "1" } - "448" + "set_train_2021_legendary" { - "name" "eslcologne2015_signature_happy_gold" - "item_name" "#StickerKit_eslcologne2015_signature_happy_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_happy_gold" - "sticker_material" "cologne2015/sig_happy_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "17975624" + "[am_nuclear_pattern4_famas]weapon_famas" "1" + "[cu_mac10_propaganda]weapon_mac10" "1" + "[so_whiteout_riptide]weapon_usp_silencer" "1" } - "449" + "set_train_2021_legendary_standalone" { - "name" "eslcologne2015_signature_apex" - "item_name" "#StickerKit_eslcologne2015_signature_apex" - "description_string" "#StickerKit_desc_eslcologne2015_signature_apex" - "sticker_material" "cologne2015/sig_apex" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "29478439" + "set_train_2021_legendary" "1" } - "450" + "set_train_2021_ancient" { - "name" "eslcologne2015_signature_apex_foil" - "item_name" "#StickerKit_eslcologne2015_signature_apex_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_apex_foil" - "sticker_material" "cologne2015/sig_apex_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "29478439" + "[gs_m4a4_coalition]weapon_m4a1" "1" + "[am_gamma_doppler_phase4_glock]weapon_glock" "1" + "[am_gamma_doppler_phase3_glock]weapon_glock" "1" + "[am_gamma_doppler_phase2_glock]weapon_glock" "1" + "[am_gamma_doppler_phase1_glock]weapon_glock" "1" + "[am_emerald_marbleized_glock]weapon_glock" "1" } - "451" + "set_train_2021_ancient_standalone" { - "name" "eslcologne2015_signature_apex_gold" - "item_name" "#StickerKit_eslcologne2015_signature_apex_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_apex_gold" - "sticker_material" "cologne2015/sig_apex_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "29478439" + "set_train_2021_ancient" "1" } - "452" + "set_train_2021" { - "name" "eslcologne2015_signature_nbk" - "item_name" "#StickerKit_eslcologne2015_signature_nbk" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nbk" - "sticker_material" "cologne2015/sig_nbk" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "444845" + "set_train_2021_rare" "1" + "set_train_2021_mythical" "1" + "set_train_2021_legendary" "1" + "set_train_2021_ancient" "1" } - "453" + } + "item_sets" + { + "set_train_2021" { - "name" "eslcologne2015_signature_nbk_foil" - "item_name" "#StickerKit_eslcologne2015_signature_nbk_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nbk_foil" - "sticker_material" "cologne2015/sig_nbk_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "444845" + "name" "#CSGO_set_train_2021" + "set_description" "#CSGO_set_train_2021_desc" + "is_collection" "1" + "items" + { + "[sp_spacerace_blue]weapon_deagle" "1" + "[sp_technowar_red]weapon_m4a1_silencer" "1" + "[hy_trainarchitect_green]weapon_ssg08" "1" + "[aa_fade_metallic]weapon_aug" "1" + "[hy_varicamo_red]weapon_ump45" "1" + "[hy_mesh_safetyorange]weapon_tec9" "1" + "[aa_flames]weapon_revolver" "1" + "[gs_train_cz75]weapon_cz75a" "1" + "[hy_technowar_rwb]weapon_awp" "1" + "[aa_spacerace_orange]weapon_hkp2000" "1" + "[hy_trainarchitect]weapon_mp5sd" "1" + "[am_crystallized]weapon_nova" "1" + "[am_nuclear_pattern4_famas]weapon_famas" "1" + "[cu_mac10_propaganda]weapon_mac10" "1" + "[so_whiteout_riptide]weapon_usp_silencer" "1" + "[am_gamma_doppler_phase4_glock]weapon_glock" "1" + "[am_gamma_doppler_phase3_glock]weapon_glock" "1" + "[am_gamma_doppler_phase2_glock]weapon_glock" "1" + "[am_gamma_doppler_phase1_glock]weapon_glock" "1" + "[am_emerald_marbleized_glock]weapon_glock" "1" + "[gs_m4a4_coalition]weapon_m4a1" "1" + } } - "454" + } + "paint_kits_rarity" + { + "am_nuclear_pattern4_famas" "legendary" + "aa_spacerace_orange" "rare" + "sp_spacerace_blue" "uncommon" + "hy_technowar_rwb" "rare" + "sp_technowar_red" "uncommon" + "hy_trainarchitect_green" "rare" + "hy_trainarchitect" "mythical" + "gs_m4a4_coalition" "legendary" + "so_whiteout_riptide" "mythical" + "gs_train_cz75" "mythical" + "cu_mac10_propaganda" "legendary" + "am_crystallized_p2k" "rare" + "am_emerald_marbleized_glock" "legendary" + "am_gamma_doppler_phase1_glock" "legendary" + "am_gamma_doppler_phase2_glock" "legendary" + "am_gamma_doppler_phase3_glock" "legendary" + "am_gamma_doppler_phase4_glock" "legendary" + } + "paint_kits" + { + "1070" { - "name" "eslcologne2015_signature_nbk_gold" - "item_name" "#StickerKit_eslcologne2015_signature_nbk_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nbk_gold" - "sticker_material" "cologne2015/sig_nbk_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" - "tournament_player_id" "444845" + "name" "hy_ak47lam_green" + "description_string" "#PaintKit_hy_ak47lam_green" + "description_tag" "#PaintKit_hy_ak47lam_green_Tag" + "style" "2" + "pattern" "laminate_ak47" + "color0" "18 10 2 255" + "color1" "58 109 70" + "color2" "119 103 86 255" + "color3" "81 156 99" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "153" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.020000" + "wear_remap_max" "0.400000" } - "455" + "1071" { - "name" "eslcologne2015_signature_karrigan" - "item_name" "#StickerKit_eslcologne2015_signature_karrigan" - "description_string" "#StickerKit_desc_eslcologne2015_signature_karrigan" - "sticker_material" "cologne2015/sig_karrigan" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "29164525" + "name" "sp_galil_caution" + "description_string" "#PaintKit_sp_galil_caution" + "description_tag" "#PaintKit_sp_galil_caution_Tag" + "style" "3" + "pattern" "caution_pattern" + "color0" "170 162 75" + "color1" "73 15 15" + "color2" "22 22 22 255" + "color3" "255 255 255 255" + "pattern_scale" "1.500000" + "phongexponent" "155" + "phongintensity" "35" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.500000" + "pattern_offset_x_end" "0.820000" + "pattern_offset_y_start" "1.090000" + "pattern_offset_y_end" "1.110000" + "pattern_rotate_start" "171.000000" + "pattern_rotate_end" "183.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "456" + "1072" { - "name" "eslcologne2015_signature_karrigan_foil" - "item_name" "#StickerKit_eslcologne2015_signature_karrigan_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_karrigan_foil" - "sticker_material" "cologne2015/sig_karrigan_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "29164525" + "name" "hy_geometric_steps_pearl" + "description_string" "#PaintKit_hy_geometric_steps_pearl" + "description_tag" "#PaintKit_hy_geometric_steps_pearl_Tag" + "style" "2" + "pattern" "geometric_steps" + "color0" "36 42 44" + "color1" "19 19 20" + "color2" "37 36 35" + "color3" "183 166 112" + "pattern_scale" "2.660000" + "phongexponent" "200" + "phongintensity" "120" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "300.000000" + "pattern_rotate_end" "330.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.370000" + "pearlescent" "18.000000" } - "457" + "1073" { - "name" "eslcologne2015_signature_karrigan_gold" - "item_name" "#StickerKit_eslcologne2015_signature_karrigan_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_karrigan_gold" - "sticker_material" "cologne2015/sig_karrigan_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "29164525" + "name" "gs_m4a1_vertigo" + "description_string" "#PaintKit_gs_m4a1_vertigo" + "description_tag" "#PaintKit_gs_m4a1_vertigo_Tag" + "style" "9" + "pattern" "m4a1_vertigo" + "use_normal" "1" + "normal" "m4a1_vertigo_normal" + "color0" "48 27 0" + "color1" "241 241 241" + "color2" "40 10 10" + "color3" "10 35 32" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "24" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" + "pearlescent" "0.000000" } - "458" + "1074" { - "name" "eslcologne2015_signature_device" - "item_name" "#StickerKit_eslcologne2015_signature_device" - "description_string" "#StickerKit_desc_eslcologne2015_signature_device" - "sticker_material" "cologne2015/sig_device" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "27447936" + "name" "hy_vertigogeo" + "description_string" "#PaintKit_hy_vertigogeo" + "description_tag" "#PaintKit_hy_vertigogeo_Tag" + "style" "2" + "pattern" "vertigogeo" + "color0" "192 184 180" + "color1" "127 127 127" + "color2" "62 68 75" + "color3" "70 119 143" + "pattern_scale" "3.500000" + "phongexponent" "235" + "phongintensity" "35" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "459" + "1075" { - "name" "eslcologne2015_signature_device_foil" - "item_name" "#StickerKit_eslcologne2015_signature_device_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_device_foil" - "sticker_material" "cologne2015/sig_device_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "27447936" + "name" "hy_vertigospray_blue" + "description_string" "#PaintKit_hy_vertigospray_blue" + "description_tag" "#PaintKit_hy_vertigospray_blue_Tag" + "style" "2" + "pattern" "vertigospray" + "color0" "21 22 22" + "color1" "157 167 179" + "color2" "71 120 175" + "color3" "79 81 82" + "pattern_scale" "3.000000" + "phongexponent" "156" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" } - "460" + "1076" { - "name" "eslcologne2015_signature_device_gold" - "item_name" "#StickerKit_eslcologne2015_signature_device_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_device_gold" - "sticker_material" "cologne2015/sig_device_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "27447936" + "name" "hy_vertigoillusion" + "description_string" "#PaintKit_hy_vertigoillusion" + "description_tag" "#PaintKit_hy_vertigoillusion_Tag" + "style" "2" + "pattern" "vertigoillusion" + "color0" "96 100 111 255" + "color1" "112 104 100 255" + "color2" "151 143 133 255" + "color3" "58 66 73 255" + "pattern_scale" "1.800000" + "phongexponent" "125" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "461" + "1077" { - "name" "eslcologne2015_signature_dupreeh" - "item_name" "#StickerKit_eslcologne2015_signature_dupreeh" - "description_string" "#StickerKit_desc_eslcologne2015_signature_dupreeh" - "sticker_material" "cologne2015/sig_dupreeh" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "44589228" + "name" "hy_vertigoillusion_yellow" + "description_string" "#PaintKit_hy_vertigoillusion_yellow" + "description_tag" "#PaintKit_hy_vertigoillusion_yellow_Tag" + "style" "2" + "pattern" "vertigoillusion" + "color0" "135 120 97" + "color1" "192 167 105" + "color2" "175 168 95" + "color3" "16 28 54" + "pattern_scale" "1.800000" + "phongexponent" "225" + "phongintensity" "75" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" + "pearlescent" "0.000000" } - "462" + "1078" { - "name" "eslcologne2015_signature_dupreeh_foil" - "item_name" "#StickerKit_eslcologne2015_signature_dupreeh_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_dupreeh_foil" - "sticker_material" "cologne2015/sig_dupreeh_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "44589228" + "name" "sp_tire_tread_blue" + "description_string" "#PaintKit_sp_tire_tread_blue" + "description_tag" "#PaintKit_sp_tire_tread_blue_Tag" + "style" "3" + "pattern" "tire_tread" + "color0" "110 110 110" + "color1" "139 139 139" + "color2" "54 148 179" + "color3" "20 20 20 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "3" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "463" + "1079" { - "name" "eslcologne2015_signature_dupreeh_gold" - "item_name" "#StickerKit_eslcologne2015_signature_dupreeh_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_dupreeh_gold" - "sticker_material" "cologne2015/sig_dupreeh_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "44589228" + "name" "sp_tire_tread_red" + "description_string" "#PaintKit_sp_tire_tread_red" + "description_tag" "#PaintKit_sp_tire_tread_red_Tag" + "style" "3" + "pattern" "tire_tread" + "color0" "110 110 110" + "color1" "183 183 183" + "color2" "196 59 59" + "color3" "20 20 20 255" + "pattern_scale" "2.300000" + "phongexponent" "255" + "phongintensity" "3" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" } - "464" + "1080" { - "name" "eslcologne2015_signature_xyp9x" - "item_name" "#StickerKit_eslcologne2015_signature_xyp9x" - "description_string" "#StickerKit_desc_eslcologne2015_signature_xyp9x" - "sticker_material" "cologne2015/sig_xyp9x" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "30416534" + "name" "hy_vertigospray" + "description_string" "#PaintKit_hy_vertigospray" + "description_tag" "#PaintKit_hy_vertigospray_Tag" + "style" "2" + "pattern" "vertigospray" + "color0" "30 30 30" + "color1" "175 94 71 255" + "color2" "194 149 84 255" + "color3" "77 76 76" + "pattern_scale" "2.750000" + "phongexponent" "156" + "phongintensity" "22" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "-75.000000" + "pattern_rotate_end" "75.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.490000" } - "465" + "1081" { - "name" "eslcologne2015_signature_xyp9x_foil" - "item_name" "#StickerKit_eslcologne2015_signature_xyp9x_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_xyp9x_foil" - "sticker_material" "cologne2015/sig_xyp9x_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "30416534" + "name" "aa_vertigogeo_neon" + "description_string" "#PaintKit_aa_vertigogeo_neon" + "description_tag" "#PaintKit_aa_vertigogeo_neon_Tag" + "style" "6" + "pattern" "vertigogeo" + "color0" "14 22 33" + "color1" "182 176 217" + "color2" "132 200 179" + "color3" "117 109 166" + "pattern_scale" "2.450000" + "phongexponent" "120" + "phongalbedoboost" "1" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.490000" } - "466" + "1082" { - "name" "eslcologne2015_signature_xyp9x_gold" - "item_name" "#StickerKit_eslcologne2015_signature_xyp9x_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_xyp9x_gold" - "sticker_material" "cologne2015/sig_xyp9x_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "30416534" + "name" "cu_vertigo_fiveseven" + "description_string" "#PaintKit_cu_vertigo_fiveseven" + "description_tag" "#PaintKit_cu_vertigo_fiveseven_Tag" + "style" "7" + "pattern" "vertigo_57" + "use_normal" "1" + "normal" "vertigo_57_normal" + "pattern_scale" "1.000000" + "phongexponent" "160" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.010000" + "wear_remap_max" "0.520000" } - "467" + "1083" { - "name" "eslcologne2015_signature_cajunb" - "item_name" "#StickerKit_eslcologne2015_signature_cajunb" - "description_string" "#StickerKit_desc_eslcologne2015_signature_cajunb" - "sticker_material" "cologne2015/sig_cajunb" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "18062315" + "name" "aa_wiring" + "description_string" "#PaintKit_aa_wiring" + "description_tag" "#PaintKit_aa_wiring_Tag" + "style" "6" + "pattern" "wiring" + "color0" "235 220 191" + "color1" "165 61 61" + "color2" "46 49 52" + "color3" "17 10 8" + "pattern_scale" "2.000000" + "phongexponent" "165" + "phongalbedoboost" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.440000" } - "468" + "1084" { - "name" "eslcologne2015_signature_cajunb_foil" - "item_name" "#StickerKit_eslcologne2015_signature_cajunb_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_cajunb_foil" - "sticker_material" "cologne2015/sig_cajunb_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "18062315" + "name" "cu_sg553_caution" + "description_string" "#PaintKit_cu_sg553_caution" + "description_tag" "#PaintKit_cu_sg553_caution_Tag" + "style" "7" + "pattern" "sg553_caution" + "use_normal" "1" + "normal" "sg553_caution_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.480000" } - "469" + "1085" { - "name" "eslcologne2015_signature_cajunb_gold" - "item_name" "#StickerKit_eslcologne2015_signature_cajunb_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_cajunb_gold" - "sticker_material" "cologne2015/sig_cajunb_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" - "tournament_player_id" "18062315" + "name" "aa_engine_performance" + "description_string" "#PaintKit_aa_engine_performance" + "description_tag" "#PaintKit_aa_engine_performance_Tag" + "style" "6" + "pattern" "engine" + "color0" "114 106 88" + "color1" "248 220 90" + "color2" "196 167 105" + "color3" "19 14 11" + "pattern_scale" "1.600000" + "phongexponent" "25" + "phongalbedoboost" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.490000" } - "470" + "1086" { - "name" "eslcologne2015_signature_neo" - "item_name" "#StickerKit_eslcologne2015_signature_neo" - "description_string" "#StickerKit_desc_eslcologne2015_signature_neo" - "sticker_material" "cologne2015/sig_neo" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "460206" + "name" "sp_engine_dirty" + "description_string" "#PaintKit_sp_engine_dirty" + "description_tag" "#PaintKit_sp_engine_dirty_Tag" + "style" "3" + "pattern" "engine" + "color0" "48 43 39" + "color1" "27 22 20" + "color2" "29 26 22" + "color3" "18 11 3" + "pattern_scale" "1.600000" + "phongexponent" "255" + "phongintensity" "8" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "471" + "1066" { - "name" "eslcologne2015_signature_neo_foil" - "item_name" "#StickerKit_eslcologne2015_signature_neo_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_neo_foil" - "sticker_material" "cologne2015/sig_neo_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "460206" + "name" "aa_wiring_yellow" + "description_string" "#PaintKit_aa_wiring_yellow" + "description_tag" "#PaintKit_aa_wiring_yellow_Tag" + "style" "6" + "pattern" "wiring" + "color0" "161 161 156" + "color1" "174 174 151" + "color2" "106 101 94" + "color3" "23 23 25" + "pattern_scale" "1.300000" + "phongexponent" "165" + "phongalbedoboost" "10" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "360.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "472" + } + "client_loot_lists" + { + "set_vertigo_2021_common" { - "name" "eslcologne2015_signature_neo_gold" - "item_name" "#StickerKit_eslcologne2015_signature_neo_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_neo_gold" - "sticker_material" "cologne2015/sig_neo_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "460206" + "[hy_vertigospray_blue]weapon_mac10" "1" + "[aa_wiring_yellow]weapon_famas" "1" + "[sp_tire_tread_blue]weapon_xm1014" "1" + "[hy_vertigoillusion]weapon_cz75a" "1" + "[sp_engine_dirty]weapon_elite" "1" } - "473" + "set_vertigo_2021_uncommon" { - "name" "eslcologne2015_signature_pasha" - "item_name" "#StickerKit_eslcologne2015_signature_pasha" - "description_string" "#StickerKit_desc_eslcologne2015_signature_pasha" - "sticker_material" "cologne2015/sig_pasha" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "13580090" + "[sp_tire_tread_red]weapon_glock" "1" + "[aa_engine_performance]weapon_ump45" "1" + "[am_carbon_fiber]weapon_ssg08" "1" + "[aa_wiring]weapon_bizon" "1" } - "474" + "set_vertigo_2021_rare" { - "name" "eslcologne2015_signature_pasha_foil" - "item_name" "#StickerKit_eslcologne2015_signature_pasha_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_pasha_foil" - "sticker_material" "cologne2015/sig_pasha_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "13580090" + "[hy_ak47lam_green]weapon_ak47" "1" + "[hy_vertigogeo]weapon_p90" "1" + "[hy_vertigoillusion_yellow]weapon_nova" "1" + "[hy_vertigospray]weapon_negev" "1" } - "475" + "set_vertigo_2021_mythical" { - "name" "eslcologne2015_signature_pasha_gold" - "item_name" "#StickerKit_eslcologne2015_signature_pasha_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_pasha_gold" - "sticker_material" "cologne2015/sig_pasha_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "13580090" + "[sp_galil_caution]weapon_galilar" "1" + "[hy_geometric_steps_pearl]weapon_mag7" "1" + "[aa_vertigogeo_neon]weapon_p250" "1" } - "476" + "set_vertigo_2021_legendary" { - "name" "eslcologne2015_signature_taz" - "item_name" "#StickerKit_eslcologne2015_signature_taz" - "description_string" "#StickerKit_desc_eslcologne2015_signature_taz" - "sticker_material" "cologne2015/sig_taz" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "234052" + "[cu_vertigo_fiveseven]weapon_fiveseven" "1" + "[cu_sg553_caution]weapon_sg556" "1" } - "477" + "set_vertigo_2021_ancient" { - "name" "eslcologne2015_signature_taz_foil" - "item_name" "#StickerKit_eslcologne2015_signature_taz_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_taz_foil" - "sticker_material" "cologne2015/sig_taz_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "234052" + "[gs_m4a1_vertigo]weapon_m4a1_silencer" "1" } - "478" + "set_vertigo_2021" { - "name" "eslcologne2015_signature_taz_gold" - "item_name" "#StickerKit_eslcologne2015_signature_taz_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_taz_gold" - "sticker_material" "cologne2015/sig_taz_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "234052" + "set_vertigo_2021_common" "1" + "set_vertigo_2021_uncommon" "1" + "set_vertigo_2021_rare" "1" + "set_vertigo_2021_mythical" "1" + "set_vertigo_2021_legendary" "1" + "set_vertigo_2021_ancient" "1" } - "479" + } + "item_sets" + { + "set_vertigo_2021" { - "name" "eslcologne2015_signature_snax" - "item_name" "#StickerKit_eslcologne2015_signature_snax" - "description_string" "#StickerKit_desc_eslcologne2015_signature_snax" - "sticker_material" "cologne2015/sig_snax" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "21875845" + "name" "#CSGO_set_vertigo_2021" + "set_description" "#CSGO_set_vertigo_2021_desc" + "is_collection" "1" + "items" + { + "[hy_vertigospray_blue]weapon_mac10" "1" + "[aa_wiring_yellow]weapon_famas" "1" + "[sp_tire_tread_blue]weapon_xm1014" "1" + "[hy_vertigoillusion]weapon_cz75a" "1" + "[sp_engine_dirty]weapon_elite" "1" + "[sp_tire_tread_red]weapon_glock" "1" + "[aa_engine_performance]weapon_ump45" "1" + "[am_carbon_fiber]weapon_ssg08" "1" + "[aa_wiring]weapon_bizon" "1" + "[hy_ak47lam_green]weapon_ak47" "1" + "[hy_vertigogeo]weapon_p90" "1" + "[hy_vertigoillusion_yellow]weapon_nova" "1" + "[hy_vertigospray]weapon_negev" "1" + "[sp_galil_caution]weapon_galilar" "1" + "[hy_geometric_steps_pearl]weapon_mag7" "1" + "[aa_vertigogeo_neon]weapon_p250" "1" + "[cu_vertigo_fiveseven]weapon_fiveseven" "1" + "[cu_sg553_caution]weapon_sg556" "1" + "[gs_m4a1_vertigo]weapon_m4a1_silencer" "1" + } } - "480" + } + "paint_kits_rarity" + { + "hy_ak47lam_green" "uncommon" + "sp_galil_caution" "mythical" + "hy_geometric_steps_pearl" "mythical" + "gs_m4a1_vertigo" "legendary" + "hy_vertigogeo" "rare" + "hy_vertigospray_blue" "common" + "hy_vertigoillusion" "common" + "hy_vertigoillusion_yellow" "rare" + "hy_vertigospray" "rare" + "aa_vertigogeo_neon" "mythical" + "cu_vertigo_fiveseven" "legendary" + "aa_wiring_yellow" "common" + "cu_sg553_caution" "legendary" + "aa_engine_performance" "uncommon" + "aa_wiring" "uncommon" + "sp_engine_dirty" "common" + "sp_tire_tread_red" "common" + "sp_tire_tread_blue" "common" + } + "sticker_kits" + { + "4817" { - "name" "eslcologne2015_signature_snax_foil" - "item_name" "#StickerKit_eslcologne2015_signature_snax_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_snax_foil" - "sticker_material" "cologne2015/sig_snax_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "21875845" + "name" "gnar_01" + "item_name" "#StickerKit_riptide_surfshop_gnar_01" + "description_string" "#StickerKit_desc_riptide_surfshop_gnar_01" + "sticker_material" "riptide_surfshop/gnar_01" + "item_rarity" "rare" } - "481" + "4818" { - "name" "eslcologne2015_signature_snax_gold" - "item_name" "#StickerKit_eslcologne2015_signature_snax_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_snax_gold" - "sticker_material" "cologne2015/sig_snax_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "21875845" + "name" "gnar_02" + "item_name" "#StickerKit_riptide_surfshop_gnar_02" + "description_string" "#StickerKit_desc_riptide_surfshop_gnar_02" + "sticker_material" "riptide_surfshop/gnar_02" + "item_rarity" "rare" } - "482" + "4819" { - "name" "eslcologne2015_signature_byali" - "item_name" "#StickerKit_eslcologne2015_signature_byali" - "description_string" "#StickerKit_desc_eslcologne2015_signature_byali" - "sticker_material" "cologne2015/sig_byali" + "name" "gnar_03" + "item_name" "#StickerKit_riptide_surfshop_gnar_03" + "description_string" "#StickerKit_desc_riptide_surfshop_gnar_03" + "sticker_material" "riptide_surfshop/gnar_03" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "18860354" } - "483" + "4820" { - "name" "eslcologne2015_signature_byali_foil" - "item_name" "#StickerKit_eslcologne2015_signature_byali_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_byali_foil" - "sticker_material" "cologne2015/sig_byali_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "18860354" + "name" "gnar_04" + "item_name" "#StickerKit_riptide_surfshop_gnar_04" + "description_string" "#StickerKit_desc_riptide_surfshop_gnar_04" + "sticker_material" "riptide_surfshop/gnar_04" + "item_rarity" "rare" } - "484" + "4821" { - "name" "eslcologne2015_signature_byali_gold" - "item_name" "#StickerKit_eslcologne2015_signature_byali_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_byali_gold" - "sticker_material" "cologne2015/sig_byali_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" - "tournament_player_id" "18860354" + "name" "jaggyfish_01" + "item_name" "#StickerKit_riptide_surfshop_jaggyfish_01" + "description_string" "#StickerKit_desc_riptide_surfshop_jaggyfish_01" + "sticker_material" "riptide_surfshop/jaggyfish_01" + "item_rarity" "rare" } - "485" + "4822" { - "name" "eslcologne2015_signature_chrisj" - "item_name" "#StickerKit_eslcologne2015_signature_chrisj" - "description_string" "#StickerKit_desc_eslcologne2015_signature_chrisj" - "sticker_material" "cologne2015/sig_chrisj" + "name" "jaggyfish_02" + "item_name" "#StickerKit_riptide_surfshop_jaggyfish_02" + "description_string" "#StickerKit_desc_riptide_surfshop_jaggyfish_02" + "sticker_material" "riptide_surfshop/jaggyfish_02" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "28273376" } - "486" + "4823" { - "name" "eslcologne2015_signature_chrisj_foil" - "item_name" "#StickerKit_eslcologne2015_signature_chrisj_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_chrisj_foil" - "sticker_material" "cologne2015/sig_chrisj_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "28273376" + "name" "jaggyfish_03" + "item_name" "#StickerKit_riptide_surfshop_jaggyfish_03" + "description_string" "#StickerKit_desc_riptide_surfshop_jaggyfish_03" + "sticker_material" "riptide_surfshop/jaggyfish_03" + "item_rarity" "rare" } - "487" + "4824" { - "name" "eslcologne2015_signature_chrisj_gold" - "item_name" "#StickerKit_eslcologne2015_signature_chrisj_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_chrisj_gold" - "sticker_material" "cologne2015/sig_chrisj_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "28273376" + "name" "jaggyfish_04" + "item_name" "#StickerKit_riptide_surfshop_jaggyfish_04" + "description_string" "#StickerKit_desc_riptide_surfshop_jaggyfish_04" + "sticker_material" "riptide_surfshop/jaggyfish_04" + "item_rarity" "rare" } - "488" + "4825" { - "name" "eslcologne2015_signature_gobb" - "item_name" "#StickerKit_eslcologne2015_signature_gobb" - "description_string" "#StickerKit_desc_eslcologne2015_signature_gobb" - "sticker_material" "cologne2015/sig_gobb" + "name" "lethal_01" + "item_name" "#StickerKit_riptide_surfshop_lethal_01" + "description_string" "#StickerKit_desc_riptide_surfshop_lethal_01" + "sticker_material" "riptide_surfshop/lethal_01" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "1162165" } - "489" + "4826" { - "name" "eslcologne2015_signature_gobb_foil" - "item_name" "#StickerKit_eslcologne2015_signature_gobb_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_gobb_foil" - "sticker_material" "cologne2015/sig_gobb_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "1162165" + "name" "lethal_02" + "item_name" "#StickerKit_riptide_surfshop_lethal_02" + "description_string" "#StickerKit_desc_riptide_surfshop_lethal_02" + "sticker_material" "riptide_surfshop/lethal_02" + "item_rarity" "rare" } - "490" + "4827" { - "name" "eslcologne2015_signature_gobb_gold" - "item_name" "#StickerKit_eslcologne2015_signature_gobb_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_gobb_gold" - "sticker_material" "cologne2015/sig_gobb_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "1162165" + "name" "lethal_03" + "item_name" "#StickerKit_riptide_surfshop_lethal_03" + "description_string" "#StickerKit_desc_riptide_surfshop_lethal_03" + "sticker_material" "riptide_surfshop/lethal_03" + "item_rarity" "rare" } - "491" + "4828" { - "name" "eslcologne2015_signature_denis" - "item_name" "#StickerKit_eslcologne2015_signature_denis" - "description_string" "#StickerKit_desc_eslcologne2015_signature_denis" - "sticker_material" "cologne2015/sig_denis" + "name" "lethal_04" + "item_name" "#StickerKit_riptide_surfshop_lethal_04" + "description_string" "#StickerKit_desc_riptide_surfshop_lethal_04" + "sticker_material" "riptide_surfshop/lethal_04" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "31185376" } - "492" + "4829" { - "name" "eslcologne2015_signature_denis_foil" - "item_name" "#StickerKit_eslcologne2015_signature_denis_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_denis_foil" - "sticker_material" "cologne2015/sig_denis_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "31185376" + "name" "monster_ak_01" + "item_name" "#StickerKit_riptide_surfshop_monster_ak_01" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_ak_01" + "sticker_material" "riptide_surfshop/monster_ak_01" + "item_rarity" "rare" } - "493" + "4830" { - "name" "eslcologne2015_signature_denis_gold" - "item_name" "#StickerKit_eslcologne2015_signature_denis_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_denis_gold" - "sticker_material" "cologne2015/sig_denis_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "31185376" + "name" "monster_ak_02" + "item_name" "#StickerKit_riptide_surfshop_monster_ak_02" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_ak_02" + "sticker_material" "riptide_surfshop/monster_ak_02" + "item_rarity" "rare" } - "494" + "4831" { - "name" "eslcologne2015_signature_nex" - "item_name" "#StickerKit_eslcologne2015_signature_nex" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nex" - "sticker_material" "cologne2015/sig_nex" + "name" "monster_ak_03" + "item_name" "#StickerKit_riptide_surfshop_monster_ak_03" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_ak_03" + "sticker_material" "riptide_surfshop/monster_ak_03" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "90378773" } - "495" + "4832" { - "name" "eslcologne2015_signature_nex_foil" - "item_name" "#StickerKit_eslcologne2015_signature_nex_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nex_foil" - "sticker_material" "cologne2015/sig_nex_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "90378773" + "name" "monster_ak_04" + "item_name" "#StickerKit_riptide_surfshop_monster_ak_04" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_ak_04" + "sticker_material" "riptide_surfshop/monster_ak_04" + "item_rarity" "rare" } - "496" + "4833" { - "name" "eslcologne2015_signature_nex_gold" - "item_name" "#StickerKit_eslcologne2015_signature_nex_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nex_gold" - "sticker_material" "cologne2015/sig_nex_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "90378773" + "name" "monster_awp_01" + "item_name" "#StickerKit_riptide_surfshop_monster_awp_01" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_awp_01" + "sticker_material" "riptide_surfshop/monster_awp_01" + "item_rarity" "rare" } - "497" + "4834" { - "name" "eslcologne2015_signature_spiidi" - "item_name" "#StickerKit_eslcologne2015_signature_spiidi" - "description_string" "#StickerKit_desc_eslcologne2015_signature_spiidi" - "sticker_material" "cologne2015/sig_spiidi" + "name" "monster_awp_02" + "item_name" "#StickerKit_riptide_surfshop_monster_awp_02" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_awp_02" + "sticker_material" "riptide_surfshop/monster_awp_02" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "13465075" } - "498" + "4835" { - "name" "eslcologne2015_signature_spiidi_foil" - "item_name" "#StickerKit_eslcologne2015_signature_spiidi_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_spiidi_foil" - "sticker_material" "cologne2015/sig_spiidi_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "13465075" + "name" "monster_awp_03" + "item_name" "#StickerKit_riptide_surfshop_monster_awp_03" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_awp_03" + "sticker_material" "riptide_surfshop/monster_awp_03" + "item_rarity" "rare" } - "499" + "4836" { - "name" "eslcologne2015_signature_spiidi_gold" - "item_name" "#StickerKit_eslcologne2015_signature_spiidi_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_spiidi_gold" - "sticker_material" "cologne2015/sig_spiidi_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" - "tournament_player_id" "13465075" + "name" "monster_awp_04" + "item_name" "#StickerKit_riptide_surfshop_monster_awp_04" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_awp_04" + "sticker_material" "riptide_surfshop/monster_awp_04" + "item_rarity" "rare" } - "500" + "4837" { - "name" "eslcologne2015_signature_azr" - "item_name" "#StickerKit_eslcologne2015_signature_azr" - "description_string" "#StickerKit_desc_eslcologne2015_signature_azr" - "sticker_material" "cologne2015/sig_azr" + "name" "monster_bomb_01" + "item_name" "#StickerKit_riptide_surfshop_monster_bomb_01" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_bomb_01" + "sticker_material" "riptide_surfshop/monster_bomb_01" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "24832266" } - "501" + "4838" { - "name" "eslcologne2015_signature_azr_foil" - "item_name" "#StickerKit_eslcologne2015_signature_azr_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_azr_foil" - "sticker_material" "cologne2015/sig_azr_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "24832266" + "name" "monster_bomb_02" + "item_name" "#StickerKit_riptide_surfshop_monster_bomb_02" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_bomb_02" + "sticker_material" "riptide_surfshop/monster_bomb_02" + "item_rarity" "rare" } - "502" + "4839" { - "name" "eslcologne2015_signature_azr_gold" - "item_name" "#StickerKit_eslcologne2015_signature_azr_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_azr_gold" - "sticker_material" "cologne2015/sig_azr_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "24832266" + "name" "monster_bomb_03" + "item_name" "#StickerKit_riptide_surfshop_monster_bomb_03" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_bomb_03" + "sticker_material" "riptide_surfshop/monster_bomb_03" + "item_rarity" "rare" } - "503" + "4840" { - "name" "eslcologne2015_signature_havoc" - "item_name" "#StickerKit_eslcologne2015_signature_havoc" - "description_string" "#StickerKit_desc_eslcologne2015_signature_havoc" - "sticker_material" "cologne2015/sig_havoc" + "name" "monster_bomb_04" + "item_name" "#StickerKit_riptide_surfshop_monster_bomb_04" + "description_string" "#StickerKit_desc_riptide_surfshop_monster_bomb_04" + "sticker_material" "riptide_surfshop/monster_bomb_04" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "10025211" } - "504" + "4841" { - "name" "eslcologne2015_signature_havoc_foil" - "item_name" "#StickerKit_eslcologne2015_signature_havoc_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_havoc_foil" - "sticker_material" "cologne2015/sig_havoc_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "10025211" + "name" "surf_octo_01" + "item_name" "#StickerKit_riptide_surfshop_surf_octo_01" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_octo_01" + "sticker_material" "riptide_surfshop/surf_octo_01" + "item_rarity" "rare" } - "505" + "4842" { - "name" "eslcologne2015_signature_havoc_gold" - "item_name" "#StickerKit_eslcologne2015_signature_havoc_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_havoc_gold" - "sticker_material" "cologne2015/sig_havoc_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "10025211" + "name" "surf_octo_02" + "item_name" "#StickerKit_riptide_surfshop_surf_octo_02" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_octo_02" + "sticker_material" "riptide_surfshop/surf_octo_02" + "item_rarity" "rare" } - "506" + "4843" { - "name" "eslcologne2015_signature_jks" - "item_name" "#StickerKit_eslcologne2015_signature_jks" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jks" - "sticker_material" "cologne2015/sig_jks" + "name" "surf_octo_03" + "item_name" "#StickerKit_riptide_surfshop_surf_octo_03" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_octo_03" + "sticker_material" "riptide_surfshop/surf_octo_03" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "16839456" } - "507" + "4844" { - "name" "eslcologne2015_signature_jks_foil" - "item_name" "#StickerKit_eslcologne2015_signature_jks_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jks_foil" - "sticker_material" "cologne2015/sig_jks_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "16839456" + "name" "surf_octo_04" + "item_name" "#StickerKit_riptide_surfshop_surf_octo_04" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_octo_04" + "sticker_material" "riptide_surfshop/surf_octo_04" + "item_rarity" "rare" } - "508" + "4845" { - "name" "eslcologne2015_signature_jks_gold" - "item_name" "#StickerKit_eslcologne2015_signature_jks_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jks_gold" - "sticker_material" "cologne2015/sig_jks_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "16839456" + "name" "swordfish_01" + "item_name" "#StickerKit_riptide_surfshop_swordfish_01" + "description_string" "#StickerKit_desc_riptide_surfshop_swordfish_01" + "sticker_material" "riptide_surfshop/swordfish_01" + "item_rarity" "rare" } - "509" + "4846" { - "name" "eslcologne2015_signature_spunj" - "item_name" "#StickerKit_eslcologne2015_signature_spunj" - "description_string" "#StickerKit_desc_eslcologne2015_signature_spunj" - "sticker_material" "cologne2015/sig_spunj" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "34303888" + "name" "swordfish_02" + "item_name" "#StickerKit_riptide_surfshop_swordfish_02" + "description_string" "#StickerKit_desc_riptide_surfshop_swordfish_02" + "sticker_material" "riptide_surfshop/swordfish_02" + "item_rarity" "rare" } - "510" + "4847" { - "name" "eslcologne2015_signature_spunj_foil" - "item_name" "#StickerKit_eslcologne2015_signature_spunj_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_spunj_foil" - "sticker_material" "cologne2015/sig_spunj_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "34303888" + "name" "swordfish_03" + "item_name" "#StickerKit_riptide_surfshop_swordfish_03" + "description_string" "#StickerKit_desc_riptide_surfshop_swordfish_03" + "sticker_material" "riptide_surfshop/swordfish_03" + "item_rarity" "rare" } - "511" + "4848" { - "name" "eslcologne2015_signature_spunj_gold" - "item_name" "#StickerKit_eslcologne2015_signature_spunj_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_spunj_gold" - "sticker_material" "cologne2015/sig_spunj_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "34303888" + "name" "swordfish_04" + "item_name" "#StickerKit_riptide_surfshop_swordfish_04" + "description_string" "#StickerKit_desc_riptide_surfshop_swordfish_04" + "sticker_material" "riptide_surfshop/swordfish_04" + "item_rarity" "rare" } - "512" + "4849" { - "name" "eslcologne2015_signature_yam" - "item_name" "#StickerKit_eslcologne2015_signature_yam" - "description_string" "#StickerKit_desc_eslcologne2015_signature_yam" - "sticker_material" "cologne2015/sig_yam" + "name" "wave_rider_01" + "item_name" "#StickerKit_riptide_surfshop_wave_rider_01" + "description_string" "#StickerKit_desc_riptide_surfshop_wave_rider_01" + "sticker_material" "riptide_surfshop/wave_rider_01" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "30659" } - "513" + "4850" { - "name" "eslcologne2015_signature_yam_foil" - "item_name" "#StickerKit_eslcologne2015_signature_yam_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_yam_foil" - "sticker_material" "cologne2015/sig_yam_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "30659" + "name" "wave_rider_02" + "item_name" "#StickerKit_riptide_surfshop_wave_rider_02" + "description_string" "#StickerKit_desc_riptide_surfshop_wave_rider_02" + "sticker_material" "riptide_surfshop/wave_rider_02" + "item_rarity" "rare" } - "514" + "4851" { - "name" "eslcologne2015_signature_yam_gold" - "item_name" "#StickerKit_eslcologne2015_signature_yam_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_yam_gold" - "sticker_material" "cologne2015/sig_yam_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" - "tournament_player_id" "30659" + "name" "wave_rider_03" + "item_name" "#StickerKit_riptide_surfshop_wave_rider_03" + "description_string" "#StickerKit_desc_riptide_surfshop_wave_rider_03" + "sticker_material" "riptide_surfshop/wave_rider_03" + "item_rarity" "rare" } - "515" + "4852" { - "name" "eslcologne2015_signature_ustilo" - "item_name" "#StickerKit_eslcologne2015_signature_ustilo" - "description_string" "#StickerKit_desc_eslcologne2015_signature_ustilo" - "sticker_material" "cologne2015/sig_ustilo" + "name" "wave_rider_04" + "item_name" "#StickerKit_riptide_surfshop_wave_rider_04" + "description_string" "#StickerKit_desc_riptide_surfshop_wave_rider_04" + "sticker_material" "riptide_surfshop/wave_rider_04" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "18903255" } - "516" + "4853" { - "name" "eslcologne2015_signature_ustilo_foil" - "item_name" "#StickerKit_eslcologne2015_signature_ustilo_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_ustilo_foil" - "sticker_material" "cologne2015/sig_ustilo_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "18903255" + "name" "buttery_01" + "item_name" "#StickerKit_riptide_surfshop_buttery_01" + "description_string" "#StickerKit_desc_riptide_surfshop_buttery_01" + "sticker_material" "riptide_surfshop/buttery_01" + "item_rarity" "mythical" } - "517" + "4854" { - "name" "eslcologne2015_signature_ustilo_gold" - "item_name" "#StickerKit_eslcologne2015_signature_ustilo_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_ustilo_gold" - "sticker_material" "cologne2015/sig_ustilo_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "18903255" + "name" "buttery_02" + "item_name" "#StickerKit_riptide_surfshop_buttery_02" + "description_string" "#StickerKit_desc_riptide_surfshop_buttery_02" + "sticker_material" "riptide_surfshop/buttery_02" + "item_rarity" "mythical" } - "518" + "4855" { - "name" "eslcologne2015_signature_rickeh" - "item_name" "#StickerKit_eslcologne2015_signature_rickeh" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rickeh" - "sticker_material" "cologne2015/sig_rickeh" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "3215921" + "name" "buttery_03" + "item_name" "#StickerKit_riptide_surfshop_buttery_03" + "description_string" "#StickerKit_desc_riptide_surfshop_buttery_03" + "sticker_material" "riptide_surfshop/buttery_03" + "item_rarity" "mythical" } - "519" + "4856" { - "name" "eslcologne2015_signature_rickeh_foil" - "item_name" "#StickerKit_eslcologne2015_signature_rickeh_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rickeh_foil" - "sticker_material" "cologne2015/sig_rickeh_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "3215921" + "name" "buttery_04" + "item_name" "#StickerKit_riptide_surfshop_buttery_04" + "description_string" "#StickerKit_desc_riptide_surfshop_buttery_04" + "sticker_material" "riptide_surfshop/buttery_04" + "item_rarity" "mythical" } - "520" + "4857" { - "name" "eslcologne2015_signature_rickeh_gold" - "item_name" "#StickerKit_eslcologne2015_signature_rickeh_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rickeh_gold" - "sticker_material" "cologne2015/sig_rickeh_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "3215921" + "name" "flick_01" + "item_name" "#StickerKit_riptide_surfshop_flick_01" + "description_string" "#StickerKit_desc_riptide_surfshop_flick_01" + "sticker_material" "riptide_surfshop/flick_01" + "item_rarity" "mythical" } - "521" + "4858" { - "name" "eslcologne2015_signature_emagine" - "item_name" "#StickerKit_eslcologne2015_signature_emagine" - "description_string" "#StickerKit_desc_eslcologne2015_signature_emagine" - "sticker_material" "cologne2015/sig_emagine" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "19633654" + "name" "flick_02" + "item_name" "#StickerKit_riptide_surfshop_flick_02" + "description_string" "#StickerKit_desc_riptide_surfshop_flick_02" + "sticker_material" "riptide_surfshop/flick_02" + "item_rarity" "mythical" } - "522" + "4859" { - "name" "eslcologne2015_signature_emagine_foil" - "item_name" "#StickerKit_eslcologne2015_signature_emagine_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_emagine_foil" - "sticker_material" "cologne2015/sig_emagine_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "19633654" + "name" "flick_03" + "item_name" "#StickerKit_riptide_surfshop_flick_03" + "description_string" "#StickerKit_desc_riptide_surfshop_flick_03" + "sticker_material" "riptide_surfshop/flick_03" + "item_rarity" "mythical" } - "523" + "4860" { - "name" "eslcologne2015_signature_emagine_gold" - "item_name" "#StickerKit_eslcologne2015_signature_emagine_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_emagine_gold" - "sticker_material" "cologne2015/sig_emagine_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "19633654" + "name" "flick_04" + "item_name" "#StickerKit_riptide_surfshop_flick_04" + "description_string" "#StickerKit_desc_riptide_surfshop_flick_04" + "sticker_material" "riptide_surfshop/flick_04" + "item_rarity" "mythical" } - "524" + "4861" { - "name" "eslcologne2015_signature_snyper" - "item_name" "#StickerKit_eslcologne2015_signature_snyper" - "description_string" "#StickerKit_desc_eslcologne2015_signature_snyper" - "sticker_material" "cologne2015/sig_snyper" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "7436549" + "name" "flow_01" + "item_name" "#StickerKit_riptide_surfshop_flow_01" + "description_string" "#StickerKit_desc_riptide_surfshop_flow_01" + "sticker_material" "riptide_surfshop/flow_01" + "item_rarity" "mythical" } - "525" + "4862" { - "name" "eslcologne2015_signature_snyper_foil" - "item_name" "#StickerKit_eslcologne2015_signature_snyper_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_snyper_foil" - "sticker_material" "cologne2015/sig_snyper_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "7436549" + "name" "flow_02" + "item_name" "#StickerKit_riptide_surfshop_flow_02" + "description_string" "#StickerKit_desc_riptide_surfshop_flow_02" + "sticker_material" "riptide_surfshop/flow_02" + "item_rarity" "mythical" } - "526" + "4863" { - "name" "eslcologne2015_signature_snyper_gold" - "item_name" "#StickerKit_eslcologne2015_signature_snyper_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_snyper_gold" - "sticker_material" "cologne2015/sig_snyper_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "7436549" + "name" "flow_03" + "item_name" "#StickerKit_riptide_surfshop_flow_03" + "description_string" "#StickerKit_desc_riptide_surfshop_flow_03" + "sticker_material" "riptide_surfshop/flow_03" + "item_rarity" "mythical" } - "527" + "4864" { - "name" "eslcologne2015_signature_james" - "item_name" "#StickerKit_eslcologne2015_signature_james" - "description_string" "#StickerKit_desc_eslcologne2015_signature_james" - "sticker_material" "cologne2015/sig_james" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "35336006" + "name" "flow_04" + "item_name" "#StickerKit_riptide_surfshop_flow_04" + "description_string" "#StickerKit_desc_riptide_surfshop_flow_04" + "sticker_material" "riptide_surfshop/flow_04" + "item_rarity" "mythical" } - "528" + "4865" { - "name" "eslcologne2015_signature_james_foil" - "item_name" "#StickerKit_eslcologne2015_signature_james_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_james_foil" - "sticker_material" "cologne2015/sig_james_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "35336006" + "name" "skill_surf_01" + "item_name" "#StickerKit_riptide_surfshop_skill_surf_01" + "description_string" "#StickerKit_desc_riptide_surfshop_skill_surf_01" + "sticker_material" "riptide_surfshop/skill_surf_01" + "item_rarity" "mythical" } - "529" + "4866" { - "name" "eslcologne2015_signature_james_gold" - "item_name" "#StickerKit_eslcologne2015_signature_james_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_james_gold" - "sticker_material" "cologne2015/sig_james_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" - "tournament_player_id" "35336006" + "name" "skill_surf_02" + "item_name" "#StickerKit_riptide_surfshop_skill_surf_02" + "description_string" "#StickerKit_desc_riptide_surfshop_skill_surf_02" + "sticker_material" "riptide_surfshop/skill_surf_02" + "item_rarity" "mythical" } - "530" + "4867" { - "name" "eslcologne2015_signature_markeloff" - "item_name" "#StickerKit_eslcologne2015_signature_markeloff" - "description_string" "#StickerKit_desc_eslcologne2015_signature_markeloff" - "sticker_material" "cologne2015/sig_markeloff" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "5667261" + "name" "skill_surf_03" + "item_name" "#StickerKit_riptide_surfshop_skill_surf_03" + "description_string" "#StickerKit_desc_riptide_surfshop_skill_surf_03" + "sticker_material" "riptide_surfshop/skill_surf_03" + "item_rarity" "mythical" } - "531" + "4868" { - "name" "eslcologne2015_signature_markeloff_foil" - "item_name" "#StickerKit_eslcologne2015_signature_markeloff_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_markeloff_foil" - "sticker_material" "cologne2015/sig_markeloff_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "5667261" + "name" "skill_surf_04" + "item_name" "#StickerKit_riptide_surfshop_skill_surf_04" + "description_string" "#StickerKit_desc_riptide_surfshop_skill_surf_04" + "sticker_material" "riptide_surfshop/skill_surf_04" + "item_rarity" "mythical" } - "532" + "4869" { - "name" "eslcologne2015_signature_markeloff_gold" - "item_name" "#StickerKit_eslcologne2015_signature_markeloff_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_markeloff_gold" - "sticker_material" "cologne2015/sig_markeloff_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "5667261" + "name" "strafe_01" + "item_name" "#StickerKit_riptide_surfshop_strafe_01" + "description_string" "#StickerKit_desc_riptide_surfshop_strafe_01" + "sticker_material" "riptide_surfshop/strafe_01" + "item_rarity" "mythical" } - "533" + "4870" { - "name" "eslcologne2015_signature_b1ad3" - "item_name" "#StickerKit_eslcologne2015_signature_b1ad3" - "description_string" "#StickerKit_desc_eslcologne2015_signature_b1ad3" - "sticker_material" "cologne2015/sig_b1ad3" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "53258137" + "name" "strafe_02" + "item_name" "#StickerKit_riptide_surfshop_strafe_02" + "description_string" "#StickerKit_desc_riptide_surfshop_strafe_02" + "sticker_material" "riptide_surfshop/strafe_02" + "item_rarity" "mythical" } - "534" + "4871" { - "name" "eslcologne2015_signature_b1ad3_foil" - "item_name" "#StickerKit_eslcologne2015_signature_b1ad3_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_b1ad3_foil" - "sticker_material" "cologne2015/sig_b1ad3_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "53258137" + "name" "strafe_03" + "item_name" "#StickerKit_riptide_surfshop_strafe_03" + "description_string" "#StickerKit_desc_riptide_surfshop_strafe_03" + "sticker_material" "riptide_surfshop/strafe_03" + "item_rarity" "mythical" } - "535" + "4872" { - "name" "eslcologne2015_signature_b1ad3_gold" - "item_name" "#StickerKit_eslcologne2015_signature_b1ad3_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_b1ad3_gold" - "sticker_material" "cologne2015/sig_b1ad3_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "53258137" + "name" "strafe_04" + "item_name" "#StickerKit_riptide_surfshop_strafe_04" + "description_string" "#StickerKit_desc_riptide_surfshop_strafe_04" + "sticker_material" "riptide_surfshop/strafe_04" + "item_rarity" "mythical" } - "536" + "4873" { - "name" "eslcologne2015_signature_bondik" - "item_name" "#StickerKit_eslcologne2015_signature_bondik" - "description_string" "#StickerKit_desc_eslcologne2015_signature_bondik" - "sticker_material" "cologne2015/sig_bondik" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "46918643" + "name" "tier6_01" + "item_name" "#StickerKit_riptide_surfshop_tier6_01" + "description_string" "#StickerKit_desc_riptide_surfshop_tier6_01" + "sticker_material" "riptide_surfshop/tier6_01" + "item_rarity" "mythical" } - "537" + "4874" { - "name" "eslcologne2015_signature_bondik_foil" - "item_name" "#StickerKit_eslcologne2015_signature_bondik_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_bondik_foil" - "sticker_material" "cologne2015/sig_bondik_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "46918643" + "name" "tier6_02" + "item_name" "#StickerKit_riptide_surfshop_tier6_02" + "description_string" "#StickerKit_desc_riptide_surfshop_tier6_02" + "sticker_material" "riptide_surfshop/tier6_02" + "item_rarity" "mythical" } - "538" + "4875" { - "name" "eslcologne2015_signature_bondik_gold" - "item_name" "#StickerKit_eslcologne2015_signature_bondik_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_bondik_gold" - "sticker_material" "cologne2015/sig_bondik_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "46918643" + "name" "tier6_03" + "item_name" "#StickerKit_riptide_surfshop_tier6_03" + "description_string" "#StickerKit_desc_riptide_surfshop_tier6_03" + "sticker_material" "riptide_surfshop/tier6_03" + "item_rarity" "mythical" } - "539" + "4876" { - "name" "eslcologne2015_signature_worldedit" - "item_name" "#StickerKit_eslcologne2015_signature_worldedit" - "description_string" "#StickerKit_desc_eslcologne2015_signature_worldedit" - "sticker_material" "cologne2015/sig_worldedit" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "36732188" + "name" "tier6_04" + "item_name" "#StickerKit_riptide_surfshop_tier6_04" + "description_string" "#StickerKit_desc_riptide_surfshop_tier6_04" + "sticker_material" "riptide_surfshop/tier6_04" + "item_rarity" "mythical" } - "540" + "4877" { - "name" "eslcologne2015_signature_worldedit_foil" - "item_name" "#StickerKit_eslcologne2015_signature_worldedit_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_worldedit_foil" - "sticker_material" "cologne2015/sig_worldedit_foil" + "name" "surf_ava_01" + "item_name" "#StickerKit_riptide_surfshop_surf_ava_01" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_ava_01" + "sticker_material" "riptide_surfshop/surf_ava_01" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "36732188" } - "541" + "4878" { - "name" "eslcologne2015_signature_worldedit_gold" - "item_name" "#StickerKit_eslcologne2015_signature_worldedit_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_worldedit_gold" - "sticker_material" "cologne2015/sig_worldedit_gold" + "name" "surf_ava_02" + "item_name" "#StickerKit_riptide_surfshop_surf_ava_02" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_ava_02" + "sticker_material" "riptide_surfshop/surf_ava_02" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "36732188" } - "542" + "4879" { - "name" "eslcologne2015_signature_davcost" - "item_name" "#StickerKit_eslcologne2015_signature_davcost" - "description_string" "#StickerKit_desc_eslcologne2015_signature_davcost" - "sticker_material" "cologne2015/sig_davcost" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "20273529" + "name" "surf_ava_03" + "item_name" "#StickerKit_riptide_surfshop_surf_ava_03" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_ava_03" + "sticker_material" "riptide_surfshop/surf_ava_03" + "item_rarity" "legendary" } - "543" + "4880" { - "name" "eslcologne2015_signature_davcost_foil" - "item_name" "#StickerKit_eslcologne2015_signature_davcost_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_davcost_foil" - "sticker_material" "cologne2015/sig_davcost_foil" + "name" "surf_ava_04" + "item_name" "#StickerKit_riptide_surfshop_surf_ava_04" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_ava_04" + "sticker_material" "riptide_surfshop/surf_ava_04" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "20273529" } - "544" + "4881" { - "name" "eslcologne2015_signature_davcost_gold" - "item_name" "#StickerKit_eslcologne2015_signature_davcost_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_davcost_gold" - "sticker_material" "cologne2015/sig_davcost_gold" + "name" "poisonfrog_01" + "item_name" "#StickerKit_riptide_surfshop_poisonfrog_01" + "description_string" "#StickerKit_desc_riptide_surfshop_poisonfrog_01" + "sticker_material" "riptide_surfshop/poisonfrog_01" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" - "tournament_player_id" "20273529" } - "545" + "4920" { - "name" "eslcologne2015_signature_dennis" - "item_name" "#StickerKit_eslcologne2015_signature_dennis" - "description_string" "#StickerKit_desc_eslcologne2015_signature_dennis" - "sticker_material" "cologne2015/sig_dennis" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "108076825" + "name" "poisonfrog_02" + "item_name" "#StickerKit_riptide_surfshop_poisonfrog_02" + "description_string" "#StickerKit_desc_riptide_surfshop_poisonfrog_02" + "sticker_material" "riptide_surfshop/poisonfrog_02" + "item_rarity" "legendary" } - "546" + "4921" { - "name" "eslcologne2015_signature_dennis_foil" - "item_name" "#StickerKit_eslcologne2015_signature_dennis_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_dennis_foil" - "sticker_material" "cologne2015/sig_dennis_foil" + "name" "poisonfrog_03" + "item_name" "#StickerKit_riptide_surfshop_poisonfrog_03" + "description_string" "#StickerKit_desc_riptide_surfshop_poisonfrog_03" + "sticker_material" "riptide_surfshop/poisonfrog_03" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "108076825" } - "547" + "4922" { - "name" "eslcologne2015_signature_dennis_gold" - "item_name" "#StickerKit_eslcologne2015_signature_dennis_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_dennis_gold" - "sticker_material" "cologne2015/sig_dennis_gold" + "name" "poisonfrog_04" + "item_name" "#StickerKit_riptide_surfshop_poisonfrog_04" + "description_string" "#StickerKit_desc_riptide_surfshop_poisonfrog_04" + "sticker_material" "riptide_surfshop/poisonfrog_04" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "108076825" } - "548" + "4950" { - "name" "eslcologne2015_signature_scream" - "item_name" "#StickerKit_eslcologne2015_signature_scream" - "description_string" "#StickerKit_desc_eslcologne2015_signature_scream" - "sticker_material" "cologne2015/sig_scream" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "28502520" + "name" "surf_k_01" + "item_name" "#StickerKit_riptide_surfshop_surf_k_01" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_k_01" + "sticker_material" "riptide_surfshop/surf_k_01" + "item_rarity" "legendary" } - "549" + "4951" { - "name" "eslcologne2015_signature_scream_foil" - "item_name" "#StickerKit_eslcologne2015_signature_scream_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_scream_foil" - "sticker_material" "cologne2015/sig_scream_foil" + "name" "surf_k_02" + "item_name" "#StickerKit_riptide_surfshop_surf_k_02" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_k_02" + "sticker_material" "riptide_surfshop/surf_k_02" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "28502520" } - "550" + "4952" { - "name" "eslcologne2015_signature_scream_gold" - "item_name" "#StickerKit_eslcologne2015_signature_scream_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_scream_gold" - "sticker_material" "cologne2015/sig_scream_gold" + "name" "surf_k_03" + "item_name" "#StickerKit_riptide_surfshop_surf_k_03" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_k_03" + "sticker_material" "riptide_surfshop/surf_k_03" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "28502520" } - "551" + "4953" { - "name" "eslcologne2015_signature_rain" - "item_name" "#StickerKit_eslcologne2015_signature_rain" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rain" - "sticker_material" "cologne2015/sig_rain" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "37085479" + "name" "surf_k_04" + "item_name" "#StickerKit_riptide_surfshop_surf_k_04" + "description_string" "#StickerKit_desc_riptide_surfshop_surf_k_04" + "sticker_material" "riptide_surfshop/surf_k_04" + "item_rarity" "legendary" } - "552" + } + "items" + { + "4779" + { + "item_name" "#CSGO_crate_sticker_pack_riptide_surfshop" + "item_description" "#CSGO_crate_sticker_pack_riptide_surfshop_desc" + "name" "crate_sticker_pack_riptide_surfshop" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule" + "first_sale_date" "2021/08/01" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "318" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_riptide_surfshop_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_riptide_surfshop" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "318" "crate_sticker_pack_riptide_surfshop_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_riptide_surfshop_rewardgroup_0" { - "name" "eslcologne2015_signature_rain_foil" - "item_name" "#StickerKit_eslcologne2015_signature_rain_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rain_foil" - "sticker_material" "cologne2015/sig_rain_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "37085479" + "[gnar_01]sticker" "1" + "[gnar_02]sticker" "1" + "[gnar_03]sticker" "1" + "[gnar_04]sticker" "1" } - "553" + "crate_sticker_pack_riptide_surfshop_rewardgroup_1" { - "name" "eslcologne2015_signature_rain_gold" - "item_name" "#StickerKit_eslcologne2015_signature_rain_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rain_gold" - "sticker_material" "cologne2015/sig_rain_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "37085479" + "[jaggyfish_01]sticker" "1" + "[jaggyfish_02]sticker" "1" + "[jaggyfish_03]sticker" "1" + "[jaggyfish_04]sticker" "1" } - "554" + "crate_sticker_pack_riptide_surfshop_rewardgroup_2" { - "name" "eslcologne2015_signature_maikelele" - "item_name" "#StickerKit_eslcologne2015_signature_maikelele" - "description_string" "#StickerKit_desc_eslcologne2015_signature_maikelele" - "sticker_material" "cologne2015/sig_maikelele" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "925972" + "[lethal_01]sticker" "1" + "[lethal_02]sticker" "1" + "[lethal_03]sticker" "1" + "[lethal_04]sticker" "1" } - "555" + "crate_sticker_pack_riptide_surfshop_rewardgroup_3" { - "name" "eslcologne2015_signature_maikelele_foil" - "item_name" "#StickerKit_eslcologne2015_signature_maikelele_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_maikelele_foil" - "sticker_material" "cologne2015/sig_maikelele_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "925972" + "[monster_ak_01]sticker" "1" + "[monster_ak_02]sticker" "1" + "[monster_ak_03]sticker" "1" + "[monster_ak_04]sticker" "1" } - "556" + "crate_sticker_pack_riptide_surfshop_rewardgroup_4" { - "name" "eslcologne2015_signature_maikelele_gold" - "item_name" "#StickerKit_eslcologne2015_signature_maikelele_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_maikelele_gold" - "sticker_material" "cologne2015/sig_maikelele_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "925972" + "[monster_awp_01]sticker" "1" + "[monster_awp_02]sticker" "1" + "[monster_awp_03]sticker" "1" + "[monster_awp_04]sticker" "1" } - "557" + "crate_sticker_pack_riptide_surfshop_rewardgroup_5" { - "name" "eslcologne2015_signature_fox" - "item_name" "#StickerKit_eslcologne2015_signature_fox" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fox" - "sticker_material" "cologne2015/sig_fox" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "1939536" + "[monster_bomb_01]sticker" "1" + "[monster_bomb_02]sticker" "1" + "[monster_bomb_03]sticker" "1" + "[monster_bomb_04]sticker" "1" } - "558" + "crate_sticker_pack_riptide_surfshop_rewardgroup_6" { - "name" "eslcologne2015_signature_fox_foil" - "item_name" "#StickerKit_eslcologne2015_signature_fox_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fox_foil" - "sticker_material" "cologne2015/sig_fox_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "1939536" + "[surf_octo_01]sticker" "1" + "[surf_octo_02]sticker" "1" + "[surf_octo_03]sticker" "1" + "[surf_octo_04]sticker" "1" } - "559" + "crate_sticker_pack_riptide_surfshop_rewardgroup_7" { - "name" "eslcologne2015_signature_fox_gold" - "item_name" "#StickerKit_eslcologne2015_signature_fox_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fox_gold" - "sticker_material" "cologne2015/sig_fox_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" - "tournament_player_id" "1939536" + "[swordfish_01]sticker" "1" + "[swordfish_02]sticker" "1" + "[swordfish_03]sticker" "1" + "[swordfish_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_8" + { + "[wave_rider_01]sticker" "1" + "[wave_rider_02]sticker" "1" + "[wave_rider_03]sticker" "1" + "[wave_rider_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_9" + { + "[buttery_01]sticker" "1" + "[buttery_02]sticker" "1" + "[buttery_03]sticker" "1" + "[buttery_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_10" + { + "[flick_01]sticker" "1" + "[flick_02]sticker" "1" + "[flick_03]sticker" "1" + "[flick_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_11" + { + "[flow_01]sticker" "1" + "[flow_02]sticker" "1" + "[flow_03]sticker" "1" + "[flow_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_12" + { + "[skill_surf_01]sticker" "1" + "[skill_surf_02]sticker" "1" + "[skill_surf_03]sticker" "1" + "[skill_surf_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_13" + { + "[strafe_01]sticker" "1" + "[strafe_02]sticker" "1" + "[strafe_03]sticker" "1" + "[strafe_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_14" + { + "[tier6_01]sticker" "1" + "[tier6_02]sticker" "1" + "[tier6_03]sticker" "1" + "[tier6_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_15" + { + "[surf_ava_01]sticker" "1" + "[surf_ava_02]sticker" "1" + "[surf_ava_03]sticker" "1" + "[surf_ava_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_16" + { + "[surf_k_01]sticker" "1" + "[surf_k_02]sticker" "1" + "[surf_k_03]sticker" "1" + "[surf_k_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rewardgroup_17" + { + "[poisonfrog_01]sticker" "1" + "[poisonfrog_02]sticker" "1" + "[poisonfrog_03]sticker" "1" + "[poisonfrog_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_rare" + { + "[gnar_01]sticker" "1" + "[gnar_02]sticker" "1" + "[gnar_03]sticker" "1" + "[gnar_04]sticker" "1" + "[jaggyfish_01]sticker" "1" + "[jaggyfish_02]sticker" "1" + "[jaggyfish_03]sticker" "1" + "[jaggyfish_04]sticker" "1" + "[lethal_01]sticker" "1" + "[lethal_02]sticker" "1" + "[lethal_03]sticker" "1" + "[lethal_04]sticker" "1" + "[monster_ak_01]sticker" "1" + "[monster_ak_02]sticker" "1" + "[monster_ak_03]sticker" "1" + "[monster_ak_04]sticker" "1" + "[monster_awp_01]sticker" "1" + "[monster_awp_02]sticker" "1" + "[monster_awp_03]sticker" "1" + "[monster_awp_04]sticker" "1" + "[monster_bomb_01]sticker" "1" + "[monster_bomb_02]sticker" "1" + "[monster_bomb_03]sticker" "1" + "[monster_bomb_04]sticker" "1" + "[surf_octo_01]sticker" "1" + "[surf_octo_02]sticker" "1" + "[surf_octo_03]sticker" "1" + "[surf_octo_04]sticker" "1" + "[swordfish_01]sticker" "1" + "[swordfish_02]sticker" "1" + "[swordfish_03]sticker" "1" + "[swordfish_04]sticker" "1" + "[wave_rider_01]sticker" "1" + "[wave_rider_02]sticker" "1" + "[wave_rider_03]sticker" "1" + "[wave_rider_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_mythical" + { + "[buttery_01]sticker" "1" + "[buttery_02]sticker" "1" + "[buttery_03]sticker" "1" + "[buttery_04]sticker" "1" + "[flick_01]sticker" "1" + "[flick_02]sticker" "1" + "[flick_03]sticker" "1" + "[flick_04]sticker" "1" + "[flow_01]sticker" "1" + "[flow_02]sticker" "1" + "[flow_03]sticker" "1" + "[flow_04]sticker" "1" + "[skill_surf_01]sticker" "1" + "[skill_surf_02]sticker" "1" + "[skill_surf_03]sticker" "1" + "[skill_surf_04]sticker" "1" + "[strafe_01]sticker" "1" + "[strafe_02]sticker" "1" + "[strafe_03]sticker" "1" + "[strafe_04]sticker" "1" + "[tier6_01]sticker" "1" + "[tier6_02]sticker" "1" + "[tier6_03]sticker" "1" + "[tier6_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_legendary" + { + "[surf_ava_01]sticker" "1" + "[surf_ava_02]sticker" "1" + "[surf_ava_03]sticker" "1" + "[surf_ava_04]sticker" "1" + "[surf_k_01]sticker" "1" + "[surf_k_02]sticker" "1" + "[surf_k_03]sticker" "1" + "[surf_k_04]sticker" "1" + "[poisonfrog_01]sticker" "1" + "[poisonfrog_02]sticker" "1" + "[poisonfrog_03]sticker" "1" + "[poisonfrog_04]sticker" "1" + } + "crate_sticker_pack_riptide_surfshop_lootlist" + { + "crate_sticker_pack_riptide_surfshop_rare" "1" + "crate_sticker_pack_riptide_surfshop_mythical" "1" + "crate_sticker_pack_riptide_surfshop_legendary" "1" } - "560" + } + "sticker_kits" + { + "4882" { - "name" "eslcologne2015_signature_rallen" - "item_name" "#StickerKit_eslcologne2015_signature_rallen" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rallen" - "sticker_material" "cologne2015/sig_rallen" + "name" "community2021_clutch_or_kick_glossy" + "item_name" "#StickerKit_community2021_clutch_or_kick_glossy" + "description_string" "#StickerKit_desc_community2021_clutch_or_kick_glossy" + "sticker_material" "community2021/clutch_or_kick_glossy" + "item_rarity" "rare" + } + "4883" + { + "name" "community2021_dr_dazzles_paper" + "item_name" "#StickerKit_community2021_dr_dazzles_paper" + "description_string" "#StickerKit_desc_community2021_dr_dazzles_paper" + "sticker_material" "community2021/dr_dazzles_paper" + "item_rarity" "rare" + } + "4884" + { + "name" "community2021_ez_glossy" + "item_name" "#StickerKit_community2021_ez_glossy" + "description_string" "#StickerKit_desc_community2021_ez_glossy" + "sticker_material" "community2021/ez_glossy" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "31166738" } - "561" + "4885" { - "name" "eslcologne2015_signature_rallen_foil" - "item_name" "#StickerKit_eslcologne2015_signature_rallen_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rallen_foil" - "sticker_material" "cologne2015/sig_rallen_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "31166738" + "name" "community2021_fast_banana_paper" + "item_name" "#StickerKit_community2021_fast_banana_paper" + "description_string" "#StickerKit_desc_community2021_fast_banana_paper" + "sticker_material" "community2021/fast_banana_paper" + "item_rarity" "rare" } - "562" + "4886" { - "name" "eslcologne2015_signature_rallen_gold" - "item_name" "#StickerKit_eslcologne2015_signature_rallen_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rallen_gold" - "sticker_material" "cologne2015/sig_rallen_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "31166738" + "name" "community2021_hard_carry_paper" + "item_name" "#StickerKit_community2021_hard_carry_paper" + "description_string" "#StickerKit_desc_community2021_hard_carry_paper" + "sticker_material" "community2021/hard_carry_paper" + "item_rarity" "rare" } - "563" + "4887" { - "name" "eslcologne2015_signature_hyper" - "item_name" "#StickerKit_eslcologne2015_signature_hyper" - "description_string" "#StickerKit_desc_eslcologne2015_signature_hyper" - "sticker_material" "cologne2015/sig_hyper" + "name" "community2021_kitted_out_paper" + "item_name" "#StickerKit_community2021_kitted_out_paper" + "description_string" "#StickerKit_desc_community2021_kitted_out_paper" + "sticker_material" "community2021/kitted_out_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "10357481" } - "564" + "4888" { - "name" "eslcologne2015_signature_hyper_foil" - "item_name" "#StickerKit_eslcologne2015_signature_hyper_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_hyper_foil" - "sticker_material" "cologne2015/sig_hyper_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "10357481" + "name" "community2021_nademan_paper" + "item_name" "#StickerKit_community2021_nademan_paper" + "description_string" "#StickerKit_desc_community2021_nademan_paper" + "sticker_material" "community2021/nademan_paper" + "item_rarity" "rare" } - "565" + "4889" { - "name" "eslcologne2015_signature_hyper_gold" - "item_name" "#StickerKit_eslcologne2015_signature_hyper_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_hyper_gold" - "sticker_material" "cologne2015/sig_hyper_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "10357481" + "name" "community2021_no_time_paper" + "item_name" "#StickerKit_community2021_no_time_paper" + "description_string" "#StickerKit_desc_community2021_no_time_paper" + "sticker_material" "community2021/no_time_paper" + "item_rarity" "rare" } - "566" + "4890" { - "name" "eslcologne2015_signature_peet" - "item_name" "#StickerKit_eslcologne2015_signature_peet" - "description_string" "#StickerKit_desc_eslcologne2015_signature_peet" - "sticker_material" "cologne2015/sig_peet" + "name" "community2021_retro_leet_paper" + "item_name" "#StickerKit_community2021_retro_leet_paper" + "description_string" "#StickerKit_desc_community2021_retro_leet_paper" + "sticker_material" "community2021/retro_leet_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "104340617" } - "567" + "4891" { - "name" "eslcologne2015_signature_peet_foil" - "item_name" "#StickerKit_eslcologne2015_signature_peet_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_peet_foil" - "sticker_material" "cologne2015/sig_peet_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "104340617" + "name" "community2021_speedy_glossy" + "item_name" "#StickerKit_community2021_speedy_glossy" + "description_string" "#StickerKit_desc_community2021_speedy_glossy" + "sticker_material" "community2021/speedy_glossy" + "item_rarity" "rare" } - "568" + "4892" { - "name" "eslcologne2015_signature_peet_gold" - "item_name" "#StickerKit_eslcologne2015_signature_peet_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_peet_gold" - "sticker_material" "cologne2015/sig_peet_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "104340617" + "name" "community2021_this_is_fine_ct_paper" + "item_name" "#StickerKit_community2021_this_is_fine_ct_paper" + "description_string" "#StickerKit_desc_community2021_this_is_fine_ct_paper" + "sticker_material" "community2021/this_is_fine_ct_paper" + "item_rarity" "rare" } - "569" + "4893" { - "name" "eslcologne2015_signature_furlan" - "item_name" "#StickerKit_eslcologne2015_signature_furlan" - "description_string" "#StickerKit_desc_eslcologne2015_signature_furlan" - "sticker_material" "cologne2015/sig_furlan" + "name" "community2021_war_paper" + "item_name" "#StickerKit_community2021_war_paper" + "description_string" "#StickerKit_desc_community2021_war_paper" + "sticker_material" "community2021/war_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "177495873" } - "570" + "4894" { - "name" "eslcologne2015_signature_furlan_foil" - "item_name" "#StickerKit_eslcologne2015_signature_furlan_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_furlan_foil" - "sticker_material" "cologne2015/sig_furlan_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "177495873" + "name" "community2021_cyber_romanov_holo" + "item_name" "#StickerKit_community2021_cyber_romanov_holo" + "description_string" "#StickerKit_desc_community2021_cyber_romanov_holo" + "sticker_material" "community2021/cyber_romanov_holo" + "item_rarity" "mythical" } - "571" + "4895" { - "name" "eslcologne2015_signature_furlan_gold" - "item_name" "#StickerKit_eslcologne2015_signature_furlan_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_furlan_gold" - "sticker_material" "cologne2015/sig_furlan_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "177495873" + "name" "community2021_eye_contact_holo" + "item_name" "#StickerKit_community2021_eye_contact_holo" + "description_string" "#StickerKit_desc_community2021_eye_contact_holo" + "sticker_material" "community2021/eye_contact_holo" + "item_rarity" "mythical" } - "572" + "4896" { - "name" "eslcologne2015_signature_gruby" - "item_name" "#StickerKit_eslcologne2015_signature_gruby" - "description_string" "#StickerKit_desc_eslcologne2015_signature_gruby" - "sticker_material" "cologne2015/sig_gruby" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "44752530" + "name" "community2021_handle_with_care_holo" + "item_name" "#StickerKit_community2021_handle_with_care_holo" + "description_string" "#StickerKit_desc_community2021_handle_with_care_holo" + "sticker_material" "community2021/handle_with_care_holo" + "item_rarity" "mythical" } - "573" + "4897" { - "name" "eslcologne2015_signature_gruby_foil" - "item_name" "#StickerKit_eslcologne2015_signature_gruby_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_gruby_foil" - "sticker_material" "cologne2015/sig_gruby_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "44752530" + "name" "community2021_i_see_you_holo" + "item_name" "#StickerKit_community2021_i_see_you_holo" + "description_string" "#StickerKit_desc_community2021_i_see_you_holo" + "sticker_material" "community2021/i_see_you_holo" + "item_rarity" "mythical" } - "574" + "4898" { - "name" "eslcologne2015_signature_gruby_gold" - "item_name" "#StickerKit_eslcologne2015_signature_gruby_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_gruby_gold" - "sticker_material" "cologne2015/sig_gruby_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" - "tournament_player_id" "44752530" + "name" "community2021_nice_clutch_holo" + "item_name" "#StickerKit_community2021_nice_clutch_holo" + "description_string" "#StickerKit_desc_community2021_nice_clutch_holo" + "sticker_material" "community2021/nice_clutch_holo" + "item_rarity" "mythical" } - "575" + "4899" { - "name" "eslcologne2015_signature_maniac" - "item_name" "#StickerKit_eslcologne2015_signature_maniac" - "description_string" "#StickerKit_desc_eslcologne2015_signature_maniac" - "sticker_material" "cologne2015/sig_maniac" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "35761" + "name" "community2021_runtime_holo" + "item_name" "#StickerKit_community2021_runtime_holo" + "description_string" "#StickerKit_desc_community2021_runtime_holo" + "sticker_material" "community2021/runtime_holo" + "item_rarity" "mythical" } - "576" + "4900" { - "name" "eslcologne2015_signature_maniac_foil" - "item_name" "#StickerKit_eslcologne2015_signature_maniac_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_maniac_foil" - "sticker_material" "cologne2015/sig_maniac_foil" + "name" "community2021_ace_devil_foil" + "item_name" "#StickerKit_community2021_ace_devil_foil" + "description_string" "#StickerKit_desc_community2021_ace_devil_foil" + "sticker_material" "community2021/ace_devil_foil" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "35761" } - "577" + "4901" { - "name" "eslcologne2015_signature_maniac_gold" - "item_name" "#StickerKit_eslcologne2015_signature_maniac_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_maniac_gold" - "sticker_material" "cologne2015/sig_maniac_gold" + "name" "community2021_bullet_hell_foil" + "item_name" "#StickerKit_community2021_bullet_hell_foil" + "description_string" "#StickerKit_desc_community2021_bullet_hell_foil" + "sticker_material" "community2021/bullet_hell_foil" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "35761" } - "578" + "4902" { - "name" "eslcologne2015_signature_ex6tenz" - "item_name" "#StickerKit_eslcologne2015_signature_ex6tenz" - "description_string" "#StickerKit_desc_eslcologne2015_signature_ex6tenz" - "sticker_material" "cologne2015/sig_ex6tenz" + "name" "community2021_purrurists_foil" + "item_name" "#StickerKit_community2021_purrurists_foil" + "description_string" "#StickerKit_desc_community2021_purrurists_foil" + "sticker_material" "community2021/purrurists_foil" + "item_rarity" "legendary" + } + } + "items" + { + "4782" + { + "item_name" "#CSGO_crate_sticker_pack_community2021_capsule" + "name" "crate_sticker_pack_community2021_capsule" + "item_description" "#CSGO_crate_sticker_pack_community2021_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_community2021_capsule" + "first_sale_date" "2021/09/02" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "319" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_community2021_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_community2021_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "319" "crate_sticker_pack_community2021_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_community2021_capsule_rare" + { + "[community2021_clutch_or_kick_glossy]sticker" "1" + "[community2021_dr_dazzles_paper]sticker" "1" + "[community2021_ez_glossy]sticker" "1" + "[community2021_fast_banana_paper]sticker" "1" + "[community2021_hard_carry_paper]sticker" "1" + "[community2021_kitted_out_paper]sticker" "1" + "[community2021_nademan_paper]sticker" "1" + "[community2021_no_time_paper]sticker" "1" + "[community2021_retro_leet_paper]sticker" "1" + "[community2021_speedy_glossy]sticker" "1" + "[community2021_this_is_fine_ct_paper]sticker" "1" + "[community2021_war_paper]sticker" "1" + } + "crate_sticker_pack_community2021_capsule_mythical" + { + "[community2021_cyber_romanov_holo]sticker" "1" + "[community2021_eye_contact_holo]sticker" "1" + "[community2021_handle_with_care_holo]sticker" "1" + "[community2021_i_see_you_holo]sticker" "1" + "[community2021_nice_clutch_holo]sticker" "1" + "[community2021_runtime_holo]sticker" "1" + } + "crate_sticker_pack_community2021_capsule_legendary" + { + "[community2021_ace_devil_foil]sticker" "1" + "[community2021_bullet_hell_foil]sticker" "1" + "[community2021_purrurists_foil]sticker" "1" + } + "crate_sticker_pack_community2021_capsule_lootlist" + { + "crate_sticker_pack_community2021_capsule_rare" "1" + "crate_sticker_pack_community2021_capsule_mythical" "1" + "crate_sticker_pack_community2021_capsule_legendary" "1" + } + } + "sticker_kits" + { + "4903" + { + "name" "bf2042_bf_portal_paper" + "item_name" "#StickerKit_bf2042_bf_portal_paper" + "description_string" "#StickerKit_desc_bf2042_bf_portal_paper" + "sticker_material" "bf2042/bf_portal_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "11737333" } - "579" + "4904" { - "name" "eslcologne2015_signature_ex6tenz_foil" - "item_name" "#StickerKit_eslcologne2015_signature_ex6tenz_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_ex6tenz_foil" - "sticker_material" "cologne2015/sig_ex6tenz_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "11737333" + "name" "bf2042_bf2042_paper" + "item_name" "#StickerKit_bf2042_bf2042_paper" + "description_string" "#StickerKit_desc_bf2042_bf2042_paper" + "sticker_material" "bf2042/bf2042_paper" + "item_rarity" "rare" } - "580" + "4905" { - "name" "eslcologne2015_signature_ex6tenz_gold" - "item_name" "#StickerKit_eslcologne2015_signature_ex6tenz_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_ex6tenz_gold" - "sticker_material" "cologne2015/sig_ex6tenz_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "11737333" + "name" "bf2042_comehereboy_paper" + "item_name" "#StickerKit_bf2042_comehereboy_paper" + "description_string" "#StickerKit_desc_bf2042_comehereboy_paper" + "sticker_material" "bf2042/comehereboy_paper" + "item_rarity" "rare" } - "581" + "4906" { - "name" "eslcologne2015_signature_shox" - "item_name" "#StickerKit_eslcologne2015_signature_shox" - "description_string" "#StickerKit_desc_eslcologne2015_signature_shox" - "sticker_material" "cologne2015/sig_shox" + "name" "bf2042_fortytwo_paper" + "item_name" "#StickerKit_bf2042_fortytwo_paper" + "description_string" "#StickerKit_desc_bf2042_fortytwo_paper" + "sticker_material" "bf2042/fortytwo_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "46654567" } - "582" + "4907" { - "name" "eslcologne2015_signature_shox_foil" - "item_name" "#StickerKit_eslcologne2015_signature_shox_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_shox_foil" - "sticker_material" "cologne2015/sig_shox_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "46654567" + "name" "bf2042_knives_out_paper" + "item_name" "#StickerKit_bf2042_knives_out_paper" + "description_string" "#StickerKit_desc_bf2042_knives_out_paper" + "sticker_material" "bf2042/knives_out_paper" + "item_rarity" "rare" } - "583" + "4908" { - "name" "eslcologne2015_signature_shox_gold" - "item_name" "#StickerKit_eslcologne2015_signature_shox_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_shox_gold" - "sticker_material" "cologne2015/sig_shox_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "46654567" + "name" "bf2042_mrchompy_paper" + "item_name" "#StickerKit_bf2042_mrchompy_paper" + "description_string" "#StickerKit_desc_bf2042_mrchompy_paper" + "sticker_material" "bf2042/mrchompy_paper" + "item_rarity" "rare" } - "584" + "4909" { - "name" "eslcologne2015_signature_smithzz" - "item_name" "#StickerKit_eslcologne2015_signature_smithzz" - "description_string" "#StickerKit_desc_eslcologne2015_signature_smithzz" - "sticker_material" "cologne2015/sig_smithzz" + "name" "bf2042_nopats_paper" + "item_name" "#StickerKit_bf2042_nopats_paper" + "description_string" "#StickerKit_desc_bf2042_nopats_paper" + "sticker_material" "bf2042/nopats_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "14321919" } - "585" + "4910" { - "name" "eslcologne2015_signature_smithzz_foil" - "item_name" "#StickerKit_eslcologne2015_signature_smithzz_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_smithzz_foil" - "sticker_material" "cologne2015/sig_smithzz_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "14321919" + "name" "bf2042_pac_ai_paper" + "item_name" "#StickerKit_bf2042_pac_ai_paper" + "description_string" "#StickerKit_desc_bf2042_pac_ai_paper" + "sticker_material" "bf2042/pac_ai_paper" + "item_rarity" "rare" } - "586" + "4911" { - "name" "eslcologne2015_signature_smithzz_gold" - "item_name" "#StickerKit_eslcologne2015_signature_smithzz_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_smithzz_gold" - "sticker_material" "cologne2015/sig_smithzz_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "14321919" + "name" "bf2042_ptfo_paper" + "item_name" "#StickerKit_bf2042_ptfo_paper" + "description_string" "#StickerKit_desc_bf2042_ptfo_paper" + "sticker_material" "bf2042/ptfo_paper" + "item_rarity" "rare" } - "587" + "4912" { - "name" "eslcologne2015_signature_rpk" - "item_name" "#StickerKit_eslcologne2015_signature_rpk" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rpk" - "sticker_material" "cologne2015/sig_rpk" + "name" "bf2042_ready_for_battle_paper" + "item_name" "#StickerKit_bf2042_ready_for_battle_paper" + "description_string" "#StickerKit_desc_bf2042_ready_for_battle_paper" + "sticker_material" "bf2042/ready_for_battle_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "53985773" } - "588" + "4913" { - "name" "eslcologne2015_signature_rpk_foil" - "item_name" "#StickerKit_eslcologne2015_signature_rpk_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rpk_foil" - "sticker_material" "cologne2015/sig_rpk_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "53985773" + "name" "bf2042_nopats_holo" + "item_name" "#StickerKit_bf2042_nopats_holo" + "description_string" "#StickerKit_desc_bf2042_nopats_holo" + "sticker_material" "bf2042/nopats_holo" + "item_rarity" "mythical" } - "589" + "4914" { - "name" "eslcologne2015_signature_rpk_gold" - "item_name" "#StickerKit_eslcologne2015_signature_rpk_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_rpk_gold" - "sticker_material" "cologne2015/sig_rpk_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" - "tournament_player_id" "53985773" + "name" "bf2042_ptfo_holo" + "item_name" "#StickerKit_bf2042_ptfo_holo" + "description_string" "#StickerKit_desc_bf2042_ptfo_holo" + "sticker_material" "bf2042/ptfo_holo" + "item_rarity" "mythical" } - "590" + "4915" { - "name" "eslcologne2015_signature_hazed" - "item_name" "#StickerKit_eslcologne2015_signature_hazed" - "description_string" "#StickerKit_desc_eslcologne2015_signature_hazed" - "sticker_material" "cologne2015/sig_hazed" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "30305781" + "name" "bf2042_ready_for_battle_holo" + "item_name" "#StickerKit_bf2042_ready_for_battle_holo" + "description_string" "#StickerKit_desc_bf2042_ready_for_battle_holo" + "sticker_material" "bf2042/ready_for_battle_holo" + "item_rarity" "mythical" } - "591" + "4916" { - "name" "eslcologne2015_signature_hazed_foil" - "item_name" "#StickerKit_eslcologne2015_signature_hazed_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_hazed_foil" - "sticker_material" "cologne2015/sig_hazed_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "30305781" + "name" "bf2042_wingsuit_holo" + "item_name" "#StickerKit_bf2042_wingsuit_holo" + "description_string" "#StickerKit_desc_bf2042_wingsuit_holo" + "sticker_material" "bf2042/wingsuit_holo" + "item_rarity" "mythical" } - "592" + "4917" { - "name" "eslcologne2015_signature_hazed_gold" - "item_name" "#StickerKit_eslcologne2015_signature_hazed_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_hazed_gold" - "sticker_material" "cologne2015/sig_hazed_gold" + "name" "bf2042_mrchompy_foil" + "item_name" "#StickerKit_bf2042_mrchompy_foil" + "description_string" "#StickerKit_desc_bf2042_mrchompy_foil" + "sticker_material" "bf2042/mrchompy_foil" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "30305781" } - "593" + "4918" { - "name" "eslcologne2015_signature_fns" - "item_name" "#StickerKit_eslcologne2015_signature_fns" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fns" - "sticker_material" "cologne2015/sig_fns" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "17564706" + "name" "bf2042_pac_ai_foil" + "item_name" "#StickerKit_bf2042_pac_ai_foil" + "description_string" "#StickerKit_desc_bf2042_pac_ai_foil" + "sticker_material" "bf2042/pac_ai_foil" + "item_rarity" "legendary" } - "594" + "4919" { - "name" "eslcologne2015_signature_fns_foil" - "item_name" "#StickerKit_eslcologne2015_signature_fns_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fns_foil" - "sticker_material" "cologne2015/sig_fns_foil" + "name" "bf2042_tornado_chaos_foil" + "item_name" "#StickerKit_bf2042_tornado_chaos_foil" + "description_string" "#StickerKit_desc_bf2042_tornado_chaos_foil" + "sticker_material" "bf2042/tornado_chaos_foil" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "17564706" } - "595" + } + "items" + { + "4789" + { + "item_name" "#CSGO_crate_sticker_pack_bf2042_capsule" + "name" "crate_sticker_pack_bf2042_capsule" + "item_description" "#CSGO_crate_sticker_pack_bf2042_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_bf2042_capsule" + "first_sale_date" "2021/10/07" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "320" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_bf2042_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_bf2042_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } + } + } + "revolving_loot_lists" + { + "320" "crate_sticker_pack_bf2042_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_bf2042_capsule_rare" { - "name" "eslcologne2015_signature_fns_gold" - "item_name" "#StickerKit_eslcologne2015_signature_fns_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_fns_gold" - "sticker_material" "cologne2015/sig_fns_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "17564706" + "[bf2042_bf_portal_paper]sticker" "1" + "[bf2042_bf2042_paper]sticker" "1" + "[bf2042_comehereboy_paper]sticker" "1" + "[bf2042_fortytwo_paper]sticker" "1" + "[bf2042_knives_out_paper]sticker" "1" + "[bf2042_mrchompy_paper]sticker" "1" + "[bf2042_nopats_paper]sticker" "1" + "[bf2042_pac_ai_paper]sticker" "1" + "[bf2042_ptfo_paper]sticker" "1" + "[bf2042_ready_for_battle_paper]sticker" "1" } - "596" + "crate_sticker_pack_bf2042_capsule_mythical" { - "name" "eslcologne2015_signature_jdm64" - "item_name" "#StickerKit_eslcologne2015_signature_jdm64" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jdm64" - "sticker_material" "cologne2015/sig_jdm64" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "7223652" + "[bf2042_nopats_holo]sticker" "1" + "[bf2042_ptfo_holo]sticker" "1" + "[bf2042_ready_for_battle_holo]sticker" "1" + "[bf2042_wingsuit_holo]sticker" "1" } - "597" + "crate_sticker_pack_bf2042_capsule_legendary" { - "name" "eslcologne2015_signature_jdm64_foil" - "item_name" "#StickerKit_eslcologne2015_signature_jdm64_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jdm64_foil" - "sticker_material" "cologne2015/sig_jdm64_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "7223652" + "[bf2042_mrchompy_foil]sticker" "1" + "[bf2042_pac_ai_foil]sticker" "1" + "[bf2042_tornado_chaos_foil]sticker" "1" } - "598" + "crate_sticker_pack_bf2042_capsule_lootlist" { - "name" "eslcologne2015_signature_jdm64_gold" - "item_name" "#StickerKit_eslcologne2015_signature_jdm64_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_jdm64_gold" - "sticker_material" "cologne2015/sig_jdm64_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "7223652" + "crate_sticker_pack_bf2042_capsule_rare" "1" + "crate_sticker_pack_bf2042_capsule_mythical" "1" + "crate_sticker_pack_bf2042_capsule_legendary" "1" } - "599" + } + "paint_kits" + { + "1104" { - "name" "eslcologne2015_signature_reltuc" - "item_name" "#StickerKit_eslcologne2015_signature_reltuc" - "description_string" "#StickerKit_desc_eslcologne2015_signature_reltuc" - "sticker_material" "cologne2015/sig_reltuc" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "518760" + "name" "cu_bowie_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "bowie_lore" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "34" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "600" + "1105" { - "name" "eslcologne2015_signature_reltuc_foil" - "item_name" "#StickerKit_eslcologne2015_signature_reltuc_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_reltuc_foil" - "sticker_material" "cologne2015/sig_reltuc_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "518760" + "name" "cu_butterfly_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "butterfly_lore" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "601" + "1106" { - "name" "eslcologne2015_signature_reltuc_gold" - "item_name" "#StickerKit_eslcologne2015_signature_reltuc_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_reltuc_gold" - "sticker_material" "cologne2015/sig_reltuc_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "518760" + "name" "cu_falchion_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "falchion_lore" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "56" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + "pearlescent" "0.000000" + } + "1107" + { + "name" "cu_huntsman_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "huntsman_lore" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "64" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + "pearlescent" "0.000000" + } + "1108" + { + "name" "cu_push_lore" + "description_string" "#Paintkit_cu_lore" + "description_tag" "#Paintkit_cu_lore_Tag" + "style" "7" + "pattern" "push_lore" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "32" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "602" + "1109" { - "name" "eslcologne2015_signature_tarik" - "item_name" "#StickerKit_eslcologne2015_signature_tarik" - "description_string" "#StickerKit_desc_eslcologne2015_signature_tarik" - "sticker_material" "cologne2015/sig_tarik" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "18216247" + "name" "gs_bowie_black_laminate" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "bowie_black_laminate" + "use_normal" "0" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "232 216 197 255" + "color3" "232 225 208 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "64" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "603" + "1110" { - "name" "eslcologne2015_signature_tarik_foil" - "item_name" "#StickerKit_eslcologne2015_signature_tarik_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_tarik_foil" - "sticker_material" "cologne2015/sig_tarik_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "18216247" + "name" "gs_butterfly_black_laminate" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "butterfly_black_laminate" + "use_normal" "0" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "232 216 197 255" + "color3" "232 225 208 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "50" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "604" + "1111" { - "name" "eslcologne2015_signature_tarik_gold" - "item_name" "#StickerKit_eslcologne2015_signature_tarik_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_tarik_gold" - "sticker_material" "cologne2015/sig_tarik_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" - "tournament_player_id" "18216247" + "name" "gs_falchion_black_laminate" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "falchion_black_laminate" + "use_normal" "0" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "232 216 197 255" + "color3" "232 225 208 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "50" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" + "dialog_config" "45,0,0,1" } - "605" + "1112" { - "name" "eslcologne2015_signature_nothing" - "item_name" "#StickerKit_eslcologne2015_signature_nothing" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nothing" - "sticker_material" "cologne2015/sig_nothing" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "755286" + "name" "gs_huntsman_black_laminate" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "huntsman_black_laminate" + "use_normal" "1" + "normal" "huntsman_ridges_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "232 216 197 255" + "color3" "232 225 208 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "50" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "606" + "1113" { - "name" "eslcologne2015_signature_nothing_foil" - "item_name" "#StickerKit_eslcologne2015_signature_nothing_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nothing_foil" - "sticker_material" "cologne2015/sig_nothing_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "755286" + "name" "gs_push_black_laminate" + "description_string" "#Paintkit_cu_stonewash" + "description_tag" "#Paintkit_cu_stonewash_Tag" + "style" "9" + "pattern" "push_black_laminate" + "use_normal" "0" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "232 216 197 255" + "color3" "232 225 208 255" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "50" + "phongalbedoboost" "8" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "607" + "1114" { - "name" "eslcologne2015_signature_nothing_gold" - "item_name" "#StickerKit_eslcologne2015_signature_nothing_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_nothing_gold" - "sticker_material" "cologne2015/sig_nothing_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "755286" + "name" "gs_bowie_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "bowie_future" + "use_normal" "1" + "normal" "bowie_future_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "162 155 141 255" + "color3" "222 215 211 255" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + "pearlescent" "0.000000" } - "608" + "1115" { - "name" "eslcologne2015_signature_sgares" - "item_name" "#StickerKit_eslcologne2015_signature_sgares" - "description_string" "#StickerKit_desc_eslcologne2015_signature_sgares" - "sticker_material" "cologne2015/sig_sgares" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "164004" + "name" "gs_butterfly_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "butterfly_future" + "use_normal" "1" + "normal" "butterfly_future_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "162 155 141 255" + "color3" "222 215 211 255" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + "pearlescent" "0.000000" } - "609" + "1116" { - "name" "eslcologne2015_signature_sgares_foil" - "item_name" "#StickerKit_eslcologne2015_signature_sgares_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_sgares_foil" - "sticker_material" "cologne2015/sig_sgares_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "164004" + "name" "gs_falchion_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "falchion_future" + "use_normal" "1" + "normal" "falchion_future_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "162 155 141 255" + "color3" "222 215 211 255" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + "pearlescent" "0.000000" } - "610" + "1117" { - "name" "eslcologne2015_signature_sgares_gold" - "item_name" "#StickerKit_eslcologne2015_signature_sgares_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_sgares_gold" - "sticker_material" "cologne2015/sig_sgares_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "164004" + "name" "gs_huntsman_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "huntsman_future" + "use_normal" "1" + "normal" "huntsman_future_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "162 155 141 255" + "color3" "222 215 211 255" + "pattern_scale" "1.000000" + "phongexponent" "20" + "phongintensity" "8" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + "pearlescent" "0.000000" + "dialog_config" "44,0,0,0" } - "611" + "1118" { - "name" "eslcologne2015_signature_shroud" - "item_name" "#StickerKit_eslcologne2015_signature_shroud" - "description_string" "#StickerKit_desc_eslcologne2015_signature_shroud" - "sticker_material" "cologne2015/sig_shroud" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "4515926" + "name" "gs_push_autotronic" + "description_string" "#PaintKit_gs_autotronic" + "description_tag" "#PaintKit_gs_autotronic_Tag" + "style" "9" + "pattern" "push_future" + "use_normal" "0" + "normal" "push_future_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "162 155 141 255" + "color3" "222 215 211 255" + "pattern_scale" "1.000000" + "phongexponent" "80" + "phongintensity" "8" + "phongalbedoboost" "80" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + "pearlescent" "0.000000" + "dialog_config" "48,0,0,0" } - "612" + } + "paint_kits_rarity" + { + "cu_bowie_lore" "legendary" + "cu_butterfly_lore" "legendary" + "cu_falchion_lore" "legendary" + "cu_huntsman_lore" "legendary" + "cu_push_lore" "legendary" + "gs_bowie_black_laminate" "mythical" + "gs_butterfly_black_laminate" "mythical" + "gs_falchion_black_laminate" "mythical" + "gs_huntsman_black_laminate" "mythical" + "gs_push_black_laminate" "mythical" + "gs_bowie_autotronic" "mythical" + "gs_butterfly_autotronic" "mythical" + "gs_falchion_autotronic" "mythical" + "gs_huntsman_autotronic" "mythical" + "gs_push_autotronic" "mythical" + } + "paint_kits" + { + "1087" { - "name" "eslcologne2015_signature_shroud_foil" - "item_name" "#StickerKit_eslcologne2015_signature_shroud_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_shroud_foil" - "sticker_material" "cologne2015/sig_shroud_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "4515926" + "name" "gs_ak47_abstract" + "description_string" "#PaintKit_gs_ak47_abstract" + "description_tag" "#PaintKit_gs_ak47_abstract_Tag" + "style" "9" + "pattern" "workshop/ak47_abstract" + "use_normal" "0" + "color0" "230 230 230" + "color1" "234 234 234" + "color2" "206 217 229" + "color3" "89 94 108" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "55" + "phongalbedoboost" "1" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + "pearlescent" "0.000000" } - "613" + "1088" { - "name" "eslcologne2015_signature_shroud_gold" - "item_name" "#StickerKit_eslcologne2015_signature_shroud_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_shroud_gold" - "sticker_material" "cologne2015/sig_shroud_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "4515926" + "name" "gs_aug_plague" + "description_string" "#PaintKit_gs_aug_plague" + "description_tag" "#PaintKit_gs_aug_plague_Tag" + "style" "9" + "pattern" "workshop/aug_plague" + "use_normal" "1" + "normal" "workshop/aug_plague_normal" + "color0" "43 23 11" + "color1" "224 224 224" + "color2" "30 27 24" + "color3" "76 52 36" + "pattern_scale" "1.000000" + "phongexponent" "233" + "phongintensity" "0" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.760000" + "pearlescent" "0.000000" } - "614" + "1089" { - "name" "eslcologne2015_signature_freakazoid" - "item_name" "#StickerKit_eslcologne2015_signature_freakazoid" - "description_string" "#StickerKit_desc_eslcologne2015_signature_freakazoid" - "sticker_material" "cologne2015/sig_freakazoid" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "16883071" + "name" "gs_mag7_bismuth" + "description_string" "#PaintKit_gs_mag7_bismuth" + "description_tag" "#PaintKit_gs_mag7_bismuth_Tag" + "style" "9" + "pattern" "workshop/mag7_bismuth" + "use_normal" "1" + "normal" "workshop/mag7_bismuth_normal" + "color0" "211 211 211" + "color1" "221 221 221" + "color2" "44 48 49" + "color3" "120 194 213" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "pearlescent" "0.000000" } - "615" + "1090" { - "name" "eslcologne2015_signature_freakazoid_foil" - "item_name" "#StickerKit_eslcologne2015_signature_freakazoid_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_freakazoid_foil" - "sticker_material" "cologne2015/sig_freakazoid_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "16883071" + "name" "cu_deagle_kitch" + "description_string" "#PaintKit_cu_deagle_kitch" + "description_tag" "#PaintKit_cu_deagle_kitch_Tag" + "style" "7" + "pattern" "workshop/deagle_kitch" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "99" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "616" + "1091" { - "name" "eslcologne2015_signature_freakazoid_gold" - "item_name" "#StickerKit_eslcologne2015_signature_freakazoid_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_freakazoid_gold" - "sticker_material" "cologne2015/sig_freakazoid_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "16883071" + "name" "gs_dual_berettas_tread" + "description_string" "#PaintKit_gs_dual_berettas_tread" + "description_tag" "#PaintKit_gs_dual_berettas_tread_Tag" + "style" "9" + "pattern" "workshop/dual_berettas_tread" + "use_normal" "1" + "normal" "workshop/dual_berettas_tread_normal" + "color0" "128 128 128 255" + "color1" "218 218 218" + "color2" "113 86 86" + "color3" "98 135 131" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "617" + "1092" { - "name" "eslcologne2015_signature_skadoodle" - "item_name" "#StickerKit_eslcologne2015_signature_skadoodle" - "description_string" "#StickerKit_desc_eslcologne2015_signature_skadoodle" - "sticker_material" "cologne2015/sig_skadoodle" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "21075725" + "name" "cu_famas_spectron" + "description_string" "#PaintKit_cu_famas_spectron" + "description_tag" "#PaintKit_cu_famas_spectron_Tag" + "style" "7" + "pattern" "workshop/famas_spectron" + "use_normal" "1" + "normal" "workshop/famas_spectron_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "618" + "1093" { - "name" "eslcologne2015_signature_skadoodle_foil" - "item_name" "#StickerKit_eslcologne2015_signature_skadoodle_foil" - "description_string" "#StickerKit_desc_eslcologne2015_signature_skadoodle_foil" - "sticker_material" "cologne2015/sig_skadoodle_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "21075725" + "name" "gs_five_seven_efusion" + "description_string" "#PaintKit_gs_five_seven_efusion" + "description_tag" "#PaintKit_gs_five_seven_efusion_Tag" + "style" "9" + "pattern" "workshop/five_seven_efusion" + "use_normal" "0" + "color0" "128 128 128 255" + "color1" "225 225 225" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "35" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.410000" + "pearlescent" "0.000000" } - "619" + "1094" { - "name" "eslcologne2015_signature_skadoodle_gold" - "item_name" "#StickerKit_eslcologne2015_signature_skadoodle_gold" - "description_string" "#StickerKit_desc_eslcologne2015_signature_skadoodle_gold" - "sticker_material" "cologne2015/sig_skadoodle_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" - "tournament_player_id" "21075725" + "name" "aa_mp9_fuji_pink" + "description_string" "#PaintKit_aa_mp9_fuji_pink" + "description_tag" "#PaintKit_aa_mp9_fuji_pink_Tag" + "style" "6" + "pattern" "workshop/mp9_fuji" + "color0" "0 15 79" + "color1" "255 0 90" + "color2" "228 220 200" + "color3" "0 185 212" + "pattern_scale" "1.700000" + "phongexponent" "255" + "phongalbedoboost" "-1" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.400000" + "pattern_offset_y_start" "0.800000" + "pattern_offset_y_end" "0.800000" + "pattern_rotate_start" "180.000000" + "pattern_rotate_end" "180.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.550000" + "pearlescent" "0.000000" } - "620" + "1095" { - "name" "eslcologne2015_team_fnatic" - "item_name" "#StickerKit_eslcologne2015_team_fnatic" - "description_string" "#StickerKit_desc_eslcologne2015_team_fnatic" - "sticker_material" "cologne2015/fnatic" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "6" + "name" "cu_g3sg1_tacticalmap" + "description_string" "#PaintKit_cu_g3sg1_tacticalmap" + "description_tag" "#PaintKit_cu_g3sg1_tacticalmap_Tag" + "style" "7" + "pattern" "workshop/g3sg1_tacticalmap" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "0" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "621" + "1096" { - "name" "eslcologne2015_team_fnatic_foil" - "item_name" "#StickerKit_eslcologne2015_team_fnatic_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_fnatic_foil" - "sticker_material" "cologne2015/fnatic_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" + "name" "cu_mp7_khaki" + "description_string" "#PaintKit_cu_mp7_khaki" + "description_tag" "#PaintKit_cu_mp7_khaki_Tag" + "style" "7" + "pattern" "workshop/mp7_khaki" + "use_normal" "1" + "normal" "workshop/mp7_khaki_normal" + "pattern_scale" "1.000000" + "phongexponent" "150" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" + } + "1097" + { + "name" "gs_m4_flowers" + "description_string" "#PaintKit_gs_m4_flowers" + "description_tag" "#PaintKit_gs_m4_flowers_Tag" + "style" "9" + "pattern" "workshop/m4_flowers" + "use_normal" "1" + "normal" "workshop/m4_flowers_normal" + "color0" "128 128 128 255" + "color1" "170 170 170" + "color2" "96 96 96 255" + "color3" "108 108 108 255" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "130" + "phongalbedoboost" "30" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "622" + "1098" { - "name" "eslcologne2015_team_fnatic_gold" - "item_name" "#StickerKit_eslcologne2015_team_fnatic_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_fnatic_gold" - "sticker_material" "cologne2015/fnatic_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "6" + "name" "cu_mac10_toybox" + "description_string" "#PaintKit_cu_mac10_toybox" + "description_tag" "#PaintKit_cu_mac10_toybox_Tag" + "style" "7" + "pattern" "workshop/mac10_toybox" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "5" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "623" + "1099" { - "name" "eslcologne2015_team_virtuspro" - "item_name" "#StickerKit_eslcologne2015_team_virtuspro" - "description_string" "#StickerKit_desc_eslcologne2015_team_virtuspro" - "sticker_material" "cologne2015/virtuspro" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "31" + "name" "gs_bizon_flasher" + "description_string" "#PaintKit_gs_bizon_flasher" + "description_tag" "#PaintKit_gs_bizon_flasher_Tag" + "style" "9" + "pattern" "workshop/bizon_flasher" + "use_normal" "1" + "normal" "workshop/bizon_flasher_normal" + "color0" "169 169 169" + "color1" "190 190 190" + "color2" "159 154 137" + "color3" "61 61 61" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "phongalbedoboost" "10" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.770000" + "pearlescent" "0.000000" } - "624" + "1100" { - "name" "eslcologne2015_team_virtuspro_foil" - "item_name" "#StickerKit_eslcologne2015_team_virtuspro_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_virtuspro_foil" - "sticker_material" "cologne2015/virtuspro_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" + "name" "cu_glock_snackattack" + "description_string" "#PaintKit_cu_glock_snackattack" + "description_tag" "#PaintKit_cu_glock_snackattack_Tag" + "style" "7" + "pattern" "workshop/glock_snackattack" + "use_normal" "1" + "normal" "workshop/glock_snackattack_normal" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "110" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "625" + "1101" { - "name" "eslcologne2015_team_virtuspro_gold" - "item_name" "#StickerKit_eslcologne2015_team_virtuspro_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_virtuspro_gold" - "sticker_material" "cologne2015/virtuspro_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "31" + "name" "cu_ssg_overtake" + "description_string" "#PaintKit_cu_ssg_overtake" + "description_tag" "#PaintKit_cu_ssg_overtake_Tag" + "style" "7" + "pattern" "workshop/ssg_overtake" + "use_normal" "1" + "normal" "workshop/ssg_overtake_normal" + "pattern_scale" "1.000000" + "phongexponent" "180" + "phongintensity" "60" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.600000" + "pearlescent" "0.000000" } - "626" + "1102" { - "name" "eslcologne2015_team_mousesports" - "item_name" "#StickerKit_eslcologne2015_team_mousesports" - "description_string" "#StickerKit_desc_eslcologne2015_team_mousesports" - "sticker_material" "cologne2015/mousesports" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "29" + "name" "cu_usp_black_lotus" + "description_string" "#PaintKit_cu_usp_black_lotus" + "description_tag" "#PaintKit_cu_usp_black_lotus_Tag" + "style" "7" + "pattern" "workshop/usp_black_lotus" + "use_normal" "1" + "normal" "workshop/usp_black_lotus_normal" + "pattern_scale" "1.000000" + "phongexponent" "128" + "phongintensity" "3" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" + "pearlescent" "0.000000" } - "627" + "1103" { - "name" "eslcologne2015_team_mousesports_foil" - "item_name" "#StickerKit_eslcologne2015_team_mousesports_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_mousesports_foil" - "sticker_material" "cologne2015/mousesports_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" + "name" "gs_xm1014_watchdog" + "description_string" "#PaintKit_gs_xm1014_watchdog" + "description_tag" "#PaintKit_gs_xm1014_watchdog_Tag" + "style" "9" + "pattern" "workshop/xm1014_watchdog" + "use_normal" "1" + "normal" "workshop/xm1014_watchdog_normal" + "color0" "198 153 109" + "color1" "221 221 221" + "color2" "186 190 187" + "color3" "87 182 98" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "1" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.000000" } - "628" + } + "items" + { + "1390" { - "name" "eslcologne2015_team_mousesports_gold" - "item_name" "#StickerKit_eslcologne2015_team_mousesports_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_mousesports_gold" - "sticker_material" "cologne2015/mousesports_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "29" + "name" "community_29 Key" + "item_name" "#CSGO_crate_key_community_29" + "item_description" "#CSGO_crate_key_community_29_desc" + "first_sale_date" "2021-09-08" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_29" + "tool" + { + "restriction" "crate_community_29" + } } - "629" + "4790" { - "name" "eslcologne2015_team_navi" - "item_name" "#StickerKit_eslcologne2015_team_navi" - "description_string" "#StickerKit_desc_eslcologne2015_team_navi" - "sticker_material" "cologne2015/navi" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "12" + "item_name" "#CSGO_crate_community_29" + "item_description" "#CSGO_crate_community_29_desc" + "name" "crate_community_29" + "image_inventory" "econ/weapon_cases/crate_community_29" + "model_player" "models/props/crates/csgo_drop_crate_community_29.mdl" + "prefab" "weapon_case" + "associated_items" + { + "1390" "1" + } + "tool" + { + "restriction" "crate_community_29" + } + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "321" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_community_29" + "tag_text" "#CSGO_set_community_29" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "630" + } + "revolving_loot_lists" + { + "321" "crate_community_29" + } + "client_loot_lists" + { + "crate_community_29_rare" { - "name" "eslcologne2015_team_navi_foil" - "item_name" "#StickerKit_eslcologne2015_team_navi_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_navi_foil" - "sticker_material" "cologne2015/navi_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" + "[gs_aug_plague]weapon_aug" "1" + "[gs_dual_berettas_tread]weapon_elite" "1" + "[cu_g3sg1_tacticalmap]weapon_g3sg1" "1" + "[cu_mp7_khaki]weapon_mp7" "1" + "[gs_bizon_flasher]weapon_bizon" "1" + "[cu_usp_black_lotus]weapon_usp_silencer" "1" + "[gs_xm1014_watchdog]weapon_xm1014" "1" } - "631" + "crate_community_29_mythical" { - "name" "eslcologne2015_team_navi_gold" - "item_name" "#StickerKit_eslcologne2015_team_navi_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_navi_gold" - "sticker_material" "cologne2015/navi_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "12" + "[gs_mag7_bismuth]weapon_mag7" "1" + "[cu_famas_spectron]weapon_famas" "1" + "[gs_five_seven_efusion]weapon_fiveseven" "1" + "[aa_mp9_fuji_pink]weapon_mp9" "1" + "[gs_m4_flowers]weapon_m4a1" "1" } - "632" + "crate_community_29_legendary" { - "name" "eslcologne2015_team_renegades" - "item_name" "#StickerKit_eslcologne2015_team_renegades" - "description_string" "#StickerKit_desc_eslcologne2015_team_renegades" - "sticker_material" "cologne2015/renegades" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "53" + "[cu_mac10_toybox]weapon_mac10" "1" + "[cu_glock_snackattack]weapon_glock" "1" + "[cu_ssg_overtake]weapon_ssg08" "1" } - "633" + "crate_community_29_ancient" { - "name" "eslcologne2015_team_renegades_foil" - "item_name" "#StickerKit_eslcologne2015_team_renegades_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_renegades_foil" - "sticker_material" "cologne2015/renegades_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" + "[gs_ak47_abstract]weapon_ak47" "1" + "[cu_deagle_kitch]weapon_deagle" "1" } - "634" + "crate_community_29" { - "name" "eslcologne2015_team_renegades_gold" - "item_name" "#StickerKit_eslcologne2015_team_renegades_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_renegades_gold" - "sticker_material" "cologne2015/renegades_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "53" + "crate_community_29_rare" "1" + "crate_community_29_mythical" "1" + "crate_community_29_legendary" "1" + "crate_community_29_ancient" "1" + "gamma2_knives2_unusual" "1" } - "635" + } + "item_sets" + { + "set_community_29" { - "name" "eslcologne2015_team_kinguin" - "item_name" "#StickerKit_eslcologne2015_team_kinguin" - "description_string" "#StickerKit_desc_eslcologne2015_team_kinguin" - "sticker_material" "cologne2015/kinguin" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "55" + "name" "#CSGO_set_community_29" + "set_description" "#CSGO_set_community_29_desc" + "is_collection" "1" + "items" + { + "[gs_aug_plague]weapon_aug" "1" + "[gs_dual_berettas_tread]weapon_elite" "1" + "[cu_g3sg1_tacticalmap]weapon_g3sg1" "1" + "[cu_mp7_khaki]weapon_mp7" "1" + "[gs_bizon_flasher]weapon_bizon" "1" + "[cu_usp_black_lotus]weapon_usp_silencer" "1" + "[gs_xm1014_watchdog]weapon_xm1014" "1" + "[gs_mag7_bismuth]weapon_mag7" "1" + "[cu_famas_spectron]weapon_famas" "1" + "[gs_five_seven_efusion]weapon_fiveseven" "1" + "[aa_mp9_fuji_pink]weapon_mp9" "1" + "[gs_m4_flowers]weapon_m4a1" "1" + "[cu_mac10_toybox]weapon_mac10" "1" + "[cu_glock_snackattack]weapon_glock" "1" + "[cu_ssg_overtake]weapon_ssg08" "1" + "[cu_deagle_kitch]weapon_deagle" "1" + "[gs_ak47_abstract]weapon_ak47" "1" + } } - "636" + } + "paint_kits_rarity" + { + "gs_ak47_abstract" "legendary" + "gs_aug_plague" "rare" + "gs_mag7_bismuth" "mythical" + "cu_deagle_kitch" "legendary" + "gs_dual_berettas_tread" "rare" + "cu_famas_spectron" "mythical" + "gs_five_seven_efusion" "mythical" + "aa_mp9_fuji_pink" "mythical" + "cu_g3sg1_tacticalmap" "rare" + "cu_mp7_khaki" "rare" + "gs_m4_flowers" "rare" + "cu_mac10_toybox" "legendary" + "gs_bizon_flasher" "rare" + "cu_glock_snackattack" "mythical" + "cu_ssg_overtake" "legendary" + "cu_usp_black_lotus" "uncommon" + "gs_xm1014_watchdog" "rare" + } + "sticker_kits" + { + "4923" { - "name" "eslcologne2015_team_kinguin_foil" - "item_name" "#StickerKit_eslcologne2015_team_kinguin_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_kinguin_foil" - "sticker_material" "cologne2015/kinguin_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" + "name" "op_riptide_bandana_paper" + "item_name" "#StickerKit_op_riptide_bandana_paper" + "description_string" "#StickerKit_desc_op_riptide_bandana_paper" + "sticker_material" "op_riptide/bandana_paper" + "item_rarity" "rare" } - "637" + "4924" { - "name" "eslcologne2015_team_kinguin_gold" - "item_name" "#StickerKit_eslcologne2015_team_kinguin_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_kinguin_gold" - "sticker_material" "cologne2015/kinguin_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "55" + "name" "op_riptide_goggles_paper" + "item_name" "#StickerKit_op_riptide_goggles_paper" + "description_string" "#StickerKit_desc_op_riptide_goggles_paper" + "sticker_material" "op_riptide/goggles_paper" + "item_rarity" "rare" } - "638" + "4925" { - "name" "eslcologne2015_team_ebettle" - "item_name" "#StickerKit_eslcologne2015_team_ebettle" - "description_string" "#StickerKit_desc_eslcologne2015_team_ebettle" - "sticker_material" "cologne2015/ebettle" + "name" "op_riptide_great_wave_paper" + "item_name" "#StickerKit_op_riptide_great_wave_paper" + "description_string" "#StickerKit_desc_op_riptide_great_wave_paper" + "sticker_material" "op_riptide/great_wave_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "56" } - "639" + "4926" { - "name" "eslcologne2015_team_ebettle_foil" - "item_name" "#StickerKit_eslcologne2015_team_ebettle_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_ebettle_foil" - "sticker_material" "cologne2015/ebettle_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" + "name" "op_riptide_gutted_paper" + "item_name" "#StickerKit_op_riptide_gutted_paper" + "description_string" "#StickerKit_desc_op_riptide_gutted_paper" + "sticker_material" "op_riptide/gutted_paper" + "item_rarity" "rare" } - "640" + "4927" { - "name" "eslcologne2015_team_ebettle_gold" - "item_name" "#StickerKit_eslcologne2015_team_ebettle_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_ebettle_gold" - "sticker_material" "cologne2015/ebettle_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "56" + "name" "op_riptide_kill_count_paper" + "item_name" "#StickerKit_op_riptide_kill_count_paper" + "description_string" "#StickerKit_desc_op_riptide_kill_count_paper" + "sticker_material" "op_riptide/kill_count_paper" + "item_rarity" "rare" } - "641" + "4928" { - "name" "eslcologne2015_team_cloud9" - "item_name" "#StickerKit_eslcologne2015_team_cloud9" - "description_string" "#StickerKit_desc_eslcologne2015_team_cloud9" - "sticker_material" "cologne2015/cloud9" + "name" "op_riptide_operation_riptide_paper" + "item_name" "#StickerKit_op_riptide_operation_riptide_paper" + "description_string" "#StickerKit_desc_op_riptide_operation_riptide_paper" + "sticker_material" "op_riptide/operation_riptide_paper" "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "52" } - "642" + "4929" { - "name" "eslcologne2015_team_cloud9_foil" - "item_name" "#StickerKit_eslcologne2015_team_cloud9_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_cloud9_foil" - "sticker_material" "cologne2015/cloud9_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" + "name" "op_riptide_rising_tide_paper" + "item_name" "#StickerKit_op_riptide_rising_tide_paper" + "description_string" "#StickerKit_desc_op_riptide_rising_tide_paper" + "sticker_material" "op_riptide/rising_tide_paper" + "item_rarity" "rare" } - "643" + "4930" { - "name" "eslcologne2015_team_cloud9_gold" - "item_name" "#StickerKit_eslcologne2015_team_cloud9_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_cloud9_gold" - "sticker_material" "cologne2015/cloud9_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "52" + "name" "op_riptide_sea_swallow_paper" + "item_name" "#StickerKit_op_riptide_sea_swallow_paper" + "description_string" "#StickerKit_desc_op_riptide_sea_swallow_paper" + "sticker_material" "op_riptide/sea_swallow_paper" + "item_rarity" "rare" } - "644" + "4931" { - "name" "eslcologne2015_team_ninjasinpyjamas" - "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas" - "description_string" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas" - "sticker_material" "cologne2015/ninjasinpyjamas" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "1" + "name" "op_riptide_goggles_holo" + "item_name" "#StickerKit_op_riptide_goggles_holo" + "description_string" "#StickerKit_desc_op_riptide_goggles_holo" + "sticker_material" "op_riptide/goggles_holo" + "item_rarity" "mythical" } - "645" + "4932" { - "name" "eslcologne2015_team_ninjasinpyjamas_foil" - "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas_foil" - "sticker_material" "cologne2015/ninjasinpyjamas_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" + "name" "op_riptide_great_wave_holo" + "item_name" "#StickerKit_op_riptide_great_wave_holo" + "description_string" "#StickerKit_desc_op_riptide_great_wave_holo" + "sticker_material" "op_riptide/great_wave_holo" + "item_rarity" "mythical" } - "646" + "4933" { - "name" "eslcologne2015_team_ninjasinpyjamas_gold" - "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas_gold" - "sticker_material" "cologne2015/ninjasinpyjamas_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "1" + "name" "op_riptide_kill_count_holo" + "item_name" "#StickerKit_op_riptide_kill_count_holo" + "description_string" "#StickerKit_desc_op_riptide_kill_count_holo" + "sticker_material" "op_riptide/kill_count_holo" + "item_rarity" "mythical" } - "647" + "4934" { - "name" "eslcologne2015_team_envyus" - "item_name" "#StickerKit_eslcologne2015_team_envyus" - "description_string" "#StickerKit_desc_eslcologne2015_team_envyus" - "sticker_material" "cologne2015/envyus" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "46" + "name" "op_riptide_rising_tide_holo" + "item_name" "#StickerKit_op_riptide_rising_tide_holo" + "description_string" "#StickerKit_desc_op_riptide_rising_tide_holo" + "sticker_material" "op_riptide/rising_tide_holo" + "item_rarity" "mythical" } - "648" + "4935" { - "name" "eslcologne2015_team_envyus_foil" - "item_name" "#StickerKit_eslcologne2015_team_envyus_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_envyus_foil" - "sticker_material" "cologne2015/envyus_foil" + "name" "op_riptide_bandana_foil" + "item_name" "#StickerKit_op_riptide_bandana_foil" + "description_string" "#StickerKit_desc_op_riptide_bandana_foil" + "sticker_material" "op_riptide/bandana_foil" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" } - "649" + "4936" { - "name" "eslcologne2015_team_envyus_gold" - "item_name" "#StickerKit_eslcologne2015_team_envyus_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_envyus_gold" - "sticker_material" "cologne2015/envyus_gold" + "name" "op_riptide_great_wave_foil" + "item_name" "#StickerKit_op_riptide_great_wave_foil" + "description_string" "#StickerKit_desc_op_riptide_great_wave_foil" + "sticker_material" "op_riptide/great_wave_foil" "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "46" } - "650" - { - "name" "eslcologne2015_team_luminositygaming" - "item_name" "#StickerKit_eslcologne2015_team_luminositygaming" - "description_string" "#StickerKit_desc_eslcologne2015_team_luminositygaming" - "sticker_material" "cologne2015/luminositygaming" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "57" + } + "items" + { + "4783" + { + "item_name" "#CSGO_crate_sticker_pack_op_riptide_capsule" + "name" "crate_sticker_pack_op_riptide_capsule" + "item_description" "#CSGO_crate_sticker_pack_op_riptide_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_op_riptide_capsule" + "first_sale_date" "2021/09/21" + "prefab" "sticker_capsule" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "322" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_op_riptide_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_op_riptide_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "651" + } + "revolving_loot_lists" + { + "322" "crate_sticker_pack_op_riptide_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_op_riptide_capsule_rare" { - "name" "eslcologne2015_team_luminositygaming_foil" - "item_name" "#StickerKit_eslcologne2015_team_luminositygaming_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_luminositygaming_foil" - "sticker_material" "cologne2015/luminositygaming_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" + "[op_riptide_bandana_paper]sticker" "1" + "[op_riptide_goggles_paper]sticker" "1" + "[op_riptide_great_wave_paper]sticker" "1" + "[op_riptide_gutted_paper]sticker" "1" + "[op_riptide_kill_count_paper]sticker" "1" + "[op_riptide_operation_riptide_paper]sticker" "1" + "[op_riptide_rising_tide_paper]sticker" "1" + "[op_riptide_sea_swallow_paper]sticker" "1" } - "652" + "crate_sticker_pack_op_riptide_capsule_mythical" { - "name" "eslcologne2015_team_luminositygaming_gold" - "item_name" "#StickerKit_eslcologne2015_team_luminositygaming_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_luminositygaming_gold" - "sticker_material" "cologne2015/luminositygaming_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "57" + "[op_riptide_goggles_holo]sticker" "1" + "[op_riptide_great_wave_holo]sticker" "1" + "[op_riptide_kill_count_holo]sticker" "1" + "[op_riptide_rising_tide_holo]sticker" "1" } - "653" + "crate_sticker_pack_op_riptide_capsule_legendary" { - "name" "eslcologne2015_team_solomid" - "item_name" "#StickerKit_eslcologne2015_team_solomid" - "description_string" "#StickerKit_desc_eslcologne2015_team_solomid" - "sticker_material" "cologne2015/solomid" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "58" + "[op_riptide_bandana_foil]sticker" "1" + "[op_riptide_great_wave_foil]sticker" "1" } - "654" + "crate_sticker_pack_op_riptide_capsule_lootlist" { - "name" "eslcologne2015_team_solomid_foil" - "item_name" "#StickerKit_eslcologne2015_team_solomid_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_solomid_foil" - "sticker_material" "cologne2015/solomid_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" + "crate_sticker_pack_op_riptide_capsule_rare" "1" + "crate_sticker_pack_op_riptide_capsule_mythical" "1" + "crate_sticker_pack_op_riptide_capsule_legendary" "1" } - "655" + } + "prefabs" + { + "stockh2021_sticker_capsule_prefab" { - "name" "eslcologne2015_team_solomid_gold" - "item_name" "#StickerKit_eslcologne2015_team_solomid_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_solomid_gold" - "sticker_material" "cologne2015/solomid_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "58" + "first_sale_date" "2021-10-10" + "prefab" "weapon_case_base" + "inv_container_and_tools" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } } - "656" + "stockh2021_patch_capsule_prefab" { - "name" "eslcologne2015_team_teamimmunity" - "item_name" "#StickerKit_eslcologne2015_team_teamimmunity" - "description_string" "#StickerKit_desc_eslcologne2015_team_teamimmunity" - "sticker_material" "cologne2015/teamimmunity" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "54" + "prefab" "stockh2021_sticker_capsule_prefab" + "inv_container_and_tools" "patch_capsule" } - "657" + "stockh2021_signature_capsule_prefab" { - "name" "eslcologne2015_team_teamimmunity_foil" - "item_name" "#StickerKit_eslcologne2015_team_teamimmunity_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_teamimmunity_foil" - "sticker_material" "cologne2015/teamimmunity_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" + "first_sale_date" "2021-10-10" + "prefab" "weapon_case_base" + "inv_container_and_tools" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_stockh2021_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_stockh2021_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "658" + "stockh2021_tournament_pass_prefab" { - "name" "eslcologne2015_team_teamimmunity_gold" - "item_name" "#StickerKit_eslcologne2015_team_teamimmunity_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_teamimmunity_gold" - "sticker_material" "cologne2015/teamimmunity_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "54" + "first_sale_date" "2021-10-10" + "prefab" "fan_token" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } } - "659" + "stockh2021_tournament_journal_prefab" { - "name" "eslcologne2015_team_flipside" - "item_name" "#StickerKit_eslcologne2015_team_flipside" - "description_string" "#StickerKit_desc_eslcologne2015_team_flipside" - "sticker_material" "cologne2015/flipside" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "43" + "item_description" "#CSGO_TournamentJournal_stockh2021_Desc" + "first_sale_date" "2021-10-10" + "prefab" "fan_shield" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + "campaign id" + { + "attribute_class" "campaign_id" + "value" "12" + } + "sticker slot 0 id" + { + "attribute_class" "sticker_slot_id" + "value" "5078" + "force_gc_to_generate" "1" + } + "campaign completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "1" + "force_gc_to_generate" "1" + } + "operation drops awarded 0" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "operation drops awarded 1" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + } } - "660" + } + "revolving_loot_lists" + { + "324" "crate_sticker_pack_stockh2021_legends" + "325" "crate_sticker_pack_stockh2021_challengers" + "326" "crate_sticker_pack_stockh2021_contenders" + "327" "crate_patch_pack_stockh2021_legends" + "328" "crate_patch_pack_stockh2021_challengers" + "329" "crate_patch_pack_stockh2021_contenders" + "330" "crate_stockh2021_promo_de_inferno" + "331" "crate_stockh2021_promo_de_mirage" + "332" "crate_stockh2021_promo_de_dust2" + "333" "crate_stockh2021_promo_de_overpass" + "334" "crate_stockh2021_promo_de_ancient" + "335" "crate_stockh2021_promo_de_nuke" + "336" "crate_stockh2021_promo_de_vertigo" + "337" "crate_signature_pack_stockh2021_group_players_collection_champions" + "338" "crate_signature_pack_stockh2021_group_players_collection_finalists" + } + "client_loot_lists" + { + "crate_sticker_pack_stockh2021_legends_rare" + { + "[stockh2021_team_nip]sticker" "1" + "[stockh2021_team_furi]sticker" "1" + "[stockh2021_team_navi]sticker" "1" + "[stockh2021_team_vita]sticker" "1" + "[stockh2021_team_liq]sticker" "1" + "[stockh2021_team_gamb]sticker" "1" + "[stockh2021_team_g2]sticker" "1" + "[stockh2021_team_evl]sticker" "1" + "[stockh2021_team_pgl]sticker" "1" + } + "crate_sticker_pack_stockh2021_legends_mythical" + { + "[stockh2021_team_nip_holo]sticker" "1" + "[stockh2021_team_furi_holo]sticker" "1" + "[stockh2021_team_navi_holo]sticker" "1" + "[stockh2021_team_vita_holo]sticker" "1" + "[stockh2021_team_liq_holo]sticker" "1" + "[stockh2021_team_gamb_holo]sticker" "1" + "[stockh2021_team_g2_holo]sticker" "1" + "[stockh2021_team_evl_holo]sticker" "1" + "[stockh2021_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_stockh2021_legends_legendary" + { + "[stockh2021_team_nip_foil]sticker" "1" + "[stockh2021_team_furi_foil]sticker" "1" + "[stockh2021_team_navi_foil]sticker" "1" + "[stockh2021_team_vita_foil]sticker" "1" + "[stockh2021_team_liq_foil]sticker" "1" + "[stockh2021_team_gamb_foil]sticker" "1" + "[stockh2021_team_g2_foil]sticker" "1" + "[stockh2021_team_evl_foil]sticker" "1" + "[stockh2021_team_pgl_foil]sticker" "1" + } + "crate_sticker_pack_stockh2021_legends_ancient" + { + "[stockh2021_team_nip_gold]sticker" "1" + "[stockh2021_team_furi_gold]sticker" "1" + "[stockh2021_team_navi_gold]sticker" "1" + "[stockh2021_team_vita_gold]sticker" "1" + "[stockh2021_team_liq_gold]sticker" "1" + "[stockh2021_team_gamb_gold]sticker" "1" + "[stockh2021_team_g2_gold]sticker" "1" + "[stockh2021_team_evl_gold]sticker" "1" + "[stockh2021_team_pgl_gold]sticker" "1" + } + "crate_sticker_pack_stockh2021_legends" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_stockh2021_legends_rare" "1" + "crate_sticker_pack_stockh2021_legends_mythical" "1" + "crate_sticker_pack_stockh2021_legends_legendary" "1" + "crate_sticker_pack_stockh2021_legends_ancient" "1" + } + "crate_sticker_pack_stockh2021_challengers_rare" + { + "[stockh2021_team_spir]sticker" "1" + "[stockh2021_team_astr]sticker" "1" + "[stockh2021_team_pain]sticker" "1" + "[stockh2021_team_ence]sticker" "1" + "[stockh2021_team_big]sticker" "1" + "[stockh2021_team_ride]sticker" "1" + "[stockh2021_team_hero]sticker" "1" + "[stockh2021_team_mouz]sticker" "1" + "[stockh2021_team_pgl]sticker" "1" + } + "crate_sticker_pack_stockh2021_challengers_mythical" + { + "[stockh2021_team_spir_holo]sticker" "1" + "[stockh2021_team_astr_holo]sticker" "1" + "[stockh2021_team_pain_holo]sticker" "1" + "[stockh2021_team_ence_holo]sticker" "1" + "[stockh2021_team_big_holo]sticker" "1" + "[stockh2021_team_ride_holo]sticker" "1" + "[stockh2021_team_hero_holo]sticker" "1" + "[stockh2021_team_mouz_holo]sticker" "1" + "[stockh2021_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_stockh2021_challengers_legendary" + { + "[stockh2021_team_spir_foil]sticker" "1" + "[stockh2021_team_astr_foil]sticker" "1" + "[stockh2021_team_pain_foil]sticker" "1" + "[stockh2021_team_ence_foil]sticker" "1" + "[stockh2021_team_big_foil]sticker" "1" + "[stockh2021_team_ride_foil]sticker" "1" + "[stockh2021_team_hero_foil]sticker" "1" + "[stockh2021_team_mouz_foil]sticker" "1" + "[stockh2021_team_pgl_foil]sticker" "1" + } + "crate_sticker_pack_stockh2021_challengers_ancient" + { + "[stockh2021_team_spir_gold]sticker" "1" + "[stockh2021_team_astr_gold]sticker" "1" + "[stockh2021_team_pain_gold]sticker" "1" + "[stockh2021_team_ence_gold]sticker" "1" + "[stockh2021_team_big_gold]sticker" "1" + "[stockh2021_team_ride_gold]sticker" "1" + "[stockh2021_team_hero_gold]sticker" "1" + "[stockh2021_team_mouz_gold]sticker" "1" + "[stockh2021_team_pgl_gold]sticker" "1" + } + "crate_sticker_pack_stockh2021_challengers" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_stockh2021_challengers_rare" "1" + "crate_sticker_pack_stockh2021_challengers_mythical" "1" + "crate_sticker_pack_stockh2021_challengers_legendary" "1" + "crate_sticker_pack_stockh2021_challengers_ancient" "1" + } + "crate_sticker_pack_stockh2021_contenders_rare" + { + "[stockh2021_team_shrk]sticker" "1" + "[stockh2021_team_tyl]sticker" "1" + "[stockh2021_team_ren]sticker" "1" + "[stockh2021_team_ent]sticker" "1" + "[stockh2021_team_god]sticker" "1" + "[stockh2021_team_vp]sticker" "1" + "[stockh2021_team_cope]sticker" "1" + "[stockh2021_team_faze]sticker" "1" + "[stockh2021_team_pgl]sticker" "1" + } + "crate_sticker_pack_stockh2021_contenders_mythical" + { + "[stockh2021_team_shrk_holo]sticker" "1" + "[stockh2021_team_tyl_holo]sticker" "1" + "[stockh2021_team_ren_holo]sticker" "1" + "[stockh2021_team_ent_holo]sticker" "1" + "[stockh2021_team_god_holo]sticker" "1" + "[stockh2021_team_vp_holo]sticker" "1" + "[stockh2021_team_cope_holo]sticker" "1" + "[stockh2021_team_faze_holo]sticker" "1" + "[stockh2021_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_stockh2021_contenders_legendary" + { + "[stockh2021_team_shrk_foil]sticker" "1" + "[stockh2021_team_tyl_foil]sticker" "1" + "[stockh2021_team_ren_foil]sticker" "1" + "[stockh2021_team_ent_foil]sticker" "1" + "[stockh2021_team_god_foil]sticker" "1" + "[stockh2021_team_vp_foil]sticker" "1" + "[stockh2021_team_cope_foil]sticker" "1" + "[stockh2021_team_faze_foil]sticker" "1" + "[stockh2021_team_pgl_foil]sticker" "1" + } + "crate_sticker_pack_stockh2021_contenders_ancient" + { + "[stockh2021_team_shrk_gold]sticker" "1" + "[stockh2021_team_tyl_gold]sticker" "1" + "[stockh2021_team_ren_gold]sticker" "1" + "[stockh2021_team_ent_gold]sticker" "1" + "[stockh2021_team_god_gold]sticker" "1" + "[stockh2021_team_vp_gold]sticker" "1" + "[stockh2021_team_cope_gold]sticker" "1" + "[stockh2021_team_faze_gold]sticker" "1" + "[stockh2021_team_pgl_gold]sticker" "1" + } + "crate_sticker_pack_stockh2021_contenders" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_stockh2021_contenders_rare" "1" + "crate_sticker_pack_stockh2021_contenders_mythical" "1" + "crate_sticker_pack_stockh2021_contenders_legendary" "1" + "crate_sticker_pack_stockh2021_contenders_ancient" "1" + } + "crate_patch_pack_stockh2021_legends_rare" + { + "[stockh2021_teampatch_nip]patch" "1" + "[stockh2021_teampatch_furi]patch" "1" + "[stockh2021_teampatch_navi]patch" "1" + "[stockh2021_teampatch_vita]patch" "1" + "[stockh2021_teampatch_liq]patch" "1" + "[stockh2021_teampatch_gamb]patch" "1" + "[stockh2021_teampatch_g2]patch" "1" + "[stockh2021_teampatch_evl]patch" "1" + "[stockh2021_teampatch_pgl]patch" "1" + } + "crate_patch_pack_stockh2021_legends_mythical" + { + "[stockh2021_teampatch_nip_gold]patch" "1" + "[stockh2021_teampatch_furi_gold]patch" "1" + "[stockh2021_teampatch_navi_gold]patch" "1" + "[stockh2021_teampatch_vita_gold]patch" "1" + "[stockh2021_teampatch_liq_gold]patch" "1" + "[stockh2021_teampatch_gamb_gold]patch" "1" + "[stockh2021_teampatch_g2_gold]patch" "1" + "[stockh2021_teampatch_evl_gold]patch" "1" + "[stockh2021_teampatch_pgl_gold]patch" "1" + } + "crate_patch_pack_stockh2021_legends" + { + "contains_patches_representing_organizations" "1" + "crate_patch_pack_stockh2021_legends_rare" "1" + "crate_patch_pack_stockh2021_legends_mythical" "1" + } + "crate_patch_pack_stockh2021_challengers_rare" + { + "[stockh2021_teampatch_spir]patch" "1" + "[stockh2021_teampatch_astr]patch" "1" + "[stockh2021_teampatch_pain]patch" "1" + "[stockh2021_teampatch_ence]patch" "1" + "[stockh2021_teampatch_big]patch" "1" + "[stockh2021_teampatch_ride]patch" "1" + "[stockh2021_teampatch_hero]patch" "1" + "[stockh2021_teampatch_mouz]patch" "1" + "[stockh2021_teampatch_pgl]patch" "1" + } + "crate_patch_pack_stockh2021_challengers_mythical" + { + "[stockh2021_teampatch_spir_gold]patch" "1" + "[stockh2021_teampatch_astr_gold]patch" "1" + "[stockh2021_teampatch_pain_gold]patch" "1" + "[stockh2021_teampatch_ence_gold]patch" "1" + "[stockh2021_teampatch_big_gold]patch" "1" + "[stockh2021_teampatch_ride_gold]patch" "1" + "[stockh2021_teampatch_hero_gold]patch" "1" + "[stockh2021_teampatch_mouz_gold]patch" "1" + "[stockh2021_teampatch_pgl_gold]patch" "1" + } + "crate_patch_pack_stockh2021_challengers" + { + "contains_patches_representing_organizations" "1" + "crate_patch_pack_stockh2021_challengers_rare" "1" + "crate_patch_pack_stockh2021_challengers_mythical" "1" + } + "crate_patch_pack_stockh2021_contenders_rare" + { + "[stockh2021_teampatch_shrk]patch" "1" + "[stockh2021_teampatch_tyl]patch" "1" + "[stockh2021_teampatch_ren]patch" "1" + "[stockh2021_teampatch_ent]patch" "1" + "[stockh2021_teampatch_god]patch" "1" + "[stockh2021_teampatch_vp]patch" "1" + "[stockh2021_teampatch_cope]patch" "1" + "[stockh2021_teampatch_faze]patch" "1" + "[stockh2021_teampatch_pgl]patch" "1" + } + "crate_patch_pack_stockh2021_contenders_mythical" + { + "[stockh2021_teampatch_shrk_gold]patch" "1" + "[stockh2021_teampatch_tyl_gold]patch" "1" + "[stockh2021_teampatch_ren_gold]patch" "1" + "[stockh2021_teampatch_ent_gold]patch" "1" + "[stockh2021_teampatch_god_gold]patch" "1" + "[stockh2021_teampatch_vp_gold]patch" "1" + "[stockh2021_teampatch_cope_gold]patch" "1" + "[stockh2021_teampatch_faze_gold]patch" "1" + "[stockh2021_teampatch_pgl_gold]patch" "1" + } + "crate_patch_pack_stockh2021_contenders" + { + "contains_patches_representing_organizations" "1" + "crate_patch_pack_stockh2021_contenders_rare" "1" + "crate_patch_pack_stockh2021_contenders_mythical" "1" + } + "crate_signature_pack_stockh2021_group_champions_rare" + { + "[stockh2021_signature_s1mple]sticker" "1" + "[stockh2021_signature_perfecto]sticker" "1" + "[stockh2021_signature_boombl4]sticker" "1" + "[stockh2021_signature_b1t]sticker" "1" + "[stockh2021_signature_electronic]sticker" "1" + } + "crate_signature_pack_stockh2021_group_champions_mythical" + { + "[stockh2021_signature_s1mple_holo]sticker" "1" + "[stockh2021_signature_perfecto_holo]sticker" "1" + "[stockh2021_signature_boombl4_holo]sticker" "1" + "[stockh2021_signature_b1t_holo]sticker" "1" + "[stockh2021_signature_electronic_holo]sticker" "1" + } + "crate_signature_pack_stockh2021_group_champions_gold" + { + "[stockh2021_signature_s1mple_gold]sticker" "1" + "[stockh2021_signature_perfecto_gold]sticker" "1" + "[stockh2021_signature_boombl4_gold]sticker" "1" + "[stockh2021_signature_b1t_gold]sticker" "1" + "[stockh2021_signature_electronic_gold]sticker" "1" + } + "crate_signature_pack_stockh2021_group_finalists_rare" + { + "[stockh2021_signature_niko]sticker" "1" + "[stockh2021_signature_nexa]sticker" "1" + "[stockh2021_signature_hunter]sticker" "1" + "[stockh2021_signature_jackz]sticker" "1" + "[stockh2021_signature_amanek]sticker" "1" + "[stockh2021_signature_teses]sticker" "1" + "[stockh2021_signature_stavn]sticker" "1" + "[stockh2021_signature_sjuush]sticker" "1" + "[stockh2021_signature_refrezh]sticker" "1" + "[stockh2021_signature_cadian]sticker" "1" + "[stockh2021_signature_nafany]sticker" "1" + "[stockh2021_signature_ax1le]sticker" "1" + "[stockh2021_signature_interz]sticker" "1" + "[stockh2021_signature_sh1ro]sticker" "1" + "[stockh2021_signature_hobbit]sticker" "1" + "[stockh2021_signature_drop]sticker" "1" + "[stockh2021_signature_kscerato]sticker" "1" + "[stockh2021_signature_vini]sticker" "1" + "[stockh2021_signature_art]sticker" "1" + "[stockh2021_signature_yuurih]sticker" "1" + "[stockh2021_signature_qikert]sticker" "1" + "[stockh2021_signature_buster]sticker" "1" + "[stockh2021_signature_yekindar]sticker" "1" + "[stockh2021_signature_jame]sticker" "1" + "[stockh2021_signature_fl1t]sticker" "1" + "[stockh2021_signature_hampus]sticker" "1" + "[stockh2021_signature_lnz]sticker" "1" + "[stockh2021_signature_rez]sticker" "1" + "[stockh2021_signature_plopski]sticker" "1" + "[stockh2021_signature_device]sticker" "1" + "[stockh2021_signature_zywoo]sticker" "1" + "[stockh2021_signature_misutaaa]sticker" "1" + "[stockh2021_signature_kyojin]sticker" "1" + "[stockh2021_signature_shox]sticker" "1" + "[stockh2021_signature_apex]sticker" "1" + } + "crate_signature_pack_stockh2021_group_finalists_mythical" + { + "[stockh2021_signature_niko_holo]sticker" "1" + "[stockh2021_signature_nexa_holo]sticker" "1" + "[stockh2021_signature_hunter_holo]sticker" "1" + "[stockh2021_signature_jackz_holo]sticker" "1" + "[stockh2021_signature_amanek_holo]sticker" "1" + "[stockh2021_signature_teses_holo]sticker" "1" + "[stockh2021_signature_stavn_holo]sticker" "1" + "[stockh2021_signature_sjuush_holo]sticker" "1" + "[stockh2021_signature_refrezh_holo]sticker" "1" + "[stockh2021_signature_cadian_holo]sticker" "1" + "[stockh2021_signature_nafany_holo]sticker" "1" + "[stockh2021_signature_ax1le_holo]sticker" "1" + "[stockh2021_signature_interz_holo]sticker" "1" + "[stockh2021_signature_sh1ro_holo]sticker" "1" + "[stockh2021_signature_hobbit_holo]sticker" "1" + "[stockh2021_signature_drop_holo]sticker" "1" + "[stockh2021_signature_kscerato_holo]sticker" "1" + "[stockh2021_signature_vini_holo]sticker" "1" + "[stockh2021_signature_art_holo]sticker" "1" + "[stockh2021_signature_yuurih_holo]sticker" "1" + "[stockh2021_signature_qikert_holo]sticker" "1" + "[stockh2021_signature_buster_holo]sticker" "1" + "[stockh2021_signature_yekindar_holo]sticker" "1" + "[stockh2021_signature_jame_holo]sticker" "1" + "[stockh2021_signature_fl1t_holo]sticker" "1" + "[stockh2021_signature_hampus_holo]sticker" "1" + "[stockh2021_signature_lnz_holo]sticker" "1" + "[stockh2021_signature_rez_holo]sticker" "1" + "[stockh2021_signature_plopski_holo]sticker" "1" + "[stockh2021_signature_device_holo]sticker" "1" + "[stockh2021_signature_zywoo_holo]sticker" "1" + "[stockh2021_signature_misutaaa_holo]sticker" "1" + "[stockh2021_signature_kyojin_holo]sticker" "1" + "[stockh2021_signature_shox_holo]sticker" "1" + "[stockh2021_signature_apex_holo]sticker" "1" + } + "crate_signature_pack_stockh2021_group_finalists_gold" + { + "[stockh2021_signature_niko_gold]sticker" "1" + "[stockh2021_signature_nexa_gold]sticker" "1" + "[stockh2021_signature_hunter_gold]sticker" "1" + "[stockh2021_signature_jackz_gold]sticker" "1" + "[stockh2021_signature_amanek_gold]sticker" "1" + "[stockh2021_signature_teses_gold]sticker" "1" + "[stockh2021_signature_stavn_gold]sticker" "1" + "[stockh2021_signature_sjuush_gold]sticker" "1" + "[stockh2021_signature_refrezh_gold]sticker" "1" + "[stockh2021_signature_cadian_gold]sticker" "1" + "[stockh2021_signature_nafany_gold]sticker" "1" + "[stockh2021_signature_ax1le_gold]sticker" "1" + "[stockh2021_signature_interz_gold]sticker" "1" + "[stockh2021_signature_sh1ro_gold]sticker" "1" + "[stockh2021_signature_hobbit_gold]sticker" "1" + "[stockh2021_signature_drop_gold]sticker" "1" + "[stockh2021_signature_kscerato_gold]sticker" "1" + "[stockh2021_signature_vini_gold]sticker" "1" + "[stockh2021_signature_art_gold]sticker" "1" + "[stockh2021_signature_yuurih_gold]sticker" "1" + "[stockh2021_signature_qikert_gold]sticker" "1" + "[stockh2021_signature_buster_gold]sticker" "1" + "[stockh2021_signature_yekindar_gold]sticker" "1" + "[stockh2021_signature_jame_gold]sticker" "1" + "[stockh2021_signature_fl1t_gold]sticker" "1" + "[stockh2021_signature_hampus_gold]sticker" "1" + "[stockh2021_signature_lnz_gold]sticker" "1" + "[stockh2021_signature_rez_gold]sticker" "1" + "[stockh2021_signature_plopski_gold]sticker" "1" + "[stockh2021_signature_device_gold]sticker" "1" + "[stockh2021_signature_zywoo_gold]sticker" "1" + "[stockh2021_signature_misutaaa_gold]sticker" "1" + "[stockh2021_signature_kyojin_gold]sticker" "1" + "[stockh2021_signature_shox_gold]sticker" "1" + "[stockh2021_signature_apex_gold]sticker" "1" + } + "crate_signature_pack_stockh2021_group_players_collection_champions" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_stockh2021_group_champions_rare" "1" + "crate_signature_pack_stockh2021_group_champions_mythical" "1" + "crate_signature_pack_stockh2021_group_champions_gold" "1" + } + "crate_signature_pack_stockh2021_group_players_collection_finalists" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_stockh2021_group_finalists_rare" "1" + "crate_signature_pack_stockh2021_group_finalists_mythical" "1" + "crate_signature_pack_stockh2021_group_finalists_gold" "1" + } + "crate_stockh2021_promo_de_inferno" + { + "set_inferno_2" "1" + } + "crate_stockh2021_promo_de_mirage" + { + "set_mirage_2021" "1" + } + "crate_stockh2021_promo_de_dust2" + { + "set_dust_2_2021" "1" + } + "crate_stockh2021_promo_de_overpass" { - "name" "eslcologne2015_team_flipside_foil" - "item_name" "#StickerKit_eslcologne2015_team_flipside_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_flipside_foil" - "sticker_material" "cologne2015/flipside_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" + "set_overpass" "1" } - "661" + "crate_stockh2021_promo_de_ancient" { - "name" "eslcologne2015_team_flipside_gold" - "item_name" "#StickerKit_eslcologne2015_team_flipside_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_flipside_gold" - "sticker_material" "cologne2015/flipside_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "43" + "set_op10_ancient" "1" } - "662" + "crate_stockh2021_promo_de_nuke" { - "name" "eslcologne2015_team_titan" - "item_name" "#StickerKit_eslcologne2015_team_titan" - "description_string" "#StickerKit_desc_eslcologne2015_team_titan" - "sticker_material" "cologne2015/titan" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "27" + "set_nuke_2" "1" } - "663" + "crate_stockh2021_promo_de_vertigo" { - "name" "eslcologne2015_team_titan_foil" - "item_name" "#StickerKit_eslcologne2015_team_titan_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_titan_foil" - "sticker_material" "cologne2015/titan_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" + "set_vertigo_2021" "1" } - "664" + } + "items" + { + "4796" { - "name" "eslcologne2015_team_titan_gold" - "item_name" "#StickerKit_eslcologne2015_team_titan_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_titan_gold" - "sticker_material" "cologne2015/titan_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "27" + "item_name" "#CSGO_TournamentPass_stockh2021" + "name" "tournament_pass_stockh2021" + "item_description" "#CSGO_TournamentPass_stockh2021_Desc" + "image_inventory" "econ/status_icons/pgl_pickem_2021_pass" + "prefab" "stockh2021_tournament_pass_prefab stockh2021_tournament_steamtv_items" } - "665" + "4801" { - "name" "eslcologne2015_team_clg" - "item_name" "#StickerKit_eslcologne2015_team_clg" - "description_string" "#StickerKit_desc_eslcologne2015_team_clg" - "sticker_material" "cologne2015/clg" - "item_rarity" "rare" - "tournament_event_id" "7" - "tournament_team_id" "49" + "item_name" "#CSGO_TournamentPass_stockh2021_pack" + "name" "tournament_pass_stockh2021_pack" + "item_description" "#CSGO_TournamentPass_stockh2021_pack_Desc" + "image_inventory" "econ/status_icons/pgl_pickem_2021_pass_pack" + "prefab" "stockh2021_tournament_pass_prefab stockh2021_tournament_steamtv_items" } - "666" + "4802" { - "name" "eslcologne2015_team_clg_foil" - "item_name" "#StickerKit_eslcologne2015_team_clg_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_clg_foil" - "sticker_material" "cologne2015/clg_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" + "item_name" "#CSGO_TournamentPass_stockh2021_charge" + "name" "tournament_pass_stockh2021_charge" + "item_description" "#CSGO_TournamentPass_stockh2021_charge_Desc" + "image_inventory" "econ/status_icons/pgl_pickem_2021_pass_charge" + "prefab" "stockh2021_tournament_pass_prefab" + "attributes" + { + "cannot trade" "1" + } } - "667" + "4797" { - "name" "eslcologne2015_team_clg_gold" - "item_name" "#StickerKit_eslcologne2015_team_clg_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_clg_gold" - "sticker_material" "cologne2015/clg_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" - "tournament_team_id" "49" + "name" "tournament_journal_stockh2021" + "item_name" "#CSGO_TournamentJournal_stockh2021" + "prefab" "stockh2021_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2021_bronze" + "attributes" + { + "upgrade level" "0" + "upgrade threshold" "3" + "pedestal display model" "models/inventory_items/pgl_pickem_2021_bronze.mdl" + } } - "668" + "4798" { - "name" "eslcologne2015_team_esl" - "item_name" "#StickerKit_eslcologne2015_team_esl" - "description_string" "#StickerKit_desc_eslcologne2015_team_esl" - "sticker_material" "cologne2015/esl" - "item_rarity" "rare" - "tournament_event_id" "7" + "name" "tournament_journal_stockh2021_silver" + "item_name" "#CSGO_TournamentJournal_stockh2021_Silver" + "prefab" "stockh2021_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2021_silver" + "attributes" + { + "upgrade level" "1" + "upgrade threshold" "6" + "pedestal display model" "models/inventory_items/pgl_pickem_2021_silver.mdl" + } } - "669" + "4799" { - "name" "eslcologne2015_team_esl_foil" - "item_name" "#StickerKit_eslcologne2015_team_esl_foil" - "description_string" "#StickerKit_desc_eslcologne2015_team_esl_foil" - "sticker_material" "cologne2015/esl_foil" - "item_rarity" "legendary" - "tournament_event_id" "7" + "name" "tournament_journal_stockh2021_gold" + "item_name" "#CSGO_TournamentJournal_stockh2021_Gold" + "prefab" "stockh2021_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2021_gold" + "attributes" + { + "upgrade level" "2" + "upgrade threshold" "9" + "pedestal display model" "models/inventory_items/pgl_pickem_2021_gold.mdl" + } } - "670" + "4800" { - "name" "eslcologne2015_team_esl_gold" - "item_name" "#StickerKit_eslcologne2015_team_esl_gold" - "description_string" "#StickerKit_desc_eslcologne2015_team_esl_gold" - "sticker_material" "cologne2015/esl_gold" - "item_rarity" "legendary" - "tournament_event_id" "7" + "name" "tournament_journal_stockh2021_crystal" + "item_name" "#CSGO_TournamentJournal_stockh2021_Crystal" + "prefab" "stockh2021_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2021_crystal" + "attributes" + { + "upgrade level" "3" + "pedestal display model" "models/inventory_items/pgl_pickem_2021_crystal.mdl" + } } - "671" + "4803" { - "name" "cluj2015_signature_reltuc" - "item_name" "#StickerKit_cluj2015_signature_reltuc" - "description_string" "#StickerKit_desc_cluj2015_signature_reltuc" - "sticker_material" "cluj2015/sig_reltuc" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "518760" + "item_name" "#CSGO_crate_sticker_pack_stockh2021_legends" + "name" "crate_sticker_pack_stockh2021_legends" + "item_description" "#CSGO_crate_sticker_pack_stockh2021_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_stockh2021_legends" + "prefab" "stockh2021_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "324" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_stockh2021_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_stockh2021_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "672" + "4804" { - "name" "cluj2015_signature_reltuc_foil" - "item_name" "#StickerKit_cluj2015_signature_reltuc_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_reltuc_foil" - "sticker_material" "cluj2015/sig_reltuc_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "518760" + "item_name" "#CSGO_crate_sticker_pack_stockh2021_challengers" + "name" "crate_sticker_pack_stockh2021_challengers" + "item_description" "#CSGO_crate_sticker_pack_stockh2021_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_stockh2021_challengers" + "prefab" "stockh2021_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "325" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_stockh2021_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_stockh2021_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "673" + "4805" { - "name" "cluj2015_signature_reltuc_gold" - "item_name" "#StickerKit_cluj2015_signature_reltuc_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_reltuc_gold" - "sticker_material" "cluj2015/sig_reltuc_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "518760" + "item_name" "#CSGO_crate_sticker_pack_stockh2021_contenders" + "name" "crate_sticker_pack_stockh2021_contenders" + "item_description" "#CSGO_crate_sticker_pack_stockh2021_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_stockh2021_contenders" + "prefab" "stockh2021_sticker_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "326" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_stockh2021_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_stockh2021_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "674" + "4806" { - "name" "cluj2015_signature_fns" - "item_name" "#StickerKit_cluj2015_signature_fns" - "description_string" "#StickerKit_desc_cluj2015_signature_fns" - "sticker_material" "cluj2015/sig_fns" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "17564706" + "item_name" "#CSGO_crate_patch_pack_stockh2021_legends" + "name" "crate_patch_pack_stockh2021_legends" + "item_description" "#CSGO_crate_patch_pack_stockh2021_legends_desc" + "image_inventory" "econ/weapon_cases/crate_patch_pack_stockh2021_legends" + "prefab" "stockh2021_patch_capsule_prefab" + "model_player" "models/props/crates/patch_envelope_stockh2021_legends.mdl" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "327" + } + } + "tags" + { + "PatchCapsule" + { + "tag_value" "crate_patch_pack_stockh2021_legends_collection" + "tag_text" "#CSGO_crate_patch_pack_stockh2021_legends_tag" + "tag_group" "PatchCapsule" + "tag_group_text" "#SFUI_InvTooltip_PatchCapsuleTag" + } + } } - "675" + "4807" { - "name" "cluj2015_signature_fns_foil" - "item_name" "#StickerKit_cluj2015_signature_fns_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_fns_foil" - "sticker_material" "cluj2015/sig_fns_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "17564706" + "item_name" "#CSGO_crate_patch_pack_stockh2021_challengers" + "name" "crate_patch_pack_stockh2021_challengers" + "item_description" "#CSGO_crate_patch_pack_stockh2021_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_patch_pack_stockh2021_challengers" + "prefab" "stockh2021_patch_capsule_prefab" + "model_player" "models/props/crates/patch_envelope_stockh2021_challengers.mdl" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "328" + } + } + "tags" + { + "PatchCapsule" + { + "tag_value" "crate_patch_pack_stockh2021_challengers_collection" + "tag_text" "#CSGO_crate_patch_pack_stockh2021_challengers_tag" + "tag_group" "PatchCapsule" + "tag_group_text" "#SFUI_InvTooltip_PatchCapsuleTag" + } + } } - "676" + "4808" { - "name" "cluj2015_signature_fns_gold" - "item_name" "#StickerKit_cluj2015_signature_fns_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_fns_gold" - "sticker_material" "cluj2015/sig_fns_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "17564706" + "item_name" "#CSGO_crate_patch_pack_stockh2021_contenders" + "name" "crate_patch_pack_stockh2021_contenders" + "item_description" "#CSGO_crate_patch_pack_stockh2021_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_patch_pack_stockh2021_contenders" + "prefab" "stockh2021_patch_capsule_prefab" + "model_player" "models/props/crates/patch_envelope_stockh2021_contenders.mdl" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "329" + } + } + "tags" + { + "PatchCapsule" + { + "tag_value" "crate_patch_pack_stockh2021_contenders_collection" + "tag_text" "#CSGO_crate_patch_pack_stockh2021_contenders_tag" + "tag_group" "PatchCapsule" + "tag_group_text" "#SFUI_InvTooltip_PatchCapsuleTag" + } + } } - "677" + "4816" { - "name" "cluj2015_signature_hazed" - "item_name" "#StickerKit_cluj2015_signature_hazed" - "description_string" "#StickerKit_desc_cluj2015_signature_hazed" - "sticker_material" "cluj2015/sig_hazed" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "30305781" + "item_name" "#CSGO_crate_signature_pack_stockh2021_group_champions" + "name" "crate_signature_pack_stockh2021_group_champions" + "item_description" "#CSGO_crate_signature_pack_stockh2021_group_champions_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_stockh2021_group_champions" + "prefab" "stockh2021_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "337" + } + } } - "678" + "4817" { - "name" "cluj2015_signature_hazed_foil" - "item_name" "#StickerKit_cluj2015_signature_hazed_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_hazed_foil" - "sticker_material" "cluj2015/sig_hazed_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "30305781" + "item_name" "#CSGO_crate_signature_pack_stockh2021_group_finalists" + "name" "crate_signature_pack_stockh2021_group_finalists" + "item_description" "#CSGO_crate_signature_pack_stockh2021_group_finalists_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_stockh2021_group_finalists" + "prefab" "stockh2021_signature_capsule_prefab" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "338" + } + } } - "679" + "4809" { - "name" "cluj2015_signature_hazed_gold" - "item_name" "#StickerKit_cluj2015_signature_hazed_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_hazed_gold" - "sticker_material" "cluj2015/sig_hazed_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "30305781" + "item_name" "#CSGO_crate_stockh2021_promo_de_inferno" + "name" "crate_stockh2021_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_stockh2021_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "330" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno_2" + "tag_text" "#CSGO_set_inferno_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "680" + "4810" { - "name" "cluj2015_signature_jdm64" - "item_name" "#StickerKit_cluj2015_signature_jdm64" - "description_string" "#StickerKit_desc_cluj2015_signature_jdm64" - "sticker_material" "cluj2015/sig_jdm64" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "7223652" + "item_name" "#CSGO_crate_stockh2021_promo_de_mirage" + "name" "crate_stockh2021_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_stockh2021_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "331" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage_2021" + "tag_text" "#CSGO_set_mirage_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "681" + "4811" { - "name" "cluj2015_signature_jdm64_foil" - "item_name" "#StickerKit_cluj2015_signature_jdm64_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_jdm64_foil" - "sticker_material" "cluj2015/sig_jdm64_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "7223652" + "item_name" "#CSGO_crate_stockh2021_promo_de_dust2" + "name" "crate_stockh2021_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_stockh2021_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "332" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2_2021" + "tag_text" "#CSGO_set_dust_2_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "682" + "4812" { - "name" "cluj2015_signature_jdm64_gold" - "item_name" "#StickerKit_cluj2015_signature_jdm64_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_jdm64_gold" - "sticker_material" "cluj2015/sig_jdm64_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "7223652" + "item_name" "#CSGO_crate_stockh2021_promo_de_overpass" + "name" "crate_stockh2021_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_stockh2021_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "333" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "683" + "4813" { - "name" "cluj2015_signature_tarik" - "item_name" "#StickerKit_cluj2015_signature_tarik" - "description_string" "#StickerKit_desc_cluj2015_signature_tarik" - "sticker_material" "cluj2015/sig_tarik" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "18216247" + "item_name" "#CSGO_crate_stockh2021_promo_de_ancient" + "name" "crate_stockh2021_promo_de_ancient" + "image_inventory" "econ/weapon_cases/crate_stockh2021_promo_de_ancient" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "334" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_op10_ancient" + "tag_text" "#CSGO_set_op10_ancient" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "684" + "4814" { - "name" "cluj2015_signature_tarik_foil" - "item_name" "#StickerKit_cluj2015_signature_tarik_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_tarik_foil" - "sticker_material" "cluj2015/sig_tarik_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "18216247" + "item_name" "#CSGO_crate_stockh2021_promo_de_nuke" + "name" "crate_stockh2021_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_stockh2021_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "335" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke_2" + "tag_text" "#CSGO_set_nuke_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "685" + "4815" { - "name" "cluj2015_signature_tarik_gold" - "item_name" "#StickerKit_cluj2015_signature_tarik_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_tarik_gold" - "sticker_material" "cluj2015/sig_tarik_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" - "tournament_player_id" "18216247" + "item_name" "#CSGO_crate_stockh2021_promo_de_vertigo" + "name" "crate_stockh2021_promo_de_vertigo" + "image_inventory" "econ/weapon_cases/crate_stockh2021_promo_de_vertigo" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "336" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "18" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_vertigo_2021" + "tag_text" "#CSGO_set_vertigo_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "686" + } + "sticker_kits" + { + "4954" { - "name" "cluj2015_signature_freakazoid" - "item_name" "#StickerKit_cluj2015_signature_freakazoid" - "description_string" "#StickerKit_desc_cluj2015_signature_freakazoid" - "sticker_material" "cluj2015/sig_freakazoid" + "name" "stockh2021_team_nip" + "item_name" "#StickerKit_stockh2021_team_nip" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/nip" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "16883071" + "tournament_event_id" "18" + "tournament_team_id" "1" } - "687" + "4955" { - "name" "cluj2015_signature_freakazoid_foil" - "item_name" "#StickerKit_cluj2015_signature_freakazoid_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_freakazoid_foil" - "sticker_material" "cluj2015/sig_freakazoid_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "16883071" + "name" "stockh2021_team_nip_holo" + "item_name" "#StickerKit_stockh2021_team_nip_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/nip_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "1" } - "688" + "4956" { - "name" "cluj2015_signature_freakazoid_gold" - "item_name" "#StickerKit_cluj2015_signature_freakazoid_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_freakazoid_gold" - "sticker_material" "cluj2015/sig_freakazoid_gold" + "name" "stockh2021_team_nip_foil" + "item_name" "#StickerKit_stockh2021_team_nip_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/nip_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "16883071" - } - "689" - { - "name" "cluj2015_signature_sgares" - "item_name" "#StickerKit_cluj2015_signature_sgares" - "description_string" "#StickerKit_desc_cluj2015_signature_sgares" - "sticker_material" "cluj2015/sig_sgares" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "164004" + "tournament_event_id" "18" + "tournament_team_id" "1" } - "690" + "4957" { - "name" "cluj2015_signature_sgares_foil" - "item_name" "#StickerKit_cluj2015_signature_sgares_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_sgares_foil" - "sticker_material" "cluj2015/sig_sgares_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "164004" + "name" "stockh2021_team_nip_gold" + "item_name" "#StickerKit_stockh2021_team_nip_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/nip_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "1" } - "691" + "4958" { - "name" "cluj2015_signature_sgares_gold" - "item_name" "#StickerKit_cluj2015_signature_sgares_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_sgares_gold" - "sticker_material" "cluj2015/sig_sgares_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "164004" + "name" "stockh2021_team_furi" + "item_name" "#StickerKit_stockh2021_team_furi" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/furi" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "85" } - "692" + "4959" { - "name" "cluj2015_signature_shroud" - "item_name" "#StickerKit_cluj2015_signature_shroud" - "description_string" "#StickerKit_desc_cluj2015_signature_shroud" - "sticker_material" "cluj2015/sig_shroud" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "4515926" + "name" "stockh2021_team_furi_holo" + "item_name" "#StickerKit_stockh2021_team_furi_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/furi_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "85" } - "693" + "4960" { - "name" "cluj2015_signature_shroud_foil" - "item_name" "#StickerKit_cluj2015_signature_shroud_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_shroud_foil" - "sticker_material" "cluj2015/sig_shroud_foil" + "name" "stockh2021_team_furi_foil" + "item_name" "#StickerKit_stockh2021_team_furi_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/furi_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "4515926" + "tournament_event_id" "18" + "tournament_team_id" "85" } - "694" + "4961" { - "name" "cluj2015_signature_shroud_gold" - "item_name" "#StickerKit_cluj2015_signature_shroud_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_shroud_gold" - "sticker_material" "cluj2015/sig_shroud_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "4515926" + "name" "stockh2021_team_furi_gold" + "item_name" "#StickerKit_stockh2021_team_furi_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/furi_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "85" } - "695" + "4962" { - "name" "cluj2015_signature_skadoodle" - "item_name" "#StickerKit_cluj2015_signature_skadoodle" - "description_string" "#StickerKit_desc_cluj2015_signature_skadoodle" - "sticker_material" "cluj2015/sig_skadoodle" + "name" "stockh2021_team_navi" + "item_name" "#StickerKit_stockh2021_team_navi" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/navi" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "21075725" + "tournament_event_id" "18" + "tournament_team_id" "12" } - "696" + "4963" { - "name" "cluj2015_signature_skadoodle_foil" - "item_name" "#StickerKit_cluj2015_signature_skadoodle_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_skadoodle_foil" - "sticker_material" "cluj2015/sig_skadoodle_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "21075725" + "name" "stockh2021_team_navi_holo" + "item_name" "#StickerKit_stockh2021_team_navi_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/navi_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "12" } - "697" + "4964" { - "name" "cluj2015_signature_skadoodle_gold" - "item_name" "#StickerKit_cluj2015_signature_skadoodle_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_skadoodle_gold" - "sticker_material" "cluj2015/sig_skadoodle_gold" + "name" "stockh2021_team_navi_foil" + "item_name" "#StickerKit_stockh2021_team_navi_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/navi_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "21075725" - } - "698" - { - "name" "cluj2015_signature_nothing" - "item_name" "#StickerKit_cluj2015_signature_nothing" - "description_string" "#StickerKit_desc_cluj2015_signature_nothing" - "sticker_material" "cluj2015/sig_nothing" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "755286" + "tournament_event_id" "18" + "tournament_team_id" "12" } - "699" + "4965" { - "name" "cluj2015_signature_nothing_foil" - "item_name" "#StickerKit_cluj2015_signature_nothing_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_nothing_foil" - "sticker_material" "cluj2015/sig_nothing_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "755286" + "name" "stockh2021_team_navi_gold" + "item_name" "#StickerKit_stockh2021_team_navi_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/navi_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "12" } - "700" + "4966" { - "name" "cluj2015_signature_nothing_gold" - "item_name" "#StickerKit_cluj2015_signature_nothing_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_nothing_gold" - "sticker_material" "cluj2015/sig_nothing_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" - "tournament_player_id" "755286" + "name" "stockh2021_team_vita" + "item_name" "#StickerKit_stockh2021_team_vita" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vita" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "89" } - "701" + "4967" { - "name" "cluj2015_signature_apex" - "item_name" "#StickerKit_cluj2015_signature_apex" - "description_string" "#StickerKit_desc_cluj2015_signature_apex" - "sticker_material" "cluj2015/sig_apex" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "29478439" + "name" "stockh2021_team_vita_holo" + "item_name" "#StickerKit_stockh2021_team_vita_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vita_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "89" } - "702" + "4968" { - "name" "cluj2015_signature_apex_foil" - "item_name" "#StickerKit_cluj2015_signature_apex_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_apex_foil" - "sticker_material" "cluj2015/sig_apex_foil" + "name" "stockh2021_team_vita_foil" + "item_name" "#StickerKit_stockh2021_team_vita_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vita_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "29478439" + "tournament_event_id" "18" + "tournament_team_id" "89" } - "703" + "4969" { - "name" "cluj2015_signature_apex_gold" - "item_name" "#StickerKit_cluj2015_signature_apex_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_apex_gold" - "sticker_material" "cluj2015/sig_apex_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "29478439" + "name" "stockh2021_team_vita_gold" + "item_name" "#StickerKit_stockh2021_team_vita_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vita_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "89" } - "704" + "4970" { - "name" "cluj2015_signature_happy" - "item_name" "#StickerKit_cluj2015_signature_happy" - "description_string" "#StickerKit_desc_cluj2015_signature_happy" - "sticker_material" "cluj2015/sig_happy" + "name" "stockh2021_team_liq" + "item_name" "#StickerKit_stockh2021_team_liq" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/liq" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "17975624" + "tournament_event_id" "18" + "tournament_team_id" "48" } - "705" + "4971" { - "name" "cluj2015_signature_happy_foil" - "item_name" "#StickerKit_cluj2015_signature_happy_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_happy_foil" - "sticker_material" "cluj2015/sig_happy_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "17975624" + "name" "stockh2021_team_liq_holo" + "item_name" "#StickerKit_stockh2021_team_liq_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/liq_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "48" } - "706" + "4972" { - "name" "cluj2015_signature_happy_gold" - "item_name" "#StickerKit_cluj2015_signature_happy_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_happy_gold" - "sticker_material" "cluj2015/sig_happy_gold" + "name" "stockh2021_team_liq_foil" + "item_name" "#StickerKit_stockh2021_team_liq_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/liq_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "17975624" + "tournament_event_id" "18" + "tournament_team_id" "48" } - "707" + "4973" { - "name" "cluj2015_signature_kioshima" - "item_name" "#StickerKit_cluj2015_signature_kioshima" - "description_string" "#StickerKit_desc_cluj2015_signature_kioshima" - "sticker_material" "cluj2015/sig_kioshima" + "name" "stockh2021_team_liq_gold" + "item_name" "#StickerKit_stockh2021_team_liq_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/liq_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "48" + } + "4974" + { + "name" "stockh2021_team_gamb" + "item_name" "#StickerKit_stockh2021_team_gamb" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/gamb" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "40517167" + "tournament_event_id" "18" + "tournament_team_id" "63" } - "708" + "4975" { - "name" "cluj2015_signature_kioshima_foil" - "item_name" "#StickerKit_cluj2015_signature_kioshima_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_kioshima_foil" - "sticker_material" "cluj2015/sig_kioshima_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "40517167" + "name" "stockh2021_team_gamb_holo" + "item_name" "#StickerKit_stockh2021_team_gamb_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/gamb_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "63" } - "709" + "4976" { - "name" "cluj2015_signature_kioshima_gold" - "item_name" "#StickerKit_cluj2015_signature_kioshima_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_kioshima_gold" - "sticker_material" "cluj2015/sig_kioshima_gold" + "name" "stockh2021_team_gamb_foil" + "item_name" "#StickerKit_stockh2021_team_gamb_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/gamb_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "40517167" + "tournament_event_id" "18" + "tournament_team_id" "63" } - "710" + "4977" { - "name" "cluj2015_signature_kennys" - "item_name" "#StickerKit_cluj2015_signature_kennys" - "description_string" "#StickerKit_desc_cluj2015_signature_kennys" - "sticker_material" "cluj2015/sig_kennys" + "name" "stockh2021_team_gamb_gold" + "item_name" "#StickerKit_stockh2021_team_gamb_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/gamb_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "63" + } + "4978" + { + "name" "stockh2021_team_g2" + "item_name" "#StickerKit_stockh2021_team_g2" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/g2" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "64640068" + "tournament_event_id" "18" + "tournament_team_id" "59" } - "711" + "4979" { - "name" "cluj2015_signature_kennys_foil" - "item_name" "#StickerKit_cluj2015_signature_kennys_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_kennys_foil" - "sticker_material" "cluj2015/sig_kennys_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "64640068" + "name" "stockh2021_team_g2_holo" + "item_name" "#StickerKit_stockh2021_team_g2_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/g2_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "59" } - "712" + "4980" { - "name" "cluj2015_signature_kennys_gold" - "item_name" "#StickerKit_cluj2015_signature_kennys_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_kennys_gold" - "sticker_material" "cluj2015/sig_kennys_gold" + "name" "stockh2021_team_g2_foil" + "item_name" "#StickerKit_stockh2021_team_g2_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/g2_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "64640068" + "tournament_event_id" "18" + "tournament_team_id" "59" } - "713" + "4981" { - "name" "cluj2015_signature_nbk" - "item_name" "#StickerKit_cluj2015_signature_nbk" - "description_string" "#StickerKit_desc_cluj2015_signature_nbk" - "sticker_material" "cluj2015/sig_nbk" + "name" "stockh2021_team_g2_gold" + "item_name" "#StickerKit_stockh2021_team_g2_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/g2_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "59" + } + "4982" + { + "name" "stockh2021_team_evl" + "item_name" "#StickerKit_stockh2021_team_evl" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/evl" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "444845" + "tournament_event_id" "18" + "tournament_team_id" "98" } - "714" + "4983" { - "name" "cluj2015_signature_nbk_foil" - "item_name" "#StickerKit_cluj2015_signature_nbk_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_nbk_foil" - "sticker_material" "cluj2015/sig_nbk_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "444845" + "name" "stockh2021_team_evl_holo" + "item_name" "#StickerKit_stockh2021_team_evl_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/evl_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "98" } - "715" + "4984" { - "name" "cluj2015_signature_nbk_gold" - "item_name" "#StickerKit_cluj2015_signature_nbk_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_nbk_gold" - "sticker_material" "cluj2015/sig_nbk_gold" + "name" "stockh2021_team_evl_foil" + "item_name" "#StickerKit_stockh2021_team_evl_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/evl_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" - "tournament_player_id" "444845" + "tournament_event_id" "18" + "tournament_team_id" "98" } - "716" + "4985" { - "name" "cluj2015_signature_b1ad3" - "item_name" "#StickerKit_cluj2015_signature_b1ad3" - "description_string" "#StickerKit_desc_cluj2015_signature_b1ad3" - "sticker_material" "cluj2015/sig_b1ad3" + "name" "stockh2021_team_evl_gold" + "item_name" "#StickerKit_stockh2021_team_evl_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/evl_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "98" + } + "4986" + { + "name" "stockh2021_team_spir" + "item_name" "#StickerKit_stockh2021_team_spir" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/spir" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "53258137" + "tournament_event_id" "18" + "tournament_team_id" "81" } - "717" + "4987" { - "name" "cluj2015_signature_b1ad3_foil" - "item_name" "#StickerKit_cluj2015_signature_b1ad3_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_b1ad3_foil" - "sticker_material" "cluj2015/sig_b1ad3_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "53258137" + "name" "stockh2021_team_spir_holo" + "item_name" "#StickerKit_stockh2021_team_spir_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/spir_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "81" } - "718" + "4988" { - "name" "cluj2015_signature_b1ad3_gold" - "item_name" "#StickerKit_cluj2015_signature_b1ad3_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_b1ad3_gold" - "sticker_material" "cluj2015/sig_b1ad3_gold" + "name" "stockh2021_team_spir_foil" + "item_name" "#StickerKit_stockh2021_team_spir_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/spir_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "53258137" + "tournament_event_id" "18" + "tournament_team_id" "81" } - "719" + "4989" { - "name" "cluj2015_signature_bondik" - "item_name" "#StickerKit_cluj2015_signature_bondik" - "description_string" "#StickerKit_desc_cluj2015_signature_bondik" - "sticker_material" "cluj2015/sig_bondik" + "name" "stockh2021_team_spir_gold" + "item_name" "#StickerKit_stockh2021_team_spir_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/spir_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "81" + } + "4990" + { + "name" "stockh2021_team_astr" + "item_name" "#StickerKit_stockh2021_team_astr" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/astr" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "46918643" + "tournament_event_id" "18" + "tournament_team_id" "60" } - "720" + "4991" { - "name" "cluj2015_signature_bondik_foil" - "item_name" "#StickerKit_cluj2015_signature_bondik_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_bondik_foil" - "sticker_material" "cluj2015/sig_bondik_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "46918643" + "name" "stockh2021_team_astr_holo" + "item_name" "#StickerKit_stockh2021_team_astr_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/astr_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "60" } - "721" + "4992" { - "name" "cluj2015_signature_bondik_gold" - "item_name" "#StickerKit_cluj2015_signature_bondik_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_bondik_gold" - "sticker_material" "cluj2015/sig_bondik_gold" + "name" "stockh2021_team_astr_foil" + "item_name" "#StickerKit_stockh2021_team_astr_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/astr_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "46918643" + "tournament_event_id" "18" + "tournament_team_id" "60" } - "722" + "4993" { - "name" "cluj2015_signature_davcost" - "item_name" "#StickerKit_cluj2015_signature_davcost" - "description_string" "#StickerKit_desc_cluj2015_signature_davcost" - "sticker_material" "cluj2015/sig_davcost" + "name" "stockh2021_team_astr_gold" + "item_name" "#StickerKit_stockh2021_team_astr_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/astr_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "60" + } + "4994" + { + "name" "stockh2021_team_pain" + "item_name" "#StickerKit_stockh2021_team_pain" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/pain" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "20273529" + "tournament_event_id" "18" + "tournament_team_id" "102" } - "723" + "4995" { - "name" "cluj2015_signature_davcost_foil" - "item_name" "#StickerKit_cluj2015_signature_davcost_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_davcost_foil" - "sticker_material" "cluj2015/sig_davcost_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "20273529" + "name" "stockh2021_team_pain_holo" + "item_name" "#StickerKit_stockh2021_team_pain_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/pain_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "102" } - "724" + "4996" { - "name" "cluj2015_signature_davcost_gold" - "item_name" "#StickerKit_cluj2015_signature_davcost_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_davcost_gold" - "sticker_material" "cluj2015/sig_davcost_gold" + "name" "stockh2021_team_pain_foil" + "item_name" "#StickerKit_stockh2021_team_pain_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/pain_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "20273529" + "tournament_event_id" "18" + "tournament_team_id" "102" } - "725" + "4997" { - "name" "cluj2015_signature_markeloff" - "item_name" "#StickerKit_cluj2015_signature_markeloff" - "description_string" "#StickerKit_desc_cluj2015_signature_markeloff" - "sticker_material" "cluj2015/sig_markeloff" + "name" "stockh2021_team_pain_gold" + "item_name" "#StickerKit_stockh2021_team_pain_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/pain_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "102" + } + "4998" + { + "name" "stockh2021_team_ence" + "item_name" "#StickerKit_stockh2021_team_ence" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ence" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "5667261" + "tournament_event_id" "18" + "tournament_team_id" "84" } - "726" + "4999" { - "name" "cluj2015_signature_markeloff_foil" - "item_name" "#StickerKit_cluj2015_signature_markeloff_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_markeloff_foil" - "sticker_material" "cluj2015/sig_markeloff_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "5667261" + "name" "stockh2021_team_ence_holo" + "item_name" "#StickerKit_stockh2021_team_ence_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ence_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "84" } - "727" + "5000" { - "name" "cluj2015_signature_markeloff_gold" - "item_name" "#StickerKit_cluj2015_signature_markeloff_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_markeloff_gold" - "sticker_material" "cluj2015/sig_markeloff_gold" + "name" "stockh2021_team_ence_foil" + "item_name" "#StickerKit_stockh2021_team_ence_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ence_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "5667261" + "tournament_event_id" "18" + "tournament_team_id" "84" } - "728" + "5001" { - "name" "cluj2015_signature_worldedit" - "item_name" "#StickerKit_cluj2015_signature_worldedit" - "description_string" "#StickerKit_desc_cluj2015_signature_worldedit" - "sticker_material" "cluj2015/sig_worldedit" + "name" "stockh2021_team_ence_gold" + "item_name" "#StickerKit_stockh2021_team_ence_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ence_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "84" + } + "5002" + { + "name" "stockh2021_team_big" + "item_name" "#StickerKit_stockh2021_team_big" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/big" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "36732188" + "tournament_event_id" "18" + "tournament_team_id" "69" } - "729" + "5003" { - "name" "cluj2015_signature_worldedit_foil" - "item_name" "#StickerKit_cluj2015_signature_worldedit_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_worldedit_foil" - "sticker_material" "cluj2015/sig_worldedit_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "36732188" + "name" "stockh2021_team_big_holo" + "item_name" "#StickerKit_stockh2021_team_big_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/big_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "69" } - "730" + "5004" { - "name" "cluj2015_signature_worldedit_gold" - "item_name" "#StickerKit_cluj2015_signature_worldedit_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_worldedit_gold" - "sticker_material" "cluj2015/sig_worldedit_gold" + "name" "stockh2021_team_big_foil" + "item_name" "#StickerKit_stockh2021_team_big_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/big_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" - "tournament_player_id" "36732188" + "tournament_event_id" "18" + "tournament_team_id" "69" } - "731" + "5005" { - "name" "cluj2015_signature_flusha" - "item_name" "#StickerKit_cluj2015_signature_flusha" - "description_string" "#StickerKit_desc_cluj2015_signature_flusha" - "sticker_material" "cluj2015/sig_flusha" + "name" "stockh2021_team_big_gold" + "item_name" "#StickerKit_stockh2021_team_big_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/big_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "69" + } + "5006" + { + "name" "stockh2021_team_ride" + "item_name" "#StickerKit_stockh2021_team_ride" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ride" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "31082355" + "tournament_event_id" "18" + "tournament_team_id" "103" } - "732" + "5007" { - "name" "cluj2015_signature_flusha_foil" - "item_name" "#StickerKit_cluj2015_signature_flusha_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_flusha_foil" - "sticker_material" "cluj2015/sig_flusha_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "31082355" + "name" "stockh2021_team_ride_holo" + "item_name" "#StickerKit_stockh2021_team_ride_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ride_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "103" } - "733" + "5008" { - "name" "cluj2015_signature_flusha_gold" - "item_name" "#StickerKit_cluj2015_signature_flusha_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_flusha_gold" - "sticker_material" "cluj2015/sig_flusha_gold" + "name" "stockh2021_team_ride_foil" + "item_name" "#StickerKit_stockh2021_team_ride_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ride_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "31082355" + "tournament_event_id" "18" + "tournament_team_id" "103" } - "734" + "5009" { - "name" "cluj2015_signature_jw" - "item_name" "#StickerKit_cluj2015_signature_jw" - "description_string" "#StickerKit_desc_cluj2015_signature_jw" - "sticker_material" "cluj2015/sig_jw" + "name" "stockh2021_team_ride_gold" + "item_name" "#StickerKit_stockh2021_team_ride_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ride_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "103" + } + "5010" + { + "name" "stockh2021_team_hero" + "item_name" "#StickerKit_stockh2021_team_hero" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/hero" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "71288472" + "tournament_event_id" "18" + "tournament_team_id" "95" } - "735" + "5011" { - "name" "cluj2015_signature_jw_foil" - "item_name" "#StickerKit_cluj2015_signature_jw_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_jw_foil" - "sticker_material" "cluj2015/sig_jw_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "71288472" + "name" "stockh2021_team_hero_holo" + "item_name" "#StickerKit_stockh2021_team_hero_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/hero_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "95" } - "736" + "5012" { - "name" "cluj2015_signature_jw_gold" - "item_name" "#StickerKit_cluj2015_signature_jw_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_jw_gold" - "sticker_material" "cluj2015/sig_jw_gold" + "name" "stockh2021_team_hero_foil" + "item_name" "#StickerKit_stockh2021_team_hero_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/hero_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "71288472" + "tournament_event_id" "18" + "tournament_team_id" "95" } - "737" + "5013" { - "name" "cluj2015_signature_krimz" - "item_name" "#StickerKit_cluj2015_signature_krimz" - "description_string" "#StickerKit_desc_cluj2015_signature_krimz" - "sticker_material" "cluj2015/sig_krimz" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "71385856" + "name" "stockh2021_team_hero_gold" + "item_name" "#StickerKit_stockh2021_team_hero_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/hero_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "95" + } + "5014" + { + "name" "stockh2021_team_mouz" + "item_name" "#StickerKit_stockh2021_team_mouz" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/mouz" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "106" } - "738" + "5015" { - "name" "cluj2015_signature_krimz_foil" - "item_name" "#StickerKit_cluj2015_signature_krimz_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_krimz_foil" - "sticker_material" "cluj2015/sig_krimz_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "71385856" + "name" "stockh2021_team_mouz_holo" + "item_name" "#StickerKit_stockh2021_team_mouz_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/mouz_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "106" } - "739" + "5016" { - "name" "cluj2015_signature_krimz_gold" - "item_name" "#StickerKit_cluj2015_signature_krimz_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_krimz_gold" - "sticker_material" "cluj2015/sig_krimz_gold" + "name" "stockh2021_team_mouz_foil" + "item_name" "#StickerKit_stockh2021_team_mouz_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/mouz_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "71385856" + "tournament_event_id" "18" + "tournament_team_id" "106" } - "740" + "5017" { - "name" "cluj2015_signature_olofmeister" - "item_name" "#StickerKit_cluj2015_signature_olofmeister" - "description_string" "#StickerKit_desc_cluj2015_signature_olofmeister" - "sticker_material" "cluj2015/sig_olofmeister" + "name" "stockh2021_team_mouz_gold" + "item_name" "#StickerKit_stockh2021_team_mouz_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/mouz_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "106" + } + "5018" + { + "name" "stockh2021_team_shrk" + "item_name" "#StickerKit_stockh2021_team_shrk" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/shrk" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "28361465" + "tournament_event_id" "18" + "tournament_team_id" "104" } - "741" + "5019" { - "name" "cluj2015_signature_olofmeister_foil" - "item_name" "#StickerKit_cluj2015_signature_olofmeister_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_olofmeister_foil" - "sticker_material" "cluj2015/sig_olofmeister_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "28361465" + "name" "stockh2021_team_shrk_holo" + "item_name" "#StickerKit_stockh2021_team_shrk_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/shrk_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "104" } - "742" + "5020" { - "name" "cluj2015_signature_olofmeister_gold" - "item_name" "#StickerKit_cluj2015_signature_olofmeister_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_olofmeister_gold" - "sticker_material" "cluj2015/sig_olofmeister_gold" + "name" "stockh2021_team_shrk_foil" + "item_name" "#StickerKit_stockh2021_team_shrk_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/shrk_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "28361465" + "tournament_event_id" "18" + "tournament_team_id" "104" } - "743" + "5021" { - "name" "cluj2015_signature_pronax" - "item_name" "#StickerKit_cluj2015_signature_pronax" - "description_string" "#StickerKit_desc_cluj2015_signature_pronax" - "sticker_material" "cluj2015/sig_pronax" + "name" "stockh2021_team_shrk_gold" + "item_name" "#StickerKit_stockh2021_team_shrk_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/shrk_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "104" + } + "5022" + { + "name" "stockh2021_team_tyl" + "item_name" "#StickerKit_stockh2021_team_tyl" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/tyl" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "9419182" + "tournament_event_id" "18" + "tournament_team_id" "74" } - "744" + "5023" { - "name" "cluj2015_signature_pronax_foil" - "item_name" "#StickerKit_cluj2015_signature_pronax_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_pronax_foil" - "sticker_material" "cluj2015/sig_pronax_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "9419182" + "name" "stockh2021_team_tyl_holo" + "item_name" "#StickerKit_stockh2021_team_tyl_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/tyl_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "74" } - "745" + "5024" { - "name" "cluj2015_signature_pronax_gold" - "item_name" "#StickerKit_cluj2015_signature_pronax_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_pronax_gold" - "sticker_material" "cluj2015/sig_pronax_gold" + "name" "stockh2021_team_tyl_foil" + "item_name" "#StickerKit_stockh2021_team_tyl_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/tyl_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" - "tournament_player_id" "9419182" + "tournament_event_id" "18" + "tournament_team_id" "74" } - "746" + "5025" { - "name" "cluj2015_signature_dennis" - "item_name" "#StickerKit_cluj2015_signature_dennis" - "description_string" "#StickerKit_desc_cluj2015_signature_dennis" - "sticker_material" "cluj2015/sig_dennis" + "name" "stockh2021_team_tyl_gold" + "item_name" "#StickerKit_stockh2021_team_tyl_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/tyl_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "74" + } + "5026" + { + "name" "stockh2021_team_ren" + "item_name" "#StickerKit_stockh2021_team_ren" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ren" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "108076825" + "tournament_event_id" "18" + "tournament_team_id" "53" } - "747" + "5027" { - "name" "cluj2015_signature_dennis_foil" - "item_name" "#StickerKit_cluj2015_signature_dennis_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_dennis_foil" - "sticker_material" "cluj2015/sig_dennis_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "108076825" + "name" "stockh2021_team_ren_holo" + "item_name" "#StickerKit_stockh2021_team_ren_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ren_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "53" } - "748" + "5028" { - "name" "cluj2015_signature_dennis_gold" - "item_name" "#StickerKit_cluj2015_signature_dennis_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_dennis_gold" - "sticker_material" "cluj2015/sig_dennis_gold" + "name" "stockh2021_team_ren_foil" + "item_name" "#StickerKit_stockh2021_team_ren_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ren_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "108076825" + "tournament_event_id" "18" + "tournament_team_id" "53" } - "749" + "5029" { - "name" "cluj2015_signature_fox" - "item_name" "#StickerKit_cluj2015_signature_fox" - "description_string" "#StickerKit_desc_cluj2015_signature_fox" - "sticker_material" "cluj2015/sig_fox" + "name" "stockh2021_team_ren_gold" + "item_name" "#StickerKit_stockh2021_team_ren_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ren_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "53" + } + "5030" + { + "name" "stockh2021_team_ent" + "item_name" "#StickerKit_stockh2021_team_ent" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ent" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "1939536" + "tournament_event_id" "18" + "tournament_team_id" "105" } - "750" + "5031" { - "name" "cluj2015_signature_fox_foil" - "item_name" "#StickerKit_cluj2015_signature_fox_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_fox_foil" - "sticker_material" "cluj2015/sig_fox_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "1939536" + "name" "stockh2021_team_ent_holo" + "item_name" "#StickerKit_stockh2021_team_ent_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ent_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "105" } - "751" + "5032" { - "name" "cluj2015_signature_fox_gold" - "item_name" "#StickerKit_cluj2015_signature_fox_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_fox_gold" - "sticker_material" "cluj2015/sig_fox_gold" + "name" "stockh2021_team_ent_foil" + "item_name" "#StickerKit_stockh2021_team_ent_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ent_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "1939536" + "tournament_event_id" "18" + "tournament_team_id" "105" } - "752" + "5033" { - "name" "cluj2015_signature_maikelele" - "item_name" "#StickerKit_cluj2015_signature_maikelele" - "description_string" "#StickerKit_desc_cluj2015_signature_maikelele" - "sticker_material" "cluj2015/sig_maikelele" + "name" "stockh2021_team_ent_gold" + "item_name" "#StickerKit_stockh2021_team_ent_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/ent_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "105" + } + "5034" + { + "name" "stockh2021_team_god" + "item_name" "#StickerKit_stockh2021_team_god" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/god" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "925972" + "tournament_event_id" "18" + "tournament_team_id" "67" } - "753" + "5035" { - "name" "cluj2015_signature_maikelele_foil" - "item_name" "#StickerKit_cluj2015_signature_maikelele_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_maikelele_foil" - "sticker_material" "cluj2015/sig_maikelele_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "925972" + "name" "stockh2021_team_god_holo" + "item_name" "#StickerKit_stockh2021_team_god_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/god_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "67" } - "754" + "5036" { - "name" "cluj2015_signature_maikelele_gold" - "item_name" "#StickerKit_cluj2015_signature_maikelele_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_maikelele_gold" - "sticker_material" "cluj2015/sig_maikelele_gold" + "name" "stockh2021_team_god_foil" + "item_name" "#StickerKit_stockh2021_team_god_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/god_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "925972" + "tournament_event_id" "18" + "tournament_team_id" "67" } - "755" + "5037" { - "name" "cluj2015_signature_rain" - "item_name" "#StickerKit_cluj2015_signature_rain" - "description_string" "#StickerKit_desc_cluj2015_signature_rain" - "sticker_material" "cluj2015/sig_rain" + "name" "stockh2021_team_god_gold" + "item_name" "#StickerKit_stockh2021_team_god_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/god_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "67" + } + "5038" + { + "name" "stockh2021_team_vp" + "item_name" "#StickerKit_stockh2021_team_vp" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vp" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "37085479" + "tournament_event_id" "18" + "tournament_team_id" "31" } - "756" + "5039" { - "name" "cluj2015_signature_rain_foil" - "item_name" "#StickerKit_cluj2015_signature_rain_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_rain_foil" - "sticker_material" "cluj2015/sig_rain_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "37085479" + "name" "stockh2021_team_vp_holo" + "item_name" "#StickerKit_stockh2021_team_vp_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vp_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "31" } - "757" + "5040" { - "name" "cluj2015_signature_rain_gold" - "item_name" "#StickerKit_cluj2015_signature_rain_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_rain_gold" - "sticker_material" "cluj2015/sig_rain_gold" + "name" "stockh2021_team_vp_foil" + "item_name" "#StickerKit_stockh2021_team_vp_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vp_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "37085479" + "tournament_event_id" "18" + "tournament_team_id" "31" } - "758" + "5041" { - "name" "cluj2015_signature_jkaem" - "item_name" "#StickerKit_cluj2015_signature_jkaem" - "description_string" "#StickerKit_desc_cluj2015_signature_jkaem" - "sticker_material" "cluj2015/sig_jkaem" + "name" "stockh2021_team_vp_gold" + "item_name" "#StickerKit_stockh2021_team_vp_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/vp_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "31" + } + "5042" + { + "name" "stockh2021_team_cope" + "item_name" "#StickerKit_stockh2021_team_cope" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/cope" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "42442914" + "tournament_event_id" "18" + "tournament_team_id" "101" } - "759" + "5043" { - "name" "cluj2015_signature_jkaem_foil" - "item_name" "#StickerKit_cluj2015_signature_jkaem_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_jkaem_foil" - "sticker_material" "cluj2015/sig_jkaem_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "42442914" + "name" "stockh2021_team_cope_holo" + "item_name" "#StickerKit_stockh2021_team_cope_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/cope_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "101" } - "760" + "5044" { - "name" "cluj2015_signature_jkaem_gold" - "item_name" "#StickerKit_cluj2015_signature_jkaem_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_jkaem_gold" - "sticker_material" "cluj2015/sig_jkaem_gold" + "name" "stockh2021_team_cope_foil" + "item_name" "#StickerKit_stockh2021_team_cope_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/cope_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" - "tournament_player_id" "42442914" + "tournament_event_id" "18" + "tournament_team_id" "101" } - "761" + "5045" { - "name" "cluj2015_signature_boltz" - "item_name" "#StickerKit_cluj2015_signature_boltz" - "description_string" "#StickerKit_desc_cluj2015_signature_boltz" - "sticker_material" "cluj2015/sig_boltz" + "name" "stockh2021_team_cope_gold" + "item_name" "#StickerKit_stockh2021_team_cope_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/cope_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "101" + } + "5046" + { + "name" "stockh2021_team_faze" + "item_name" "#StickerKit_stockh2021_team_faze" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/faze" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "58113672" + "tournament_event_id" "18" + "tournament_team_id" "61" } - "762" + "5047" { - "name" "cluj2015_signature_boltz_foil" - "item_name" "#StickerKit_cluj2015_signature_boltz_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_boltz_foil" - "sticker_material" "cluj2015/sig_boltz_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "58113672" + "name" "stockh2021_team_faze_holo" + "item_name" "#StickerKit_stockh2021_team_faze_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/faze_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "61" } - "763" + "5048" { - "name" "cluj2015_signature_boltz_gold" - "item_name" "#StickerKit_cluj2015_signature_boltz_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_boltz_gold" - "sticker_material" "cluj2015/sig_boltz_gold" + "name" "stockh2021_team_faze_foil" + "item_name" "#StickerKit_stockh2021_team_faze_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/faze_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "58113672" + "tournament_event_id" "18" + "tournament_team_id" "61" } - "764" + "5049" { - "name" "cluj2015_signature_coldzera" - "item_name" "#StickerKit_cluj2015_signature_coldzera" - "description_string" "#StickerKit_desc_cluj2015_signature_coldzera" - "sticker_material" "cluj2015/sig_coldzera" + "name" "stockh2021_team_faze_gold" + "item_name" "#StickerKit_stockh2021_team_faze_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_team" + "sticker_material" "stockh2021/faze_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "61" + } + "5050" + { + "name" "stockh2021_team_pgl" + "item_name" "#StickerKit_stockh2021_team_pgl" + "description_string" "#EventItemDesc_stockh2021_sticker_org" + "sticker_material" "stockh2021/pgl" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "79720871" + "tournament_event_id" "18" + "tournament_team_id" "0" } - "765" + "5051" { - "name" "cluj2015_signature_coldzera_foil" - "item_name" "#StickerKit_cluj2015_signature_coldzera_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_coldzera_foil" - "sticker_material" "cluj2015/sig_coldzera_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "79720871" + "name" "stockh2021_team_pgl_holo" + "item_name" "#StickerKit_stockh2021_team_pgl_holo" + "description_string" "#EventItemDesc_stockh2021_sticker_org" + "sticker_material" "stockh2021/pgl_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "0" } - "766" + "5052" { - "name" "cluj2015_signature_coldzera_gold" - "item_name" "#StickerKit_cluj2015_signature_coldzera_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_coldzera_gold" - "sticker_material" "cluj2015/sig_coldzera_gold" + "name" "stockh2021_team_pgl_foil" + "item_name" "#StickerKit_stockh2021_team_pgl_foil" + "description_string" "#EventItemDesc_stockh2021_sticker_org" + "sticker_material" "stockh2021/pgl_foil" "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "79720871" + "tournament_event_id" "18" + "tournament_team_id" "0" } - "767" + "5053" { - "name" "cluj2015_signature_fallen" - "item_name" "#StickerKit_cluj2015_signature_fallen" - "description_string" "#StickerKit_desc_cluj2015_signature_fallen" - "sticker_material" "cluj2015/sig_fallen" + "name" "stockh2021_team_pgl_gold" + "item_name" "#StickerKit_stockh2021_team_pgl_gold" + "description_string" "#EventItemDesc_stockh2021_sticker_org" + "sticker_material" "stockh2021/pgl_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "0" + } + "5054" + { + "name" "stockh2021_team_nip_graffiti" + "item_name" "#StickerKit_stockh2021_team_nip" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/nip_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "424467" + "tournament_event_id" "18" + "tournament_team_id" "1" } - "768" + "5055" { - "name" "cluj2015_signature_fallen_foil" - "item_name" "#StickerKit_cluj2015_signature_fallen_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_fallen_foil" - "sticker_material" "cluj2015/sig_fallen_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "424467" + "name" "stockh2021_team_furi_graffiti" + "item_name" "#StickerKit_stockh2021_team_furi" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/furi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "85" } - "769" + "5056" { - "name" "cluj2015_signature_fallen_gold" - "item_name" "#StickerKit_cluj2015_signature_fallen_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_fallen_gold" - "sticker_material" "cluj2015/sig_fallen_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "424467" + "name" "stockh2021_team_navi_graffiti" + "item_name" "#StickerKit_stockh2021_team_navi" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "12" } - "770" + "5057" { - "name" "cluj2015_signature_fer" - "item_name" "#StickerKit_cluj2015_signature_fer" - "description_string" "#StickerKit_desc_cluj2015_signature_fer" - "sticker_material" "cluj2015/sig_fer" + "name" "stockh2021_team_vita_graffiti" + "item_name" "#StickerKit_stockh2021_team_vita" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/vita_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "38921219" + "tournament_event_id" "18" + "tournament_team_id" "89" } - "771" + "5058" { - "name" "cluj2015_signature_fer_foil" - "item_name" "#StickerKit_cluj2015_signature_fer_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_fer_foil" - "sticker_material" "cluj2015/sig_fer_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "38921219" + "name" "stockh2021_team_liq_graffiti" + "item_name" "#StickerKit_stockh2021_team_liq" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "48" } - "772" + "5059" { - "name" "cluj2015_signature_fer_gold" - "item_name" "#StickerKit_cluj2015_signature_fer_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_fer_gold" - "sticker_material" "cluj2015/sig_fer_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "38921219" + "name" "stockh2021_team_gamb_graffiti" + "item_name" "#StickerKit_stockh2021_team_gamb" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/gamb_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "63" } - "773" + "5060" { - "name" "cluj2015_signature_steel" - "item_name" "#StickerKit_cluj2015_signature_steel" - "description_string" "#StickerKit_desc_cluj2015_signature_steel" - "sticker_material" "cluj2015/sig_steel" + "name" "stockh2021_team_g2_graffiti" + "item_name" "#StickerKit_stockh2021_team_g2" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/g2_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "54512474" + "tournament_event_id" "18" + "tournament_team_id" "59" } - "774" + "5061" { - "name" "cluj2015_signature_steel_foil" - "item_name" "#StickerKit_cluj2015_signature_steel_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_steel_foil" - "sticker_material" "cluj2015/sig_steel_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "54512474" + "name" "stockh2021_team_evl_graffiti" + "item_name" "#StickerKit_stockh2021_team_evl" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/evl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "98" } - "775" + "5062" { - "name" "cluj2015_signature_steel_gold" - "item_name" "#StickerKit_cluj2015_signature_steel_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_steel_gold" - "sticker_material" "cluj2015/sig_steel_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" - "tournament_player_id" "54512474" + "name" "stockh2021_team_spir_graffiti" + "item_name" "#StickerKit_stockh2021_team_spir" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/spir_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "81" } - "776" + "5063" { - "name" "cluj2015_signature_chrisj" - "item_name" "#StickerKit_cluj2015_signature_chrisj" - "description_string" "#StickerKit_desc_cluj2015_signature_chrisj" - "sticker_material" "cluj2015/sig_chrisj" + "name" "stockh2021_team_astr_graffiti" + "item_name" "#StickerKit_stockh2021_team_astr" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/astr_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "28273376" + "tournament_event_id" "18" + "tournament_team_id" "60" } - "777" + "5064" { - "name" "cluj2015_signature_chrisj_foil" - "item_name" "#StickerKit_cluj2015_signature_chrisj_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_chrisj_foil" - "sticker_material" "cluj2015/sig_chrisj_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "28273376" + "name" "stockh2021_team_pain_graffiti" + "item_name" "#StickerKit_stockh2021_team_pain" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/pain_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "102" } - "778" + "5065" { - "name" "cluj2015_signature_chrisj_gold" - "item_name" "#StickerKit_cluj2015_signature_chrisj_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_chrisj_gold" - "sticker_material" "cluj2015/sig_chrisj_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "28273376" + "name" "stockh2021_team_ence_graffiti" + "item_name" "#StickerKit_stockh2021_team_ence" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/ence_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "84" } - "779" + "5066" { - "name" "cluj2015_signature_denis" - "item_name" "#StickerKit_cluj2015_signature_denis" - "description_string" "#StickerKit_desc_cluj2015_signature_denis" - "sticker_material" "cluj2015/sig_denis" + "name" "stockh2021_team_big_graffiti" + "item_name" "#StickerKit_stockh2021_team_big" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/big_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "31185376" + "tournament_event_id" "18" + "tournament_team_id" "69" } - "780" + "5067" { - "name" "cluj2015_signature_denis_foil" - "item_name" "#StickerKit_cluj2015_signature_denis_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_denis_foil" - "sticker_material" "cluj2015/sig_denis_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "31185376" + "name" "stockh2021_team_ride_graffiti" + "item_name" "#StickerKit_stockh2021_team_ride" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/ride_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "103" } - "781" + "5068" { - "name" "cluj2015_signature_denis_gold" - "item_name" "#StickerKit_cluj2015_signature_denis_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_denis_gold" - "sticker_material" "cluj2015/sig_denis_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "31185376" + "name" "stockh2021_team_hero_graffiti" + "item_name" "#StickerKit_stockh2021_team_hero" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/hero_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "95" } - "782" + "5069" { - "name" "cluj2015_signature_gobb" - "item_name" "#StickerKit_cluj2015_signature_gobb" - "description_string" "#StickerKit_desc_cluj2015_signature_gobb" - "sticker_material" "cluj2015/sig_gobb" + "name" "stockh2021_team_mouz_graffiti" + "item_name" "#StickerKit_stockh2021_team_mouz" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/mouz_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "1162165" + "tournament_event_id" "18" + "tournament_team_id" "106" } - "783" + "5070" { - "name" "cluj2015_signature_gobb_foil" - "item_name" "#StickerKit_cluj2015_signature_gobb_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_gobb_foil" - "sticker_material" "cluj2015/sig_gobb_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "1162165" + "name" "stockh2021_team_shrk_graffiti" + "item_name" "#StickerKit_stockh2021_team_shrk" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/shrk_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "104" } - "784" + "5071" { - "name" "cluj2015_signature_gobb_gold" - "item_name" "#StickerKit_cluj2015_signature_gobb_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_gobb_gold" - "sticker_material" "cluj2015/sig_gobb_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "1162165" + "name" "stockh2021_team_tyl_graffiti" + "item_name" "#StickerKit_stockh2021_team_tyl" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/tyl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "74" } - "785" + "5072" { - "name" "cluj2015_signature_nex" - "item_name" "#StickerKit_cluj2015_signature_nex" - "description_string" "#StickerKit_desc_cluj2015_signature_nex" - "sticker_material" "cluj2015/sig_nex" + "name" "stockh2021_team_ren_graffiti" + "item_name" "#StickerKit_stockh2021_team_ren" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/ren_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "90378773" + "tournament_event_id" "18" + "tournament_team_id" "53" } - "786" + "5073" { - "name" "cluj2015_signature_nex_foil" - "item_name" "#StickerKit_cluj2015_signature_nex_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_nex_foil" - "sticker_material" "cluj2015/sig_nex_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "90378773" + "name" "stockh2021_team_ent_graffiti" + "item_name" "#StickerKit_stockh2021_team_ent" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/ent_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "105" } - "787" + "5074" { - "name" "cluj2015_signature_nex_gold" - "item_name" "#StickerKit_cluj2015_signature_nex_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_nex_gold" - "sticker_material" "cluj2015/sig_nex_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "90378773" + "name" "stockh2021_team_god_graffiti" + "item_name" "#StickerKit_stockh2021_team_god" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/god_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "67" } - "788" + "5075" { - "name" "cluj2015_signature_niko" - "item_name" "#StickerKit_cluj2015_signature_niko" - "description_string" "#StickerKit_desc_cluj2015_signature_niko" - "sticker_material" "cluj2015/sig_niko" + "name" "stockh2021_team_vp_graffiti" + "item_name" "#StickerKit_stockh2021_team_vp" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/vp_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "81417650" + "tournament_event_id" "18" + "tournament_team_id" "31" } - "789" + "5076" { - "name" "cluj2015_signature_niko_foil" - "item_name" "#StickerKit_cluj2015_signature_niko_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_niko_foil" - "sticker_material" "cluj2015/sig_niko_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "81417650" + "name" "stockh2021_team_cope_graffiti" + "item_name" "#StickerKit_stockh2021_team_cope" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/cope_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "101" } - "790" + "5077" { - "name" "cluj2015_signature_niko_gold" - "item_name" "#StickerKit_cluj2015_signature_niko_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_niko_gold" - "sticker_material" "cluj2015/sig_niko_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" - "tournament_player_id" "81417650" + "name" "stockh2021_team_faze_graffiti" + "item_name" "#StickerKit_stockh2021_team_faze" + "description_string" "#EventItemDesc_stockh2021_graffiti_team" + "sticker_material" "stockh2021/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "61" } - "791" + "5078" { - "name" "cluj2015_signature_edward" - "item_name" "#StickerKit_cluj2015_signature_edward" - "description_string" "#StickerKit_desc_cluj2015_signature_edward" - "sticker_material" "cluj2015/sig_edward" + "name" "stockh2021_team_pgl_graffiti" + "item_name" "#StickerKit_stockh2021_team_pgl" + "description_string" "#EventItemDesc_stockh2021_graffiti_org" + "sticker_material" "stockh2021/pgl_graffiti" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "23429534" + "tournament_event_id" "18" + "tournament_team_id" "0" } - "792" + "5079" { - "name" "cluj2015_signature_edward_foil" - "item_name" "#StickerKit_cluj2015_signature_edward_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_edward_foil" - "sticker_material" "cluj2015/sig_edward_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "23429534" + "name" "stockh2021_teampatch_nip" + "item_name" "#StickerKit_stockh2021_team_nip" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_nip" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "1" } - "793" + "5080" { - "name" "cluj2015_signature_edward_gold" - "item_name" "#StickerKit_cluj2015_signature_edward_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_edward_gold" - "sticker_material" "cluj2015/sig_edward_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "23429534" + "name" "stockh2021_teampatch_nip_gold" + "item_name" "#StickerKit_stockh2021_team_nip_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_nip_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "1" } - "794" + "5081" { - "name" "cluj2015_signature_flamie" - "item_name" "#StickerKit_cluj2015_signature_flamie" - "description_string" "#StickerKit_desc_cluj2015_signature_flamie" - "sticker_material" "cluj2015/sig_flamie" + "name" "stockh2021_teampatch_furi" + "item_name" "#StickerKit_stockh2021_team_furi" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_furi" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "156257548" + "tournament_event_id" "18" + "tournament_team_id" "85" } - "795" + "5082" { - "name" "cluj2015_signature_flamie_foil" - "item_name" "#StickerKit_cluj2015_signature_flamie_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_flamie_foil" - "sticker_material" "cluj2015/sig_flamie_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_teampatch_furi_gold" + "item_name" "#StickerKit_stockh2021_team_furi_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_furi_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "85" + } + "5083" + { + "name" "stockh2021_teampatch_navi" + "item_name" "#StickerKit_stockh2021_team_navi" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_navi" + "item_rarity" "rare" + "tournament_event_id" "18" "tournament_team_id" "12" - "tournament_player_id" "156257548" } - "796" + "5084" { - "name" "cluj2015_signature_flamie_gold" - "item_name" "#StickerKit_cluj2015_signature_flamie_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_flamie_gold" - "sticker_material" "cluj2015/sig_flamie_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_teampatch_navi_gold" + "item_name" "#StickerKit_stockh2021_team_navi_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_navi_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" "tournament_team_id" "12" - "tournament_player_id" "156257548" } - "797" + "5085" { - "name" "cluj2015_signature_guardian" - "item_name" "#StickerKit_cluj2015_signature_guardian" - "description_string" "#StickerKit_desc_cluj2015_signature_guardian" - "sticker_material" "cluj2015/sig_guardian" + "name" "stockh2021_teampatch_vita" + "item_name" "#StickerKit_stockh2021_team_vita" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_vita" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "12065295" + "tournament_event_id" "18" + "tournament_team_id" "89" } - "798" + "5086" { - "name" "cluj2015_signature_guardian_foil" - "item_name" "#StickerKit_cluj2015_signature_guardian_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_guardian_foil" - "sticker_material" "cluj2015/sig_guardian_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "12065295" + "name" "stockh2021_teampatch_vita_gold" + "item_name" "#StickerKit_stockh2021_team_vita_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_vita_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "89" } - "799" + "5087" { - "name" "cluj2015_signature_guardian_gold" - "item_name" "#StickerKit_cluj2015_signature_guardian_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_guardian_gold" - "sticker_material" "cluj2015/sig_guardian_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "12065295" + "name" "stockh2021_teampatch_liq" + "item_name" "#StickerKit_stockh2021_team_liq" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_liq" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "48" } - "800" + "5088" { - "name" "cluj2015_signature_seized" - "item_name" "#StickerKit_cluj2015_signature_seized" - "description_string" "#StickerKit_desc_cluj2015_signature_seized" - "sticker_material" "cluj2015/sig_seized" + "name" "stockh2021_teampatch_liq_gold" + "item_name" "#StickerKit_stockh2021_team_liq_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_liq_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "48" + } + "5089" + { + "name" "stockh2021_teampatch_gamb" + "item_name" "#StickerKit_stockh2021_team_gamb" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_gamb" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "3648428" + "tournament_event_id" "18" + "tournament_team_id" "63" } - "801" + "5090" { - "name" "cluj2015_signature_seized_foil" - "item_name" "#StickerKit_cluj2015_signature_seized_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_seized_foil" - "sticker_material" "cluj2015/sig_seized_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "3648428" + "name" "stockh2021_teampatch_gamb_gold" + "item_name" "#StickerKit_stockh2021_team_gamb_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_gamb_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "63" } - "802" + "5091" { - "name" "cluj2015_signature_seized_gold" - "item_name" "#StickerKit_cluj2015_signature_seized_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_seized_gold" - "sticker_material" "cluj2015/sig_seized_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "3648428" + "name" "stockh2021_teampatch_g2" + "item_name" "#StickerKit_stockh2021_team_g2" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_g2" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "59" } - "803" + "5092" { - "name" "cluj2015_signature_zeus" - "item_name" "#StickerKit_cluj2015_signature_zeus" - "description_string" "#StickerKit_desc_cluj2015_signature_zeus" - "sticker_material" "cluj2015/sig_zeus" + "name" "stockh2021_teampatch_g2_gold" + "item_name" "#StickerKit_stockh2021_team_g2_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_g2_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "59" + } + "5093" + { + "name" "stockh2021_teampatch_evl" + "item_name" "#StickerKit_stockh2021_team_evl" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_evl" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "59062744" + "tournament_event_id" "18" + "tournament_team_id" "98" } - "804" + "5094" { - "name" "cluj2015_signature_zeus_foil" - "item_name" "#StickerKit_cluj2015_signature_zeus_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_zeus_foil" - "sticker_material" "cluj2015/sig_zeus_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "59062744" + "name" "stockh2021_teampatch_evl_gold" + "item_name" "#StickerKit_stockh2021_team_evl_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_evl_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "98" } - "805" + "5095" { - "name" "cluj2015_signature_zeus_gold" - "item_name" "#StickerKit_cluj2015_signature_zeus_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_zeus_gold" - "sticker_material" "cluj2015/sig_zeus_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" - "tournament_player_id" "59062744" + "name" "stockh2021_teampatch_spir" + "item_name" "#StickerKit_stockh2021_team_spir" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_spir" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "81" } - "806" + "5096" { - "name" "cluj2015_signature_allu" - "item_name" "#StickerKit_cluj2015_signature_allu" - "description_string" "#StickerKit_desc_cluj2015_signature_allu" - "sticker_material" "cluj2015/sig_allu" + "name" "stockh2021_teampatch_spir_gold" + "item_name" "#StickerKit_stockh2021_team_spir_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_spir_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "81" + } + "5097" + { + "name" "stockh2021_teampatch_astr" + "item_name" "#StickerKit_stockh2021_team_astr" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_astr" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "1345246" + "tournament_event_id" "18" + "tournament_team_id" "60" } - "807" + "5098" { - "name" "cluj2015_signature_allu_foil" - "item_name" "#StickerKit_cluj2015_signature_allu_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_allu_foil" - "sticker_material" "cluj2015/sig_allu_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "1345246" + "name" "stockh2021_teampatch_astr_gold" + "item_name" "#StickerKit_stockh2021_team_astr_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_astr_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "60" } - "808" + "5099" { - "name" "cluj2015_signature_allu_gold" - "item_name" "#StickerKit_cluj2015_signature_allu_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_allu_gold" - "sticker_material" "cluj2015/sig_allu_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "1345246" + "name" "stockh2021_teampatch_pain" + "item_name" "#StickerKit_stockh2021_team_pain" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_pain" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "102" } - "809" + "5100" { - "name" "cluj2015_signature_forest" - "item_name" "#StickerKit_cluj2015_signature_forest" - "description_string" "#StickerKit_desc_cluj2015_signature_forest" - "sticker_material" "cluj2015/sig_forest" + "name" "stockh2021_teampatch_pain_gold" + "item_name" "#StickerKit_stockh2021_team_pain_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_pain_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "102" + } + "5101" + { + "name" "stockh2021_teampatch_ence" + "item_name" "#StickerKit_stockh2021_team_ence" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ence" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "93724" + "tournament_event_id" "18" + "tournament_team_id" "84" } - "810" + "5102" { - "name" "cluj2015_signature_forest_foil" - "item_name" "#StickerKit_cluj2015_signature_forest_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_forest_foil" - "sticker_material" "cluj2015/sig_forest_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "93724" + "name" "stockh2021_teampatch_ence_gold" + "item_name" "#StickerKit_stockh2021_team_ence_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ence_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "84" } - "811" + "5103" { - "name" "cluj2015_signature_forest_gold" - "item_name" "#StickerKit_cluj2015_signature_forest_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_forest_gold" - "sticker_material" "cluj2015/sig_forest_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "93724" + "name" "stockh2021_teampatch_big" + "item_name" "#StickerKit_stockh2021_team_big" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_big" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "69" } - "812" + "5104" { - "name" "cluj2015_signature_friberg" - "item_name" "#StickerKit_cluj2015_signature_friberg" - "description_string" "#StickerKit_desc_cluj2015_signature_friberg" - "sticker_material" "cluj2015/sig_friberg" + "name" "stockh2021_teampatch_big_gold" + "item_name" "#StickerKit_stockh2021_team_big_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_big_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "69" + } + "5105" + { + "name" "stockh2021_teampatch_ride" + "item_name" "#StickerKit_stockh2021_team_ride" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ride" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "24295201" + "tournament_event_id" "18" + "tournament_team_id" "103" } - "813" + "5106" { - "name" "cluj2015_signature_friberg_foil" - "item_name" "#StickerKit_cluj2015_signature_friberg_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_friberg_foil" - "sticker_material" "cluj2015/sig_friberg_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "24295201" + "name" "stockh2021_teampatch_ride_gold" + "item_name" "#StickerKit_stockh2021_team_ride_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ride_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "103" } - "814" + "5107" { - "name" "cluj2015_signature_friberg_gold" - "item_name" "#StickerKit_cluj2015_signature_friberg_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_friberg_gold" - "sticker_material" "cluj2015/sig_friberg_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "24295201" + "name" "stockh2021_teampatch_hero" + "item_name" "#StickerKit_stockh2021_team_hero" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_hero" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "95" } - "815" + "5108" { - "name" "cluj2015_signature_getright" - "item_name" "#StickerKit_cluj2015_signature_getright" - "description_string" "#StickerKit_desc_cluj2015_signature_getright" - "sticker_material" "cluj2015/sig_getright" + "name" "stockh2021_teampatch_hero_gold" + "item_name" "#StickerKit_stockh2021_team_hero_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_hero_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "95" + } + "5109" + { + "name" "stockh2021_teampatch_mouz" + "item_name" "#StickerKit_stockh2021_team_mouz" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_mouz" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "21771190" + "tournament_event_id" "18" + "tournament_team_id" "106" } - "816" + "5110" { - "name" "cluj2015_signature_getright_foil" - "item_name" "#StickerKit_cluj2015_signature_getright_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_getright_foil" - "sticker_material" "cluj2015/sig_getright_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "21771190" + "name" "stockh2021_teampatch_mouz_gold" + "item_name" "#StickerKit_stockh2021_team_mouz_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_mouz_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "106" } - "817" + "5111" { - "name" "cluj2015_signature_getright_gold" - "item_name" "#StickerKit_cluj2015_signature_getright_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_getright_gold" - "sticker_material" "cluj2015/sig_getright_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "21771190" + "name" "stockh2021_teampatch_shrk" + "item_name" "#StickerKit_stockh2021_team_shrk" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_shrk" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "104" } - "818" + "5112" { - "name" "cluj2015_signature_xizt" - "item_name" "#StickerKit_cluj2015_signature_xizt" - "description_string" "#StickerKit_desc_cluj2015_signature_xizt" - "sticker_material" "cluj2015/sig_xizt" + "name" "stockh2021_teampatch_shrk_gold" + "item_name" "#StickerKit_stockh2021_team_shrk_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_shrk_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "104" + } + "5113" + { + "name" "stockh2021_teampatch_tyl" + "item_name" "#StickerKit_stockh2021_team_tyl" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_tyl" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "26224992" + "tournament_event_id" "18" + "tournament_team_id" "74" } - "819" + "5114" { - "name" "cluj2015_signature_xizt_foil" - "item_name" "#StickerKit_cluj2015_signature_xizt_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_xizt_foil" - "sticker_material" "cluj2015/sig_xizt_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "26224992" + "name" "stockh2021_teampatch_tyl_gold" + "item_name" "#StickerKit_stockh2021_team_tyl_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_tyl_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "74" } - "820" + "5115" { - "name" "cluj2015_signature_xizt_gold" - "item_name" "#StickerKit_cluj2015_signature_xizt_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_xizt_gold" - "sticker_material" "cluj2015/sig_xizt_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" - "tournament_player_id" "26224992" + "name" "stockh2021_teampatch_ren" + "item_name" "#StickerKit_stockh2021_team_ren" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ren" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "53" } - "821" + "5116" { - "name" "cluj2015_signature_aizy" - "item_name" "#StickerKit_cluj2015_signature_aizy" - "description_string" "#StickerKit_desc_cluj2015_signature_aizy" - "sticker_material" "cluj2015/sig_aizy" + "name" "stockh2021_teampatch_ren_gold" + "item_name" "#StickerKit_stockh2021_team_ren_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ren_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "53" + } + "5117" + { + "name" "stockh2021_teampatch_ent" + "item_name" "#StickerKit_stockh2021_team_ent" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ent" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "90685224" + "tournament_event_id" "18" + "tournament_team_id" "105" } - "822" + "5118" { - "name" "cluj2015_signature_aizy_foil" - "item_name" "#StickerKit_cluj2015_signature_aizy_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_aizy_foil" - "sticker_material" "cluj2015/sig_aizy_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "90685224" + "name" "stockh2021_teampatch_ent_gold" + "item_name" "#StickerKit_stockh2021_team_ent_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_ent_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "105" } - "823" + "5119" { - "name" "cluj2015_signature_aizy_gold" - "item_name" "#StickerKit_cluj2015_signature_aizy_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_aizy_gold" - "sticker_material" "cluj2015/sig_aizy_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "90685224" + "name" "stockh2021_teampatch_god" + "item_name" "#StickerKit_stockh2021_team_god" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_god" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "67" } - "824" + "5120" { - "name" "cluj2015_signature_kjaerbye" - "item_name" "#StickerKit_cluj2015_signature_kjaerbye" - "description_string" "#StickerKit_desc_cluj2015_signature_kjaerbye" - "sticker_material" "cluj2015/sig_kjaerbye" + "name" "stockh2021_teampatch_god_gold" + "item_name" "#StickerKit_stockh2021_team_god_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_god_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "67" + } + "5121" + { + "name" "stockh2021_teampatch_vp" + "item_name" "#StickerKit_stockh2021_team_vp" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_vp" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "59614824" + "tournament_event_id" "18" + "tournament_team_id" "31" } - "825" + "5122" { - "name" "cluj2015_signature_kjaerbye_foil" - "item_name" "#StickerKit_cluj2015_signature_kjaerbye_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_kjaerbye_foil" - "sticker_material" "cluj2015/sig_kjaerbye_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "59614824" + "name" "stockh2021_teampatch_vp_gold" + "item_name" "#StickerKit_stockh2021_team_vp_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_vp_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "31" } - "826" + "5123" { - "name" "cluj2015_signature_kjaerbye_gold" - "item_name" "#StickerKit_cluj2015_signature_kjaerbye_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_kjaerbye_gold" - "sticker_material" "cluj2015/sig_kjaerbye_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "59614824" + "name" "stockh2021_teampatch_cope" + "item_name" "#StickerKit_stockh2021_team_cope" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_cope" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "101" } - "827" + "5124" { - "name" "cluj2015_signature_msl" - "item_name" "#StickerKit_cluj2015_signature_msl" - "description_string" "#StickerKit_desc_cluj2015_signature_msl" - "sticker_material" "cluj2015/sig_msl" + "name" "stockh2021_teampatch_cope_gold" + "item_name" "#StickerKit_stockh2021_team_cope_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_cope_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "101" + } + "5125" + { + "name" "stockh2021_teampatch_faze" + "item_name" "#StickerKit_stockh2021_team_faze" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_faze" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "24134891" + "tournament_event_id" "18" + "tournament_team_id" "61" } - "828" + "5126" { - "name" "cluj2015_signature_msl_foil" - "item_name" "#StickerKit_cluj2015_signature_msl_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_msl_foil" - "sticker_material" "cluj2015/sig_msl_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "24134891" + "name" "stockh2021_teampatch_faze_gold" + "item_name" "#StickerKit_stockh2021_team_faze_gold" + "description_string" "#EventItemDesc_stockh2021_patch_team" + "patch_material" "stockh2021/patch_faze_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "61" } - "829" + "5127" { - "name" "cluj2015_signature_msl_gold" - "item_name" "#StickerKit_cluj2015_signature_msl_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_msl_gold" - "sticker_material" "cluj2015/sig_msl_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "24134891" + "name" "stockh2021_teampatch_pgl" + "item_name" "#StickerKit_stockh2021_team_pgl" + "description_string" "#EventItemDesc_stockh2021_patch_org" + "patch_material" "stockh2021/patch_pgl" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "0" } - "830" + "5128" { - "name" "cluj2015_signature_pimp" - "item_name" "#StickerKit_cluj2015_signature_pimp" - "description_string" "#StickerKit_desc_cluj2015_signature_pimp" - "sticker_material" "cluj2015/sig_pimp" + "name" "stockh2021_teampatch_pgl_gold" + "item_name" "#StickerKit_stockh2021_team_pgl_gold" + "description_string" "#EventItemDesc_stockh2021_patch_org" + "patch_material" "stockh2021/patch_pgl_gold" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "0" + } + "5129" + { + "name" "stockh2021_signature_s1mple" + "item_name" "#StickerKit_stockh2021_signature_s1mple" + "description_string" "#StickerKit_desc_stockh2021_signature_s1mple" + "sticker_material" "stockh2021/sig_s1mple" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "57742580" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "831" + "5130" { - "name" "cluj2015_signature_pimp_foil" - "item_name" "#StickerKit_cluj2015_signature_pimp_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_pimp_foil" - "sticker_material" "cluj2015/sig_pimp_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "57742580" + "name" "stockh2021_signature_s1mple_holo" + "item_name" "#StickerKit_stockh2021_signature_s1mple_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_s1mple_holo" + "sticker_material" "stockh2021/sig_s1mple_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "832" + "5131" { - "name" "cluj2015_signature_pimp_gold" - "item_name" "#StickerKit_cluj2015_signature_pimp_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_pimp_gold" - "sticker_material" "cluj2015/sig_pimp_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "57742580" + "name" "stockh2021_signature_s1mple_gold" + "item_name" "#StickerKit_stockh2021_signature_s1mple_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_s1mple_gold" + "sticker_material" "stockh2021/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "833" + "5132" { - "name" "cluj2015_signature_tenzki" - "item_name" "#StickerKit_cluj2015_signature_tenzki" - "description_string" "#StickerKit_desc_cluj2015_signature_tenzki" - "sticker_material" "cluj2015/sig_tenzki" + "name" "stockh2021_signature_perfecto" + "item_name" "#StickerKit_stockh2021_signature_perfecto" + "description_string" "#StickerKit_desc_stockh2021_signature_perfecto" + "sticker_material" "stockh2021/sig_perfecto" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "37214922" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "834" + "5133" { - "name" "cluj2015_signature_tenzki_foil" - "item_name" "#StickerKit_cluj2015_signature_tenzki_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_tenzki_foil" - "sticker_material" "cluj2015/sig_tenzki_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "37214922" + "name" "stockh2021_signature_perfecto_holo" + "item_name" "#StickerKit_stockh2021_signature_perfecto_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_perfecto_holo" + "sticker_material" "stockh2021/sig_perfecto_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "835" + "5134" { - "name" "cluj2015_signature_tenzki_gold" - "item_name" "#StickerKit_cluj2015_signature_tenzki_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_tenzki_gold" - "sticker_material" "cluj2015/sig_tenzki_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" - "tournament_player_id" "37214922" + "name" "stockh2021_signature_perfecto_gold" + "item_name" "#StickerKit_stockh2021_signature_perfecto_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_perfecto_gold" + "sticker_material" "stockh2021/sig_perfecto_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "836" + "5135" { - "name" "cluj2015_signature_adren" - "item_name" "#StickerKit_cluj2015_signature_adren" - "description_string" "#StickerKit_desc_cluj2015_signature_adren" - "sticker_material" "cluj2015/sig_adren" + "name" "stockh2021_signature_boombl4" + "item_name" "#StickerKit_stockh2021_signature_boombl4" + "description_string" "#StickerKit_desc_stockh2021_signature_boombl4" + "sticker_material" "stockh2021/sig_boombl4" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "1366033" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "185941338" } - "837" + "5136" { - "name" "cluj2015_signature_adren_foil" - "item_name" "#StickerKit_cluj2015_signature_adren_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_adren_foil" - "sticker_material" "cluj2015/sig_adren_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "1366033" + "name" "stockh2021_signature_boombl4_holo" + "item_name" "#StickerKit_stockh2021_signature_boombl4_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_boombl4_holo" + "sticker_material" "stockh2021/sig_boombl4_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "185941338" } - "838" + "5137" { - "name" "cluj2015_signature_adren_gold" - "item_name" "#StickerKit_cluj2015_signature_adren_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_adren_gold" - "sticker_material" "cluj2015/sig_adren_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "1366033" + "name" "stockh2021_signature_boombl4_gold" + "item_name" "#StickerKit_stockh2021_signature_boombl4_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_boombl4_gold" + "sticker_material" "stockh2021/sig_boombl4_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "185941338" } - "839" + "5138" { - "name" "cluj2015_signature_elige" - "item_name" "#StickerKit_cluj2015_signature_elige" - "description_string" "#StickerKit_desc_cluj2015_signature_elige" - "sticker_material" "cluj2015/sig_elige" + "name" "stockh2021_signature_b1t" + "item_name" "#StickerKit_stockh2021_signature_b1t" + "description_string" "#StickerKit_desc_stockh2021_signature_b1t" + "sticker_material" "stockh2021/sig_b1t" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "106428011" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "840" + "5139" { - "name" "cluj2015_signature_elige_foil" - "item_name" "#StickerKit_cluj2015_signature_elige_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_elige_foil" - "sticker_material" "cluj2015/sig_elige_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "106428011" + "name" "stockh2021_signature_b1t_holo" + "item_name" "#StickerKit_stockh2021_signature_b1t_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_b1t_holo" + "sticker_material" "stockh2021/sig_b1t_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "841" + "5140" { - "name" "cluj2015_signature_elige_gold" - "item_name" "#StickerKit_cluj2015_signature_elige_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_elige_gold" - "sticker_material" "cluj2015/sig_elige_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "106428011" + "name" "stockh2021_signature_b1t_gold" + "item_name" "#StickerKit_stockh2021_signature_b1t_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_b1t_gold" + "sticker_material" "stockh2021/sig_b1t_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "842" + "5141" { - "name" "cluj2015_signature_fugly" - "item_name" "#StickerKit_cluj2015_signature_fugly" - "description_string" "#StickerKit_desc_cluj2015_signature_fugly" - "sticker_material" "cluj2015/sig_fugly" + "name" "stockh2021_signature_electronic" + "item_name" "#StickerKit_stockh2021_signature_electronic" + "description_string" "#StickerKit_desc_stockh2021_signature_electronic" + "sticker_material" "stockh2021/sig_electronic" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "108760082" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "843" + "5142" { - "name" "cluj2015_signature_fugly_foil" - "item_name" "#StickerKit_cluj2015_signature_fugly_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_fugly_foil" - "sticker_material" "cluj2015/sig_fugly_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "108760082" + "name" "stockh2021_signature_electronic_holo" + "item_name" "#StickerKit_stockh2021_signature_electronic_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_electronic_holo" + "sticker_material" "stockh2021/sig_electronic_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "844" + "5143" { - "name" "cluj2015_signature_fugly_gold" - "item_name" "#StickerKit_cluj2015_signature_fugly_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_fugly_gold" - "sticker_material" "cluj2015/sig_fugly_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "108760082" + "name" "stockh2021_signature_electronic_gold" + "item_name" "#StickerKit_stockh2021_signature_electronic_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_electronic_gold" + "sticker_material" "stockh2021/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "845" + "5144" { - "name" "cluj2015_signature_hiko" - "item_name" "#StickerKit_cluj2015_signature_hiko" - "description_string" "#StickerKit_desc_cluj2015_signature_hiko" - "sticker_material" "cluj2015/sig_hiko" + "name" "stockh2021_signature_niko" + "item_name" "#StickerKit_stockh2021_signature_niko" + "description_string" "#StickerKit_desc_stockh2021_signature_niko" + "sticker_material" "stockh2021/sig_niko" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "2791" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "81417650" } - "846" + "5145" { - "name" "cluj2015_signature_hiko_foil" - "item_name" "#StickerKit_cluj2015_signature_hiko_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_hiko_foil" - "sticker_material" "cluj2015/sig_hiko_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "2791" + "name" "stockh2021_signature_niko_holo" + "item_name" "#StickerKit_stockh2021_signature_niko_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_niko_holo" + "sticker_material" "stockh2021/sig_niko_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "81417650" } - "847" + "5146" { - "name" "cluj2015_signature_hiko_gold" - "item_name" "#StickerKit_cluj2015_signature_hiko_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_hiko_gold" - "sticker_material" "cluj2015/sig_hiko_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "2791" + "name" "stockh2021_signature_niko_gold" + "item_name" "#StickerKit_stockh2021_signature_niko_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_niko_gold" + "sticker_material" "stockh2021/sig_niko_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "81417650" } - "848" + "5147" { - "name" "cluj2015_signature_nitro" - "item_name" "#StickerKit_cluj2015_signature_nitro" - "description_string" "#StickerKit_desc_cluj2015_signature_nitro" - "sticker_material" "cluj2015/sig_nitro" + "name" "stockh2021_signature_nexa" + "item_name" "#StickerKit_stockh2021_signature_nexa" + "description_string" "#StickerKit_desc_stockh2021_signature_nexa" + "sticker_material" "stockh2021/sig_nexa" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "35624002" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "39559694" } - "849" + "5148" { - "name" "cluj2015_signature_nitro_foil" - "item_name" "#StickerKit_cluj2015_signature_nitro_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_nitro_foil" - "sticker_material" "cluj2015/sig_nitro_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "35624002" + "name" "stockh2021_signature_nexa_holo" + "item_name" "#StickerKit_stockh2021_signature_nexa_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_nexa_holo" + "sticker_material" "stockh2021/sig_nexa_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "39559694" } - "850" + "5149" { - "name" "cluj2015_signature_nitro_gold" - "item_name" "#StickerKit_cluj2015_signature_nitro_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_nitro_gold" - "sticker_material" "cluj2015/sig_nitro_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" - "tournament_player_id" "35624002" + "name" "stockh2021_signature_nexa_gold" + "item_name" "#StickerKit_stockh2021_signature_nexa_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_nexa_gold" + "sticker_material" "stockh2021/sig_nexa_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "39559694" } - "851" + "5150" { - "name" "cluj2015_signature_ex6tenz" - "item_name" "#StickerKit_cluj2015_signature_ex6tenz" - "description_string" "#StickerKit_desc_cluj2015_signature_ex6tenz" - "sticker_material" "cluj2015/sig_ex6tenz" + "name" "stockh2021_signature_hunter" + "item_name" "#StickerKit_stockh2021_signature_hunter" + "description_string" "#StickerKit_desc_stockh2021_signature_hunter" + "sticker_material" "stockh2021/sig_hunter" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "11737333" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "52606325" } - "852" + "5151" { - "name" "cluj2015_signature_ex6tenz_foil" - "item_name" "#StickerKit_cluj2015_signature_ex6tenz_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_ex6tenz_foil" - "sticker_material" "cluj2015/sig_ex6tenz_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "11737333" + "name" "stockh2021_signature_hunter_holo" + "item_name" "#StickerKit_stockh2021_signature_hunter_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_hunter_holo" + "sticker_material" "stockh2021/sig_hunter_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "52606325" } - "853" + "5152" { - "name" "cluj2015_signature_ex6tenz_gold" - "item_name" "#StickerKit_cluj2015_signature_ex6tenz_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_ex6tenz_gold" - "sticker_material" "cluj2015/sig_ex6tenz_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "11737333" + "name" "stockh2021_signature_hunter_gold" + "item_name" "#StickerKit_stockh2021_signature_hunter_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_hunter_gold" + "sticker_material" "stockh2021/sig_hunter_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "52606325" } - "854" + "5153" { - "name" "cluj2015_signature_rpk" - "item_name" "#StickerKit_cluj2015_signature_rpk" - "description_string" "#StickerKit_desc_cluj2015_signature_rpk" - "sticker_material" "cluj2015/sig_rpk" + "name" "stockh2021_signature_jackz" + "item_name" "#StickerKit_stockh2021_signature_jackz" + "description_string" "#StickerKit_desc_stockh2021_signature_jackz" + "sticker_material" "stockh2021/sig_jackz" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "53985773" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "11977189" } - "855" + "5154" { - "name" "cluj2015_signature_rpk_foil" - "item_name" "#StickerKit_cluj2015_signature_rpk_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_rpk_foil" - "sticker_material" "cluj2015/sig_rpk_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "53985773" + "name" "stockh2021_signature_jackz_holo" + "item_name" "#StickerKit_stockh2021_signature_jackz_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_jackz_holo" + "sticker_material" "stockh2021/sig_jackz_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "11977189" } - "856" + "5155" { - "name" "cluj2015_signature_rpk_gold" - "item_name" "#StickerKit_cluj2015_signature_rpk_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_rpk_gold" - "sticker_material" "cluj2015/sig_rpk_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "53985773" + "name" "stockh2021_signature_jackz_gold" + "item_name" "#StickerKit_stockh2021_signature_jackz_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_jackz_gold" + "sticker_material" "stockh2021/sig_jackz_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "11977189" } - "857" + "5156" { - "name" "cluj2015_signature_scream" - "item_name" "#StickerKit_cluj2015_signature_scream" - "description_string" "#StickerKit_desc_cluj2015_signature_scream" - "sticker_material" "cluj2015/sig_scream" + "name" "stockh2021_signature_amanek" + "item_name" "#StickerKit_stockh2021_signature_amanek" + "description_string" "#StickerKit_desc_stockh2021_signature_amanek" + "sticker_material" "stockh2021/sig_amanek" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "28502520" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "108679223" } - "858" + "5157" { - "name" "cluj2015_signature_scream_foil" - "item_name" "#StickerKit_cluj2015_signature_scream_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_scream_foil" - "sticker_material" "cluj2015/sig_scream_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "28502520" + "name" "stockh2021_signature_amanek_holo" + "item_name" "#StickerKit_stockh2021_signature_amanek_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_amanek_holo" + "sticker_material" "stockh2021/sig_amanek_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "108679223" } - "859" + "5158" { - "name" "cluj2015_signature_scream_gold" - "item_name" "#StickerKit_cluj2015_signature_scream_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_scream_gold" - "sticker_material" "cluj2015/sig_scream_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "28502520" + "name" "stockh2021_signature_amanek_gold" + "item_name" "#StickerKit_stockh2021_signature_amanek_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_amanek_gold" + "sticker_material" "stockh2021/sig_amanek_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "59" + "tournament_player_id" "108679223" } - "860" + "5159" { - "name" "cluj2015_signature_shox" - "item_name" "#StickerKit_cluj2015_signature_shox" - "description_string" "#StickerKit_desc_cluj2015_signature_shox" - "sticker_material" "cluj2015/sig_shox" + "name" "stockh2021_signature_teses" + "item_name" "#StickerKit_stockh2021_signature_teses" + "description_string" "#StickerKit_desc_stockh2021_signature_teses" + "sticker_material" "stockh2021/sig_teses" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "46654567" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "861" + "5160" { - "name" "cluj2015_signature_shox_foil" - "item_name" "#StickerKit_cluj2015_signature_shox_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_shox_foil" - "sticker_material" "cluj2015/sig_shox_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "46654567" + "name" "stockh2021_signature_teses_holo" + "item_name" "#StickerKit_stockh2021_signature_teses_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_teses_holo" + "sticker_material" "stockh2021/sig_teses_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "862" + "5161" { - "name" "cluj2015_signature_shox_gold" - "item_name" "#StickerKit_cluj2015_signature_shox_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_shox_gold" - "sticker_material" "cluj2015/sig_shox_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "46654567" + "name" "stockh2021_signature_teses_gold" + "item_name" "#StickerKit_stockh2021_signature_teses_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_teses_gold" + "sticker_material" "stockh2021/sig_teses_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "863" + "5162" { - "name" "cluj2015_signature_smithzz" - "item_name" "#StickerKit_cluj2015_signature_smithzz" - "description_string" "#StickerKit_desc_cluj2015_signature_smithzz" - "sticker_material" "cluj2015/sig_smithzz" + "name" "stockh2021_signature_stavn" + "item_name" "#StickerKit_stockh2021_signature_stavn" + "description_string" "#StickerKit_desc_stockh2021_signature_stavn" + "sticker_material" "stockh2021/sig_stavn" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "14321919" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "864" + "5163" { - "name" "cluj2015_signature_smithzz_foil" - "item_name" "#StickerKit_cluj2015_signature_smithzz_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_smithzz_foil" - "sticker_material" "cluj2015/sig_smithzz_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "14321919" + "name" "stockh2021_signature_stavn_holo" + "item_name" "#StickerKit_stockh2021_signature_stavn_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_stavn_holo" + "sticker_material" "stockh2021/sig_stavn_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "865" + "5164" { - "name" "cluj2015_signature_smithzz_gold" - "item_name" "#StickerKit_cluj2015_signature_smithzz_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_smithzz_gold" - "sticker_material" "cluj2015/sig_smithzz_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" - "tournament_player_id" "14321919" + "name" "stockh2021_signature_stavn_gold" + "item_name" "#StickerKit_stockh2021_signature_stavn_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_stavn_gold" + "sticker_material" "stockh2021/sig_stavn_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "866" + "5165" { - "name" "cluj2015_signature_cajunb" - "item_name" "#StickerKit_cluj2015_signature_cajunb" - "description_string" "#StickerKit_desc_cluj2015_signature_cajunb" - "sticker_material" "cluj2015/sig_cajunb" + "name" "stockh2021_signature_sjuush" + "item_name" "#StickerKit_stockh2021_signature_sjuush" + "description_string" "#StickerKit_desc_stockh2021_signature_sjuush" + "sticker_material" "stockh2021/sig_sjuush" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "18062315" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "867" + "5166" { - "name" "cluj2015_signature_cajunb_foil" - "item_name" "#StickerKit_cluj2015_signature_cajunb_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_cajunb_foil" - "sticker_material" "cluj2015/sig_cajunb_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "18062315" + "name" "stockh2021_signature_sjuush_holo" + "item_name" "#StickerKit_stockh2021_signature_sjuush_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_sjuush_holo" + "sticker_material" "stockh2021/sig_sjuush_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "868" + "5167" { - "name" "cluj2015_signature_cajunb_gold" - "item_name" "#StickerKit_cluj2015_signature_cajunb_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_cajunb_gold" - "sticker_material" "cluj2015/sig_cajunb_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "18062315" + "name" "stockh2021_signature_sjuush_gold" + "item_name" "#StickerKit_stockh2021_signature_sjuush_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_sjuush_gold" + "sticker_material" "stockh2021/sig_sjuush_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "869" + "5168" { - "name" "cluj2015_signature_device" - "item_name" "#StickerKit_cluj2015_signature_device" - "description_string" "#StickerKit_desc_cluj2015_signature_device" - "sticker_material" "cluj2015/sig_device" + "name" "stockh2021_signature_refrezh" + "item_name" "#StickerKit_stockh2021_signature_refrezh" + "description_string" "#StickerKit_desc_stockh2021_signature_refrezh" + "sticker_material" "stockh2021/sig_refrezh" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "27447936" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "104598470" } - "870" + "5169" { - "name" "cluj2015_signature_device_foil" - "item_name" "#StickerKit_cluj2015_signature_device_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_device_foil" - "sticker_material" "cluj2015/sig_device_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "27447936" + "name" "stockh2021_signature_refrezh_holo" + "item_name" "#StickerKit_stockh2021_signature_refrezh_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_refrezh_holo" + "sticker_material" "stockh2021/sig_refrezh_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "104598470" } - "871" + "5170" { - "name" "cluj2015_signature_device_gold" - "item_name" "#StickerKit_cluj2015_signature_device_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_device_gold" - "sticker_material" "cluj2015/sig_device_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "27447936" + "name" "stockh2021_signature_refrezh_gold" + "item_name" "#StickerKit_stockh2021_signature_refrezh_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_refrezh_gold" + "sticker_material" "stockh2021/sig_refrezh_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "104598470" } - "872" + "5171" { - "name" "cluj2015_signature_dupreeh" - "item_name" "#StickerKit_cluj2015_signature_dupreeh" - "description_string" "#StickerKit_desc_cluj2015_signature_dupreeh" - "sticker_material" "cluj2015/sig_dupreeh" + "name" "stockh2021_signature_cadian" + "item_name" "#StickerKit_stockh2021_signature_cadian" + "description_string" "#StickerKit_desc_stockh2021_signature_cadian" + "sticker_material" "stockh2021/sig_cadian" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "44589228" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "873" + "5172" { - "name" "cluj2015_signature_dupreeh_foil" - "item_name" "#StickerKit_cluj2015_signature_dupreeh_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_dupreeh_foil" - "sticker_material" "cluj2015/sig_dupreeh_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "44589228" + "name" "stockh2021_signature_cadian_holo" + "item_name" "#StickerKit_stockh2021_signature_cadian_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_cadian_holo" + "sticker_material" "stockh2021/sig_cadian_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "874" + "5173" { - "name" "cluj2015_signature_dupreeh_gold" - "item_name" "#StickerKit_cluj2015_signature_dupreeh_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_dupreeh_gold" - "sticker_material" "cluj2015/sig_dupreeh_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "44589228" + "name" "stockh2021_signature_cadian_gold" + "item_name" "#StickerKit_stockh2021_signature_cadian_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_cadian_gold" + "sticker_material" "stockh2021/sig_cadian_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "875" + "5174" { - "name" "cluj2015_signature_karrigan" - "item_name" "#StickerKit_cluj2015_signature_karrigan" - "description_string" "#StickerKit_desc_cluj2015_signature_karrigan" - "sticker_material" "cluj2015/sig_karrigan" + "name" "stockh2021_signature_nafany" + "item_name" "#StickerKit_stockh2021_signature_nafany" + "description_string" "#StickerKit_desc_stockh2021_signature_nafany" + "sticker_material" "stockh2021/sig_nafany" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "29164525" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "99448400" } - "876" + "5175" { - "name" "cluj2015_signature_karrigan_foil" - "item_name" "#StickerKit_cluj2015_signature_karrigan_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_karrigan_foil" - "sticker_material" "cluj2015/sig_karrigan_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "29164525" + "name" "stockh2021_signature_nafany_holo" + "item_name" "#StickerKit_stockh2021_signature_nafany_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_nafany_holo" + "sticker_material" "stockh2021/sig_nafany_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "99448400" } - "877" + "5176" { - "name" "cluj2015_signature_karrigan_gold" - "item_name" "#StickerKit_cluj2015_signature_karrigan_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_karrigan_gold" - "sticker_material" "cluj2015/sig_karrigan_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "29164525" + "name" "stockh2021_signature_nafany_gold" + "item_name" "#StickerKit_stockh2021_signature_nafany_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_nafany_gold" + "sticker_material" "stockh2021/sig_nafany_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "99448400" } - "878" + "5177" { - "name" "cluj2015_signature_xyp9x" - "item_name" "#StickerKit_cluj2015_signature_xyp9x" - "description_string" "#StickerKit_desc_cluj2015_signature_xyp9x" - "sticker_material" "cluj2015/sig_xyp9x" + "name" "stockh2021_signature_ax1le" + "item_name" "#StickerKit_stockh2021_signature_ax1le" + "description_string" "#StickerKit_desc_stockh2021_signature_ax1le" + "sticker_material" "stockh2021/sig_ax1le" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "30416534" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "85167576" } - "879" + "5178" { - "name" "cluj2015_signature_xyp9x_foil" - "item_name" "#StickerKit_cluj2015_signature_xyp9x_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_xyp9x_foil" - "sticker_material" "cluj2015/sig_xyp9x_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "30416534" + "name" "stockh2021_signature_ax1le_holo" + "item_name" "#StickerKit_stockh2021_signature_ax1le_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_ax1le_holo" + "sticker_material" "stockh2021/sig_ax1le_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "85167576" } - "880" + "5179" { - "name" "cluj2015_signature_xyp9x_gold" - "item_name" "#StickerKit_cluj2015_signature_xyp9x_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_xyp9x_gold" - "sticker_material" "cluj2015/sig_xyp9x_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" - "tournament_player_id" "30416534" + "name" "stockh2021_signature_ax1le_gold" + "item_name" "#StickerKit_stockh2021_signature_ax1le_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_ax1le_gold" + "sticker_material" "stockh2021/sig_ax1le_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "85167576" } - "881" + "5180" { - "name" "cluj2015_signature_furlan" - "item_name" "#StickerKit_cluj2015_signature_furlan" - "description_string" "#StickerKit_desc_cluj2015_signature_furlan" - "sticker_material" "cluj2015/sig_furlan" + "name" "stockh2021_signature_interz" + "item_name" "#StickerKit_stockh2021_signature_interz" + "description_string" "#StickerKit_desc_stockh2021_signature_interz" + "sticker_material" "stockh2021/sig_interz" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "177495873" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "247808592" } - "882" + "5181" { - "name" "cluj2015_signature_furlan_foil" - "item_name" "#StickerKit_cluj2015_signature_furlan_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_furlan_foil" - "sticker_material" "cluj2015/sig_furlan_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "177495873" + "name" "stockh2021_signature_interz_holo" + "item_name" "#StickerKit_stockh2021_signature_interz_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_interz_holo" + "sticker_material" "stockh2021/sig_interz_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "247808592" } - "883" + "5182" { - "name" "cluj2015_signature_furlan_gold" - "item_name" "#StickerKit_cluj2015_signature_furlan_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_furlan_gold" - "sticker_material" "cluj2015/sig_furlan_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "177495873" + "name" "stockh2021_signature_interz_gold" + "item_name" "#StickerKit_stockh2021_signature_interz_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_interz_gold" + "sticker_material" "stockh2021/sig_interz_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "247808592" } - "884" + "5183" { - "name" "cluj2015_signature_gruby" - "item_name" "#StickerKit_cluj2015_signature_gruby" - "description_string" "#StickerKit_desc_cluj2015_signature_gruby" - "sticker_material" "cluj2015/sig_gruby" + "name" "stockh2021_signature_sh1ro" + "item_name" "#StickerKit_stockh2021_signature_sh1ro" + "description_string" "#StickerKit_desc_stockh2021_signature_sh1ro" + "sticker_material" "stockh2021/sig_sh1ro" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "44752530" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "121219047" } - "885" + "5184" { - "name" "cluj2015_signature_gruby_foil" - "item_name" "#StickerKit_cluj2015_signature_gruby_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_gruby_foil" - "sticker_material" "cluj2015/sig_gruby_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "44752530" + "name" "stockh2021_signature_sh1ro_holo" + "item_name" "#StickerKit_stockh2021_signature_sh1ro_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_sh1ro_holo" + "sticker_material" "stockh2021/sig_sh1ro_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "121219047" } - "886" + "5185" { - "name" "cluj2015_signature_gruby_gold" - "item_name" "#StickerKit_cluj2015_signature_gruby_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_gruby_gold" - "sticker_material" "cluj2015/sig_gruby_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "44752530" + "name" "stockh2021_signature_sh1ro_gold" + "item_name" "#StickerKit_stockh2021_signature_sh1ro_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_sh1ro_gold" + "sticker_material" "stockh2021/sig_sh1ro_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "121219047" } - "887" + "5186" { - "name" "cluj2015_signature_hyper" - "item_name" "#StickerKit_cluj2015_signature_hyper" - "description_string" "#StickerKit_desc_cluj2015_signature_hyper" - "sticker_material" "cluj2015/sig_hyper" + "name" "stockh2021_signature_hobbit" + "item_name" "#StickerKit_stockh2021_signature_hobbit" + "description_string" "#StickerKit_desc_stockh2021_signature_hobbit" + "sticker_material" "stockh2021/sig_hobbit" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "10357481" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "68027030" } - "888" + "5187" { - "name" "cluj2015_signature_hyper_foil" - "item_name" "#StickerKit_cluj2015_signature_hyper_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_hyper_foil" - "sticker_material" "cluj2015/sig_hyper_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "10357481" + "name" "stockh2021_signature_hobbit_holo" + "item_name" "#StickerKit_stockh2021_signature_hobbit_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_hobbit_holo" + "sticker_material" "stockh2021/sig_hobbit_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "68027030" } - "889" + "5188" { - "name" "cluj2015_signature_hyper_gold" - "item_name" "#StickerKit_cluj2015_signature_hyper_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_hyper_gold" - "sticker_material" "cluj2015/sig_hyper_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "10357481" + "name" "stockh2021_signature_hobbit_gold" + "item_name" "#StickerKit_stockh2021_signature_hobbit_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_hobbit_gold" + "sticker_material" "stockh2021/sig_hobbit_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "63" + "tournament_player_id" "68027030" } - "890" + "5189" { - "name" "cluj2015_signature_peet" - "item_name" "#StickerKit_cluj2015_signature_peet" - "description_string" "#StickerKit_desc_cluj2015_signature_peet" - "sticker_material" "cluj2015/sig_peet" + "name" "stockh2021_signature_drop" + "item_name" "#StickerKit_stockh2021_signature_drop" + "description_string" "#StickerKit_desc_stockh2021_signature_drop" + "sticker_material" "stockh2021/sig_drop" + "item_rarity" "rare" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "427790854" + } + "5190" + { + "name" "stockh2021_signature_drop_holo" + "item_name" "#StickerKit_stockh2021_signature_drop_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_drop_holo" + "sticker_material" "stockh2021/sig_drop_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "427790854" + } + "5191" + { + "name" "stockh2021_signature_drop_gold" + "item_name" "#StickerKit_stockh2021_signature_drop_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_drop_gold" + "sticker_material" "stockh2021/sig_drop_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "427790854" + } + "5192" + { + "name" "stockh2021_signature_kscerato" + "item_name" "#StickerKit_stockh2021_signature_kscerato" + "description_string" "#StickerKit_desc_stockh2021_signature_kscerato" + "sticker_material" "stockh2021/sig_kscerato" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "104340617" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "891" + "5193" { - "name" "cluj2015_signature_peet_foil" - "item_name" "#StickerKit_cluj2015_signature_peet_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_peet_foil" - "sticker_material" "cluj2015/sig_peet_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "104340617" + "name" "stockh2021_signature_kscerato_holo" + "item_name" "#StickerKit_stockh2021_signature_kscerato_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_kscerato_holo" + "sticker_material" "stockh2021/sig_kscerato_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "892" + "5194" { - "name" "cluj2015_signature_peet_gold" - "item_name" "#StickerKit_cluj2015_signature_peet_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_peet_gold" - "sticker_material" "cluj2015/sig_peet_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "104340617" + "name" "stockh2021_signature_kscerato_gold" + "item_name" "#StickerKit_stockh2021_signature_kscerato_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_kscerato_gold" + "sticker_material" "stockh2021/sig_kscerato_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "893" + "5195" { - "name" "cluj2015_signature_rallen" - "item_name" "#StickerKit_cluj2015_signature_rallen" - "description_string" "#StickerKit_desc_cluj2015_signature_rallen" - "sticker_material" "cluj2015/sig_rallen" + "name" "stockh2021_signature_vini" + "item_name" "#StickerKit_stockh2021_signature_vini" + "description_string" "#StickerKit_desc_stockh2021_signature_vini" + "sticker_material" "stockh2021/sig_vini" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "31166738" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "36104456" } - "894" + "5196" { - "name" "cluj2015_signature_rallen_foil" - "item_name" "#StickerKit_cluj2015_signature_rallen_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_rallen_foil" - "sticker_material" "cluj2015/sig_rallen_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "31166738" + "name" "stockh2021_signature_vini_holo" + "item_name" "#StickerKit_stockh2021_signature_vini_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_vini_holo" + "sticker_material" "stockh2021/sig_vini_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "36104456" } - "895" + "5197" { - "name" "cluj2015_signature_rallen_gold" - "item_name" "#StickerKit_cluj2015_signature_rallen_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_rallen_gold" - "sticker_material" "cluj2015/sig_rallen_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" - "tournament_player_id" "31166738" + "name" "stockh2021_signature_vini_gold" + "item_name" "#StickerKit_stockh2021_signature_vini_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_vini_gold" + "sticker_material" "stockh2021/sig_vini_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "36104456" } - "896" + "5198" { - "name" "cluj2015_signature_byali" - "item_name" "#StickerKit_cluj2015_signature_byali" - "description_string" "#StickerKit_desc_cluj2015_signature_byali" - "sticker_material" "cluj2015/sig_byali" + "name" "stockh2021_signature_art" + "item_name" "#StickerKit_stockh2021_signature_art" + "description_string" "#StickerKit_desc_stockh2021_signature_art" + "sticker_material" "stockh2021/sig_art" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "31" - "tournament_player_id" "18860354" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "897" + "5199" { - "name" "cluj2015_signature_byali_foil" - "item_name" "#StickerKit_cluj2015_signature_byali_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_byali_foil" - "sticker_material" "cluj2015/sig_byali_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "31" - "tournament_player_id" "18860354" + "name" "stockh2021_signature_art_holo" + "item_name" "#StickerKit_stockh2021_signature_art_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_art_holo" + "sticker_material" "stockh2021/sig_art_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "898" + "5200" { - "name" "cluj2015_signature_byali_gold" - "item_name" "#StickerKit_cluj2015_signature_byali_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_byali_gold" - "sticker_material" "cluj2015/sig_byali_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "31" - "tournament_player_id" "18860354" + "name" "stockh2021_signature_art_gold" + "item_name" "#StickerKit_stockh2021_signature_art_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_art_gold" + "sticker_material" "stockh2021/sig_art_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "899" + "5201" { - "name" "cluj2015_signature_neo" - "item_name" "#StickerKit_cluj2015_signature_neo" - "description_string" "#StickerKit_desc_cluj2015_signature_neo" - "sticker_material" "cluj2015/sig_neo" + "name" "stockh2021_signature_yuurih" + "item_name" "#StickerKit_stockh2021_signature_yuurih" + "description_string" "#StickerKit_desc_stockh2021_signature_yuurih" + "sticker_material" "stockh2021/sig_yuurih" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "31" - "tournament_player_id" "460206" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "900" + "5202" { - "name" "cluj2015_signature_neo_foil" - "item_name" "#StickerKit_cluj2015_signature_neo_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_neo_foil" - "sticker_material" "cluj2015/sig_neo_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "31" - "tournament_player_id" "460206" + "name" "stockh2021_signature_yuurih_holo" + "item_name" "#StickerKit_stockh2021_signature_yuurih_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_yuurih_holo" + "sticker_material" "stockh2021/sig_yuurih_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "901" + "5203" { - "name" "cluj2015_signature_neo_gold" - "item_name" "#StickerKit_cluj2015_signature_neo_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_neo_gold" - "sticker_material" "cluj2015/sig_neo_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "31" - "tournament_player_id" "460206" + "name" "stockh2021_signature_yuurih_gold" + "item_name" "#StickerKit_stockh2021_signature_yuurih_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_yuurih_gold" + "sticker_material" "stockh2021/sig_yuurih_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "902" + "5204" { - "name" "cluj2015_signature_pasha" - "item_name" "#StickerKit_cluj2015_signature_pasha" - "description_string" "#StickerKit_desc_cluj2015_signature_pasha" - "sticker_material" "cluj2015/sig_pasha" + "name" "stockh2021_signature_qikert" + "item_name" "#StickerKit_stockh2021_signature_qikert" + "description_string" "#StickerKit_desc_stockh2021_signature_qikert" + "sticker_material" "stockh2021/sig_qikert" "item_rarity" "rare" - "tournament_event_id" "8" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "13580090" + "tournament_player_id" "166970562" } - "903" + "5205" { - "name" "cluj2015_signature_pasha_foil" - "item_name" "#StickerKit_cluj2015_signature_pasha_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_pasha_foil" - "sticker_material" "cluj2015/sig_pasha_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_signature_qikert_holo" + "item_name" "#StickerKit_stockh2021_signature_qikert_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_qikert_holo" + "sticker_material" "stockh2021/sig_qikert_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "13580090" + "tournament_player_id" "166970562" } - "904" + "5206" { - "name" "cluj2015_signature_pasha_gold" - "item_name" "#StickerKit_cluj2015_signature_pasha_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_pasha_gold" - "sticker_material" "cluj2015/sig_pasha_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_signature_qikert_gold" + "item_name" "#StickerKit_stockh2021_signature_qikert_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_qikert_gold" + "sticker_material" "stockh2021/sig_qikert_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "13580090" + "tournament_player_id" "166970562" } - "905" + "5207" { - "name" "cluj2015_signature_snax" - "item_name" "#StickerKit_cluj2015_signature_snax" - "description_string" "#StickerKit_desc_cluj2015_signature_snax" - "sticker_material" "cluj2015/sig_snax" + "name" "stockh2021_signature_buster" + "item_name" "#StickerKit_stockh2021_signature_buster" + "description_string" "#StickerKit_desc_stockh2021_signature_buster" + "sticker_material" "stockh2021/sig_buster" "item_rarity" "rare" - "tournament_event_id" "8" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "21875845" + "tournament_player_id" "212936195" } - "906" + "5208" { - "name" "cluj2015_signature_snax_foil" - "item_name" "#StickerKit_cluj2015_signature_snax_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_snax_foil" - "sticker_material" "cluj2015/sig_snax_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_signature_buster_holo" + "item_name" "#StickerKit_stockh2021_signature_buster_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_buster_holo" + "sticker_material" "stockh2021/sig_buster_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "21875845" + "tournament_player_id" "212936195" } - "907" + "5209" { - "name" "cluj2015_signature_snax_gold" - "item_name" "#StickerKit_cluj2015_signature_snax_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_snax_gold" - "sticker_material" "cluj2015/sig_snax_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_signature_buster_gold" + "item_name" "#StickerKit_stockh2021_signature_buster_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_buster_gold" + "sticker_material" "stockh2021/sig_buster_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "21875845" + "tournament_player_id" "212936195" } - "908" + "5210" { - "name" "cluj2015_signature_taz" - "item_name" "#StickerKit_cluj2015_signature_taz" - "description_string" "#StickerKit_desc_cluj2015_signature_taz" - "sticker_material" "cluj2015/sig_taz" + "name" "stockh2021_signature_yekindar" + "item_name" "#StickerKit_stockh2021_signature_yekindar" + "description_string" "#StickerKit_desc_stockh2021_signature_yekindar" + "sticker_material" "stockh2021/sig_yekindar" "item_rarity" "rare" - "tournament_event_id" "8" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "234052" + "tournament_player_id" "174136197" } - "909" + "5211" { - "name" "cluj2015_signature_taz_foil" - "item_name" "#StickerKit_cluj2015_signature_taz_foil" - "description_string" "#StickerKit_desc_cluj2015_signature_taz_foil" - "sticker_material" "cluj2015/sig_taz_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_signature_yekindar_holo" + "item_name" "#StickerKit_stockh2021_signature_yekindar_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_yekindar_holo" + "sticker_material" "stockh2021/sig_yekindar_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "234052" + "tournament_player_id" "174136197" } - "910" + "5212" { - "name" "cluj2015_signature_taz_gold" - "item_name" "#StickerKit_cluj2015_signature_taz_gold" - "description_string" "#StickerKit_desc_cluj2015_signature_taz_gold" - "sticker_material" "cluj2015/sig_taz_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" + "name" "stockh2021_signature_yekindar_gold" + "item_name" "#StickerKit_stockh2021_signature_yekindar_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_yekindar_gold" + "sticker_material" "stockh2021/sig_yekindar_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" "tournament_team_id" "31" - "tournament_player_id" "234052" + "tournament_player_id" "174136197" } - "911" + "5213" { - "name" "cluj2015_team_nip" - "item_name" "#StickerKit_cluj2015_team_nip" - "description_string" "#StickerKit_desc_cluj2015_team_nip" - "sticker_material" "cluj2015/nip" + "name" "stockh2021_signature_jame" + "item_name" "#StickerKit_stockh2021_signature_jame" + "description_string" "#StickerKit_desc_stockh2021_signature_jame" + "sticker_material" "stockh2021/sig_jame" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "1" + "tournament_event_id" "18" + "tournament_team_id" "31" + "tournament_player_id" "75859856" } - "912" + "5214" { - "name" "cluj2015_team_nip_foil" - "item_name" "#StickerKit_cluj2015_team_nip_foil" - "description_string" "#StickerKit_desc_cluj2015_team_nip_foil" - "sticker_material" "cluj2015/nip_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" + "name" "stockh2021_signature_jame_holo" + "item_name" "#StickerKit_stockh2021_signature_jame_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_jame_holo" + "sticker_material" "stockh2021/sig_jame_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "31" + "tournament_player_id" "75859856" } - "913" + "5215" { - "name" "cluj2015_team_nip_gold" - "item_name" "#StickerKit_cluj2015_team_nip_gold" - "description_string" "#StickerKit_desc_cluj2015_team_nip_gold" - "sticker_material" "cluj2015/nip_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "1" + "name" "stockh2021_signature_jame_gold" + "item_name" "#StickerKit_stockh2021_signature_jame_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_jame_gold" + "sticker_material" "stockh2021/sig_jame_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "31" + "tournament_player_id" "75859856" } - "914" + "5216" { - "name" "cluj2015_team_dig" - "item_name" "#StickerKit_cluj2015_team_dig" - "description_string" "#StickerKit_desc_cluj2015_team_dig" - "sticker_material" "cluj2015/dig" + "name" "stockh2021_signature_fl1t" + "item_name" "#StickerKit_stockh2021_signature_fl1t" + "description_string" "#StickerKit_desc_stockh2021_signature_fl1t" + "sticker_material" "stockh2021/sig_fl1t" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "24" + "tournament_event_id" "18" + "tournament_team_id" "31" + "tournament_player_id" "35551773" } - "915" + "5217" { - "name" "cluj2015_team_dig_foil" - "item_name" "#StickerKit_cluj2015_team_dig_foil" - "description_string" "#StickerKit_desc_cluj2015_team_dig_foil" - "sticker_material" "cluj2015/dig_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" + "name" "stockh2021_signature_fl1t_holo" + "item_name" "#StickerKit_stockh2021_signature_fl1t_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_fl1t_holo" + "sticker_material" "stockh2021/sig_fl1t_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "31" + "tournament_player_id" "35551773" } - "916" + "5218" { - "name" "cluj2015_team_dig_gold" - "item_name" "#StickerKit_cluj2015_team_dig_gold" - "description_string" "#StickerKit_desc_cluj2015_team_dig_gold" - "sticker_material" "cluj2015/dig_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "24" + "name" "stockh2021_signature_fl1t_gold" + "item_name" "#StickerKit_stockh2021_signature_fl1t_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_fl1t_gold" + "sticker_material" "stockh2021/sig_fl1t_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "31" + "tournament_player_id" "35551773" } - "917" + "5219" { - "name" "cluj2015_team_clg" - "item_name" "#StickerKit_cluj2015_team_clg" - "description_string" "#StickerKit_desc_cluj2015_team_clg" - "sticker_material" "cluj2015/clg" + "name" "stockh2021_signature_hampus" + "item_name" "#StickerKit_stockh2021_signature_hampus" + "description_string" "#StickerKit_desc_stockh2021_signature_hampus" + "sticker_material" "stockh2021/sig_hampus" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "49" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "918" + "5220" { - "name" "cluj2015_team_clg_foil" - "item_name" "#StickerKit_cluj2015_team_clg_foil" - "description_string" "#StickerKit_desc_cluj2015_team_clg_foil" - "sticker_material" "cluj2015/clg_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" + "name" "stockh2021_signature_hampus_holo" + "item_name" "#StickerKit_stockh2021_signature_hampus_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_hampus_holo" + "sticker_material" "stockh2021/sig_hampus_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "919" + "5221" { - "name" "cluj2015_team_clg_gold" - "item_name" "#StickerKit_cluj2015_team_clg_gold" - "description_string" "#StickerKit_desc_cluj2015_team_clg_gold" - "sticker_material" "cluj2015/clg_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "49" + "name" "stockh2021_signature_hampus_gold" + "item_name" "#StickerKit_stockh2021_signature_hampus_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_hampus_gold" + "sticker_material" "stockh2021/sig_hampus_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "920" + "5222" { - "name" "cluj2015_team_vex" - "item_name" "#StickerKit_cluj2015_team_vex" - "description_string" "#StickerKit_desc_cluj2015_team_vex" - "sticker_material" "cluj2015/vex" + "name" "stockh2021_signature_lnz" + "item_name" "#StickerKit_stockh2021_signature_lnz" + "description_string" "#StickerKit_desc_stockh2021_signature_lnz" + "sticker_material" "stockh2021/sig_lnz" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "47" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "144361165" } - "921" + "5223" { - "name" "cluj2015_team_vex_foil" - "item_name" "#StickerKit_cluj2015_team_vex_foil" - "description_string" "#StickerKit_desc_cluj2015_team_vex_foil" - "sticker_material" "cluj2015/vex_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" + "name" "stockh2021_signature_lnz_holo" + "item_name" "#StickerKit_stockh2021_signature_lnz_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_lnz_holo" + "sticker_material" "stockh2021/sig_lnz_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "144361165" } - "922" + "5224" { - "name" "cluj2015_team_vex_gold" - "item_name" "#StickerKit_cluj2015_team_vex_gold" - "description_string" "#StickerKit_desc_cluj2015_team_vex_gold" - "sticker_material" "cluj2015/vex_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "47" + "name" "stockh2021_signature_lnz_gold" + "item_name" "#StickerKit_stockh2021_signature_lnz_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_lnz_gold" + "sticker_material" "stockh2021/sig_lnz_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "144361165" } - "923" + "5225" { - "name" "cluj2015_team_flip" - "item_name" "#StickerKit_cluj2015_team_flip" - "description_string" "#StickerKit_desc_cluj2015_team_flip" - "sticker_material" "cluj2015/flip" + "name" "stockh2021_signature_rez" + "item_name" "#StickerKit_stockh2021_signature_rez" + "description_string" "#StickerKit_desc_stockh2021_signature_rez" + "sticker_material" "stockh2021/sig_rez" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "43" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "924" + "5226" { - "name" "cluj2015_team_flip_foil" - "item_name" "#StickerKit_cluj2015_team_flip_foil" - "description_string" "#StickerKit_desc_cluj2015_team_flip_foil" - "sticker_material" "cluj2015/flip_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" + "name" "stockh2021_signature_rez_holo" + "item_name" "#StickerKit_stockh2021_signature_rez_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_rez_holo" + "sticker_material" "stockh2021/sig_rez_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "925" + "5227" { - "name" "cluj2015_team_flip_gold" - "item_name" "#StickerKit_cluj2015_team_flip_gold" - "description_string" "#StickerKit_desc_cluj2015_team_flip_gold" - "sticker_material" "cluj2015/flip_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "43" + "name" "stockh2021_signature_rez_gold" + "item_name" "#StickerKit_stockh2021_signature_rez_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_rez_gold" + "sticker_material" "stockh2021/sig_rez_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "926" + "5228" { - "name" "cluj2015_team_liq" - "item_name" "#StickerKit_cluj2015_team_liq" - "description_string" "#StickerKit_desc_cluj2015_team_liq" - "sticker_material" "cluj2015/liq" + "name" "stockh2021_signature_plopski" + "item_name" "#StickerKit_stockh2021_signature_plopski" + "description_string" "#StickerKit_desc_stockh2021_signature_plopski" + "sticker_material" "stockh2021/sig_plopski" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "48" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "175613070" } - "927" + "5229" { - "name" "cluj2015_team_liq_foil" - "item_name" "#StickerKit_cluj2015_team_liq_foil" - "description_string" "#StickerKit_desc_cluj2015_team_liq_foil" - "sticker_material" "cluj2015/liq_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" + "name" "stockh2021_signature_plopski_holo" + "item_name" "#StickerKit_stockh2021_signature_plopski_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_plopski_holo" + "sticker_material" "stockh2021/sig_plopski_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "175613070" } - "928" + "5230" { - "name" "cluj2015_team_liq_gold" - "item_name" "#StickerKit_cluj2015_team_liq_gold" - "description_string" "#StickerKit_desc_cluj2015_team_liq_gold" - "sticker_material" "cluj2015/liq_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "48" + "name" "stockh2021_signature_plopski_gold" + "item_name" "#StickerKit_stockh2021_signature_plopski_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_plopski_gold" + "sticker_material" "stockh2021/sig_plopski_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "175613070" } - "929" + "5231" { - "name" "cluj2015_team_mss" - "item_name" "#StickerKit_cluj2015_team_mss" - "description_string" "#StickerKit_desc_cluj2015_team_mss" - "sticker_material" "cluj2015/mss" + "name" "stockh2021_signature_device" + "item_name" "#StickerKit_stockh2021_signature_device" + "description_string" "#StickerKit_desc_stockh2021_signature_device" + "sticker_material" "stockh2021/sig_device" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "29" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "27447936" } - "930" + "5232" { - "name" "cluj2015_team_mss_foil" - "item_name" "#StickerKit_cluj2015_team_mss_foil" - "description_string" "#StickerKit_desc_cluj2015_team_mss_foil" - "sticker_material" "cluj2015/mss_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" + "name" "stockh2021_signature_device_holo" + "item_name" "#StickerKit_stockh2021_signature_device_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_device_holo" + "sticker_material" "stockh2021/sig_device_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "27447936" } - "931" + "5233" { - "name" "cluj2015_team_mss_gold" - "item_name" "#StickerKit_cluj2015_team_mss_gold" - "description_string" "#StickerKit_desc_cluj2015_team_mss_gold" - "sticker_material" "cluj2015/mss_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "29" + "name" "stockh2021_signature_device_gold" + "item_name" "#StickerKit_stockh2021_signature_device_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_device_gold" + "sticker_material" "stockh2021/sig_device_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "1" + "tournament_player_id" "27447936" } - "932" + "5234" { - "name" "cluj2015_team_navi" - "item_name" "#StickerKit_cluj2015_team_navi" - "description_string" "#StickerKit_desc_cluj2015_team_navi" - "sticker_material" "cluj2015/navi" + "name" "stockh2021_signature_zywoo" + "item_name" "#StickerKit_stockh2021_signature_zywoo" + "description_string" "#StickerKit_desc_stockh2021_signature_zywoo" + "sticker_material" "stockh2021/sig_zywoo" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "12" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "933" + "5235" { - "name" "cluj2015_team_navi_foil" - "item_name" "#StickerKit_cluj2015_team_navi_foil" - "description_string" "#StickerKit_desc_cluj2015_team_navi_foil" - "sticker_material" "cluj2015/navi_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" + "name" "stockh2021_signature_zywoo_holo" + "item_name" "#StickerKit_stockh2021_signature_zywoo_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_zywoo_holo" + "sticker_material" "stockh2021/sig_zywoo_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "934" + "5236" { - "name" "cluj2015_team_navi_gold" - "item_name" "#StickerKit_cluj2015_team_navi_gold" - "description_string" "#StickerKit_desc_cluj2015_team_navi_gold" - "sticker_material" "cluj2015/navi_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "12" + "name" "stockh2021_signature_zywoo_gold" + "item_name" "#StickerKit_stockh2021_signature_zywoo_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_zywoo_gold" + "sticker_material" "stockh2021/sig_zywoo_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "935" + "5237" { - "name" "cluj2015_team_vp" - "item_name" "#StickerKit_cluj2015_team_vp" - "description_string" "#StickerKit_desc_cluj2015_team_vp" - "sticker_material" "cluj2015/vp" + "name" "stockh2021_signature_misutaaa" + "item_name" "#StickerKit_stockh2021_signature_misutaaa" + "description_string" "#StickerKit_desc_stockh2021_signature_misutaaa" + "sticker_material" "stockh2021/sig_misutaaa" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "31" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "121263183" } - "936" + "5238" { - "name" "cluj2015_team_vp_foil" - "item_name" "#StickerKit_cluj2015_team_vp_foil" - "description_string" "#StickerKit_desc_cluj2015_team_vp_foil" - "sticker_material" "cluj2015/vp_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "31" + "name" "stockh2021_signature_misutaaa_holo" + "item_name" "#StickerKit_stockh2021_signature_misutaaa_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_misutaaa_holo" + "sticker_material" "stockh2021/sig_misutaaa_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "121263183" } - "937" + "5239" { - "name" "cluj2015_team_vp_gold" - "item_name" "#StickerKit_cluj2015_team_vp_gold" - "description_string" "#StickerKit_desc_cluj2015_team_vp_gold" - "sticker_material" "cluj2015/vp_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "31" + "name" "stockh2021_signature_misutaaa_gold" + "item_name" "#StickerKit_stockh2021_signature_misutaaa_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_misutaaa_gold" + "sticker_material" "stockh2021/sig_misutaaa_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "121263183" } - "938" + "5240" { - "name" "cluj2015_team_c9" - "item_name" "#StickerKit_cluj2015_team_c9" - "description_string" "#StickerKit_desc_cluj2015_team_c9" - "sticker_material" "cluj2015/c9" + "name" "stockh2021_signature_kyojin" + "item_name" "#StickerKit_stockh2021_signature_kyojin" + "description_string" "#StickerKit_desc_stockh2021_signature_kyojin" + "sticker_material" "stockh2021/sig_kyojin" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "33" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "45702241" } - "939" + "5241" { - "name" "cluj2015_team_c9_foil" - "item_name" "#StickerKit_cluj2015_team_c9_foil" - "description_string" "#StickerKit_desc_cluj2015_team_c9_foil" - "sticker_material" "cluj2015/c9_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" + "name" "stockh2021_signature_kyojin_holo" + "item_name" "#StickerKit_stockh2021_signature_kyojin_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_kyojin_holo" + "sticker_material" "stockh2021/sig_kyojin_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "45702241" } - "940" + "5242" { - "name" "cluj2015_team_c9_gold" - "item_name" "#StickerKit_cluj2015_team_c9_gold" - "description_string" "#StickerKit_desc_cluj2015_team_c9_gold" - "sticker_material" "cluj2015/c9_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "33" + "name" "stockh2021_signature_kyojin_gold" + "item_name" "#StickerKit_stockh2021_signature_kyojin_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_kyojin_gold" + "sticker_material" "stockh2021/sig_kyojin_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "45702241" } - "941" + "5243" { - "name" "cluj2015_team_g2" - "item_name" "#StickerKit_cluj2015_team_g2" - "description_string" "#StickerKit_desc_cluj2015_team_g2" - "sticker_material" "cluj2015/g2" + "name" "stockh2021_signature_shox" + "item_name" "#StickerKit_stockh2021_signature_shox" + "description_string" "#StickerKit_desc_stockh2021_signature_shox" + "sticker_material" "stockh2021/sig_shox" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "59" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "46654567" } - "942" + "5244" { - "name" "cluj2015_team_g2_foil" - "item_name" "#StickerKit_cluj2015_team_g2_foil" - "description_string" "#StickerKit_desc_cluj2015_team_g2_foil" - "sticker_material" "cluj2015/g2_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" + "name" "stockh2021_signature_shox_holo" + "item_name" "#StickerKit_stockh2021_signature_shox_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_shox_holo" + "sticker_material" "stockh2021/sig_shox_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "46654567" } - "943" + "5245" { - "name" "cluj2015_team_g2_gold" - "item_name" "#StickerKit_cluj2015_team_g2_gold" - "description_string" "#StickerKit_desc_cluj2015_team_g2_gold" - "sticker_material" "cluj2015/g2_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "59" + "name" "stockh2021_signature_shox_gold" + "item_name" "#StickerKit_stockh2021_signature_shox_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_shox_gold" + "sticker_material" "stockh2021/sig_shox_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "46654567" } - "944" + "5246" { - "name" "cluj2015_team_tit" - "item_name" "#StickerKit_cluj2015_team_tit" - "description_string" "#StickerKit_desc_cluj2015_team_tit" - "sticker_material" "cluj2015/tit" + "name" "stockh2021_signature_apex" + "item_name" "#StickerKit_stockh2021_signature_apex" + "description_string" "#StickerKit_desc_stockh2021_signature_apex" + "sticker_material" "stockh2021/sig_apex" "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "27" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "945" + "5247" { - "name" "cluj2015_team_tit_foil" - "item_name" "#StickerKit_cluj2015_team_tit_foil" - "description_string" "#StickerKit_desc_cluj2015_team_tit_foil" - "sticker_material" "cluj2015/tit_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" + "name" "stockh2021_signature_apex_holo" + "item_name" "#StickerKit_stockh2021_signature_apex_holo" + "description_string" "#StickerKit_desc_stockh2021_signature_apex_holo" + "sticker_material" "stockh2021/sig_apex_holo" + "item_rarity" "mythical" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "946" - { - "name" "cluj2015_team_tit_gold" - "item_name" "#StickerKit_cluj2015_team_tit_gold" - "description_string" "#StickerKit_desc_cluj2015_team_tit_gold" - "sticker_material" "cluj2015/tit_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "27" + "5248" + { + "name" "stockh2021_signature_apex_gold" + "item_name" "#StickerKit_stockh2021_signature_apex_gold" + "description_string" "#StickerKit_desc_stockh2021_signature_apex_gold" + "sticker_material" "stockh2021/sig_apex_gold" + "item_rarity" "ancient" + "tournament_event_id" "18" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "947" + } + "quest_definitions" + { + "223" { - "name" "cluj2015_team_tsolo" - "item_name" "#StickerKit_cluj2015_team_tsolo" - "description_string" "#StickerKit_desc_cluj2015_team_tsolo" - "sticker_material" "cluj2015/tsolo" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "58" + "name" "quest_stockh2021_activate_pass" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_activate_pass" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_activate_pass" + "quest_icon" "pass" + "gamemode" "competitive" } - "948" + "224" { - "name" "cluj2015_team_tsolo_foil" - "item_name" "#StickerKit_cluj2015_team_tsolo_foil" - "description_string" "#StickerKit_desc_cluj2015_team_tsolo_foil" - "sticker_material" "cluj2015/tsolo_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" + "name" "quest_stockh2021_challengers_calender" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_challengers_calender" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_challengers_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "949" + "225" { - "name" "cluj2015_team_tsolo_gold" - "item_name" "#StickerKit_cluj2015_team_tsolo_gold" - "description_string" "#StickerKit_desc_cluj2015_team_tsolo_gold" - "sticker_material" "cluj2015/tsolo_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "58" + "name" "quest_stockh2021_challengers_pickem" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_challengers_pickem" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_challengers_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "950" + "226" { - "name" "cluj2015_team_nv" - "item_name" "#StickerKit_cluj2015_team_nv" - "description_string" "#StickerKit_desc_cluj2015_team_nv" - "sticker_material" "cluj2015/nv" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "46" + "name" "quest_stockh2021_legends_calender" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_legends_calender" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_legends_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "951" + "227" { - "name" "cluj2015_team_nv_foil" - "item_name" "#StickerKit_cluj2015_team_nv_foil" - "description_string" "#StickerKit_desc_cluj2015_team_nv_foil" - "sticker_material" "cluj2015/nv_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" + "name" "quest_stockh2021_legends_pickem" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_legends_pickem" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_legends_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "952" + "228" { - "name" "cluj2015_team_nv_gold" - "item_name" "#StickerKit_cluj2015_team_nv_gold" - "description_string" "#StickerKit_desc_cluj2015_team_nv_gold" - "sticker_material" "cluj2015/nv_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "46" + "name" "quest_stockh2021_grandfinal_calender" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_grandfinal_calender" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_grandfinal_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "953" + "229" { - "name" "cluj2015_team_fntc" - "item_name" "#StickerKit_cluj2015_team_fntc" - "description_string" "#StickerKit_desc_cluj2015_team_fntc" - "sticker_material" "cluj2015/fntc" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "6" + "name" "quest_stockh2021_quarterfinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_quarterfinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_quarterfinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "954" + "230" { - "name" "cluj2015_team_fntc_foil" - "item_name" "#StickerKit_cluj2015_team_fntc_foil" - "description_string" "#StickerKit_desc_cluj2015_team_fntc_foil" - "sticker_material" "cluj2015/fntc_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" + "name" "quest_stockh2021_semifinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_semifinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_semifinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "955" + "231" { - "name" "cluj2015_team_fntc_gold" - "item_name" "#StickerKit_cluj2015_team_fntc_gold" - "description_string" "#StickerKit_desc_cluj2015_team_fntc_gold" - "sticker_material" "cluj2015/fntc_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "6" + "name" "quest_stockh2021_grandfinal_pickem" + "loc_name" "#CSGO_TournamentChallenge_stockh2021_grandfinal_pickem" + "loc_description" "#CSGO_TournamentChallenge_stockh2021_grandfinal_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "956" + } + "campaign_definitions" + { + "12" { - "name" "cluj2015_team_lumi" - "item_name" "#StickerKit_cluj2015_team_lumi" - "description_string" "#StickerKit_desc_cluj2015_team_lumi" - "sticker_material" "cluj2015/lumi" - "item_rarity" "rare" - "tournament_event_id" "8" - "tournament_team_id" "57" + "loc_name" "#CSGO_TournamentJournal_stockh2021" + "loc_description" "#CSGO_TournamentJournal_stockh2021_Desc" + "1" + { + "quest_index" "223" + } + "2" + { + "quest_index" "224" + } + "3" + { + "quest_index" "225" + } + "4" + { + "quest_index" "226" + } + "5" + { + "quest_index" "227" + } + "6" + { + "quest_index" "228" + } + "7" + { + "quest_index" "229" + } + "8" + { + "quest_index" "230" + } + "9" + { + "quest_index" "231" + } } - "957" + } + "prefabs" + { + "antwerp2022_sticker_capsule_prefab" { - "name" "cluj2015_team_lumi_foil" - "item_name" "#StickerKit_cluj2015_team_lumi_foil" - "description_string" "#StickerKit_desc_cluj2015_team_lumi_foil" - "sticker_material" "cluj2015/lumi_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" + "first_sale_date" "2022-05-09" + "prefab" "weapon_case_base" + "inv_container_and_tools" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } } - "958" + "antwerp2022_signature_capsule_prefab" { - "name" "cluj2015_team_lumi_gold" - "item_name" "#StickerKit_cluj2015_team_lumi_gold" - "description_string" "#StickerKit_desc_cluj2015_team_lumi_gold" - "sticker_material" "cluj2015/lumi_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" - "tournament_team_id" "57" + "first_sale_date" "2022-05-09" + "prefab" "weapon_case_base" + "inv_container_and_tools" "sticker_capsule" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_signature_pack_antwerp2022_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_antwerp2022_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "959" + "antwerp2022_tournament_pass_prefab" { - "name" "cluj2015_team_dhc" - "item_name" "#StickerKit_cluj2015_team_dhc" - "description_string" "#StickerKit_desc_cluj2015_team_dhc" - "sticker_material" "cluj2015/dhc" - "item_rarity" "rare" - "tournament_event_id" "8" + "first_sale_date" "2022-05-09" + "prefab" "fan_token" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } } - "960" + "antwerp2022_tournament_journal_prefab" { - "name" "cluj2015_team_dhc_foil" - "item_name" "#StickerKit_cluj2015_team_dhc_foil" - "description_string" "#StickerKit_desc_cluj2015_team_dhc_foil" - "sticker_material" "cluj2015/dhc_foil" - "item_rarity" "legendary" - "tournament_event_id" "8" + "item_description" "#CSGO_TournamentJournal_antwerp2022_Desc" + "first_sale_date" "2022-05-09" + "prefab" "fan_shield" + "attributes" + { + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + "campaign id" + { + "attribute_class" "campaign_id" + "value" "13" + } + "sticker slot 0 id" + { + "attribute_class" "sticker_slot_id" + "value" "5395" + "force_gc_to_generate" "1" + } + "campaign completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "1" + "force_gc_to_generate" "1" + } + "operation drops awarded 0" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "operation drops awarded 1" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + } } - "961" + } + "revolving_loot_lists" + { + "341" "crate_sticker_pack_antwerp2022_legends" + "342" "crate_sticker_pack_antwerp2022_challengers" + "343" "crate_sticker_pack_antwerp2022_contenders" + "344" "crate_antwerp2022_promo_de_inferno" + "345" "crate_antwerp2022_promo_de_mirage" + "346" "crate_antwerp2022_promo_de_dust2" + "347" "crate_antwerp2022_promo_de_overpass" + "348" "crate_antwerp2022_promo_de_ancient" + "349" "crate_antwerp2022_promo_de_nuke" + "350" "crate_antwerp2022_promo_de_vertigo" + "351" "crate_signature_pack_antwerp2022_group_players_collection_legends" + "352" "crate_signature_pack_antwerp2022_group_players_collection_challengers" + "353" "crate_signature_pack_antwerp2022_group_players_collection_contenders" + "354" "crate_signature_pack_antwerp2022_group_players_collection_champions" + } + "client_loot_lists" + { + "crate_sticker_pack_antwerp2022_legends_rare" + { + "[antwerp2022_team_hero]sticker" "1" + "[antwerp2022_team_cope]sticker" "1" + "[antwerp2022_team_big]sticker" "1" + "[antwerp2022_team_c9]sticker" "1" + "[antwerp2022_team_furi]sticker" "1" + "[antwerp2022_team_faze]sticker" "1" + "[antwerp2022_team_nip]sticker" "1" + "[antwerp2022_team_navi]sticker" "1" + "[antwerp2022_team_pgl]sticker" "1" + } + "crate_sticker_pack_antwerp2022_legends_mythical" + { + "[antwerp2022_team_hero_glitter]sticker" "1" + "[antwerp2022_team_cope_glitter]sticker" "1" + "[antwerp2022_team_big_glitter]sticker" "1" + "[antwerp2022_team_c9_glitter]sticker" "1" + "[antwerp2022_team_furi_glitter]sticker" "1" + "[antwerp2022_team_faze_glitter]sticker" "1" + "[antwerp2022_team_nip_glitter]sticker" "1" + "[antwerp2022_team_navi_glitter]sticker" "1" + "[antwerp2022_team_pgl_glitter]sticker" "1" + } + "crate_sticker_pack_antwerp2022_legends_legendary" + { + "[antwerp2022_team_hero_holo]sticker" "1" + "[antwerp2022_team_cope_holo]sticker" "1" + "[antwerp2022_team_big_holo]sticker" "1" + "[antwerp2022_team_c9_holo]sticker" "1" + "[antwerp2022_team_furi_holo]sticker" "1" + "[antwerp2022_team_faze_holo]sticker" "1" + "[antwerp2022_team_nip_holo]sticker" "1" + "[antwerp2022_team_navi_holo]sticker" "1" + "[antwerp2022_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_antwerp2022_legends_ancient" + { + "[antwerp2022_team_hero_gold]sticker" "1" + "[antwerp2022_team_cope_gold]sticker" "1" + "[antwerp2022_team_big_gold]sticker" "1" + "[antwerp2022_team_c9_gold]sticker" "1" + "[antwerp2022_team_furi_gold]sticker" "1" + "[antwerp2022_team_faze_gold]sticker" "1" + "[antwerp2022_team_nip_gold]sticker" "1" + "[antwerp2022_team_navi_gold]sticker" "1" + "[antwerp2022_team_pgl_gold]sticker" "1" + } + "crate_sticker_pack_antwerp2022_legends" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_antwerp2022_legends_rare" "1" + "crate_sticker_pack_antwerp2022_legends_mythical" "1" + "crate_sticker_pack_antwerp2022_legends_legendary" "1" + "crate_sticker_pack_antwerp2022_legends_ancient" "1" + } + "crate_sticker_pack_antwerp2022_challengers_rare" + { + "[antwerp2022_team_ence]sticker" "1" + "[antwerp2022_team_g2]sticker" "1" + "[antwerp2022_team_forz]sticker" "1" + "[antwerp2022_team_astr]sticker" "1" + "[antwerp2022_team_vita]sticker" "1" + "[antwerp2022_team_mibr]sticker" "1" + "[antwerp2022_team_imp]sticker" "1" + "[antwerp2022_team_bne]sticker" "1" + "[antwerp2022_team_pgl]sticker" "1" + } + "crate_sticker_pack_antwerp2022_challengers_mythical" + { + "[antwerp2022_team_ence_glitter]sticker" "1" + "[antwerp2022_team_g2_glitter]sticker" "1" + "[antwerp2022_team_forz_glitter]sticker" "1" + "[antwerp2022_team_astr_glitter]sticker" "1" + "[antwerp2022_team_vita_glitter]sticker" "1" + "[antwerp2022_team_mibr_glitter]sticker" "1" + "[antwerp2022_team_imp_glitter]sticker" "1" + "[antwerp2022_team_bne_glitter]sticker" "1" + "[antwerp2022_team_pgl_glitter]sticker" "1" + } + "crate_sticker_pack_antwerp2022_challengers_legendary" + { + "[antwerp2022_team_ence_holo]sticker" "1" + "[antwerp2022_team_g2_holo]sticker" "1" + "[antwerp2022_team_forz_holo]sticker" "1" + "[antwerp2022_team_astr_holo]sticker" "1" + "[antwerp2022_team_vita_holo]sticker" "1" + "[antwerp2022_team_mibr_holo]sticker" "1" + "[antwerp2022_team_imp_holo]sticker" "1" + "[antwerp2022_team_bne_holo]sticker" "1" + "[antwerp2022_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_antwerp2022_challengers_ancient" + { + "[antwerp2022_team_ence_gold]sticker" "1" + "[antwerp2022_team_g2_gold]sticker" "1" + "[antwerp2022_team_forz_gold]sticker" "1" + "[antwerp2022_team_astr_gold]sticker" "1" + "[antwerp2022_team_vita_gold]sticker" "1" + "[antwerp2022_team_mibr_gold]sticker" "1" + "[antwerp2022_team_imp_gold]sticker" "1" + "[antwerp2022_team_bne_gold]sticker" "1" + "[antwerp2022_team_pgl_gold]sticker" "1" + } + "crate_sticker_pack_antwerp2022_challengers" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_antwerp2022_challengers_rare" "1" + "crate_sticker_pack_antwerp2022_challengers_mythical" "1" + "crate_sticker_pack_antwerp2022_challengers_legendary" "1" + "crate_sticker_pack_antwerp2022_challengers_ancient" "1" + } + "crate_sticker_pack_antwerp2022_contenders_rare" + { + "[antwerp2022_team_eter]sticker" "1" + "[antwerp2022_team_spir]sticker" "1" + "[antwerp2022_team_out]sticker" "1" + "[antwerp2022_team_cplx]sticker" "1" + "[antwerp2022_team_ihc]sticker" "1" + "[antwerp2022_team_ren]sticker" "1" + "[antwerp2022_team_liq]sticker" "1" + "[antwerp2022_team_nine]sticker" "1" + "[antwerp2022_team_pgl]sticker" "1" + } + "crate_sticker_pack_antwerp2022_contenders_mythical" + { + "[antwerp2022_team_eter_glitter]sticker" "1" + "[antwerp2022_team_spir_glitter]sticker" "1" + "[antwerp2022_team_out_glitter]sticker" "1" + "[antwerp2022_team_cplx_glitter]sticker" "1" + "[antwerp2022_team_ihc_glitter]sticker" "1" + "[antwerp2022_team_ren_glitter]sticker" "1" + "[antwerp2022_team_liq_glitter]sticker" "1" + "[antwerp2022_team_nine_glitter]sticker" "1" + "[antwerp2022_team_pgl_glitter]sticker" "1" + } + "crate_sticker_pack_antwerp2022_contenders_legendary" + { + "[antwerp2022_team_eter_holo]sticker" "1" + "[antwerp2022_team_spir_holo]sticker" "1" + "[antwerp2022_team_out_holo]sticker" "1" + "[antwerp2022_team_cplx_holo]sticker" "1" + "[antwerp2022_team_ihc_holo]sticker" "1" + "[antwerp2022_team_ren_holo]sticker" "1" + "[antwerp2022_team_liq_holo]sticker" "1" + "[antwerp2022_team_nine_holo]sticker" "1" + "[antwerp2022_team_pgl_holo]sticker" "1" + } + "crate_sticker_pack_antwerp2022_contenders_ancient" + { + "[antwerp2022_team_eter_gold]sticker" "1" + "[antwerp2022_team_spir_gold]sticker" "1" + "[antwerp2022_team_out_gold]sticker" "1" + "[antwerp2022_team_cplx_gold]sticker" "1" + "[antwerp2022_team_ihc_gold]sticker" "1" + "[antwerp2022_team_ren_gold]sticker" "1" + "[antwerp2022_team_liq_gold]sticker" "1" + "[antwerp2022_team_nine_gold]sticker" "1" + "[antwerp2022_team_pgl_gold]sticker" "1" + } + "crate_sticker_pack_antwerp2022_contenders" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_antwerp2022_contenders_rare" "1" + "crate_sticker_pack_antwerp2022_contenders_mythical" "1" + "crate_sticker_pack_antwerp2022_contenders_legendary" "1" + "crate_sticker_pack_antwerp2022_contenders_ancient" "1" + } + "crate_signature_pack_antwerp2022_group_legends_rare" + { + "[antwerp2022_signature_stavn_2]sticker" "1" + "[antwerp2022_signature_cadian_2]sticker" "1" + "[antwerp2022_signature_teses_2]sticker" "1" + "[antwerp2022_signature_refrezh_2]sticker" "1" + "[antwerp2022_signature_sjuush_2]sticker" "1" + "[antwerp2022_signature_roej_2]sticker" "1" + "[antwerp2022_signature_zyphon_2]sticker" "1" + "[antwerp2022_signature_hooxi_2]sticker" "1" + "[antwerp2022_signature_jabbi_2]sticker" "1" + "[antwerp2022_signature_nicoodoz_2]sticker" "1" + "[antwerp2022_signature_tabsen_2]sticker" "1" + "[antwerp2022_signature_tizian_2]sticker" "1" + "[antwerp2022_signature_faven_2]sticker" "1" + "[antwerp2022_signature_krimbo_2]sticker" "1" + "[antwerp2022_signature_syrson_2]sticker" "1" + "[antwerp2022_signature_interz_2]sticker" "1" + "[antwerp2022_signature_sh1ro_2]sticker" "1" + "[antwerp2022_signature_nafany_2]sticker" "1" + "[antwerp2022_signature_ax1le_2]sticker" "1" + "[antwerp2022_signature_hobbit_2]sticker" "1" + "[antwerp2022_signature_yuurih_2]sticker" "1" + "[antwerp2022_signature_art_2]sticker" "1" + "[antwerp2022_signature_kscerato_2]sticker" "1" + "[antwerp2022_signature_drop_2]sticker" "1" + "[antwerp2022_signature_saffee_2]sticker" "1" + "[antwerp2022_signature_rain_2]sticker" "1" + "[antwerp2022_signature_karrigan_2]sticker" "1" + "[antwerp2022_signature_twistzz_2]sticker" "1" + "[antwerp2022_signature_broky_2]sticker" "1" + "[antwerp2022_signature_ropz_2]sticker" "1" + "[antwerp2022_signature_rez_2]sticker" "1" + "[antwerp2022_signature_hampus_2]sticker" "1" + "[antwerp2022_signature_plopski_2]sticker" "1" + "[antwerp2022_signature_es3tag_2]sticker" "1" + "[antwerp2022_signature_brollan_2]sticker" "1" + "[antwerp2022_signature_s1mple_2]sticker" "1" + "[antwerp2022_signature_boombl4_2]sticker" "1" + "[antwerp2022_signature_perfecto_2]sticker" "1" + "[antwerp2022_signature_electronic_2]sticker" "1" + "[antwerp2022_signature_b1t_2]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_legends_mythical" + { + "[antwerp2022_signature_stavn_2_glitter]sticker" "1" + "[antwerp2022_signature_cadian_2_glitter]sticker" "1" + "[antwerp2022_signature_teses_2_glitter]sticker" "1" + "[antwerp2022_signature_refrezh_2_glitter]sticker" "1" + "[antwerp2022_signature_sjuush_2_glitter]sticker" "1" + "[antwerp2022_signature_roej_2_glitter]sticker" "1" + "[antwerp2022_signature_zyphon_2_glitter]sticker" "1" + "[antwerp2022_signature_hooxi_2_glitter]sticker" "1" + "[antwerp2022_signature_jabbi_2_glitter]sticker" "1" + "[antwerp2022_signature_nicoodoz_2_glitter]sticker" "1" + "[antwerp2022_signature_tabsen_2_glitter]sticker" "1" + "[antwerp2022_signature_tizian_2_glitter]sticker" "1" + "[antwerp2022_signature_faven_2_glitter]sticker" "1" + "[antwerp2022_signature_krimbo_2_glitter]sticker" "1" + "[antwerp2022_signature_syrson_2_glitter]sticker" "1" + "[antwerp2022_signature_interz_2_glitter]sticker" "1" + "[antwerp2022_signature_sh1ro_2_glitter]sticker" "1" + "[antwerp2022_signature_nafany_2_glitter]sticker" "1" + "[antwerp2022_signature_ax1le_2_glitter]sticker" "1" + "[antwerp2022_signature_hobbit_2_glitter]sticker" "1" + "[antwerp2022_signature_yuurih_2_glitter]sticker" "1" + "[antwerp2022_signature_art_2_glitter]sticker" "1" + "[antwerp2022_signature_kscerato_2_glitter]sticker" "1" + "[antwerp2022_signature_drop_2_glitter]sticker" "1" + "[antwerp2022_signature_saffee_2_glitter]sticker" "1" + "[antwerp2022_signature_rain_2_glitter]sticker" "1" + "[antwerp2022_signature_karrigan_2_glitter]sticker" "1" + "[antwerp2022_signature_twistzz_2_glitter]sticker" "1" + "[antwerp2022_signature_broky_2_glitter]sticker" "1" + "[antwerp2022_signature_ropz_2_glitter]sticker" "1" + "[antwerp2022_signature_rez_2_glitter]sticker" "1" + "[antwerp2022_signature_hampus_2_glitter]sticker" "1" + "[antwerp2022_signature_plopski_2_glitter]sticker" "1" + "[antwerp2022_signature_es3tag_2_glitter]sticker" "1" + "[antwerp2022_signature_brollan_2_glitter]sticker" "1" + "[antwerp2022_signature_s1mple_2_glitter]sticker" "1" + "[antwerp2022_signature_boombl4_2_glitter]sticker" "1" + "[antwerp2022_signature_perfecto_2_glitter]sticker" "1" + "[antwerp2022_signature_electronic_2_glitter]sticker" "1" + "[antwerp2022_signature_b1t_2_glitter]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_legends_legendary" + { + "[antwerp2022_signature_stavn_2_holo]sticker" "1" + "[antwerp2022_signature_cadian_2_holo]sticker" "1" + "[antwerp2022_signature_teses_2_holo]sticker" "1" + "[antwerp2022_signature_refrezh_2_holo]sticker" "1" + "[antwerp2022_signature_sjuush_2_holo]sticker" "1" + "[antwerp2022_signature_roej_2_holo]sticker" "1" + "[antwerp2022_signature_zyphon_2_holo]sticker" "1" + "[antwerp2022_signature_hooxi_2_holo]sticker" "1" + "[antwerp2022_signature_jabbi_2_holo]sticker" "1" + "[antwerp2022_signature_nicoodoz_2_holo]sticker" "1" + "[antwerp2022_signature_tabsen_2_holo]sticker" "1" + "[antwerp2022_signature_tizian_2_holo]sticker" "1" + "[antwerp2022_signature_faven_2_holo]sticker" "1" + "[antwerp2022_signature_krimbo_2_holo]sticker" "1" + "[antwerp2022_signature_syrson_2_holo]sticker" "1" + "[antwerp2022_signature_interz_2_holo]sticker" "1" + "[antwerp2022_signature_sh1ro_2_holo]sticker" "1" + "[antwerp2022_signature_nafany_2_holo]sticker" "1" + "[antwerp2022_signature_ax1le_2_holo]sticker" "1" + "[antwerp2022_signature_hobbit_2_holo]sticker" "1" + "[antwerp2022_signature_yuurih_2_holo]sticker" "1" + "[antwerp2022_signature_art_2_holo]sticker" "1" + "[antwerp2022_signature_kscerato_2_holo]sticker" "1" + "[antwerp2022_signature_drop_2_holo]sticker" "1" + "[antwerp2022_signature_saffee_2_holo]sticker" "1" + "[antwerp2022_signature_rain_2_holo]sticker" "1" + "[antwerp2022_signature_karrigan_2_holo]sticker" "1" + "[antwerp2022_signature_twistzz_2_holo]sticker" "1" + "[antwerp2022_signature_broky_2_holo]sticker" "1" + "[antwerp2022_signature_ropz_2_holo]sticker" "1" + "[antwerp2022_signature_rez_2_holo]sticker" "1" + "[antwerp2022_signature_hampus_2_holo]sticker" "1" + "[antwerp2022_signature_plopski_2_holo]sticker" "1" + "[antwerp2022_signature_es3tag_2_holo]sticker" "1" + "[antwerp2022_signature_brollan_2_holo]sticker" "1" + "[antwerp2022_signature_s1mple_2_holo]sticker" "1" + "[antwerp2022_signature_boombl4_2_holo]sticker" "1" + "[antwerp2022_signature_perfecto_2_holo]sticker" "1" + "[antwerp2022_signature_electronic_2_holo]sticker" "1" + "[antwerp2022_signature_b1t_2_holo]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_legends_gold" + { + "[antwerp2022_signature_stavn_2_gold]sticker" "1" + "[antwerp2022_signature_cadian_2_gold]sticker" "1" + "[antwerp2022_signature_teses_2_gold]sticker" "1" + "[antwerp2022_signature_refrezh_2_gold]sticker" "1" + "[antwerp2022_signature_sjuush_2_gold]sticker" "1" + "[antwerp2022_signature_roej_2_gold]sticker" "1" + "[antwerp2022_signature_zyphon_2_gold]sticker" "1" + "[antwerp2022_signature_hooxi_2_gold]sticker" "1" + "[antwerp2022_signature_jabbi_2_gold]sticker" "1" + "[antwerp2022_signature_nicoodoz_2_gold]sticker" "1" + "[antwerp2022_signature_tabsen_2_gold]sticker" "1" + "[antwerp2022_signature_tizian_2_gold]sticker" "1" + "[antwerp2022_signature_faven_2_gold]sticker" "1" + "[antwerp2022_signature_krimbo_2_gold]sticker" "1" + "[antwerp2022_signature_syrson_2_gold]sticker" "1" + "[antwerp2022_signature_interz_2_gold]sticker" "1" + "[antwerp2022_signature_sh1ro_2_gold]sticker" "1" + "[antwerp2022_signature_nafany_2_gold]sticker" "1" + "[antwerp2022_signature_ax1le_2_gold]sticker" "1" + "[antwerp2022_signature_hobbit_2_gold]sticker" "1" + "[antwerp2022_signature_yuurih_2_gold]sticker" "1" + "[antwerp2022_signature_art_2_gold]sticker" "1" + "[antwerp2022_signature_kscerato_2_gold]sticker" "1" + "[antwerp2022_signature_drop_2_gold]sticker" "1" + "[antwerp2022_signature_saffee_2_gold]sticker" "1" + "[antwerp2022_signature_rain_2_gold]sticker" "1" + "[antwerp2022_signature_karrigan_2_gold]sticker" "1" + "[antwerp2022_signature_twistzz_2_gold]sticker" "1" + "[antwerp2022_signature_broky_2_gold]sticker" "1" + "[antwerp2022_signature_ropz_2_gold]sticker" "1" + "[antwerp2022_signature_rez_2_gold]sticker" "1" + "[antwerp2022_signature_hampus_2_gold]sticker" "1" + "[antwerp2022_signature_plopski_2_gold]sticker" "1" + "[antwerp2022_signature_es3tag_2_gold]sticker" "1" + "[antwerp2022_signature_brollan_2_gold]sticker" "1" + "[antwerp2022_signature_s1mple_2_gold]sticker" "1" + "[antwerp2022_signature_boombl4_2_gold]sticker" "1" + "[antwerp2022_signature_perfecto_2_gold]sticker" "1" + "[antwerp2022_signature_electronic_2_gold]sticker" "1" + "[antwerp2022_signature_b1t_2_gold]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_challengers_rare" + { + "[antwerp2022_signature_snappi_1]sticker" "1" + "[antwerp2022_signature_dycha_1]sticker" "1" + "[antwerp2022_signature_spinx_1]sticker" "1" + "[antwerp2022_signature_hades_1]sticker" "1" + "[antwerp2022_signature_maden_1]sticker" "1" + "[antwerp2022_signature_aleksib_1]sticker" "1" + "[antwerp2022_signature_hunter_1]sticker" "1" + "[antwerp2022_signature_jackz_1]sticker" "1" + "[antwerp2022_signature_m0nesy_1]sticker" "1" + "[antwerp2022_signature_niko_1]sticker" "1" + "[antwerp2022_signature_jerry_1]sticker" "1" + "[antwerp2022_signature_zorte_1]sticker" "1" + "[antwerp2022_signature_kensi_1]sticker" "1" + "[antwerp2022_signature_norwi_1]sticker" "1" + "[antwerp2022_signature_shalfey_1]sticker" "1" + "[antwerp2022_signature_gla1ve_1]sticker" "1" + "[antwerp2022_signature_blamef_1]sticker" "1" + "[antwerp2022_signature_k0nfig_1]sticker" "1" + "[antwerp2022_signature_xyp9x_1]sticker" "1" + "[antwerp2022_signature_farlig_1]sticker" "1" + "[antwerp2022_signature_apex_1]sticker" "1" + "[antwerp2022_signature_misutaaa_1]sticker" "1" + "[antwerp2022_signature_dupreeh_1]sticker" "1" + "[antwerp2022_signature_magisk_1]sticker" "1" + "[antwerp2022_signature_zywoo_1]sticker" "1" + "[antwerp2022_signature_wood7_1]sticker" "1" + "[antwerp2022_signature_chelo_1]sticker" "1" + "[antwerp2022_signature_tuurtle_1]sticker" "1" + "[antwerp2022_signature_exit_1]sticker" "1" + "[antwerp2022_signature_jota_1]sticker" "1" + "[antwerp2022_signature_fallen_1]sticker" "1" + "[antwerp2022_signature_fer_1]sticker" "1" + "[antwerp2022_signature_fnx_1]sticker" "1" + "[antwerp2022_signature_boltz_1]sticker" "1" + "[antwerp2022_signature_vini_1]sticker" "1" + "[antwerp2022_signature_rigon_1]sticker" "1" + "[antwerp2022_signature_juanflatroo_1]sticker" "1" + "[antwerp2022_signature_sener1_1]sticker" "1" + "[antwerp2022_signature_sinnopsyy_1]sticker" "1" + "[antwerp2022_signature_gxx_1]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_challengers_mythical" + { + "[antwerp2022_signature_snappi_1_glitter]sticker" "1" + "[antwerp2022_signature_dycha_1_glitter]sticker" "1" + "[antwerp2022_signature_spinx_1_glitter]sticker" "1" + "[antwerp2022_signature_hades_1_glitter]sticker" "1" + "[antwerp2022_signature_maden_1_glitter]sticker" "1" + "[antwerp2022_signature_aleksib_1_glitter]sticker" "1" + "[antwerp2022_signature_hunter_1_glitter]sticker" "1" + "[antwerp2022_signature_jackz_1_glitter]sticker" "1" + "[antwerp2022_signature_m0nesy_1_glitter]sticker" "1" + "[antwerp2022_signature_niko_1_glitter]sticker" "1" + "[antwerp2022_signature_jerry_1_glitter]sticker" "1" + "[antwerp2022_signature_zorte_1_glitter]sticker" "1" + "[antwerp2022_signature_kensi_1_glitter]sticker" "1" + "[antwerp2022_signature_norwi_1_glitter]sticker" "1" + "[antwerp2022_signature_shalfey_1_glitter]sticker" "1" + "[antwerp2022_signature_gla1ve_1_glitter]sticker" "1" + "[antwerp2022_signature_blamef_1_glitter]sticker" "1" + "[antwerp2022_signature_k0nfig_1_glitter]sticker" "1" + "[antwerp2022_signature_xyp9x_1_glitter]sticker" "1" + "[antwerp2022_signature_farlig_1_glitter]sticker" "1" + "[antwerp2022_signature_apex_1_glitter]sticker" "1" + "[antwerp2022_signature_misutaaa_1_glitter]sticker" "1" + "[antwerp2022_signature_dupreeh_1_glitter]sticker" "1" + "[antwerp2022_signature_magisk_1_glitter]sticker" "1" + "[antwerp2022_signature_zywoo_1_glitter]sticker" "1" + "[antwerp2022_signature_wood7_1_glitter]sticker" "1" + "[antwerp2022_signature_chelo_1_glitter]sticker" "1" + "[antwerp2022_signature_tuurtle_1_glitter]sticker" "1" + "[antwerp2022_signature_exit_1_glitter]sticker" "1" + "[antwerp2022_signature_jota_1_glitter]sticker" "1" + "[antwerp2022_signature_fallen_1_glitter]sticker" "1" + "[antwerp2022_signature_fer_1_glitter]sticker" "1" + "[antwerp2022_signature_fnx_1_glitter]sticker" "1" + "[antwerp2022_signature_boltz_1_glitter]sticker" "1" + "[antwerp2022_signature_vini_1_glitter]sticker" "1" + "[antwerp2022_signature_rigon_1_glitter]sticker" "1" + "[antwerp2022_signature_juanflatroo_1_glitter]sticker" "1" + "[antwerp2022_signature_sener1_1_glitter]sticker" "1" + "[antwerp2022_signature_sinnopsyy_1_glitter]sticker" "1" + "[antwerp2022_signature_gxx_1_glitter]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_challengers_legendary" + { + "[antwerp2022_signature_snappi_1_holo]sticker" "1" + "[antwerp2022_signature_dycha_1_holo]sticker" "1" + "[antwerp2022_signature_spinx_1_holo]sticker" "1" + "[antwerp2022_signature_hades_1_holo]sticker" "1" + "[antwerp2022_signature_maden_1_holo]sticker" "1" + "[antwerp2022_signature_aleksib_1_holo]sticker" "1" + "[antwerp2022_signature_hunter_1_holo]sticker" "1" + "[antwerp2022_signature_jackz_1_holo]sticker" "1" + "[antwerp2022_signature_m0nesy_1_holo]sticker" "1" + "[antwerp2022_signature_niko_1_holo]sticker" "1" + "[antwerp2022_signature_jerry_1_holo]sticker" "1" + "[antwerp2022_signature_zorte_1_holo]sticker" "1" + "[antwerp2022_signature_kensi_1_holo]sticker" "1" + "[antwerp2022_signature_norwi_1_holo]sticker" "1" + "[antwerp2022_signature_shalfey_1_holo]sticker" "1" + "[antwerp2022_signature_gla1ve_1_holo]sticker" "1" + "[antwerp2022_signature_blamef_1_holo]sticker" "1" + "[antwerp2022_signature_k0nfig_1_holo]sticker" "1" + "[antwerp2022_signature_xyp9x_1_holo]sticker" "1" + "[antwerp2022_signature_farlig_1_holo]sticker" "1" + "[antwerp2022_signature_apex_1_holo]sticker" "1" + "[antwerp2022_signature_misutaaa_1_holo]sticker" "1" + "[antwerp2022_signature_dupreeh_1_holo]sticker" "1" + "[antwerp2022_signature_magisk_1_holo]sticker" "1" + "[antwerp2022_signature_zywoo_1_holo]sticker" "1" + "[antwerp2022_signature_wood7_1_holo]sticker" "1" + "[antwerp2022_signature_chelo_1_holo]sticker" "1" + "[antwerp2022_signature_tuurtle_1_holo]sticker" "1" + "[antwerp2022_signature_exit_1_holo]sticker" "1" + "[antwerp2022_signature_jota_1_holo]sticker" "1" + "[antwerp2022_signature_fallen_1_holo]sticker" "1" + "[antwerp2022_signature_fer_1_holo]sticker" "1" + "[antwerp2022_signature_fnx_1_holo]sticker" "1" + "[antwerp2022_signature_boltz_1_holo]sticker" "1" + "[antwerp2022_signature_vini_1_holo]sticker" "1" + "[antwerp2022_signature_rigon_1_holo]sticker" "1" + "[antwerp2022_signature_juanflatroo_1_holo]sticker" "1" + "[antwerp2022_signature_sener1_1_holo]sticker" "1" + "[antwerp2022_signature_sinnopsyy_1_holo]sticker" "1" + "[antwerp2022_signature_gxx_1_holo]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_challengers_gold" + { + "[antwerp2022_signature_snappi_1_gold]sticker" "1" + "[antwerp2022_signature_dycha_1_gold]sticker" "1" + "[antwerp2022_signature_spinx_1_gold]sticker" "1" + "[antwerp2022_signature_hades_1_gold]sticker" "1" + "[antwerp2022_signature_maden_1_gold]sticker" "1" + "[antwerp2022_signature_aleksib_1_gold]sticker" "1" + "[antwerp2022_signature_hunter_1_gold]sticker" "1" + "[antwerp2022_signature_jackz_1_gold]sticker" "1" + "[antwerp2022_signature_m0nesy_1_gold]sticker" "1" + "[antwerp2022_signature_niko_1_gold]sticker" "1" + "[antwerp2022_signature_jerry_1_gold]sticker" "1" + "[antwerp2022_signature_zorte_1_gold]sticker" "1" + "[antwerp2022_signature_kensi_1_gold]sticker" "1" + "[antwerp2022_signature_norwi_1_gold]sticker" "1" + "[antwerp2022_signature_shalfey_1_gold]sticker" "1" + "[antwerp2022_signature_gla1ve_1_gold]sticker" "1" + "[antwerp2022_signature_blamef_1_gold]sticker" "1" + "[antwerp2022_signature_k0nfig_1_gold]sticker" "1" + "[antwerp2022_signature_xyp9x_1_gold]sticker" "1" + "[antwerp2022_signature_farlig_1_gold]sticker" "1" + "[antwerp2022_signature_apex_1_gold]sticker" "1" + "[antwerp2022_signature_misutaaa_1_gold]sticker" "1" + "[antwerp2022_signature_dupreeh_1_gold]sticker" "1" + "[antwerp2022_signature_magisk_1_gold]sticker" "1" + "[antwerp2022_signature_zywoo_1_gold]sticker" "1" + "[antwerp2022_signature_wood7_1_gold]sticker" "1" + "[antwerp2022_signature_chelo_1_gold]sticker" "1" + "[antwerp2022_signature_tuurtle_1_gold]sticker" "1" + "[antwerp2022_signature_exit_1_gold]sticker" "1" + "[antwerp2022_signature_jota_1_gold]sticker" "1" + "[antwerp2022_signature_fallen_1_gold]sticker" "1" + "[antwerp2022_signature_fer_1_gold]sticker" "1" + "[antwerp2022_signature_fnx_1_gold]sticker" "1" + "[antwerp2022_signature_boltz_1_gold]sticker" "1" + "[antwerp2022_signature_vini_1_gold]sticker" "1" + "[antwerp2022_signature_rigon_1_gold]sticker" "1" + "[antwerp2022_signature_juanflatroo_1_gold]sticker" "1" + "[antwerp2022_signature_sener1_1_gold]sticker" "1" + "[antwerp2022_signature_sinnopsyy_1_gold]sticker" "1" + "[antwerp2022_signature_gxx_1_gold]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_contenders_rare" + { + "[antwerp2022_signature_xantares_4]sticker" "1" + "[antwerp2022_signature_woxic_4]sticker" "1" + "[antwerp2022_signature_imorr_4]sticker" "1" + "[antwerp2022_signature_calyx_4]sticker" "1" + "[antwerp2022_signature_xfl0ud_4]sticker" "1" + "[antwerp2022_signature_chopper_4]sticker" "1" + "[antwerp2022_signature_magixx_4]sticker" "1" + "[antwerp2022_signature_degster_4]sticker" "1" + "[antwerp2022_signature_patsi_4]sticker" "1" + "[antwerp2022_signature_s1ren_4]sticker" "1" + "[antwerp2022_signature_jame_4]sticker" "1" + "[antwerp2022_signature_qikert_4]sticker" "1" + "[antwerp2022_signature_buster_4]sticker" "1" + "[antwerp2022_signature_yekindar_4]sticker" "1" + "[antwerp2022_signature_fl1t_4]sticker" "1" + "[antwerp2022_signature_fang_4]sticker" "1" + "[antwerp2022_signature_floppy_4]sticker" "1" + "[antwerp2022_signature_grim_4]sticker" "1" + "[antwerp2022_signature_jt_4]sticker" "1" + "[antwerp2022_signature_junior_4]sticker" "1" + "[antwerp2022_signature_blitz_4]sticker" "1" + "[antwerp2022_signature_kabal_4]sticker" "1" + "[antwerp2022_signature_nin9_4]sticker" "1" + "[antwerp2022_signature_sk0r_4]sticker" "1" + "[antwerp2022_signature_techno4k_4]sticker" "1" + "[antwerp2022_signature_ins_4]sticker" "1" + "[antwerp2022_signature_sico_4]sticker" "1" + "[antwerp2022_signature_liazz_4]sticker" "1" + "[antwerp2022_signature_hatz_4]sticker" "1" + "[antwerp2022_signature_alistair_4]sticker" "1" + "[antwerp2022_signature_shox_4]sticker" "1" + "[antwerp2022_signature_elige_4]sticker" "1" + "[antwerp2022_signature_osee_4]sticker" "1" + "[antwerp2022_signature_nitro_4]sticker" "1" + "[antwerp2022_signature_naf_4]sticker" "1" + "[antwerp2022_signature_rox_4]sticker" "1" + "[antwerp2022_signature_luken_4]sticker" "1" + "[antwerp2022_signature_max_4]sticker" "1" + "[antwerp2022_signature_dgt_4]sticker" "1" + "[antwerp2022_signature_dav1d_4]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_contenders_mythical" + { + "[antwerp2022_signature_xantares_4_glitter]sticker" "1" + "[antwerp2022_signature_woxic_4_glitter]sticker" "1" + "[antwerp2022_signature_imorr_4_glitter]sticker" "1" + "[antwerp2022_signature_calyx_4_glitter]sticker" "1" + "[antwerp2022_signature_xfl0ud_4_glitter]sticker" "1" + "[antwerp2022_signature_chopper_4_glitter]sticker" "1" + "[antwerp2022_signature_magixx_4_glitter]sticker" "1" + "[antwerp2022_signature_degster_4_glitter]sticker" "1" + "[antwerp2022_signature_patsi_4_glitter]sticker" "1" + "[antwerp2022_signature_s1ren_4_glitter]sticker" "1" + "[antwerp2022_signature_jame_4_glitter]sticker" "1" + "[antwerp2022_signature_qikert_4_glitter]sticker" "1" + "[antwerp2022_signature_buster_4_glitter]sticker" "1" + "[antwerp2022_signature_yekindar_4_glitter]sticker" "1" + "[antwerp2022_signature_fl1t_4_glitter]sticker" "1" + "[antwerp2022_signature_fang_4_glitter]sticker" "1" + "[antwerp2022_signature_floppy_4_glitter]sticker" "1" + "[antwerp2022_signature_grim_4_glitter]sticker" "1" + "[antwerp2022_signature_jt_4_glitter]sticker" "1" + "[antwerp2022_signature_junior_4_glitter]sticker" "1" + "[antwerp2022_signature_blitz_4_glitter]sticker" "1" + "[antwerp2022_signature_kabal_4_glitter]sticker" "1" + "[antwerp2022_signature_nin9_4_glitter]sticker" "1" + "[antwerp2022_signature_sk0r_4_glitter]sticker" "1" + "[antwerp2022_signature_techno4k_4_glitter]sticker" "1" + "[antwerp2022_signature_ins_4_glitter]sticker" "1" + "[antwerp2022_signature_sico_4_glitter]sticker" "1" + "[antwerp2022_signature_liazz_4_glitter]sticker" "1" + "[antwerp2022_signature_hatz_4_glitter]sticker" "1" + "[antwerp2022_signature_alistair_4_glitter]sticker" "1" + "[antwerp2022_signature_shox_4_glitter]sticker" "1" + "[antwerp2022_signature_elige_4_glitter]sticker" "1" + "[antwerp2022_signature_osee_4_glitter]sticker" "1" + "[antwerp2022_signature_nitro_4_glitter]sticker" "1" + "[antwerp2022_signature_naf_4_glitter]sticker" "1" + "[antwerp2022_signature_rox_4_glitter]sticker" "1" + "[antwerp2022_signature_luken_4_glitter]sticker" "1" + "[antwerp2022_signature_max_4_glitter]sticker" "1" + "[antwerp2022_signature_dgt_4_glitter]sticker" "1" + "[antwerp2022_signature_dav1d_4_glitter]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_contenders_legendary" + { + "[antwerp2022_signature_xantares_4_holo]sticker" "1" + "[antwerp2022_signature_woxic_4_holo]sticker" "1" + "[antwerp2022_signature_imorr_4_holo]sticker" "1" + "[antwerp2022_signature_calyx_4_holo]sticker" "1" + "[antwerp2022_signature_xfl0ud_4_holo]sticker" "1" + "[antwerp2022_signature_chopper_4_holo]sticker" "1" + "[antwerp2022_signature_magixx_4_holo]sticker" "1" + "[antwerp2022_signature_degster_4_holo]sticker" "1" + "[antwerp2022_signature_patsi_4_holo]sticker" "1" + "[antwerp2022_signature_s1ren_4_holo]sticker" "1" + "[antwerp2022_signature_jame_4_holo]sticker" "1" + "[antwerp2022_signature_qikert_4_holo]sticker" "1" + "[antwerp2022_signature_buster_4_holo]sticker" "1" + "[antwerp2022_signature_yekindar_4_holo]sticker" "1" + "[antwerp2022_signature_fl1t_4_holo]sticker" "1" + "[antwerp2022_signature_fang_4_holo]sticker" "1" + "[antwerp2022_signature_floppy_4_holo]sticker" "1" + "[antwerp2022_signature_grim_4_holo]sticker" "1" + "[antwerp2022_signature_jt_4_holo]sticker" "1" + "[antwerp2022_signature_junior_4_holo]sticker" "1" + "[antwerp2022_signature_blitz_4_holo]sticker" "1" + "[antwerp2022_signature_kabal_4_holo]sticker" "1" + "[antwerp2022_signature_nin9_4_holo]sticker" "1" + "[antwerp2022_signature_sk0r_4_holo]sticker" "1" + "[antwerp2022_signature_techno4k_4_holo]sticker" "1" + "[antwerp2022_signature_ins_4_holo]sticker" "1" + "[antwerp2022_signature_sico_4_holo]sticker" "1" + "[antwerp2022_signature_liazz_4_holo]sticker" "1" + "[antwerp2022_signature_hatz_4_holo]sticker" "1" + "[antwerp2022_signature_alistair_4_holo]sticker" "1" + "[antwerp2022_signature_shox_4_holo]sticker" "1" + "[antwerp2022_signature_elige_4_holo]sticker" "1" + "[antwerp2022_signature_osee_4_holo]sticker" "1" + "[antwerp2022_signature_nitro_4_holo]sticker" "1" + "[antwerp2022_signature_naf_4_holo]sticker" "1" + "[antwerp2022_signature_rox_4_holo]sticker" "1" + "[antwerp2022_signature_luken_4_holo]sticker" "1" + "[antwerp2022_signature_max_4_holo]sticker" "1" + "[antwerp2022_signature_dgt_4_holo]sticker" "1" + "[antwerp2022_signature_dav1d_4_holo]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_contenders_gold" + { + "[antwerp2022_signature_xantares_4_gold]sticker" "1" + "[antwerp2022_signature_woxic_4_gold]sticker" "1" + "[antwerp2022_signature_imorr_4_gold]sticker" "1" + "[antwerp2022_signature_calyx_4_gold]sticker" "1" + "[antwerp2022_signature_xfl0ud_4_gold]sticker" "1" + "[antwerp2022_signature_chopper_4_gold]sticker" "1" + "[antwerp2022_signature_magixx_4_gold]sticker" "1" + "[antwerp2022_signature_degster_4_gold]sticker" "1" + "[antwerp2022_signature_patsi_4_gold]sticker" "1" + "[antwerp2022_signature_s1ren_4_gold]sticker" "1" + "[antwerp2022_signature_jame_4_gold]sticker" "1" + "[antwerp2022_signature_qikert_4_gold]sticker" "1" + "[antwerp2022_signature_buster_4_gold]sticker" "1" + "[antwerp2022_signature_yekindar_4_gold]sticker" "1" + "[antwerp2022_signature_fl1t_4_gold]sticker" "1" + "[antwerp2022_signature_fang_4_gold]sticker" "1" + "[antwerp2022_signature_floppy_4_gold]sticker" "1" + "[antwerp2022_signature_grim_4_gold]sticker" "1" + "[antwerp2022_signature_jt_4_gold]sticker" "1" + "[antwerp2022_signature_junior_4_gold]sticker" "1" + "[antwerp2022_signature_blitz_4_gold]sticker" "1" + "[antwerp2022_signature_kabal_4_gold]sticker" "1" + "[antwerp2022_signature_nin9_4_gold]sticker" "1" + "[antwerp2022_signature_sk0r_4_gold]sticker" "1" + "[antwerp2022_signature_techno4k_4_gold]sticker" "1" + "[antwerp2022_signature_ins_4_gold]sticker" "1" + "[antwerp2022_signature_sico_4_gold]sticker" "1" + "[antwerp2022_signature_liazz_4_gold]sticker" "1" + "[antwerp2022_signature_hatz_4_gold]sticker" "1" + "[antwerp2022_signature_alistair_4_gold]sticker" "1" + "[antwerp2022_signature_shox_4_gold]sticker" "1" + "[antwerp2022_signature_elige_4_gold]sticker" "1" + "[antwerp2022_signature_osee_4_gold]sticker" "1" + "[antwerp2022_signature_nitro_4_gold]sticker" "1" + "[antwerp2022_signature_naf_4_gold]sticker" "1" + "[antwerp2022_signature_rox_4_gold]sticker" "1" + "[antwerp2022_signature_luken_4_gold]sticker" "1" + "[antwerp2022_signature_max_4_gold]sticker" "1" + "[antwerp2022_signature_dgt_4_gold]sticker" "1" + "[antwerp2022_signature_dav1d_4_gold]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_champions_rare" + { + "[antwerp2022_signature_rain_32]sticker" "1" + "[antwerp2022_signature_karrigan_32]sticker" "1" + "[antwerp2022_signature_twistzz_32]sticker" "1" + "[antwerp2022_signature_broky_32]sticker" "1" + "[antwerp2022_signature_ropz_32]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_champions_mythical" + { + "[antwerp2022_signature_rain_32_glitter]sticker" "1" + "[antwerp2022_signature_karrigan_32_glitter]sticker" "1" + "[antwerp2022_signature_twistzz_32_glitter]sticker" "1" + "[antwerp2022_signature_broky_32_glitter]sticker" "1" + "[antwerp2022_signature_ropz_32_glitter]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_champions_legendary" + { + "[antwerp2022_signature_rain_32_holo]sticker" "1" + "[antwerp2022_signature_karrigan_32_holo]sticker" "1" + "[antwerp2022_signature_twistzz_32_holo]sticker" "1" + "[antwerp2022_signature_broky_32_holo]sticker" "1" + "[antwerp2022_signature_ropz_32_holo]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_champions_gold" + { + "[antwerp2022_signature_rain_32_gold]sticker" "1" + "[antwerp2022_signature_karrigan_32_gold]sticker" "1" + "[antwerp2022_signature_twistzz_32_gold]sticker" "1" + "[antwerp2022_signature_broky_32_gold]sticker" "1" + "[antwerp2022_signature_ropz_32_gold]sticker" "1" + } + "crate_signature_pack_antwerp2022_group_players_collection_legends" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_antwerp2022_group_legends_rare" "1" + "crate_signature_pack_antwerp2022_group_legends_mythical" "1" + "crate_signature_pack_antwerp2022_group_legends_legendary" "1" + "crate_signature_pack_antwerp2022_group_legends_gold" "1" + } + "crate_signature_pack_antwerp2022_group_players_collection_challengers" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_antwerp2022_group_challengers_rare" "1" + "crate_signature_pack_antwerp2022_group_challengers_mythical" "1" + "crate_signature_pack_antwerp2022_group_challengers_legendary" "1" + "crate_signature_pack_antwerp2022_group_challengers_gold" "1" + } + "crate_signature_pack_antwerp2022_group_players_collection_contenders" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_antwerp2022_group_contenders_rare" "1" + "crate_signature_pack_antwerp2022_group_contenders_mythical" "1" + "crate_signature_pack_antwerp2022_group_contenders_legendary" "1" + "crate_signature_pack_antwerp2022_group_contenders_gold" "1" + } + "crate_signature_pack_antwerp2022_group_players_collection_champions" + { + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_antwerp2022_group_champions_rare" "1" + "crate_signature_pack_antwerp2022_group_champions_mythical" "1" + "crate_signature_pack_antwerp2022_group_champions_legendary" "1" + "crate_signature_pack_antwerp2022_group_champions_gold" "1" + } + "crate_antwerp2022_promo_de_inferno" + { + "set_inferno_2" "1" + } + "crate_antwerp2022_promo_de_mirage" + { + "set_mirage_2021" "1" + } + "crate_antwerp2022_promo_de_dust2" + { + "set_dust_2_2021" "1" + } + "crate_antwerp2022_promo_de_overpass" { - "name" "cluj2015_team_dhc_gold" - "item_name" "#StickerKit_cluj2015_team_dhc_gold" - "description_string" "#StickerKit_desc_cluj2015_team_dhc_gold" - "sticker_material" "cluj2015/dhc_gold" - "item_rarity" "legendary" - "tournament_event_id" "8" + "set_overpass" "1" } - "962" + "crate_antwerp2022_promo_de_ancient" { - "name" "pinups_ivette" - "item_name" "#StickerKit_pinups_ivette" - "description_string" "#StickerKit_desc_pinups_ivette" - "sticker_material" "pinups_capsule/ivette" - "item_rarity" "rare" + "set_op10_ancient" "1" } - "963" + "crate_antwerp2022_promo_de_nuke" { - "name" "pinups_kimberly" - "item_name" "#StickerKit_pinups_kimberly" - "description_string" "#StickerKit_desc_pinups_kimberly" - "sticker_material" "pinups_capsule/kimberly" - "item_rarity" "rare" + "set_nuke_2" "1" } - "964" + "crate_antwerp2022_promo_de_vertigo" { - "name" "pinups_martha" - "item_name" "#StickerKit_pinups_martha" - "description_string" "#StickerKit_desc_pinups_martha" - "sticker_material" "pinups_capsule/martha" - "item_rarity" "rare" + "set_vertigo_2021" "1" } - "965" + } + "items" + { + "4825" { - "name" "pinups_merietta" - "item_name" "#StickerKit_pinups_merietta" - "description_string" "#StickerKit_desc_pinups_merietta" - "sticker_material" "pinups_capsule/merietta" - "item_rarity" "rare" + "item_name" "#CSGO_TournamentPass_antwerp2022" + "name" "tournament_pass_antwerp2022" + "item_description" "#CSGO_TournamentPass_antwerp2022_Desc" + "image_inventory" "econ/status_icons/pgl_pickem_2022_pass" + "prefab" "antwerp2022_tournament_pass_prefab antwerp2022_tournament_steamtv_items" } - "966" + "4830" { - "name" "pinups_scherry" - "item_name" "#StickerKit_pinups_scherry" - "description_string" "#StickerKit_desc_pinups_scherry" - "sticker_material" "pinups_capsule/scherry" - "item_rarity" "rare" + "item_name" "#CSGO_TournamentPass_antwerp2022_pack" + "name" "tournament_pass_antwerp2022_pack" + "item_description" "#CSGO_TournamentPass_antwerp2022_pack_Desc" + "image_inventory" "econ/status_icons/pgl_pickem_2022_pass_pack" + "prefab" "antwerp2022_tournament_pass_prefab antwerp2022_tournament_steamtv_items" } - "967" + "4831" { - "name" "pinups_tamara" - "item_name" "#StickerKit_pinups_tamara" - "description_string" "#StickerKit_desc_pinups_tamara" - "sticker_material" "pinups_capsule/tamara" - "item_rarity" "rare" + "item_name" "#CSGO_TournamentPass_antwerp2022_charge" + "name" "tournament_pass_antwerp2022_charge" + "item_description" "#CSGO_TournamentPass_antwerp2022_charge_Desc" + "image_inventory" "econ/status_icons/pgl_pickem_2022_pass_charge" + "prefab" "antwerp2022_tournament_pass_prefab" + "attributes" + { + "cannot trade" "1" + } } - "968" + "4826" { - "name" "pinups_ivette_holo" - "item_name" "#StickerKit_pinups_ivette_holo" - "description_string" "#StickerKit_desc_pinups_ivette_holo" - "sticker_material" "pinups_capsule/ivette_holo" - "item_rarity" "mythical" + "name" "tournament_journal_antwerp2022" + "item_name" "#CSGO_TournamentJournal_antwerp2022" + "prefab" "antwerp2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2022_bronze" + "attributes" + { + "upgrade level" "0" + "upgrade threshold" "3" + "pedestal display model" "models/inventory_items/pgl_pickem_2022_bronze.mdl" + } } - "969" + "4827" { - "name" "pinups_kimberly_holo" - "item_name" "#StickerKit_pinups_kimberly_holo" - "description_string" "#StickerKit_desc_pinups_kimberly_holo" - "sticker_material" "pinups_capsule/kimberly_holo" - "item_rarity" "mythical" + "name" "tournament_journal_antwerp2022_silver" + "item_name" "#CSGO_TournamentJournal_antwerp2022_Silver" + "prefab" "antwerp2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2022_silver" + "attributes" + { + "upgrade level" "1" + "upgrade threshold" "6" + "pedestal display model" "models/inventory_items/pgl_pickem_2022_silver.mdl" + } } - "970" + "4828" { - "name" "pinups_martha_holo" - "item_name" "#StickerKit_pinups_martha_holo" - "description_string" "#StickerKit_desc_pinups_martha_holo" - "sticker_material" "pinups_capsule/martha_holo" - "item_rarity" "mythical" + "name" "tournament_journal_antwerp2022_gold" + "item_name" "#CSGO_TournamentJournal_antwerp2022_Gold" + "prefab" "antwerp2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2022_gold" + "attributes" + { + "upgrade level" "2" + "upgrade threshold" "9" + "pedestal display model" "models/inventory_items/pgl_pickem_2022_gold.mdl" + } } - "971" + "4829" { - "name" "pinups_merietta_holo" - "item_name" "#StickerKit_pinups_merietta_holo" - "description_string" "#StickerKit_desc_pinups_merietta_holo" - "sticker_material" "pinups_capsule/merietta_holo" - "item_rarity" "mythical" + "name" "tournament_journal_antwerp2022_crystal" + "item_name" "#CSGO_TournamentJournal_antwerp2022_Crystal" + "prefab" "antwerp2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/pgl_pickem_2022_crystal" + "attributes" + { + "upgrade level" "3" + "pedestal display model" "models/inventory_items/pgl_pickem_2022_crystal.mdl" + } } - "972" + "4832" { - "name" "pinups_scherry_holo" - "item_name" "#StickerKit_pinups_scherry_holo" - "description_string" "#StickerKit_desc_pinups_scherry_holo" - "sticker_material" "pinups_capsule/scherry_holo" - "item_rarity" "mythical" + "item_name" "#CSGO_crate_sticker_pack_antwerp2022_legends" + "name" "crate_sticker_pack_antwerp2022_legends" + "item_description" "#CSGO_crate_sticker_pack_antwerp2022_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_antwerp2022_legends" + "prefab" "antwerp2022_sticker_capsule_prefab antwerp2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "341" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_antwerp2022_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_antwerp2022_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "973" + "4833" { - "name" "pinups_tamara_holo" - "item_name" "#StickerKit_pinups_tamara_holo" - "description_string" "#StickerKit_desc_pinups_tamara_holo" - "sticker_material" "pinups_capsule/tamara_holo" - "item_rarity" "mythical" + "item_name" "#CSGO_crate_sticker_pack_antwerp2022_challengers" + "name" "crate_sticker_pack_antwerp2022_challengers" + "item_description" "#CSGO_crate_sticker_pack_antwerp2022_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_antwerp2022_challengers" + "prefab" "antwerp2022_sticker_capsule_prefab antwerp2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "342" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_antwerp2022_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_antwerp2022_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "974" + "4834" { - "name" "slid3_boom" - "item_name" "#StickerKit_slid3_boom" - "description_string" "#StickerKit_desc_slid3_boom" - "sticker_material" "slid3_capsule/boom" - "item_rarity" "rare" + "item_name" "#CSGO_crate_sticker_pack_antwerp2022_contenders" + "name" "crate_sticker_pack_antwerp2022_contenders" + "item_description" "#CSGO_crate_sticker_pack_antwerp2022_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_antwerp2022_contenders" + "prefab" "antwerp2022_sticker_capsule_prefab antwerp2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "343" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_antwerp2022_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_antwerp2022_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "975" + "4842" { - "name" "slid3_boom_holo" - "item_name" "#StickerKit_slid3_boom_holo" - "description_string" "#StickerKit_desc_slid3_boom_holo" - "sticker_material" "slid3_capsule/boom_holo" - "item_rarity" "mythical" + "item_name" "#CSGO_crate_signature_pack_antwerp2022_group_legends" + "name" "crate_signature_pack_antwerp2022_group_legends" + "item_description" "#CSGO_crate_signature_pack_antwerp2022_group_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_legends" + "prefab" "antwerp2022_signature_capsule_prefab antwerp2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "351" + } + } } - "976" + "4843" { - "name" "slid3_boom_foil" - "item_name" "#StickerKit_slid3_boom_foil" - "description_string" "#StickerKit_desc_slid3_boom_foil" - "sticker_material" "slid3_capsule/boom_foil" - "item_rarity" "legendary" + "item_name" "#CSGO_crate_signature_pack_antwerp2022_group_challengers" + "name" "crate_signature_pack_antwerp2022_group_challengers" + "item_description" "#CSGO_crate_signature_pack_antwerp2022_group_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_challengers" + "prefab" "antwerp2022_signature_capsule_prefab antwerp2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "352" + } + } } - "977" + "4844" { - "name" "slid3_countdown" - "item_name" "#StickerKit_slid3_countdown" - "description_string" "#StickerKit_desc_slid3_countdown" - "sticker_material" "slid3_capsule/countdown" - "item_rarity" "rare" + "item_name" "#CSGO_crate_signature_pack_antwerp2022_group_contenders" + "name" "crate_signature_pack_antwerp2022_group_contenders" + "item_description" "#CSGO_crate_signature_pack_antwerp2022_group_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_contenders" + "prefab" "antwerp2022_signature_capsule_prefab antwerp2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "353" + } + } } - "978" + "4845" { - "name" "slid3_countdown_holo" - "item_name" "#StickerKit_slid3_countdown_holo" - "description_string" "#StickerKit_desc_slid3_countdown_holo" - "sticker_material" "slid3_capsule/countdown_holo" - "item_rarity" "mythical" + "item_name" "#CSGO_crate_signature_pack_antwerp2022_group_champions" + "name" "crate_signature_pack_antwerp2022_group_champions" + "item_description" "#CSGO_crate_signature_pack_antwerp2022_group_champions_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_champions" + "prefab" "antwerp2022_signature_capsule_prefab antwerp2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "354" + } + } } - "979" + "4835" { - "name" "slid3_countdown_foil" - "item_name" "#StickerKit_slid3_countdown_foil" - "description_string" "#StickerKit_desc_slid3_countdown_foil" - "sticker_material" "slid3_capsule/countdown_foil" - "item_rarity" "legendary" + "item_name" "#CSGO_crate_antwerp2022_promo_de_inferno" + "name" "crate_antwerp2022_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_antwerp2022_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "344" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno_2" + "tag_text" "#CSGO_set_inferno_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "980" + "4836" { - "name" "slid3_dontworryigotcha" - "item_name" "#StickerKit_slid3_dontworryigotcha" - "description_string" "#StickerKit_desc_slid3_dontworryigotcha" - "sticker_material" "slid3_capsule/dontworryigotcha" - "item_rarity" "rare" + "item_name" "#CSGO_crate_antwerp2022_promo_de_mirage" + "name" "crate_antwerp2022_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_antwerp2022_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "345" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage_2021" + "tag_text" "#CSGO_set_mirage_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "981" + "4837" { - "name" "slid3_dontworryigotcha_holo" - "item_name" "#StickerKit_slid3_dontworryigotcha_holo" - "description_string" "#StickerKit_desc_slid3_dontworryigotcha_holo" - "sticker_material" "slid3_capsule/dontworryigotcha_holo" - "item_rarity" "mythical" + "item_name" "#CSGO_crate_antwerp2022_promo_de_dust2" + "name" "crate_antwerp2022_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_antwerp2022_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "346" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2_2021" + "tag_text" "#CSGO_set_dust_2_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "982" + "4838" { - "name" "slid3_dontworryigotcha_foil" - "item_name" "#StickerKit_slid3_dontworryigotcha_foil" - "description_string" "#StickerKit_desc_slid3_dontworryigotcha_foil" - "sticker_material" "slid3_capsule/dontworryigotcha_foil" - "item_rarity" "legendary" + "item_name" "#CSGO_crate_antwerp2022_promo_de_overpass" + "name" "crate_antwerp2022_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_antwerp2022_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "347" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "983" + "4839" { - "name" "slid3_hardclucklife" - "item_name" "#StickerKit_slid3_hardclucklife" - "description_string" "#StickerKit_desc_slid3_hardclucklife" - "sticker_material" "slid3_capsule/hardclucklife" - "item_rarity" "rare" + "item_name" "#CSGO_crate_antwerp2022_promo_de_ancient" + "name" "crate_antwerp2022_promo_de_ancient" + "image_inventory" "econ/weapon_cases/crate_antwerp2022_promo_de_ancient" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "348" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_op10_ancient" + "tag_text" "#CSGO_set_op10_ancient" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "984" + "4840" { - "name" "slid3_hardclucklife_holo" - "item_name" "#StickerKit_slid3_hardclucklife_holo" - "description_string" "#StickerKit_desc_slid3_hardclucklife_holo" - "sticker_material" "slid3_capsule/hardclucklife_holo" - "item_rarity" "mythical" + "item_name" "#CSGO_crate_antwerp2022_promo_de_nuke" + "name" "crate_antwerp2022_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_antwerp2022_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "349" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke_2" + "tag_text" "#CSGO_set_nuke_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "985" + "4841" { - "name" "slid3_hardclucklife_foil" - "item_name" "#StickerKit_slid3_hardclucklife_foil" - "description_string" "#StickerKit_desc_slid3_hardclucklife_foil" - "sticker_material" "slid3_capsule/hardclucklife_foil" - "item_rarity" "legendary" + "item_name" "#CSGO_crate_antwerp2022_promo_de_vertigo" + "name" "crate_antwerp2022_promo_de_vertigo" + "image_inventory" "econ/weapon_cases/crate_antwerp2022_promo_de_vertigo" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "350" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "19" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_vertigo_2021" + "tag_text" "#CSGO_set_vertigo_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "986" + } + "sticker_kits" + { + "5271" { - "name" "slid3_moveit" - "item_name" "#StickerKit_slid3_moveit" - "description_string" "#StickerKit_desc_slid3_moveit" - "sticker_material" "slid3_capsule/moveit" + "name" "antwerp2022_team_hero" + "item_name" "#StickerKit_antwerp2022_team_hero" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/hero" "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "95" } - "987" + "5272" { - "name" "slid3_moveit_holo" - "item_name" "#StickerKit_slid3_moveit_holo" - "description_string" "#StickerKit_desc_slid3_moveit_holo" - "sticker_material" "slid3_capsule/moveit_holo" + "name" "antwerp2022_team_hero_glitter" + "item_name" "#StickerKit_antwerp2022_team_hero_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/hero_glitter" "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "95" } - "988" + "5273" { - "name" "slid3_moveit_foil" - "item_name" "#StickerKit_slid3_moveit_foil" - "description_string" "#StickerKit_desc_slid3_moveit_foil" - "sticker_material" "slid3_capsule/moveit_foil" + "name" "antwerp2022_team_hero_holo" + "item_name" "#StickerKit_antwerp2022_team_hero_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/hero_holo" "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "95" } - "989" + "5274" { - "name" "team_roles_awper" - "item_name" "#StickerKit_team_roles_awper" - "description_string" "#StickerKit_desc_team_roles_awper" - "sticker_material" "team_roles_capsule/awper" - "item_rarity" "rare" + "name" "antwerp2022_team_hero_gold" + "item_name" "#StickerKit_antwerp2022_team_hero_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/hero_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "95" } - "990" + "5275" { - "name" "team_roles_baiter" - "item_name" "#StickerKit_team_roles_baiter" - "description_string" "#StickerKit_desc_team_roles_baiter" - "sticker_material" "team_roles_capsule/baiter" + "name" "antwerp2022_team_cope" + "item_name" "#StickerKit_antwerp2022_team_cope" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cope" "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "101" } - "991" + "5276" { - "name" "team_roles_bomber" - "item_name" "#StickerKit_team_roles_bomber" - "description_string" "#StickerKit_desc_team_roles_bomber" - "sticker_material" "team_roles_capsule/bomber" - "item_rarity" "rare" + "name" "antwerp2022_team_cope_glitter" + "item_name" "#StickerKit_antwerp2022_team_cope_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cope_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "101" } - "992" + "5277" { - "name" "team_roles_bot" - "item_name" "#StickerKit_team_roles_bot" - "description_string" "#StickerKit_desc_team_roles_bot" - "sticker_material" "team_roles_capsule/bot" - "item_rarity" "rare" + "name" "antwerp2022_team_cope_holo" + "item_name" "#StickerKit_antwerp2022_team_cope_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cope_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "101" } - "993" + "5278" { - "name" "team_roles_fragger" - "item_name" "#StickerKit_team_roles_fragger" - "description_string" "#StickerKit_desc_team_roles_fragger" - "sticker_material" "team_roles_capsule/fragger" - "item_rarity" "rare" + "name" "antwerp2022_team_cope_gold" + "item_name" "#StickerKit_antwerp2022_team_cope_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cope_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "101" } - "994" + "5279" { - "name" "team_roles_leader" - "item_name" "#StickerKit_team_roles_leader" - "description_string" "#StickerKit_desc_team_roles_leader" - "sticker_material" "team_roles_capsule/leader" + "name" "antwerp2022_team_big" + "item_name" "#StickerKit_antwerp2022_team_big" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/big" "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "69" } - "995" + "5280" { - "name" "team_roles_lurker" - "item_name" "#StickerKit_team_roles_lurker" - "description_string" "#StickerKit_desc_team_roles_lurker" - "sticker_material" "team_roles_capsule/lurker" - "item_rarity" "rare" + "name" "antwerp2022_team_big_glitter" + "item_name" "#StickerKit_antwerp2022_team_big_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/big_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "69" } - "996" + "5281" { - "name" "team_roles_nader" - "item_name" "#StickerKit_team_roles_nader" - "description_string" "#StickerKit_desc_team_roles_nader" - "sticker_material" "team_roles_capsule/nader" - "item_rarity" "rare" + "name" "antwerp2022_team_big_holo" + "item_name" "#StickerKit_antwerp2022_team_big_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/big_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "69" } - "997" + "5282" { - "name" "team_roles_ninja" - "item_name" "#StickerKit_team_roles_ninja" - "description_string" "#StickerKit_desc_team_roles_ninja" - "sticker_material" "team_roles_capsule/ninja" - "item_rarity" "rare" + "name" "antwerp2022_team_big_gold" + "item_name" "#StickerKit_antwerp2022_team_big_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/big_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "69" } - "998" + "5283" { - "name" "team_roles_support" - "item_name" "#StickerKit_team_roles_support" - "description_string" "#StickerKit_desc_team_roles_support" - "sticker_material" "team_roles_capsule/support" + "name" "antwerp2022_team_c9" + "item_name" "#StickerKit_antwerp2022_team_c9" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/c9" "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "33" } - "999" - { - "name" "team_roles_awper_foil" - "item_name" "#StickerKit_team_roles_awper_foil" - "description_string" "#StickerKit_desc_team_roles_awper_foil" - "sticker_material" "team_roles_capsule/awper_foil" - "item_rarity" "legendary" - } - "1000" - { - "name" "team_roles_bomber_foil" - "item_name" "#StickerKit_team_roles_bomber_foil" - "description_string" "#StickerKit_desc_team_roles_bomber_foil" - "sticker_material" "team_roles_capsule/bomber_foil" - "item_rarity" "legendary" - } - "1001" + "5284" { - "name" "team_roles_fragger_foil" - "item_name" "#StickerKit_team_roles_fragger_foil" - "description_string" "#StickerKit_desc_team_roles_fragger_foil" - "sticker_material" "team_roles_capsule/fragger_foil" - "item_rarity" "legendary" + "name" "antwerp2022_team_c9_glitter" + "item_name" "#StickerKit_antwerp2022_team_c9_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/c9_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "33" } - "1002" + "5285" { - "name" "team_roles_leader_foil" - "item_name" "#StickerKit_team_roles_leader_foil" - "description_string" "#StickerKit_desc_team_roles_leader_foil" - "sticker_material" "team_roles_capsule/leader_foil" + "name" "antwerp2022_team_c9_holo" + "item_name" "#StickerKit_antwerp2022_team_c9_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/c9_holo" "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "33" } - "1003" + "5286" { - "name" "team_roles_nader_foil" - "item_name" "#StickerKit_team_roles_nader_foil" - "description_string" "#StickerKit_desc_team_roles_nader_foil" - "sticker_material" "team_roles_capsule/nader_foil" - "item_rarity" "legendary" + "name" "antwerp2022_team_c9_gold" + "item_name" "#StickerKit_antwerp2022_team_c9_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/c9_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "33" } - "1004" + "5287" { - "name" "team_roles_ninja_foil" - "item_name" "#StickerKit_team_roles_ninja_foil" - "description_string" "#StickerKit_desc_team_roles_ninja_foil" - "sticker_material" "team_roles_capsule/ninja_foil" - "item_rarity" "legendary" + "name" "antwerp2022_team_furi" + "item_name" "#StickerKit_antwerp2022_team_furi" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/furi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "85" } - "1005" + "5288" { - "name" "team_roles_pro_foil" - "item_name" "#StickerKit_team_roles_pro_foil" - "description_string" "#StickerKit_desc_team_roles_pro_foil" - "sticker_material" "team_roles_capsule/pro_foil" - "item_rarity" "legendary" + "name" "antwerp2022_team_furi_glitter" + "item_name" "#StickerKit_antwerp2022_team_furi_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/furi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "85" } - "1006" + "5289" { - "name" "team_roles_support_foil" - "item_name" "#StickerKit_team_roles_supportfoil" - "description_string" "#StickerKit_desc_team_roles_support_foil" - "sticker_material" "team_roles_capsule/support_foil" + "name" "antwerp2022_team_furi_holo" + "item_name" "#StickerKit_antwerp2022_team_furi_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/furi_holo" "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "85" } - } - "paint_kits" - { - "0" + "5290" { - "name" "default" - "description_string" "#PaintKit_Default" - "description_tag" "#PaintKit_Default_Tag" - "pattern" "none" - "logo_material" "none" - "wear_gradient" "canvas" - "wear_default" "0.100000" - "wear_remap_min" "0.060000" - "wear_remap_max" "0.800000" - "seed" "0" - "style" "0" - "color0" "128 128 128" - "color1" "128 128 128" - "color2" "128 128 128" - "color3" "128 128 128" - "phongexponent" "16" - "phongintensity" "255" - "phongalbedoboost" "-1" - "pattern_scale" "0.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "0" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "0" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "logo_scale" "1.000000" - "logo_offset_x" "0.000000" - "logo_offset_y" "0.000000" - "logo_rotation" "0.000000" - "logocolor0" "0 0 0" - "logocolor1" "0 0 0" - "logocolor2" "0 0 0" - "logocolor3" "0 0 0" - "ignore_weapon_size_scale" "0" - "view_model_exponent_override_size" "256" - "only_first_material" "0" + "name" "antwerp2022_team_furi_gold" + "item_name" "#StickerKit_antwerp2022_team_furi_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/furi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "85" } - "9001" + "5291" { - "name" "workshop_default" - "pattern" "black" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" - "style" "0" - "color0" "128 128 128" - "color1" "150 150 150" - "color2" "96 96 96" - "color3" "108 108 108" - "phongexponent" "32" - "pattern_scale" "1.000000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_faze" + "item_name" "#StickerKit_antwerp2022_team_faze" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/faze" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" } - "2" + "5292" { - "name" "so_olive" - "description_string" "#PaintKit_so_olive" - "description_tag" "#PaintKit_so_olive_Tag" - "wear_default" "0.200000" - "style" "1" - "color0" "47 52 37" - "color1" "65 78 61" - "color2" "102 91 66" - "color3" "51 53 26" - "phongintensity" "10" + "name" "antwerp2022_team_faze_glitter" + "item_name" "#StickerKit_antwerp2022_team_faze_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/faze_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" } - "3" + "5293" { - "name" "so_red" - "description_string" "#PaintKit_so_red" - "description_tag" "#PaintKit_so_red_Tag" - "wear_default" "0.120000" - "style" "1" - "color0" "32 32 32" - "color1" "106 11 11" - "color2" "32 32 32" - "color3" "32 32 32" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" - "phongexponent" "255" - "phongintensity" "80" + "name" "antwerp2022_team_faze_holo" + "item_name" "#StickerKit_antwerp2022_team_faze_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/faze_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" } - "5" + "5294" { - "name" "hy_ddpat" - "description_string" "#PaintKit_hy_ddpat" - "description_tag" "#PaintKit_hy_ddpat_Tag" - "pattern" "ddpat" - "style" "2" - "color0" "67 61 47" - "color1" "101 89 77" - "color2" "31 42 27" - "color3" "32 23 16" - "phongintensity" "13" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_faze_gold" + "item_name" "#StickerKit_antwerp2022_team_faze_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/faze_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" } - "6" + "5295" { - "name" "hy_arctic" - "description_string" "#PaintKit_hy_arctic" - "description_tag" "#PaintKit_hy_arctic_Tag" - "pattern" "camo_arctic" - "wear_default" "0.200000" - "style" "2" - "color0" "233 239 239" - "color1" "162 190 202" - "color2" "136 136 136" - "color3" "70 68 68" - "phongintensity" "26" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_nip" + "item_name" "#StickerKit_antwerp2022_team_nip" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nip" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "1" } - "8" + "5296" { - "name" "hy_desert" - "description_string" "#PaintKit_hy_desert" - "description_tag" "#PaintKit_hy_desert_Tag" - "pattern" "desert_spots" - "wear_default" "0.150000" - "style" "2" - "color0" "191 191 191" - "color1" "157 138 119" - "color2" "96 67 51" - "color3" "19 19 19" - "phongintensity" "10" - "pattern_scale" "3" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_team_nip_glitter" + "item_name" "#StickerKit_antwerp2022_team_nip_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nip_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "1" } - "9" + "5297" { - "name" "hy_tiger" - "description_string" "#PaintKit_hy_tiger" - "description_tag" "#PaintKit_hy_tiger_Tag" - "pattern" "tiger" - "wear_default" "0.200000" - "seed" "33" - "style" "2" - "color0" "224 213 206" - "color1" "193 103 37" - "color2" "25 20 17" - "color3" "1 1 1" - "phongintensity" "13" - "pattern_scale" "3" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "3.000000" - "pattern_offset_y_start" "0.200000" - "pattern_offset_y_end" "0.200000" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_team_nip_holo" + "item_name" "#StickerKit_antwerp2022_team_nip_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nip_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "1" } - "10" + "5298" { - "name" "hy_copperhead" - "description_string" "#PaintKit_hy_copperhead" - "description_tag" "#PaintKit_hy_copperhead_Tag" - "pattern" "copperhead" - "wear_default" "0.200000" - "style" "2" - "color0" "174 174 170" - "color1" "82 64 40" - "color2" "7 1 1" - "color3" "49 21 20" - "phongintensity" "10" - "pattern_scale" "2.900000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0.720000" - "pattern_offset_y_end" "0.720000" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.120000" - "wear_remap_max" "0.380000" + "name" "antwerp2022_team_nip_gold" + "item_name" "#StickerKit_antwerp2022_team_nip_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nip_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "1" } - "11" + "5299" { - "name" "hy_skulls" - "description_string" "#PaintKit_hy_skulls" - "description_tag" "#PaintKit_hy_skulls_Tag" - "pattern" "skulls" - "wear_default" "0.100000" - "style" "2" - "color0" "80 80 80" - "color1" "12 12 12" - "color2" "8 8 8" - "color3" "36 28 57" - "phongintensity" "13" - "pattern_scale" "6" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.260000" + "name" "antwerp2022_team_navi" + "item_name" "#StickerKit_antwerp2022_team_navi" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/navi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "12" } - "12" + "5300" { - "name" "hy_webs" - "description_string" "#PaintKit_hy_webs" - "description_tag" "#PaintKit_hy_webs_Tag" - "pattern" "webs" - "wear_default" "0.100000" - "seed" "1" - "style" "2" - "color0" "94 12 12" - "color1" "16 16 16" - "color2" "16 16 16" - "color3" "16 16 16" - "phongexponent" "127" - "phongintensity" "26" - "pattern_scale" "4.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_navi_glitter" + "item_name" "#StickerKit_antwerp2022_team_navi_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/navi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "12" } - "13" - { - "name" "hy_splatter" - "description_string" "#PaintKit_hy_splatter" - "description_tag" "#PaintKit_hy_splatter_Tag" - "pattern" "splatter" - "wear_default" "0.140000" - "seed" "7" - "style" "2" - "color0" "32 180 236" - "color1" "16 140 188 " - "color2" "10 89 120" - "color3" "16 16 16" - "phongintensity" "10" - "pattern_scale" "2.500000" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_rotate_start" "-15" - "pattern_rotate_end" "15" - "ignore_weapon_size_scale" "1" + "5301" + { + "name" "antwerp2022_team_navi_holo" + "item_name" "#StickerKit_antwerp2022_team_navi_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/navi_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "12" } - "14" + "5302" { - "name" "hy_ak47lam" - "description_string" "#PaintKit_hy_ak47lam" - "description_tag" "#PaintKit_hy_ak47lam_Tag" - "pattern" "laminate_ak47" - "wear_default" "0.050000" - "style" "2" - "color0" "17 16 15" - "color1" "150 5 9" - "color2" "119 108 94" - "color3" "233 58 7" - "phongexponent" "60" - "phongintensity" "51" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_team_navi_gold" + "item_name" "#StickerKit_antwerp2022_team_navi_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/navi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "12" } - "15" + "5303" { - "name" "hy_gelpen" - "description_string" "#PaintKit_hy_gelpen" - "description_tag" "#PaintKit_hy_gelpen_Tag" - "pattern" "gel_pen" - "wear_default" "0.180000" - "style" "2" - "color0" "182 179 175" - "color1" "151 145 135" - "color2" "32 14 3" - "color3" "48 22 0" - "phongintensity" "10" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "30" - "pattern_rotate_end" "60" + "name" "antwerp2022_team_ence" + "item_name" "#StickerKit_antwerp2022_team_ence" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ence" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "84" } - "16" + "5304" { - "name" "hy_v_tiger" - "description_string" "#PaintKit_hy_v_tiger" - "description_tag" "#PaintKit_hy_v_tiger_Tag" - "pattern" "v_tiger" - "wear_default" "0.500000" - "style" "2" - "color0" "52 64 42" - "color1" "145 147 144" - "color2" "63 51 53" - "color3" "42 40 51" - "phongintensity" "10" - "pattern_scale" "3" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_ence_glitter" + "item_name" "#StickerKit_antwerp2022_team_ence_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ence_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "84" } - "17" + "5305" { - "name" "hy_ddpat_urb" - "description_string" "#PaintKit_hy_ddpat" - "description_tag" "#PaintKit_hy_ddpat_urb_Tag" - "pattern" "ddpat" - "style" "2" - "color0" "40 40 40" - "color1" "80 80 80" - "color2" "140 140 140" - "color3" "180 180 180" - "phongintensity" "10" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_ence_holo" + "item_name" "#StickerKit_antwerp2022_team_ence_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ence_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "84" } - "20" + "5306" { - "name" "hy_zombie" - "description_string" "#PaintKit_hy_zombie" - "description_tag" "#PaintKit_hy_zombie_Tag" - "pattern" "zombie" - "wear_default" "0.050000" - "seed" "2" - "style" "2" - "color0" "84 130 10" - "color1" "84 130 10" - "color2" "4 4 4" - "color3" "18 34 8" - "phongintensity" "20" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-2" - "pattern_rotate_end" "2" + "name" "antwerp2022_team_ence_gold" + "item_name" "#StickerKit_antwerp2022_team_ence_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ence_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "84" } - "21" + "5307" { - "name" "hy_granite" - "description_string" "#PaintKit_hy_granite" - "description_tag" "#PaintKit_hy_granite_Tag" - "pattern" "marbleized" - "wear_default" "0.150000" - "style" "2" - "color0" "165 163 114" - "color1" "186 187 199" - "color2" "17 11 11" - "color3" "22 29 52" - "phongintensity" "20" - "pattern_scale" "6" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_g2" + "item_name" "#StickerKit_antwerp2022_team_g2" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/g2" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "59" } - "22" + "5308" { - "name" "sp_spray" - "description_string" "#PaintKit_sp_spray" - "description_tag" "#PaintKit_sp_spray_Tag" - "pattern" "camo_daubs" - "wear_default" "0.300000" - "style" "3" - "color0" "128 124 122" - "color1" "80 80 80" - "color2" "15 17 18" - "color3" "219 219 219" - "phongintensity" "10" - "pattern_scale" "1.430000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_g2_glitter" + "item_name" "#StickerKit_antwerp2022_team_g2_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/g2_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "59" } - "25" + "5309" { - "name" "sp_leaves" - "description_string" "#PaintKit_sp_leaves" - "description_tag" "#PaintKit_sp_leaves_Tag" - "pattern" "camo_leaves" - "wear_default" "0.200000" - "style" "3" - "color0" "48 41 15" - "color1" "24 22 19" - "color2" "17 32 20" - "color3" "80 70 41" - "phongintensity" "10" - "pattern_scale" "1.680000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_g2_holo" + "item_name" "#StickerKit_antwerp2022_team_g2_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/g2_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "59" } - "26" + "5310" { - "name" "sp_short_tape" - "description_string" "#PaintKit_sp_short_tape" - "description_tag" "#PaintKit_sp_short_tape_Tag" - "pattern" "camo_tape_short" - "wear_default" "0.200000" - "style" "3" - "color0" "48 37 43" - "color1" "156 167 122" - "color2" "82 37 53" - "color3" "48 64 43" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "40" - "pattern_rotate_end" "50" + "name" "antwerp2022_team_g2_gold" + "item_name" "#StickerKit_antwerp2022_team_g2_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/g2_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "59" } - "27" + "5311" { - "name" "sp_tape" - "description_string" "#PaintKit_sp_tape" - "description_tag" "#PaintKit_sp_tape_Tag" - "pattern" "camo_tape_strips" - "wear_default" "0.200000" - "style" "3" - "color0" "53 38 16" - "color1" "17 17 17" - "color2" "164 163 152" - "color3" "37 51 13" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_forz" + "item_name" "#StickerKit_antwerp2022_team_forz" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/forz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "90" } - "28" + "5312" { - "name" "an_navy" - "description_string" "#PaintKit_an_navy" - "description_tag" "#PaintKit_an_navy_Tag" - "wear_default" "0.060000" - "style" "4" - "color0" "23 33 47" - "color1" "23 33 47" - "color2" "1 1 1" - "color3" "1 1 1" - "phongexponent" "32" - "phongalbedoboost" "15" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_forz_glitter" + "item_name" "#StickerKit_antwerp2022_team_forz_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/forz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "90" } - "30" + "5313" { - "name" "sp_snake" - "description_string" "#PaintKit_sp_snake" - "description_tag" "#PaintKit_sp_snake_Tag" - "pattern" "snake" - "wear_default" "0.200000" - "seed" "6" - "style" "3" - "color0" "132 119 96" - "color1" "132 119 96" - "color2" "40 19 1" - "color3" "40 19 1" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-4" - "pattern_rotate_end" "4" + "name" "antwerp2022_team_forz_holo" + "item_name" "#StickerKit_antwerp2022_team_forz_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/forz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "90" } - "32" + "5314" { - "name" "an_silver" - "description_string" "#PaintKit_an_silver" - "description_tag" "#PaintKit_an_silver_Tag" - "wear_default" "0.090000" - "style" "4" - "color0" "53 55 60" - "color1" "53 55 60" - "color2" "1 1 1" - "color3" "1 1 1" - "phongexponent" "32" - "phongalbedoboost" "60" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_forz_gold" + "item_name" "#StickerKit_antwerp2022_team_forz_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/forz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "90" } - "33" + "5315" { - "name" "an_red" - "description_string" "#PaintKit_an_red" - "description_tag" "#PaintKit_an_red_Tag" - "wear_default" "0.050000" - "style" "4" - "color0" "30 1 1" - "color1" "30 1 1" - "color2" "1 1 1" - "color3" "1 1 1" - "phongexponent" "16" - "phongalbedoboost" "100" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_astr" + "item_name" "#StickerKit_antwerp2022_team_astr" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/astr" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "60" } - "34" + "5316" { - "name" "am_urban" - "description_string" "#PaintKit_am_urban" - "description_tag" "#PaintKit_am_urban_Tag" - "pattern" "ddpat" - "seed" "42" - "wear_default" "0.020000" - "style" "5" - "color0" "25 25 25" - "color1" "40 40 40" - "color2" "17 17 18" - "color3" "15 15 14" - "phongalbedoboost" "120" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_astr_glitter" + "item_name" "#StickerKit_antwerp2022_team_astr_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/astr_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "60" } - "36" + "5317" { - "name" "am_ossify" - "description_string" "#PaintKit_am_ossify" - "description_tag" "#PaintKit_am_ossify_Tag" - "pattern" "ossify" - "wear_default" "0.020000" - "style" "5" - "color0" "20 27 2" - "color1" "20 27 2" - "color2" "47 56 1" - "color3" "47 56 1" - "phongalbedoboost" "100" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_astr_holo" + "item_name" "#StickerKit_antwerp2022_team_astr_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/astr_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "60" } - "37" + "5318" { - "name" "aa_flames" - "description_string" "#PaintKit_aa_flames" - "description_tag" "#PaintKit_aa_flames_Tag" - "pattern" "flamegraphic" - "wear_default" "0.200000" - "seed" "1" - "style" "6" - "color0" "80 10 1" - "color1" "34 2 1" - "color2" "16 16 16" - "color3" "90 60 4" - "phongalbedoboost" "30" - "pattern_scale" "1" - "pattern_offset_x_start" "-0.300000" - "pattern_offset_x_end" "-0.300000" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_astr_gold" + "item_name" "#StickerKit_antwerp2022_team_astr_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/astr_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "60" } - "38" + "5319" { - "name" "aa_fade" - "description_string" "#PaintKit_aa_fade" - "description_tag" "#PaintKit_aa_fade_Tag" - "pattern" "fade" - "wear_default" "0.200000" - "style" "6" - "color0" "44 41 39" - "color1" "84 52 14" - "color2" "71 18 28" - "color3" "28 31 57" - "phongalbedoboost" "80" - "phongexponent" "34" - "pattern_scale" "1" - "pattern_offset_x_start" "-0.700000" - "pattern_offset_x_end" "-0.700000" - "pattern_offset_y_start" "-0.700000" - "pattern_offset_y_end" "-0.700000" - "pattern_rotate_start" "-55" - "pattern_rotate_end" "-65" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_vita" + "item_name" "#StickerKit_antwerp2022_team_vita" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/vita" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "89" } - "39" + "5320" { - "name" "so_yellow" - "description_string" "#PaintKit_so_yellow" - "description_tag" "#PaintKit_so_yellow_Tag" - "wear_default" "0.180000" - "style" "1" - "color0" "45 45 45" - "color1" "241 191 18" - "color2" "58 58 58" - "color3" "32 32 32" - "phongintensity" "4" + "name" "antwerp2022_team_vita_glitter" + "item_name" "#StickerKit_antwerp2022_team_vita_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/vita_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "89" } - "40" + "5321" { - "name" "so_night" - "description_string" "#PaintKit_so_night" - "description_tag" "#PaintKit_so_night_Tag" - "wear_default" "0.170000" - "style" "1" - "color0" "48 62 71" - "color1" "26 33 38" - "color2" "43 55 64" - "color3" "36 36 36" - "phongintensity" "4" + "name" "antwerp2022_team_vita_holo" + "item_name" "#StickerKit_antwerp2022_team_vita_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/vita_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "89" } - "41" + "5322" { - "name" "aq_copper" - "description_string" "#PaintKit_aq_copper" - "description_tag" "#PaintKit_aq_copper_Tag" - "pattern" "aged" - "wear_default" "0.100000" - "seed" "19" - "style" "8" - "color0" "90 62 50" - "color1" "77 46 40" - "color2" "68 72 70" - "color3" "121 142 135" - "phongintensity" "180" - "phongalbedoboost" "50" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_team_vita_gold" + "item_name" "#StickerKit_antwerp2022_team_vita_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/vita_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "89" } - "42" + "5323" { - "name" "aq_blued" - "description_string" "#PaintKit_aq_blued" - "description_tag" "#PaintKit_aq_blued_Tag" - "pattern" "watermarked" - "wear_default" "0.350000" - "seed" "11" - "style" "8" - "color0" "103 109 109" - "color1" "36 43 57" - "color2" "47 45 68" - "color3" "33 40 52" - "phongalbedoboost" "30" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_team_mibr" + "item_name" "#StickerKit_antwerp2022_team_mibr" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/mibr" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "80" } - "43" + "5324" { - "name" "aq_forced" - "description_string" "#PaintKit_aq_forced" - "description_tag" "#PaintKit_aq_forced_Tag" - "pattern" "forced" - "wear_default" "0.100000" - "seed" "10" - "style" "8" - "color0" "115 108 100" - "color1" "115 108 100" - "color2" "115 108 100" - "color3" "61 67 76" - "phongalbedoboost" "50" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_team_mibr_glitter" + "item_name" "#StickerKit_antwerp2022_team_mibr_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/mibr_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "80" } - "44" + "5325" { - "name" "aq_oiled" - "description_string" "#PaintKit_aq_oiled" - "description_tag" "#PaintKit_aq_oiled_Tag" - "pattern" "oiled" - "wear_default" "0.000000" - "seed" "29" - "style" "8" - "color0" "120 111 101" - "color1" "120 111 101" - "color2" "102 96 89" - "color3" "30 34 47" - "phongexponent" "25" - "phongalbedoboost" "80" - "pattern_scale" "1" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_team_mibr_holo" + "item_name" "#StickerKit_antwerp2022_team_mibr_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/mibr_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "80" } - "46" + "5326" { - "name" "so_pmc" - "description_string" "#PaintKit_so_pmc" - "description_tag" "#PaintKit_so_pmc_Tag" - "wear_default" "0.180000" - "style" "1" - "color0" "48 50 49" - "color1" "39 46 44 " - "color2" "145 125 96" - "color3" "20 20 20" - "phongintensity" "10" + "name" "antwerp2022_team_mibr_gold" + "item_name" "#StickerKit_antwerp2022_team_mibr_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/mibr_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "80" } - "47" + "5327" { - "name" "so_space_marine" - "description_string" "#PaintKit_so_space_marine" - "description_tag" "#PaintKit_so_space_marine_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "45 45 45" - "color1" "99 98 69" - "color2" "58 58 58" - "color3" "32 32 32" - "phongintensity" "4" + "name" "antwerp2022_team_imp" + "item_name" "#StickerKit_antwerp2022_team_imp" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/imp" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "113" + } + "5328" + { + "name" "antwerp2022_team_imp_glitter" + "item_name" "#StickerKit_antwerp2022_team_imp_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/imp_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "113" + } + "5329" + { + "name" "antwerp2022_team_imp_holo" + "item_name" "#StickerKit_antwerp2022_team_imp_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/imp_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "113" + } + "5330" + { + "name" "antwerp2022_team_imp_gold" + "item_name" "#StickerKit_antwerp2022_team_imp_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/imp_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "113" + } + "5331" + { + "name" "antwerp2022_team_bne" + "item_name" "#StickerKit_antwerp2022_team_bne" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/bne" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "114" + } + "5332" + { + "name" "antwerp2022_team_bne_glitter" + "item_name" "#StickerKit_antwerp2022_team_bne_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/bne_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "114" } - "48" + "5333" { - "name" "am_dragon_glock" - "description_string" "#PaintKit_am_dragon_glock" - "description_tag" "#PaintKit_am_dragon_glock_Tag" - "pattern" "dragon_glock" - "wear_default" "0.040000" - "style" "5" - "color0" "58 58 60" - "color1" "60 60 60" - "color2" "7 7 8" - "color3" "60 60 60" - "phongalbedoboost" "30" - "pattern_scale" "3.370000" - "pattern_offset_x_start" "-0.310000" - "pattern_offset_x_end" "-0.310000" - "pattern_offset_y_start" "-1.470000" - "pattern_offset_y_end" "-1.800000" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_bne_holo" + "item_name" "#StickerKit_antwerp2022_team_bne_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/bne_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "114" } - "51" + "5334" { - "name" "am_lightning_awp" - "description_string" "#PaintKit_am_lightning_awp" - "description_tag" "#PaintKit_am_lightning_awp_Tag" - "pattern" "lightning_strike" - "wear_default" "0.000000" - "style" "5" - "color0" "7 5 6" - "color1" "65 7 99" - "color2" "100 36 38" - "color3" "108 108 142" - "phongalbedoboost" "40" - "phongexponent" "8" - "pattern_scale" "1" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "0" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "0" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_bne_gold" + "item_name" "#StickerKit_antwerp2022_team_bne_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/bne_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "114" } - "59" + "5335" { - "name" "am_zebra" - "description_string" "#PaintKit_am_zebra" - "description_tag" "#PaintKit_am_zebra_Tag" - "pattern" "zebra" - "wear_default" "0.050000" - "style" "5" - "color0" "94 34 35" - "color1" "244 253 253" - "color2" "57 21 22" - "color3" "117 153 174" - "phongalbedoboost" "50" - "phongexponent" "4" - "pattern_scale" "2.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "wear_remap_min" "0.010000" - "wear_remap_max" "0.260000" - "view_model_exponent_override_size" "1024" + "name" "antwerp2022_team_eter" + "item_name" "#StickerKit_antwerp2022_team_eter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/eter" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "110" } - "60" + "5336" { - "name" "am_zebra_dark" - "description_string" "#PaintKit_am_zebra_dark" - "description_tag" "#PaintKit_am_zebra_dark_Tag" - "pattern" "zebra" - "wear_default" "0.180000" - "style" "5" - "color0" "55 55 55" - "color1" "16 86 86" - "color2" "17 17 17" - "color3" "96 96 96" - "phongalbedoboost" "50" - "phongexponent" "4" - "pattern_scale" "3.300000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.260000" - "view_model_exponent_override_size" "1024" + "name" "antwerp2022_team_eter_glitter" + "item_name" "#StickerKit_antwerp2022_team_eter_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/eter_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "110" } - "61" + "5337" { - "name" "aa_vertigo" - "description_string" "#PaintKit_aa_vertigo" - "description_tag" "#PaintKit_aa_vertigo_Tag" - "pattern" "vertigo" - "wear_default" "0.150000" - "style" "6" - "color0" "102 92 85" - "color1" "16 16 16" - "color2" "16 16 16" - "color3" "16 16 16" - "phongalbedoboost" "80" - "phongexponent" "32" - "pattern_scale" "1.400000" - "pattern_offset_x_start" "0.040000" - "pattern_offset_x_end" "0.140000" - "pattern_offset_y_start" "-0.440000" - "pattern_offset_y_end" "-0.180000" - "pattern_rotate_start" "7" - "pattern_rotate_end" "25" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_eter_holo" + "item_name" "#StickerKit_antwerp2022_team_eter_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/eter_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "110" } - "62" + "5338" { - "name" "cu_spring_nova" - "description_string" "#PaintKit_cu_spring_nova" - "description_tag" "#PaintKit_cu_spring_nova_Tag" - "pattern" "spring_nova" - "wear_default" "0.060000" - "phongexponent" "62" - "style" "7" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_team_eter_gold" + "item_name" "#StickerKit_antwerp2022_team_eter_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/eter_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "110" } - "67" + "5339" { - "name" "am_slither_p90" - "description_string" "#PaintKit_am_slither_p90" - "description_tag" "#PaintKit_am_slither_p90_Tag" - "style" "5" - "pattern" "p90_slither" - "color0" "70 20 18" - "color1" "8 8 8" - "color2" "8 8 8" - "color3" "70 20 18" - "pattern_scale" "1.400000" - "phongexponent" "0" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "-0.120000" - "pattern_offset_x_end" "-0.040000" - "pattern_offset_y_start" "0.200000" - "pattern_offset_y_end" "0.240000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_spir" + "item_name" "#StickerKit_antwerp2022_team_spir" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/spir" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "81" } - "70" + "5340" { - "name" "am_carbon_fiber" - "description_string" "#PaintKit_am_carbon_fiber" - "description_tag" "#PaintKit_am_carbon_fiber_Tag" - "pattern" "carbon_fiber" - "wear_default" "0.020000" - "style" "5" - "color0" "1 1 1" - "color1" "25 25 25" - "color2" "25 25 25" - "color3" "25 25 25" - "phongalbedoboost" "50" - "phongexponent" "3" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "145" - "pattern_rotate_end" "165" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.120000" + "name" "antwerp2022_team_spir_glitter" + "item_name" "#StickerKit_antwerp2022_team_spir_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/spir_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "81" } - "71" + "5341" { - "name" "am_scorpion_p2000" - "description_string" "#PaintKit_am_scorpion_p2000" - "description_tag" "#PaintKit_am_scorpion_p2000_Tag" - "pattern" "scorpion_p2000" - "wear_default" "0.000000" - "style" "5" - "color0" "61 58 50" - "color1" "134 118 2" - "color2" "218 95 3" - "color3" "124 47 20" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" - "phongalbedoboost" "50" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_team_spir_holo" + "item_name" "#StickerKit_antwerp2022_team_spir_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/spir_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "81" } - "72" + "5342" { - "name" "sp_mesh_tan" - "description_string" "#PaintKit_sp_mesh" - "description_tag" "#PaintKit_sp_mesh_tan_Tag" - "pattern" "chainlink" - "wear_default" "0.200000" - "style" "3" - "color0" "109 105 84" - "color1" "19 20 21" - "color2" "77 80 67" - "color3" "73 71 56" - "phongintensity" "10" - "pattern_scale" "1.750000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_spir_gold" + "item_name" "#StickerKit_antwerp2022_team_spir_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/spir_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "81" } - "73" + "5343" { - "name" "hy_feathers_aug" - "description_string" "#PaintKit_hy_feathers_aug" - "description_tag" "#PaintKit_hy_feathers_aug_Tag" - "pattern" "feathers_aug" - "wear_default" "0.200000" - "style" "2" - "color0" "17 16 15" - "color1" "17 16 15" - "color2" "191 184 174" - "color3" "17 16 15" - "phongintensity" "51" - "phongexponent" "60" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.140000" + "name" "antwerp2022_team_out" + "item_name" "#StickerKit_antwerp2022_team_out" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/out" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "109" } - "74" + "5344" { - "name" "hy_arctic_contrast" - "description_string" "#PaintKit_hy_arctic" - "description_tag" "#Paintkit_hy_arctic_contrast_Tag" - "pattern" "camo_arctic" - "wear_default" "0.200000" - "style" "2" - "color0" "240 240 240" - "color1" "34 34 34" - "color2" "164 164 164" - "color3" "112 112 112" - "phongintensity" "26" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_out_glitter" + "item_name" "#StickerKit_antwerp2022_team_out_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/out_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "109" } - "75" + "5345" { - "name" "hy_blizzard" - "description_string" "#PaintKit_hy_granite" - "description_tag" "#PaintKit_hy_blizzard_Tag" - "pattern" "marbleized" - "wear_default" "0.150000" - "style" "2" - "color0" "140 172 189" - "color1" "145 126 115" - "color2" "210 210 210" - "color3" "72 62 60" - "phongintensity" "20" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_out_holo" + "item_name" "#StickerKit_antwerp2022_team_out_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/out_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "109" } - "76" + "5346" { - "name" "hy_forest_winter" - "description_string" "#PaintKit_hy_forest" - "description_tag" "#PaintKit_hy_forest_winter_Tag" - "pattern" "camo_wood" - "wear_default" "0.180000" - "style" "2" - "color0" "176 193 206" - "color1" "223 223 223" - "color2" "106 106 106" - "color3" "139 139 139" - "phongintensity" "10" - "pattern_scale" "3.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_out_gold" + "item_name" "#StickerKit_antwerp2022_team_out_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/out_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "109" } - "77" + "5347" { - "name" "hy_forest_boreal" - "description_string" "#PaintKit_hy_forest" - "description_tag" "#PaintKit_hy_forest_boreal_Tag" - "pattern" "camo_wood" - "wear_default" "0.180000" - "style" "2" - "color0" "101 103 61" - "color1" "39 35 27" - "color2" "71 67 58" - "color3" "51 79 60" - "phongintensity" "10" - "pattern_scale" "3" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_cplx" + "item_name" "#StickerKit_antwerp2022_team_cplx" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cplx" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "111" } - "78" + "5348" { - "name" "hy_forest_night" - "description_string" "#PaintKit_hy_forest" - "description_tag" "#PaintKit_hy_forest_night_Tag" - "pattern" "camo_wood" - "wear_default" "0.180000" - "style" "2" - "color0" "48 62 71" - "color1" "26 33 38" - "color2" "43 55 64" - "color3" "36 36 36" - "phongintensity" "10" - "pattern_scale" "3.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_cplx_glitter" + "item_name" "#StickerKit_antwerp2022_team_cplx_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cplx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "111" } - "83" + "5349" { - "name" "hy_ddpat_orange" - "description_string" "#PaintKit_hy_ddpat" - "description_tag" "#PaintKit_hy_ddpat_orange_Tag" - "pattern" "ddpat" - "seed" "42" - "wear_default" "0.020000" - "style" "2" - "color0" "49 46 43" - "color1" "177 92 16" - "color2" "29 27 24" - "color3" "69 64 56" - "phongintensity" "10" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_cplx_holo" + "item_name" "#StickerKit_antwerp2022_team_cplx_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cplx_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "111" } - "84" + "5350" { - "name" "hy_ddpat_pink" - "description_string" "#PaintKit_hy_ddpat" - "description_tag" "#PaintKit_hy_ddpat_pink_Tag" - "pattern" "ddpat" - "seed" "42" - "wear_default" "0.020000" - "style" "2" - "color0" "41 43 50" - "color1" "106 104 111" - "color2" "145 49 118" - "color3" "66 67 72" - "phongintensity" "10" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_cplx_gold" + "item_name" "#StickerKit_antwerp2022_team_cplx_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/cplx_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "111" } - "90" + "5351" { - "name" "hy_mottled_sand" - "description_string" "#PaintKit_hy_granite" - "description_tag" "#PaintKit_hy_sediment_Tag" - "pattern" "marbleized" - "wear_default" "0.150000" - "style" "2" - "color0" "100 89 66" - "color1" "139 124 92" - "color2" "75 67 50" - "color3" "75 65 54" - "phongintensity" "20" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_ihc" + "item_name" "#StickerKit_antwerp2022_team_ihc" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ihc" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "108" } - "92" + "5352" { - "name" "hy_reef" - "description_string" "#PaintKit_hy_granite" - "description_tag" "#PaintKit_hy_reef_rock_Tag" - "pattern" "marbleized" - "wear_default" "0.150000" - "style" "2" - "color0" "34 40 38" - "color1" "45 120 176" - "color2" "131 149 150" - "color3" "68 75 65" - "phongintensity" "20" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_ihc_glitter" + "item_name" "#StickerKit_antwerp2022_team_ihc_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ihc_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "108" } - "93" + "5353" { - "name" "so_caramel" - "description_string" "#PaintKit_so_caramel" - "description_tag" "#PaintKit_so_caramel_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "34 34 34" - "color1" "34 34 34" - "color2" "204 135 32" - "color3" "34 34 34" - "phongintensity" "66" - "phongexponent" "64" + "name" "antwerp2022_team_ihc_holo" + "item_name" "#StickerKit_antwerp2022_team_ihc_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ihc_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "108" } - "95" + "5354" { - "name" "so_grassland" - "description_string" "#PaintKit_so_grassland" - "description_tag" "#PaintKit_so_grassland_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "68 75 65" - "color1" "139 121 95" - "color2" "139 121 95" - "color3" "68 75 65" - "phongintensity" "10" + "name" "antwerp2022_team_ihc_gold" + "item_name" "#StickerKit_antwerp2022_team_ihc_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ihc_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "108" } - "96" + "5355" { - "name" "so_moss" - "description_string" "#PaintKit_so_moss" - "description_tag" "#PaintKit_so_moss_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "87 119 106" - "color1" "53 66 66" - "color2" "87 119 106" - "color3" "2 30 32" - "phongintensity" "10" + "name" "antwerp2022_team_ren" + "item_name" "#StickerKit_antwerp2022_team_ren" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ren" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "53" } - "98" + "5356" { - "name" "so_purple" - "description_string" "#PaintKit_so_purple" - "description_tag" "#PaintKit_so_purple_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "56 15 78" - "color1" "34 34 34" - "color2" "56 15 78" - "color3" "34 34 34" - "phongintensity" "10" + "name" "antwerp2022_team_ren_glitter" + "item_name" "#StickerKit_antwerp2022_team_ren_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ren_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "53" } - "99" + "5357" { - "name" "so_sand" - "description_string" "#PaintKit_so_sand" - "description_tag" "#PaintKit_so_sand_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "75 65 54" - "color1" "100 89 66" - "color2" "139 124 92" - "color3" "75 67 50" - "phongintensity" "10" + "name" "antwerp2022_team_ren_holo" + "item_name" "#StickerKit_antwerp2022_team_ren_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ren_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "53" } - "100" + "5358" { - "name" "so_stormfront" - "description_string" "#PaintKit_so_stormfront" - "description_tag" "#PaintKit_so_stormfront_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "63 69 82" - "color1" "109 126 122" - "color2" "63 69 82" - "color3" "68 75 65" - "phongintensity" "10" + "name" "antwerp2022_team_ren_gold" + "item_name" "#StickerKit_antwerp2022_team_ren_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/ren_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "53" } - "101" + "5359" { - "name" "so_tornado" - "description_string" "#PaintKit_so_tornado" - "description_tag" "#PaintKit_so_tornado_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "51 61 77" - "color1" "107 97 78" - "color2" "51 61 77" - "color3" "39 46 58" - "phongintensity" "10" + "name" "antwerp2022_team_liq" + "item_name" "#StickerKit_antwerp2022_team_liq" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/liq" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "48" } - "102" + "5360" { - "name" "so_whiteout" - "description_string" "#PaintKit_so_whiteout" - "description_tag" "#PaintKit_so_whiteout_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "214 213 207" - "color1" "214 213 207" - "color2" "214 213 207" - "color3" "214 213 207" - "phongintensity" "10" + "name" "antwerp2022_team_liq_glitter" + "item_name" "#StickerKit_antwerp2022_team_liq_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/liq_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "48" + } + "5361" + { + "name" "antwerp2022_team_liq_holo" + "item_name" "#StickerKit_antwerp2022_team_liq_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/liq_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "48" + } + "5362" + { + "name" "antwerp2022_team_liq_gold" + "item_name" "#StickerKit_antwerp2022_team_liq_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/liq_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "48" + } + "5363" + { + "name" "antwerp2022_team_nine" + "item_name" "#StickerKit_antwerp2022_team_nine" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nine" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "112" + } + "5364" + { + "name" "antwerp2022_team_nine_glitter" + "item_name" "#StickerKit_antwerp2022_team_nine_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nine_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "112" } - "104" + "5365" { - "name" "sp_leaves_grassland" - "description_string" "#PaintKit_sp_leaves" - "description_tag" "#PaintKit_sp_leaves_grassland_Tag" - "pattern" "camo_leaves" - "wear_default" "0.200000" - "style" "3" - "color0" "68 75 65" - "color1" "139 121 95" - "color2" "139 121 95" - "color3" "68 75 65" - "phongintensity" "10" - "pattern_scale" "1.680000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_nine_holo" + "item_name" "#StickerKit_antwerp2022_team_nine_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nine_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "112" } - "107" + "5366" { - "name" "sp_mesh_arctic_contrast" - "description_string" "#PaintKit_sp_mesh" - "description_tag" "#PaintKit_sp_mesh_arctic_contrast_Tag" - "pattern" "chainlink" - "wear_default" "0.200000" - "style" "3" - "color0" "40 40 40" - "color1" "80 80 80" - "color2" "140 140 140" - "color3" "180 180 180" - "phongintensity" "10" - "pattern_scale" "1.750000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_nine_gold" + "item_name" "#StickerKit_antwerp2022_team_nine_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_team" + "sticker_material" "antwerp2022/nine_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "112" } - "110" + "5367" { - "name" "sp_mesh_forest_fire" - "description_string" "#PaintKit_sp_mesh" - "description_tag" "#PaintKit_sp_mesh_fire_Tag" - "pattern" "chainlink" - "wear_default" "0.200000" - "style" "3" - "color0" "49 46 43" - "color1" "115 106 100" - "color2" "177 92 16" - "color3" "84 78 73" - "phongintensity" "10" - "pattern_scale" "1.750000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_pgl" + "item_name" "#StickerKit_antwerp2022_team_pgl" + "description_string" "#EventItemDesc_antwerp2022_sticker_org" + "sticker_material" "antwerp2022/pgl" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "0" } - "111" + "5368" { - "name" "sp_mesh_glacier" - "description_string" "#PaintKit_sp_mesh" - "description_tag" "#PaintKit_sp_mesh_glacier_Tag" - "pattern" "chainlink" - "wear_default" "0.200000" - "style" "3" - "color0" "140 172 189" - "color1" "145 126 115" - "color2" "210 210 210" - "color3" "72 62 60" - "phongintensity" "10" - "pattern_scale" "1.750000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_pgl_glitter" + "item_name" "#StickerKit_antwerp2022_team_pgl_glitter" + "description_string" "#EventItemDesc_antwerp2022_sticker_org" + "sticker_material" "antwerp2022/pgl_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "0" } - "116" + "5369" { - "name" "sp_mesh_sand" - "description_string" "#PaintKit_sp_mesh" - "description_tag" "#PaintKit_sp_mesh_sand_Tag" - "pattern" "chainlink" - "wear_default" "0.200000" - "style" "3" - "color0" "100 89 66" - "color1" "139 124 92" - "color2" "75 67 50" - "color3" "75 65 54" - "phongintensity" "10" - "pattern_scale" "1.750000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_pgl_holo" + "item_name" "#StickerKit_antwerp2022_team_pgl_holo" + "description_string" "#EventItemDesc_antwerp2022_sticker_org" + "sticker_material" "antwerp2022/pgl_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "0" } - "119" + "5370" { - "name" "sp_spray_desert_sage" - "description_string" "#PaintKit_sp_spray" - "description_tag" "#PaintKit_sp_spray_sage_Tag" - "pattern" "camo_daubs" - "wear_default" "0.300000" - "style" "3" - "color0" "149 147 128" - "color1" "213 209 202" - "color2" "91 73 55" - "color3" "11 11 11" - "phongintensity" "10" - "pattern_scale" "1.620000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_pgl_gold" + "item_name" "#StickerKit_antwerp2022_team_pgl_gold" + "description_string" "#EventItemDesc_antwerp2022_sticker_org" + "sticker_material" "antwerp2022/pgl_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "0" } - "122" + "5371" { - "name" "sp_spray_jungle" - "description_string" "#PaintKit_sp_spray" - "description_tag" "#PaintKit_sp_spray_jungle_Tag" - "pattern" "camo_daubs" - "wear_default" "0.300000" - "style" "3" - "color0" "71 67 58" - "color1" "51 79 60" - "color2" "101 103 61" - "color3" "39 35 27" - "phongintensity" "10" - "pattern_scale" "1.650000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_hero_graffiti" + "item_name" "#StickerKit_antwerp2022_team_hero" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/hero_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "95" } - "124" + "5372" { - "name" "sp_spray_sand" - "description_string" "#PaintKit_sp_spray" - "description_tag" "#PaintKit_sp_spray_sand_Tag" - "pattern" "camo_daubs" - "wear_default" "0.300000" - "style" "3" - "color0" "100 89 66" - "color1" "139 124 92" - "color2" "75 67 50" - "color3" "75 65 54" - "phongintensity" "10" - "pattern_scale" "1.700000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_cope_graffiti" + "item_name" "#StickerKit_antwerp2022_team_cope" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/cope_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "101" } - "135" + "5373" { - "name" "sp_tape_dots_urban" - "description_string" "#PaintKit_sp_tape_dots" - "description_tag" "#PaintKit_sp_tape_dots_urban_Tag" - "pattern" "mesh_and_tape" - "wear_default" "0.380000" - "style" "3" - "color0" "40 40 40" - "color1" "80 80 80" - "color2" "140 140 140" - "color3" "180 180 180" - "phongintensity" "10" - "pattern_scale" "1.400000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_big_graffiti" + "item_name" "#StickerKit_antwerp2022_team_big" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/big_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "69" } - "136" + "5374" { - "name" "sp_tape_dots_waves" - "description_string" "#PaintKit_sp_tape_dots" - "description_tag" "#PaintKit_sp_tape_dots_waves_Tag" - "pattern" "mesh_and_tape" - "wear_default" "0.380000" - "style" "3" - "color0" "35 45 92" - "color1" "108 124 128" - "color2" "51 75 113" - "color3" "39 46 58" - "phongintensity" "10" - "pattern_scale" "1.400000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_team_c9_graffiti" + "item_name" "#StickerKit_antwerp2022_team_c9" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/c9_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "33" } - "141" + "5375" { - "name" "sp_tape_orange" - "description_string" "#PaintKit_sp_tape" - "description_tag" "#PaintKit_sp_tape_orange_Tag" - "pattern" "camo_tape_strips" - "wear_default" "0.200000" - "style" "3" - "color0" "49 46 43" - "color1" "115 106 100" - "color2" "177 92 16" - "color3" "84 78 73" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_furi_graffiti" + "item_name" "#StickerKit_antwerp2022_team_furi" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/furi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "85" } - "143" + "5376" { - "name" "sp_tape_urban" - "description_string" "#PaintKit_sp_tape" - "description_tag" "#PaintKit_sp_tape_urban_Tag" - "pattern" "camo_tape_strips" - "wear_default" "0.200000" - "style" "3" - "color0" "40 40 40" - "color1" "80 80 80" - "color2" "140 140 140" - "color3" "180 180 180" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_faze_graffiti" + "item_name" "#StickerKit_antwerp2022_team_faze" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" } - "147" + "5377" { - "name" "sp_tape_short_jungle" - "description_string" "#PaintKit_sp_short_tape" - "description_tag" "#PaintKit_sp_short_tape_jungle_Tag" - "pattern" "camo_tape_short" - "wear_default" "0.200000" - "style" "3" - "color0" "35 37 50" - "color1" "51 79 60" - "color2" "101 103 61" - "color3" "39 35 27" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "40" - "pattern_rotate_end" "50" + "name" "antwerp2022_team_nip_graffiti" + "item_name" "#StickerKit_antwerp2022_team_nip" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/nip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "1" } - "148" + "5378" { - "name" "sp_tape_short_sand" - "description_string" "#PaintKit_sp_short_tape" - "description_tag" "#PaintKit_sp_short_tape_sand_Tag" - "pattern" "camo_tape_short" - "wear_default" "0.200000" - "style" "3" - "color0" "100 89 66" - "color1" "139 124 92" - "color2" "75 67 50" - "color3" "75 65 54" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "40" - "pattern_rotate_end" "50" + "name" "antwerp2022_team_navi_graffiti" + "item_name" "#StickerKit_antwerp2022_team_navi" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "12" } - "149" + "5379" { - "name" "sp_tape_short_urban" - "description_string" "#PaintKit_sp_short_tape" - "description_tag" "#PaintKit_sp_short_tape_urban_Tag" - "pattern" "camo_tape_short" - "wear_default" "0.200000" - "style" "3" - "color0" "40 40 40" - "color1" "140 140 140" - "color2" "180 180 180" - "color3" "80 80 80" - "phongintensity" "10" - "pattern_scale" "1.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "40" - "pattern_rotate_end" "50" + "name" "antwerp2022_team_ence_graffiti" + "item_name" "#StickerKit_antwerp2022_team_ence" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/ence_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "84" } - "151" + "5380" { - "name" "so_jungle" - "description_string" "#PaintKit_so_jungle" - "description_tag" "#PaintKit_so_jungle_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "71 67 58" - "color1" "51 79 60" - "color2" "101 103 61" - "color3" "39 35 27" - "phongintensity" "10" + "name" "antwerp2022_team_g2_graffiti" + "item_name" "#StickerKit_antwerp2022_team_g2" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/g2_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "59" } - "153" + "5381" { - "name" "so_tangerine" - "description_string" "#PaintKit_so_tangerine" - "description_tag" "#PaintKit_so_tangerine_Tag" - "wear_default" "0.260000" - "style" "1" - "color0" "64 64 64" - "color1" "236 84 19" - "color2" "21 21 21" - "color3" "39 35 27" - "phongintensity" "10" - "wear_remap_min" "0.260000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_team_forz_graffiti" + "item_name" "#StickerKit_antwerp2022_team_forz" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/forz_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "90" } - "154" + "5382" { - "name" "cu_broken_path_famas" - "description_string" "#PaintKit_cu_broken_path_famas" - "description_tag" "#PaintKit_cu_broken_path_famas_Tag" - "pattern" "broken_path_famas" - "wear_default" "0.080000" - "style" "7" - "pattern_scale" "1" - "phongintensity" "153" - "phongexponent" "128" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.020000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_team_astr_graffiti" + "item_name" "#StickerKit_antwerp2022_team_astr" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/astr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "60" } - "155" + "5383" { - "name" "cu_bullet_rain_m4a1" - "description_string" "#PaintKit_cu_bullet_rain_m4a1" - "description_tag" "#PaintKit_cu_bullet_rain_m4a1_Tag" - "pattern" "bullet_rain_m4" - "wear_default" "0.080000" - "style" "7" - "pattern_scale" "1" - "phongintensity" "153" - "phongexponent" "128" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.020000" - "wear_remap_max" "0.460000" + "name" "antwerp2022_team_vita_graffiti" + "item_name" "#StickerKit_antwerp2022_team_vita" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/vita_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "89" } - "156" + "5384" { - "name" "cu_catskulls_p90" - "description_string" "#PaintKit_cu_catskulls_p90" - "description_tag" "#PaintKit_cu_catskulls_p90_Tag" - "pattern" "catskulls" - "wear_default" "0.080000" - "style" "7" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "phongintensity" "153" - "phongexponent" "128" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.080000" - "wear_remap_max" "0.320000" + "name" "antwerp2022_team_mibr_graffiti" + "item_name" "#StickerKit_antwerp2022_team_mibr" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/mibr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "80" } - "157" + "5385" { - "name" "sp_palm" - "description_string" "#PaintKit_sp_palm" - "description_tag" "#PaintKit_sp_palm_Tag" - "pattern" "palm" - "wear_default" "0.350000" - "style" "3" - "color0" "189 179 155" - "color1" "67 74 28" - "color2" "87 67 49" - "color3" "60 48 38" - "phongintensity" "10" - "pattern_scale" "1" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_imp_graffiti" + "item_name" "#StickerKit_antwerp2022_team_imp" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/imp_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "113" } - "158" + "5386" { - "name" "cu_walnut_nova" - "description_string" "#PaintKit_cu_walnut_nova" - "description_tag" "#PaintKit_cu_walnut_nova_Tag" - "pattern" "walnut_nova" - "wear_default" "0.000000" - "phongintensity" "26" - "phongexponent" "36" - "style" "7" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_team_bne_graffiti" + "item_name" "#StickerKit_antwerp2022_team_bne" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/bne_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "114" } - "159" + "5387" { - "name" "aq_brass" - "description_string" "#PaintKit_aq_brass" - "description_tag" "#PaintKit_aq_brass_Tag" - "pattern" "aged" - "wear_default" "0.100000" - "seed" "19" - "style" "8" - "color0" "92 78 48" - "color1" "58 50 31" - "color2" "55 50 43" - "color3" "86 73 58" - "phongintensity" "180" - "phongalbedoboost" "50" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_team_eter_graffiti" + "item_name" "#StickerKit_antwerp2022_team_eter" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/eter_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "110" } - "162" + "5388" { - "name" "sp_splash_p250" - "description_string" "#PaintKit_sp_splash_p250" - "description_tag" "#PaintKit_sp_splash_p250_Tag" - "pattern" "splash" - "wear_default" "0.080000" - "style" "3" - "color0" "55 54 51" - "color1" "55 54 51" - "color2" "177 92 16" - "color3" "177 92 16" - "phongintensity" "13" - "pattern_scale" "0.300000" - "pattern_offset_x_start" "0.500000" - "pattern_offset_x_end" "0.500000" - "pattern_offset_y_start" "0.055000" - "pattern_offset_y_end" "0.055000" - "pattern_rotate_start" "-7.200000" - "pattern_rotate_end" "-7.200000" - "ignore_weapon_size_scale" "1" - "wear_remap_max" "0.180000" + "name" "antwerp2022_team_spir_graffiti" + "item_name" "#StickerKit_antwerp2022_team_spir" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/spir_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "81" } - "164" + "5389" { - "name" "hy_hunter_modern" - "description_string" "#PaintKit_hy_hunter_modern" - "description_tag" "#PaintKit_hy_hunter_modern_Tag" - "pattern" "hunter_modern" - "style" "2" - "color0" "140 140 124" - "color1" "230 180 96" - "color2" "100 100 100" - "color3" "5 5 5" - "phongintensity" "13" - "pattern_scale" "3" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "-0.120000" - "pattern_offset_y_end" "0.140000" - "pattern_rotate_start" "-3.600000" - "pattern_rotate_end" "0" + "name" "antwerp2022_team_out_graffiti" + "item_name" "#StickerKit_antwerp2022_team_out" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/out_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "109" } - "165" + "5390" { - "name" "hy_hunter_blaze_pink" - "description_string" "#PaintKit_hy_hunter_modern" - "description_tag" "#PaintKit_hy_hunter_blaze_pink_Tag" - "pattern" "hunter_blaze_pink" - "style" "2" - "color0" "167 12 136" - "color1" "180 78 158" - "color2" "31 31 31" - "color3" "152 132 115" - "phongintensity" "13" - "pattern_scale" "3" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_team_cplx_graffiti" + "item_name" "#StickerKit_antwerp2022_team_cplx" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/cplx_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "111" } - "166" + "5391" { - "name" "hy_hunter_blaze_orange" - "description_string" "#PaintKit_hy_hunter_modern" - "description_tag" "#PaintKit_hy_hunter_blaze_orange_Tag" - "pattern" "hunter_modern" - "style" "2" - "color0" "150 68 30" - "color1" "60 60 60" - "color2" "75 60 40" - "color3" "5 5 5" - "phongintensity" "13" - "pattern_scale" "2.500000" - "pattern_offset_x_start" "0.060000" - "pattern_offset_x_end" "0.340000" - "pattern_offset_y_start" "-0.160000" - "pattern_offset_y_end" "0.080000" - "pattern_rotate_start" "0" - "pattern_rotate_end" "3.600000" + "name" "antwerp2022_team_ihc_graffiti" + "item_name" "#StickerKit_antwerp2022_team_ihc" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/ihc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "108" + } + "5392" + { + "name" "antwerp2022_team_ren_graffiti" + "item_name" "#StickerKit_antwerp2022_team_ren" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/ren_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "53" + } + "5393" + { + "name" "antwerp2022_team_liq_graffiti" + "item_name" "#StickerKit_antwerp2022_team_liq" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "48" + } + "5394" + { + "name" "antwerp2022_team_nine_graffiti" + "item_name" "#StickerKit_antwerp2022_team_nine" + "description_string" "#EventItemDesc_antwerp2022_graffiti_team" + "sticker_material" "antwerp2022/nine_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "112" } - "167" + "5395" { - "name" "sp_nukestripe_orange" - "description_string" "#PaintKit_sp_nukestripe" - "description_tag" "#PaintKit_sp_nukestripe_orange_Tag" - "pattern" "nukestripe" - "style" "3" - "color0" "37 41 41" - "color1" "41 52 65" - "color2" "244 80 32" - "color3" "183 58 28" - "phongintensity" "13" - "pattern_scale" "1.200000" - "pattern_offset_x_start" "0.380000" - "pattern_offset_x_end" "0.460000" - "pattern_offset_y_start" "-0.760000" - "pattern_offset_y_end" "-0.760000" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" + "name" "antwerp2022_team_pgl_graffiti" + "item_name" "#StickerKit_antwerp2022_team_pgl" + "description_string" "#EventItemDesc_antwerp2022_graffiti_org" + "sticker_material" "antwerp2022/pgl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "0" } - "168" + "5396" { - "name" "sp_nukestripe_green" - "description_string" "#PaintKit_sp_nukestripe" - "description_tag" "#PaintKit_sp_nukestripe_green_Tag" - "pattern" "nukestripe" - "style" "3" - "color0" "71 104 55" - "color1" "36 47 38" - "color2" "51 210 23" - "color3" "22 22 22" - "phongintensity" "13" - "pattern_scale" "1.600000" - "pattern_offset_x_start" "0.120000" - "pattern_offset_x_end" "0.120000" - "pattern_offset_y_start" "-0.060000" - "pattern_offset_y_end" "-0.060000" - "pattern_rotate_start" "3.500000" - "pattern_rotate_end" "3.700000" + "name" "antwerp2022_signature_stavn_2" + "item_name" "#StickerKit_antwerp2022_signature_stavn" + "description_string" "#StickerKit_desc_antwerp2022_signature_stavn" + "sticker_material" "antwerp2022/sig_stavn" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "169" + "5397" { - "name" "sp_nukestripe_maroon" - "description_string" "#PaintKit_sp_nukestripe" - "description_tag" "#PaintKit_sp_nukestripe_maroon_Tag" - "pattern" "nukestripe" - "style" "3" - "color0" "98 40 40 " - "color1" "65 70 80 " - "color2" "177 52 52" - "color3" "44 46 48 " - "phongintensity" "13" - "pattern_scale" "1.600000" - "pattern_offset_x_start" "0.120000" - "pattern_offset_x_end" "0.120000" - "pattern_offset_y_start" "0.300000" - "pattern_offset_y_end" "0.300000" - "pattern_rotate_start" "-21.600000" - "pattern_rotate_end" "-21.600000" + "name" "antwerp2022_signature_stavn_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_stavn_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_stavn_glitter" + "sticker_material" "antwerp2022/sig_stavn_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "170" + "5398" { - "name" "sp_zebracam" - "description_string" "#PaintKit_sp_zebracam" - "description_tag" "#PaintKit_sp_zebracam_Tag" - "pattern" "tiger" - "style" "3" - "color0" "56 71 54" - "color1" "158 149 114" - "color2" "79 41 32" - "color3" "45 46 33" - "phongintensity" "5" - "phongexponent" "32" - "pattern_scale" "0.900000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-10" - "pattern_rotate_end" "7" + "name" "antwerp2022_signature_stavn_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_stavn_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_stavn_holo" + "sticker_material" "antwerp2022/sig_stavn_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "171" + "5399" { - "name" "sp_nukestripe_brown" - "description_string" "#PaintKit_sp_nukestripe" - "description_tag" "#PaintKit_sp_nukestripe_brown_Tag" - "pattern" "nukestripe" - "style" "3" - "color0" "63 78 86" - "color1" "57 51 45" - "color2" "147 102 40" - "color3" "81 49 28" - "phongintensity" "13" - "pattern_scale" "1" - "pattern_offset_x_start" "-0.440000" - "pattern_offset_x_end" "-0.440000" - "pattern_offset_y_start" "0.620000" - "pattern_offset_y_end" "0.620000" - "pattern_rotate_start" "-43.000000" - "pattern_rotate_end" "-43.400002" + "name" "antwerp2022_signature_stavn_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_stavn_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_stavn_gold" + "sticker_material" "antwerp2022/sig_stavn_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "172" + "5400" { - "name" "hy_ak47lam_bw" - "description_string" "#PaintKit_hy_ak47lam" - "description_tag" "#PaintKit_hy_ak47lam_bw_Tag" - "pattern" "laminate_ak47" - "wear_default" "0.050000" - "style" "2" - "color0" "17 16 15" - "color1" "43 40 45" - "color2" "191 184 174" - "color3" "1 1 1" - "phongexponent" "60" - "phongintensity" "51" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_cadian_2" + "item_name" "#StickerKit_antwerp2022_signature_cadian" + "description_string" "#StickerKit_desc_antwerp2022_signature_cadian" + "sticker_material" "antwerp2022/sig_cadian" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "174" + "5401" { - "name" "hy_blam_simple" - "description_string" "#PaintKit_hy_blam" - "description_tag" "#PaintKit_hy_blam_simple_Tag" - "pattern" "blam" - "wear_default" "0.080000" - "style" "2" - "color0" "171 64 33" - "color1" "236 84 19" - "color2" "28 26 23" - "color3" "54 54 54" - "phongintensity" "13" - "pattern_scale" "2.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-30" - "pattern_rotate_end" "30" - "wear_remap_max" "0.280000" + "name" "antwerp2022_signature_cadian_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_cadian_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_cadian_glitter" + "sticker_material" "antwerp2022/sig_cadian_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "175" + "5402" { - "name" "sp_dapple" - "description_string" "#PaintKit_sp_dapple" - "description_tag" "#PaintKit_sp_dapple_Tag" - "pattern" "dapple" - "wear_default" "0.200000" - "style" "3" - "color0" "104 98 87" - "color1" "104 98 87" - "color2" "17 15 19" - "color3" "17 15 19" - "phongintensity" "23" - "phongexponent" "32" - "pattern_scale" "0.900000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_cadian_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_cadian_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_cadian_holo" + "sticker_material" "antwerp2022/sig_cadian_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "176" + "5403" { - "name" "sp_zebracam_bw" - "description_string" "#PaintKit_sp_zebracam" - "description_tag" "#PaintKit_sp_zebracam_bw_Tag" - "pattern" "tiger" - "style" "3" - "color0" "68 65 57" - "color1" "142 142 130" - "color2" "60 61 66" - "color3" "18 18 18" - "phongintensity" "5" - "phongexponent" "32" - "pattern_scale" "0.900000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-10" - "pattern_rotate_end" "7" + "name" "antwerp2022_signature_cadian_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_cadian_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_cadian_gold" + "sticker_material" "antwerp2022/sig_cadian_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "177" + "5404" { - "name" "hy_icosahedron" - "description_string" "#PaintKit_CSGO_Icosahedron" - "description_tag" "#PaintKit_CSGO_Icosahedron_Tag" - "pattern" "icosahedron" - "pattern_scale" "4" - "wear_default" "0.040000" - "style" "2" - "color0" "69 64 56" - "color1" "177 92 16" - "color2" "29 27 24" - "color3" "75 72 69" - "phongintensity" "26" - "phongexponent" "127" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.020000" - "wear_remap_max" "0.180000" + "name" "antwerp2022_signature_teses_2" + "item_name" "#StickerKit_antwerp2022_signature_teses" + "description_string" "#StickerKit_desc_antwerp2022_signature_teses" + "sticker_material" "antwerp2022/sig_teses" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "178" + "5405" { - "name" "hy_doomkitty" - "description_string" "#PaintKit_cu_catskulls_p90" - "description_tag" "#PaintKit_CSGO_Doomkitty_Tag" - "pattern" "catskulls_bw" - "pattern_scale" "4" - "wear_default" "0.040000" - "style" "2" - "color0" "55 54 51" - "color1" "16 16 16" - "color2" "16 16 16" - "color3" "16 16 16" - "phongintensity" "26" - "phongexponent" "127" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.080000" - "wear_remap_max" "0.220000" + "name" "antwerp2022_signature_teses_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_teses_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_teses_glitter" + "sticker_material" "antwerp2022/sig_teses_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "179" + "5406" { - "name" "sp_nukestripe_green_tec9" - "description_string" "#PaintKit_sp_nukestripe" - "description_tag" "#PaintKit_sp_nukestripe_green_Tag" - "pattern" "nukestripe" - "style" "3" - "color0" "71 104 55" - "color1" "36 47 38" - "color2" "51 210 23" - "color3" "22 22 22" - "phongintensity" "13" - "pattern_scale" "1.600000" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "-0.300000" - "pattern_offset_y_end" "-0.300000" - "pattern_rotate_start" "3.500000" - "pattern_rotate_end" "3.700000" + "name" "antwerp2022_signature_teses_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_teses_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_teses_holo" + "sticker_material" "antwerp2022/sig_teses_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "180" + "5407" { - "name" "cu_fireserpent_ak47_bravo" - "description_string" "#PaintKit_cu_fireserpent_ak47_bravo" - "description_tag" "#PaintKit_cu_fireserpent_ak47_bravo_Tag" - "style" "7" - "pattern" "fireserpent_ak47" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" - "phongintensity" "25" - "phongexponent" "128" - "wear_remap_max" "0.760000" + "name" "antwerp2022_signature_teses_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_teses_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_teses_gold" + "sticker_material" "antwerp2022/sig_teses_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "181" + "5408" { - "name" "cu_favela_awp" - "description_string" "#PaintKit_cu_favela" - "description_tag" "#PaintKit_cu_favela_Tag" - "style" "7" - "pattern" "favela_awp" - "pattern_scale" "1.297000" - "ignore_weapon_size_scale" "1" - "phongintensity" "153" - "phongexponent" "128" - "pattern_offset_x_start" "-0.220000" - "pattern_offset_x_end" "-0.220000" - "pattern_offset_y_start" "-0.298000" - "pattern_offset_y_end" "-0.298000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_refrezh_2" + "item_name" "#StickerKit_antwerp2022_signature_refrezh" + "description_string" "#StickerKit_desc_antwerp2022_signature_refrezh" + "sticker_material" "antwerp2022/sig_refrezh" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "104598470" } - "182" + "5409" { - "name" "cu_dragon_p90_bravo" - "description_string" "#PaintKit_cu_dragon_p90_bravo" - "description_tag" "#PaintKit_cu_dragon_p90_bravo_Tag" - "style" "7" - "pattern" "dragon_p90" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" - "phongintensity" "25" - "phongexponent" "128" - "wear_remap_max" "0.520000" + "name" "antwerp2022_signature_refrezh_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_refrezh_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_refrezh_glitter" + "sticker_material" "antwerp2022/sig_refrezh_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "104598470" } - "183" + "5410" { - "name" "hy_siege_bravo" - "description_string" "#PaintKit_hy_siege_bravo" - "description_tag" "#PaintKit_hy_siege_bravo_Tag" - "pattern" "camo_arctic" - "wear_default" "0.200000" - "style" "2" - "color0" "69 116 85" - "color1" "201 173 72" - "color2" "44 46 37" - "color3" "16 16 16" - "phongintensity" "26" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_refrezh_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_refrezh_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_refrezh_holo" + "sticker_material" "antwerp2022/sig_refrezh_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "104598470" } - "184" + "5411" { - "name" "cu_favela_p2000" - "description_string" "#PaintKit_cu_favela" - "description_tag" "#PaintKit_cu_favela_Tag" - "style" "7" - "pattern" "favela_p2000" - "pattern_scale" "1.400000" - "ignore_weapon_size_scale" "1" - "phongintensity" "153" - "phongexponent" "128" - "pattern_offset_x_start" "-0.080000" - "pattern_offset_x_end" "-0.080000" - "pattern_offset_y_start" "-0.200000" - "pattern_offset_y_end" "-0.200000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_refrezh_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_refrezh_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_refrezh_gold" + "sticker_material" "antwerp2022/sig_refrezh_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "104598470" } - "185" + "5412" { - "name" "am_scales_bravo" - "description_string" "#PaintKit_am_scales_bravo" - "description_tag" "#PaintKit_am_scales_bravo_Tag" - "pattern" "scales" - "wear_default" "0.030000" - "style" "5" - "color0" "50 49 39" - "color1" "58 55 31" - "color2" "72 69 49" - "color3" "79 74 43" - "phongalbedoboost" "30" - "pattern_scale" "20" - "pattern_offset_x_start" "0.250000" - "pattern_offset_x_end" "0.250000" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.120000" - "view_model_exponent_override_size" "512" + "name" "antwerp2022_signature_sjuush_2" + "item_name" "#StickerKit_antwerp2022_signature_sjuush" + "description_string" "#StickerKit_desc_antwerp2022_signature_sjuush" + "sticker_material" "antwerp2022/sig_sjuush" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "186" + "5413" { - "name" "sp_spray_waves_bravo" - "description_string" "#PaintKit_sp_spray_waves_bravo" - "description_tag" "#PaintKit_sp_spray_waves_Tag" - "pattern" "camo_daubs" - "wear_default" "0.300000" - "style" "3" - "color0" "108 124 128" - "color1" "51 75 113" - "color2" "35 45 92" - "color3" "108 124 128" - "phongintensity" "10" - "pattern_scale" "1.700000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_sjuush_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_sjuush_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_sjuush_glitter" + "sticker_material" "antwerp2022/sig_sjuush_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "187" + "5414" { - "name" "sp_star_bravo" - "description_string" "#PaintKit_sp_star_bravo" - "description_tag" "#PaintKit_sp_star_bravo_Tag" - "pattern" "star" - "wear_default" "0.200000" - "style" "3" - "color0" "32 32 32" - "color1" "55 70 62" - "color2" "172 158 57" - "color3" "84 84 84" - "phongintensity" "10" - "pattern_scale" "2" - "pattern_offset_x_start" "-0.100000" - "pattern_offset_x_end" "-0.480000" - "pattern_offset_y_start" "-2.550000" - "pattern_offset_y_end" "-2.750000" - "pattern_rotate_start" "30" - "pattern_rotate_end" "30" - "wear_remap_max" "0.420000" + "name" "antwerp2022_signature_sjuush_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_sjuush_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_sjuush_holo" + "sticker_material" "antwerp2022/sig_sjuush_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "188" + "5415" { - "name" "aq_etched_mac10_bravo" - "description_string" "#PaintKit_aq_etched_mac10_bravo" - "description_tag" "#PaintKit_aq_etched_mac10_bravo_Tag" - "pattern" "etched_mac10" - "style" "8" - "color0" "92 78 48" - "color1" "58 58 31" - "color2" "54 44 33" - "color3" "65 49 46" - "phongalbedoboost" "50" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_sjuush_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_sjuush_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_sjuush_gold" + "sticker_material" "antwerp2022/sig_sjuush_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "189" + "5416" { - "name" "hy_ocean_bravo" - "description_string" "#PaintKit_hy_ocean_bravo" - "description_tag" "#PaintKit_hy_ocean_Tag" - "pattern" "camo_wood" - "wear_default" "0.180000" - "style" "2" - "color0" "35 45 92" - "color1" "108 124 128" - "color2" "51 75 113" - "color3" "39 46 58" - "phongintensity" "10" - "pattern_scale" "2.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.220000" + "name" "antwerp2022_signature_roej_2" + "item_name" "#StickerKit_antwerp2022_signature_roej" + "description_string" "#StickerKit_desc_antwerp2022_signature_roej" + "sticker_material" "antwerp2022/sig_roej" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "30968963" } - "190" + "5417" { - "name" "cu_season_elites_bravo" - "description_string" "#PaintKit_cu_season_elites_bravo" - "description_tag" "#PaintKit_cu_season_elites_bravo_Tag" - "pattern" "season_elites" - "wear_default" "0.000000" - "phongintensity" "153" - "phongexponent" "128" - "style" "7" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_roej_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_roej_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_roej_glitter" + "sticker_material" "antwerp2022/sig_roej_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "30968963" } - "191" + "5418" { - "name" "hy_seaside_bravo" - "description_string" "#PaintKit_hy_seaside_bravo" - "description_tag" "#PaintKit_hy_seaside_bravo_Tag" - "pattern" "seaside" - "wear_default" "0.180000" - "style" "2" - "color0" "35 45 92" - "color1" "108 124 128" - "color2" "51 75 113" - "color3" "39 46 58" - "phongintensity" "13" - "pattern_scale" "2" - "pattern_offset_x_start" "-0.240000" - "pattern_offset_x_end" "0.240000" - "pattern_offset_y_start" "0.030000" - "pattern_offset_y_end" "0.070000" - "wear_remap_max" "0.220000" + "name" "antwerp2022_signature_roej_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_roej_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_roej_holo" + "sticker_material" "antwerp2022/sig_roej_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "30968963" } - "192" + "5419" { - "name" "hy_crumple_bravo" - "description_string" "#PaintKit_hy_crumple_bravo" - "description_tag" "#PaintKit_hy_crumple_bravo_Tag" - "pattern" "crumple" - "wear_default" "0.180000" - "style" "2" - "color0" "4 4 4" - "color1" "220 220 220" - "color2" "40 40 40" - "color3" "40 40 40" - "phongintensity" "13" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_roej_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_roej_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_roej_gold" + "sticker_material" "antwerp2022/sig_roej_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "30968963" } - "193" + "5420" { - "name" "sp_skull_diagram_bravo" - "description_string" "#PaintKit_sp_skull_diagram_bravo" - "description_tag" "#PaintKit_sp_skull_diagram_bravo_Tag" - "pattern" "skull_diagram" - "wear_default" "0.200000" - "style" "3" - "color0" "94 113 94" - "color1" "61 65 46" - "color2" "23 19 17" - "color3" "219 204 174" - "phongintensity" "10" - "pattern_scale" "1" - "pattern_offset_x_start" "-0.480000" - "pattern_offset_x_end" "-0.200000" - "pattern_offset_y_start" "-0.750000" - "pattern_offset_y_end" "-0.790000" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "wear_remap_max" "0.340000" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_zyphon_2" + "item_name" "#StickerKit_antwerp2022_signature_zyphon" + "description_string" "#StickerKit_desc_antwerp2022_signature_zyphon" + "sticker_material" "antwerp2022/sig_zyphon" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "198111516" } - "194" + "5421" { - "name" "sp_spitfire_famas_bravo" - "description_string" "#PaintKit_sp_spitfire_famas_bravo" - "description_tag" "#PaintKit_sp_spitfire_famas_Tag" - "pattern" "spitfire" - "wear_default" "0.080000" - "style" "3" - "color0" "15 15 15" - "color1" "104 30 28" - "color2" "50 50 35" - "color3" "159 159 159" - "phongintensity" "10" - "phongexponent" "6" - "pattern_scale" "0.700000" - "pattern_offset_x_start" "-0.080000" - "pattern_offset_x_end" "-0.080000" - "pattern_offset_y_start" "0.500000" - "pattern_offset_y_end" "0.500000" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_zyphon_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_zyphon_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_zyphon_glitter" + "sticker_material" "antwerp2022/sig_zyphon_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "198111516" + } + "5422" + { + "name" "antwerp2022_signature_zyphon_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_zyphon_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_zyphon_holo" + "sticker_material" "antwerp2022/sig_zyphon_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "198111516" + } + "5423" + { + "name" "antwerp2022_signature_zyphon_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_zyphon_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_zyphon_gold" + "sticker_material" "antwerp2022/sig_zyphon_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "198111516" } - "195" + "5424" { - "name" "hy_bluepolygon_bravo" - "description_string" "#PaintKit_hy_tile_bravo" - "description_tag" "#PaintKit_hy_bluepolygon_bravo_Tag" - "pattern" "ali_tile" - "wear_default" "0.180000" - "style" "2" - "color0" "142 92 36" - "color1" "80 111 133" - "color2" "60 64 68" - "color3" "32 44 51" - "phongintensity" "10" - "pattern_scale" "2" - "pattern_offset_x_start" "0.190000" - "pattern_offset_x_end" "0.230000" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_hooxi_2" + "item_name" "#StickerKit_antwerp2022_signature_hooxi" + "description_string" "#StickerKit_desc_antwerp2022_signature_hooxi" + "sticker_material" "antwerp2022/sig_hooxi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "38661042" } - "196" + "5425" { - "name" "an_emerald_bravo" - "description_string" "#PaintKit_an_emerald_bravo" - "description_tag" "#PaintKit_an_emerald_bravo_Tag" - "wear_default" "0.060000" - "style" "4" - "color0" "5 61 34" - "color1" "5 61 34" - "color2" "1 1 1" - "color3" "1 1 1" - "phongexponent" "32" - "phongalbedoboost" "30" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_hooxi_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_hooxi_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_hooxi_glitter" + "sticker_material" "antwerp2022/sig_hooxi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "38661042" } - "197" + "5426" { - "name" "an_navy_bravo" - "description_string" "#PaintKit_an_navy_bravo" - "description_tag" "#PaintKit_an_navy_Tag" - "wear_default" "0.060000" - "style" "4" - "color0" "23 33 47" - "color1" "23 33 47" - "color2" "1 1 1" - "color3" "1 1 1" - "phongexponent" "32" - "phongalbedoboost" "15" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_hooxi_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_hooxi_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_hooxi_holo" + "sticker_material" "antwerp2022/sig_hooxi_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "38661042" } - "198" + "5427" { - "name" "sp_hazard_bravo" - "description_string" "#PaintKit_sp_hazard_bravo" - "description_tag" "#PaintKit_sp_hazard_Tag" - "pattern" "stripe3" - "wear_default" "0.560000" - "style" "3" - "color0" "45 45 45" - "color1" "45 45 45" - "color2" "186 157 38" - "color3" "45 45 45" - "phongintensity" "13" - "pattern_scale" "4.800000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-40" - "pattern_rotate_end" "-50" + "name" "antwerp2022_signature_hooxi_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_hooxi_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_hooxi_gold" + "sticker_material" "antwerp2022/sig_hooxi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "38661042" } - "199" + "5428" { - "name" "sp_tape_dots_bravo" - "description_string" "#PaintKit_sp_tape_dots_bravo" - "description_tag" "#PaintKit_sp_tape_dots_Tag" - "pattern" "mesh_and_tape" - "wear_default" "0.380000" - "style" "3" - "color0" "66 52 43" - "color1" "118 109 92" - "color2" "60 69 37" - "color3" "176 156 94" - "phongintensity" "10" - "pattern_scale" "1.400000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_signature_jabbi_2" + "item_name" "#StickerKit_antwerp2022_signature_jabbi" + "description_string" "#StickerKit_desc_antwerp2022_signature_jabbi" + "sticker_material" "antwerp2022/sig_jabbi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "160291620" } - "200" + "5429" { - "name" "hy_mayan_dreams_bravo" - "description_string" "#PaintKit_hy_mayan_dreams_bravo" - "description_tag" "#PaintKit_hy_mayan_dreams_bravo_Tag" - "pattern" "mayan_clouds" - "wear_default" "0.180000" - "style" "2" - "color0" "4 4 4" - "color1" "123 106 87" - "color2" "81 73 66" - "color3" "98 80 60" - "phongintensity" "13" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_signature_jabbi_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_jabbi_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_jabbi_glitter" + "sticker_material" "antwerp2022/sig_jabbi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "160291620" } - "201" + "5430" { - "name" "sp_palm_bravo" - "description_string" "#PaintKit_sp_palm_bravo" - "description_tag" "#PaintKit_sp_palm_Tag" - "pattern" "palm" - "wear_default" "0.350000" - "style" "3" - "color0" "189 179 155" - "color1" "67 74 28" - "color2" "87 67 49" - "color3" "60 48 38" - "phongintensity" "10" - "pattern_scale" "1" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_jabbi_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_jabbi_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_jabbi_holo" + "sticker_material" "antwerp2022/sig_jabbi_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "160291620" } - "202" + "5431" { - "name" "hy_ddpat_jungle_bravo" - "description_string" "#PaintKit_hy_ddpat_bravo" - "description_tag" "#PaintKit_hy_ddpat_jungle_Tag" - "pattern" "ddpat" - "seed" "42" - "wear_default" "0.020000" - "style" "2" - "color0" "71 67 58" - "color1" "51 79 60" - "color2" "101 103 61" - "color3" "39 35 27" - "phongintensity" "10" - "pattern_scale" "2" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" + "name" "antwerp2022_signature_jabbi_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_jabbi_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_jabbi_gold" + "sticker_material" "antwerp2022/sig_jabbi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "160291620" } - "203" + "5432" { - "name" "aq_steel_bravo" - "description_string" "#PaintKit_aq_steel_bravo" - "description_tag" "#PaintKit_aq_steel_bravo_Tag" - "pattern" "steel" - "wear_default" "0.400000" - "seed" "21" - "style" "8" - "color0" "164 109 67" - "color1" "129 134 143" - "color2" "148 115 84" - "color3" "215 120 26" - "phongalbedoboost" "1" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-4" - "pattern_rotate_end" "4" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_nicoodoz_2" + "item_name" "#StickerKit_antwerp2022_signature_nicoodoz" + "description_string" "#StickerKit_desc_antwerp2022_signature_nicoodoz" + "sticker_material" "antwerp2022/sig_nicoodoz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "112851399" } - "204" + "5433" { - "name" "hy_ali_tile_bravo" - "description_string" "#PaintKit_hy_tile_bravo" - "description_tag" "#PaintKit_hy_ali_tile_bravo_Tag" - "pattern" "ali_tile" - "wear_default" "0.180000" - "style" "2" - "color0" "199 191 173" - "color1" "41 46 50" - "color2" "73 57 29" - "color3" "156 145 118" - "phongintensity" "10" - "pattern_scale" "1.700000" - "pattern_offset_x_start" "-0.680000" - "pattern_offset_x_end" "-0.600000" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_nicoodoz_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_nicoodoz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_nicoodoz_glitter" + "sticker_material" "antwerp2022/sig_nicoodoz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "112851399" } - "205" + "5434" { - "name" "so_jungle_bravo" - "description_string" "#PaintKit_so_jungle_bravo" - "description_tag" "#PaintKit_so_jungle_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "71 67 58" - "color1" "51 79 60" - "color2" "101 103 61" - "color3" "39 35 27" - "phongintensity" "10" + "name" "antwerp2022_signature_nicoodoz_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_nicoodoz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_nicoodoz_holo" + "sticker_material" "antwerp2022/sig_nicoodoz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "112851399" } - "206" + "5435" { - "name" "so_tornado_bravo" - "description_string" "#PaintKit_so_tornado_bravo" - "description_tag" "#PaintKit_so_tornado_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "51 61 77" - "color1" "107 97 78" - "color2" "51 61 77" - "color3" "39 46 58" - "phongintensity" "10" + "name" "antwerp2022_signature_nicoodoz_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_nicoodoz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_nicoodoz_gold" + "sticker_material" "antwerp2022/sig_nicoodoz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "101" + "tournament_player_id" "112851399" } - "207" + "5436" { - "name" "hy_crumple_dark_bravo" - "description_string" "#PaintKit_hy_crumple_bravo" - "description_tag" "#PaintKit_hy_crumple_dark_bravo_Tag" - "pattern" "crumple" - "wear_default" "0.180000" - "style" "2" - "color0" "42 42 42" - "color1" "107 107 107" - "color2" "40 40 40" - "color3" "40 40 40" - "phongintensity" "13" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_tabsen_2" + "item_name" "#StickerKit_antwerp2022_signature_tabsen" + "description_string" "#StickerKit_desc_antwerp2022_signature_tabsen" + "sticker_material" "antwerp2022/sig_tabsen" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "208" + "5437" { - "name" "so_sand_bravo" - "description_string" "#PaintKit_so_sand_bravo" - "description_tag" "#PaintKit_so_sand_Tag" - "wear_default" "0.210000" - "style" "1" - "color0" "75 65 54" - "color1" "100 89 66" - "color2" "139 124 92" - "color3" "75 67 50" - "phongintensity" "10" + "name" "antwerp2022_signature_tabsen_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_tabsen_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_tabsen_glitter" + "sticker_material" "antwerp2022/sig_tabsen_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "209" + "5438" { - "name" "so_olive_bravo" - "description_string" "#PaintKit_so_olive_bravo" - "description_tag" "#PaintKit_so_olive_Tag" - "wear_default" "0.200000" - "style" "1" - "color0" "47 52 37" - "color1" "65 78 61" - "color2" "102 91 66" - "color3" "51 53 26" - "phongintensity" "10" + "name" "antwerp2022_signature_tabsen_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_tabsen_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_tabsen_holo" + "sticker_material" "antwerp2022/sig_tabsen_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "210" + "5439" { - "name" "an_gunmetal_bravo" - "description_string" "#PaintKit_an_gunmetal_bravo" - "description_tag" "#PaintKit_an_gunmetal_Tag" - "wear_default" "0.050000" - "style" "4" - "color0" "40 40 40" - "color1" "40 40 40" - "color2" "40 40 40" - "color3" "40 40 40" - "phongexponent" "32" - "phongalbedoboost" "50" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_tabsen_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_tabsen_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_tabsen_gold" + "sticker_material" "antwerp2022/sig_tabsen_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "211" + "5440" { - "name" "am_ossify_blue_p2000_bravo" - "description_string" "#PaintKit_am_ossify_blue_p2000_bravo" - "description_tag" "#PaintKit_am_ossify_blue_Tag" - "pattern" "seaside_p2000" - "wear_default" "0.020000" - "style" "5" - "color0" "37 52 90" - "color1" "68 92 157" - "color2" "88 96 114" - "color3" "73 74 78" - "phongalbedoboost" "100" - "pattern_scale" "1.315270" - "pattern_offset_x_start" "-0.042000" - "pattern_offset_x_end" "-0.042000" - "pattern_offset_y_start" "-0.137000" - "pattern_offset_y_end" "-0.137000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.120000" - "ignore_weapon_size_scale" "1" + "name" "antwerp2022_signature_tizian_2" + "item_name" "#StickerKit_antwerp2022_signature_tizian" + "description_string" "#StickerKit_desc_antwerp2022_signature_tizian" + "sticker_material" "antwerp2022/sig_tizian" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "37291208" } - "212" + "5441" { - "name" "am_crumple_bravo" - "description_string" "#PaintKit_am_crumple_bravo" - "description_tag" "#PaintKit_am_crumple_Tag" - "pattern" "crumple" - "wear_default" "0.020000" - "style" "5" - "color0" "42 42 42" - "color1" "8 8 8" - "color2" "4 4 4" - "color3" "4 4 4" - "phongalbedoboost" "50" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.120000" - "view_model_exponent_override_size" "1024" + "name" "antwerp2022_signature_tizian_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_tizian_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_tizian_glitter" + "sticker_material" "antwerp2022/sig_tizian_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "37291208" } - "213" + "5442" { - "name" "am_ossify_blue" - "description_string" "#PaintKit_am_ossify_blue" - "description_tag" "#PaintKit_am_ossify_blue_Tag" - "pattern" "ossify" - "wear_default" "0.020000" - "style" "5" - "color0" "37 52 90" - "color1" "68 92 157" - "color2" "88 96 114" - "color3" "73 74 78" - "phongalbedoboost" "100" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_tizian_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_tizian_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_tizian_holo" + "sticker_material" "antwerp2022/sig_tizian_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "37291208" } - "214" + "5443" { - "name" "am_crumple" - "description_string" "#PaintKit_am_crumple" - "description_tag" "#PaintKit_am_crumple_Tag" - "pattern" "crumple" - "wear_default" "0.020000" - "style" "5" - "color0" "41 41 41" - "color1" "8 8 8" - "color2" "4 4 4" - "color3" "4 4 4" - "phongalbedoboost" "30" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.120000" + "name" "antwerp2022_signature_tizian_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_tizian_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_tizian_gold" + "sticker_material" "antwerp2022/sig_tizian_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "37291208" } - "215" + "5444" { - "name" "cu_xray_m4" - "description_string" "#PaintKit_cu_xray_m4" - "description_tag" "#PaintKit_cu_xray_m4_Tag" - "style" "7" - "pattern" "xray_m4" - "pattern_scale" "1.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" - "phongexponent" "100" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" + "name" "antwerp2022_signature_faven_2" + "item_name" "#StickerKit_antwerp2022_signature_faven" + "description_string" "#StickerKit_desc_antwerp2022_signature_faven" + "sticker_material" "antwerp2022/sig_faven" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "216" + "5445" { - "name" "an_titanium30v" - "description_string" "#PaintKit_an_titanium30v" - "description_tag" "#PaintKit_an_titanium30v_Tag" - "style" "4" - "color0" "25 35 44" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.040000" - "phongexponent" "255" - "phongalbedoboost" "100" + "name" "antwerp2022_signature_faven_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_faven_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_faven_glitter" + "sticker_material" "antwerp2022/sig_faven_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "217" + "5446" { - "name" "hy_redtiger" - "description_string" "#PaintKit_hy_v_tiger" - "description_tag" "#PaintKit_hy_redtiger_Tag" - "style" "2" - "pattern" "v_tiger" - "color0" "18 17 17" - "color1" "25 28 19" - "color2" "38 38 38" - "color3" "55 12 7" - "pattern_scale" "3.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" - "phongexponent" "4" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" + "name" "antwerp2022_signature_faven_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_faven_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_faven_holo" + "sticker_material" "antwerp2022/sig_faven_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "218" + "5447" { - "name" "hy_bluehex" - "description_string" "#PaintKit_hy_hex" - "description_tag" "#PaintKit_hy_bluehex_Tag" - "style" "2" - "pattern" "hive" - "color0" "26 1 13" - "color1" "82 26 1" - "color2" "31 43 53" - "color3" "8 16 23" - "pattern_scale" "1.500000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" - "phongexponent" "255" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" + "name" "antwerp2022_signature_faven_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_faven_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_faven_gold" + "sticker_material" "antwerp2022/sig_faven_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "219" + "5448" { - "name" "hy_redhex" - "description_string" "#PaintKit_hy_hex" - "description_tag" "#PaintKit_hy_redhex_Tag" - "style" "2" - "pattern" "hive" - "color0" "26 1 13" - "color1" "92 91 70" - "color2" "55 23 3" - "color3" "43 4 4" - "pattern_scale" "1.500000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" - "phongexponent" "255" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" + "name" "antwerp2022_signature_krimbo_2" + "item_name" "#StickerKit_antwerp2022_signature_krimbo" + "description_string" "#StickerKit_desc_antwerp2022_signature_krimbo" + "sticker_material" "antwerp2022/sig_krimbo" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "210365363" } - "220" + "5449" { - "name" "am_ossify_red" - "description_string" "#PaintKit_am_ossify_red" - "description_tag" "#PaintKit_am_ossify_red_Tag" - "style" "5" - "pattern" "ossify" - "color0" "69 4 4" - "color1" "74 5 5" - "color2" "51 0 0" - "color3" "54 54 54" - "pattern_scale" "4.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" - "phongexponent" "16" - "phongalbedoboost" "60" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" + "name" "antwerp2022_signature_krimbo_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_krimbo_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_krimbo_glitter" + "sticker_material" "antwerp2022/sig_krimbo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "210365363" } - "221" + "5450" { - "name" "am_electric_red" - "description_string" "#PaintKit_am_electric_red" - "description_tag" "#PaintKit_am_electric_red_Tag" - "style" "5" - "pattern" "electric" - "color0" "18 17 17" - "color1" "25 28 19" - "color2" "38 38 38" - "color3" "55 12 7" - "pattern_scale" "3.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.250000" - "phongexponent" "32" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "view_model_exponent_override_size" "1024" + "name" "antwerp2022_signature_krimbo_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_krimbo_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_krimbo_holo" + "sticker_material" "antwerp2022/sig_krimbo_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "210365363" + } + "5451" + { + "name" "antwerp2022_signature_krimbo_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_krimbo_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_krimbo_gold" + "sticker_material" "antwerp2022/sig_krimbo_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "210365363" + } + "5452" + { + "name" "antwerp2022_signature_syrson_2" + "item_name" "#StickerKit_antwerp2022_signature_syrson" + "description_string" "#StickerKit_desc_antwerp2022_signature_syrson" + "sticker_material" "antwerp2022/sig_syrson" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "222" + "5453" { - "name" "cu_shark" - "description_string" "#PaintKit_cu_shark" - "description_tag" "#PaintKit_cu_shark_Tag" - "style" "7" - "pattern" "bloodInTheWater_ssg08" - "pattern_scale" "1" - "ignore_weapon_size_scale" "1" - "phongintensity" "25" - "phongexponent" "128" - "wear_remap_max" "0.200000" - "only_first_material" "1" + "name" "antwerp2022_signature_syrson_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_syrson_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_syrson_glitter" + "sticker_material" "antwerp2022/sig_syrson_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "223" + "5454" { - "name" "hy_flowers" - "description_string" "#PaintKit_hy_flowers" - "description_tag" "#PaintKit_hy_flowers_Tag" - "style" "2" - "pattern" "flowers" - "color0" "56 61 69" - "color1" "152 162 165" - "color2" "60 77 90" - "color3" "110 44 44" - "pattern_scale" "4.000000" - "phongexponent" "100" - "phongintensity" "80" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_syrson_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_syrson_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_syrson_holo" + "sticker_material" "antwerp2022/sig_syrson_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "224" + "5455" { - "name" "hy_water_crest" - "description_string" "#PaintKit_hy_water_crest" - "description_tag" "#PaintKit_hy_water_crest_Tag" - "style" "2" - "pattern" "crest_water" - "color0" "38 52 66" - "color1" "83 84 94" - "color2" "30 33 65" - "color3" "9 9 9" - "pattern_scale" "6.000000" - "phongexponent" "100" - "phongintensity" "80" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_syrson_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_syrson_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_syrson_gold" + "sticker_material" "antwerp2022/sig_syrson_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "225" + "5456" { - "name" "sp_camo_wood_blue" - "description_string" "#PaintKit_hy_camo_large" - "description_tag" "#PaintKit_sp_camo_wood_blue_Tag" - "style" "3" - "pattern" "camo_wood" - "color0" "51 14 14" - "color1" "71 73 74" - "color2" "15 18 28" - "color3" "8 8 8" - "pattern_scale" "0.600000" - "phongexponent" "64" - "phongintensity" "40" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_interz_2" + "item_name" "#StickerKit_antwerp2022_signature_interz" + "description_string" "#StickerKit_desc_antwerp2022_signature_interz" + "sticker_material" "antwerp2022/sig_interz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "226" + "5457" { - "name" "hy_ak47lam_blue" - "description_string" "#PaintKit_hy_ak47lam" - "description_tag" "#PaintKit_hy_ak47lam_blue_Tag" - "style" "2" - "pattern" "laminate_ak47" - "color0" "18 10 2" - "color1" "36 56 117" - "color2" "119 103 86" - "color3" "64 139 164" - "pattern_scale" "1.000000" - "wear_remap_min" "0.020000" - "wear_remap_max" "0.400000" - "phongexponent" "128" - "phongintensity" "153" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" + "name" "antwerp2022_signature_interz_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_interz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_interz_glitter" + "sticker_material" "antwerp2022/sig_interz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "227" + "5458" { - "name" "hy_hive" - "description_string" "#PaintKit_hy_hex" - "description_tag" "#PaintKit_hy_hive_Tag" - "style" "2" - "pattern" "hive" - "color0" "9 50 119" - "color1" "156 57 15" - "color2" "46 46 46" - "color3" "57 39 71" - "pattern_scale" "2" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" - "phongexponent" "255" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" + "name" "antwerp2022_signature_interz_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_interz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_interz_holo" + "sticker_material" "antwerp2022/sig_interz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "228" + "5459" { - "name" "hy_modspots" - "description_string" "#PaintKit_hy_camo_large" - "description_tag" "#PaintKit_hy_modspots_Tag" - "style" "2" - "pattern" "desert_spots" - "color0" "12 12 12" - "color1" "29 37 48" - "color2" "8 74 99" - "color3" "107 32 7" - "pattern_scale" "3.000000" - "phongexponent" "128" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-180.000000" - "pattern_rotate_end" "55.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_interz_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_interz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_interz_gold" + "sticker_material" "antwerp2022/sig_interz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "229" + "5460" { - "name" "sp_zebracam_blue" - "description_string" "#PaintKit_sp_zebracam" - "description_tag" "#PaintKit_sp_zebracam_blue_Tag" - "style" "3" - "pattern" "tiger" - "color0" "0 29 33" - "color1" "4 42 54" - "color2" "1 8 18" - "color3" "34 48 93" - "pattern_scale" "1.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.280000" - "phongexponent" "16" - "phongintensity" "13" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-30.000000" - "pattern_rotate_end" "30.000000" + "name" "antwerp2022_signature_sh1ro_2" + "item_name" "#StickerKit_antwerp2022_signature_sh1ro" + "description_string" "#StickerKit_desc_antwerp2022_signature_sh1ro" + "sticker_material" "antwerp2022/sig_sh1ro" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "230" + "5461" { - "name" "am_ddpatdense_silver" - "description_string" "#PaintKit_am_ddpatdense" - "description_tag" "#PaintKit_am_ddpatdense_silver_Tag" - "style" "5" - "pattern" "ddpat_dense" - "color0" "30 33 35" - "color1" "36 39 41" - "color2" "43 46 48" - "color3" "43 46 49" - "pattern_scale" "2.500000" - "phongexponent" "128" - "phongalbedoboost" "30" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-10.000000" - "pattern_rotate_end" "10.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_sh1ro_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_sh1ro_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_sh1ro_glitter" + "sticker_material" "antwerp2022/sig_sh1ro_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "231" + "5462" { - "name" "am_ddpatdense_peacock" - "description_string" "#PaintKit_am_ddpatdense" - "description_tag" "#PaintKit_am_ddpatdense_peacock_Tag" - "style" "5" - "pattern" "ddpat_dense" - "color0" "11 28 46" - "color1" "9 26 41" - "color2" "14 38 61" - "color3" "11 30 49" - "pattern_scale" "2.500000" - "phongexponent" "128" - "phongalbedoboost" "30" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-10.000000" - "pattern_rotate_end" "10.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" - "dialog_config" "17,0,0,0" + "name" "antwerp2022_signature_sh1ro_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_sh1ro_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_sh1ro_holo" + "sticker_material" "antwerp2022/sig_sh1ro_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "232" + "5463" { - "name" "hy_webs_darker" - "description_string" "#PaintKit_hy_webs" - "description_tag" "#PaintKit_hy_webs_Tag" - "pattern" "webs" - "wear_default" "0.100000" - "seed" "1" - "style" "2" - "color0" "64 12 12" - "color1" "16 16 16" - "color2" "16 16 16" - "color3" "16 16 16" - "phongexponent" "127" - "phongintensity" "26" - "pattern_scale" "4.500000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_sh1ro_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_sh1ro_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_sh1ro_gold" + "sticker_material" "antwerp2022/sig_sh1ro_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "233" + "5464" { - "name" "sp_palm_shadow" - "description_string" "#PaintKit_sp_palm" - "description_tag" "#PaintKit_sp_palm_shadow_Tag" - "pattern" "palm" - "wear_default" "0.350000" - "style" "3" - "color0" "43 58 77" - "color1" "111 120 123" - "color2" "100 111 134" - "color3" "64 87 79" - "phongintensity" "10" - "pattern_scale" "1" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_nafany_2" + "item_name" "#StickerKit_antwerp2022_signature_nafany" + "description_string" "#StickerKit_desc_antwerp2022_signature_nafany" + "sticker_material" "antwerp2022/sig_nafany" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "234" + "5465" { - "name" "sp_twigs" - "description_string" "#PaintKit_twigs" - "description_tag" "#PaintKit_sp_twigs_Tag" - "style" "3" - "pattern" "twigs" - "color0" "14 14 14" - "color1" "83 56 39" - "color2" "169 169 163" - "color3" "108 108 108" - "pattern_scale" "1.200000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "30.000000" - "pattern_rotate_end" "60.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.450000" + "name" "antwerp2022_signature_nafany_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_nafany_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_nafany_glitter" + "sticker_material" "antwerp2022/sig_nafany_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "235" + "5466" { - "name" "hy_varicamo" - "description_string" "#PaintKit_varicamo" - "description_tag" "#PaintKit_hy_varicamo_Tag" - "style" "2" - "pattern" "varicamo" - "color0" "214 204 179" - "color1" "93 118 82" - "color2" "84 64 55" - "color3" "52 44 36" - "pattern_scale" "2.500000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-15.000000" - "pattern_rotate_end" "15.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_nafany_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_nafany_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_nafany_holo" + "sticker_material" "antwerp2022/sig_nafany_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "236" + "5467" { - "name" "hy_varicamo_night" - "description_string" "#PaintKit_varicamo" - "description_tag" "#PaintKit_hy_varicamo_night_Tag" - "style" "2" - "pattern" "varicamo" - "color0" "120 125 115" - "color1" "0 0 0" - "color2" "55 66 84" - "color3" "36 36 52" - "pattern_scale" "2.500000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-15.000000" - "pattern_rotate_end" "15.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_nafany_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_nafany_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_nafany_gold" + "sticker_material" "antwerp2022/sig_nafany_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "237" + "5468" { - "name" "hy_varicamo_urban" - "description_string" "#PaintKit_varicamo" - "description_tag" "#PaintKit_hy_varicamo_urban_Tag" - "style" "2" - "pattern" "varicamo" - "color0" "10 10 10" - "color1" "133 127 127" - "color2" "82 82 89" - "color3" "20 22 21" - "pattern_scale" "2.500000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-15.000000" - "pattern_rotate_end" "15.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_ax1le_2" + "item_name" "#StickerKit_antwerp2022_signature_ax1le" + "description_string" "#StickerKit_desc_antwerp2022_signature_ax1le" + "sticker_material" "antwerp2022/sig_ax1le" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "238" + "5469" { - "name" "hy_varicamo_blue" - "description_string" "#PaintKit_varicamo" - "description_tag" "#PaintKit_hy_varicamo_blue_Tag" - "style" "2" - "pattern" "varicamo" - "color0" "0 98 130" - "color1" "0 55 58" - "color2" "82 82 89" - "color3" "20 21 22" - "pattern_scale" "2.500000" - "phongexponent" "100" - "phongintensity" "60" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-15.000000" - "pattern_rotate_end" "15.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_ax1le_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_ax1le_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_ax1le_glitter" + "sticker_material" "antwerp2022/sig_ax1le_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "240" + "5470" { - "name" "hy_varicamo_desert" - "description_string" "#PaintKit_varicamo" - "description_tag" "#PaintKit_hy_varicamo_desert_Tag" - "style" "2" - "pattern" "varicamo" - "color0" "175 163 133" - "color1" "129 65 40" - "color2" "117 84 72" - "color3" "23 20 16" - "pattern_scale" "2.500000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-15.000000" - "pattern_rotate_end" "15.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_ax1le_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_ax1le_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_ax1le_holo" + "sticker_material" "antwerp2022/sig_ax1le_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "241" + "5471" { - "name" "sp_mesh_slashes" - "description_string" "#PaintKit_sp_mesh_slashes" - "description_tag" "#PaintKit_sp_mesh_slashes_Tag" - "style" "3" - "pattern" "mesh_fabric" - "color0" "32 26 19" - "color1" "43 34 16" - "color2" "116 100 65" - "color3" "17 8 0" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-10.000000" - "pattern_rotate_end" "10.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_ax1le_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_ax1le_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_ax1le_gold" + "sticker_material" "antwerp2022/sig_ax1le_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "242" + "5472" { - "name" "sp_mesh_army" - "description_string" "#PaintKit_sp_mesh_slashes" - "description_tag" "#PaintKit_sp_mesh_army_Tag" - "style" "3" - "pattern" "mesh_fabric" - "color0" "11 11 11" - "color1" "36 42 29" - "color2" "67 33 15" - "color3" "113 94 56" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-10.000000" - "pattern_rotate_end" "10.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_hobbit_2" + "item_name" "#StickerKit_antwerp2022_signature_hobbit" + "description_string" "#StickerKit_desc_antwerp2022_signature_hobbit" + "sticker_material" "antwerp2022/sig_hobbit" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "68027030" } - "243" + "5473" { - "name" "sp_mesh_python" - "description_string" "#PaintKit_sp_mesh_slashes" - "description_tag" "#PaintKit_sp_mesh_python_Tag" - "style" "3" - "pattern" "mesh_fabric" - "color0" "11 11 11" - "color1" "58 62 19" - "color2" "15 30 15" - "color3" "99 99 37" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-10.000000" - "pattern_rotate_end" "10.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_hobbit_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_hobbit_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_hobbit_glitter" + "sticker_material" "antwerp2022/sig_hobbit_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "68027030" + } + "5474" + { + "name" "antwerp2022_signature_hobbit_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_hobbit_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_hobbit_holo" + "sticker_material" "antwerp2022/sig_hobbit_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "68027030" + } + "5475" + { + "name" "antwerp2022_signature_hobbit_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_hobbit_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_hobbit_gold" + "sticker_material" "antwerp2022/sig_hobbit_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "33" + "tournament_player_id" "68027030" + } + "5476" + { + "name" "antwerp2022_signature_yuurih_2" + "item_name" "#StickerKit_antwerp2022_signature_yuurih" + "description_string" "#StickerKit_desc_antwerp2022_signature_yuurih" + "sticker_material" "antwerp2022/sig_yuurih" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "5477" + { + "name" "antwerp2022_signature_yuurih_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_yuurih_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_yuurih_glitter" + "sticker_material" "antwerp2022/sig_yuurih_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "244" + "5478" { - "name" "sp_mesh_hot_and_cold" - "description_string" "#PaintKit_sp_mesh_slashes" - "description_tag" "#PaintKit_sp_mesh_hot_and_cold_Tag" - "style" "3" - "pattern" "mesh_fabric" - "color0" "6 11 37" - "color1" "9 10 10" - "color2" "36 45 90" - "color3" "86 21 36" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-10.000000" - "pattern_rotate_end" "10.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_yuurih_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_yuurih_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_yuurih_holo" + "sticker_material" "antwerp2022/sig_yuurih_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "245" + "5479" { - "name" "sp_spray_army" - "description_string" "#PaintKit_sp_spray" - "description_tag" "#PaintKit_sp_spray_army_Tag" - "pattern" "camo_daubs" - "style" "3" - "color0" "19 19 19" - "color1" "36 42 29" - "color2" "67 33 15" - "color3" "113 94 56" - "phongintensity" "10" - "pattern_scale" "1.550000" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" + "name" "antwerp2022_signature_yuurih_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_yuurih_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_yuurih_gold" + "sticker_material" "antwerp2022/sig_yuurih_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "246" + "5480" { - "name" "aa_fade_metallic" - "description_string" "#PaintKit_aa_fade" - "description_tag" "#PaintKit_aa_fade_metallic_Tag" - "style" "6" - "pattern" "fade" - "color0" "19 19 19" - "color1" "36 42 29" - "color2" "67 33 15" - "color3" "113 94 56" - "phongalbedoboost" "80" - "phongexponent" "34" - "pattern_scale" "1" - "pattern_offset_x_start" "-0.700000" - "pattern_offset_x_end" "-0.700000" - "pattern_offset_y_start" "-0.700000" - "pattern_offset_y_end" "-0.700000" - "pattern_rotate_start" "-55" - "pattern_rotate_end" "-65" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_art_2" + "item_name" "#StickerKit_antwerp2022_signature_art" + "description_string" "#StickerKit_desc_antwerp2022_signature_art" + "sticker_material" "antwerp2022/sig_art" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "247" + "5481" { - "name" "aq_damascus_sg553" - "description_string" "#PaintKit_aq_damascus" - "description_tag" "#PaintKit_aq_damascus_Tag" - "style" "8" - "pattern" "damascus_sg553" - "color0" "60 63 66" - "color1" "58 60 64" - "color2" "44 45 46" - "color3" "52 40 32" - "pattern_scale" "1.000000" - "phongexponent" "8" - "phongalbedoboost" "60" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_art_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_art_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_art_glitter" + "sticker_material" "antwerp2022/sig_art_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "248" + "5482" { - "name" "am_crystallized" - "description_string" "#PaintKit_am_crystallized" - "description_tag" "#PaintKit_am_crystallized_red_Tag" - "style" "5" - "pattern" "crystallized" - "color0" "7 0 0" - "color1" "82 35 7" - "color2" "19 4 0" - "color3" "19 4 0" - "pattern_scale" "5.000000" - "phongexponent" "4" - "phongalbedoboost" "80" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_art_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_art_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_art_holo" + "sticker_material" "antwerp2022/sig_art_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "249" + "5483" { - "name" "am_crystallized_blue" - "description_string" "#PaintKit_am_crystallized" - "description_tag" "#PaintKit_am_crystallized_blue_Tag" - "style" "5" - "pattern" "crystallized" - "color0" "1 2 17" - "color1" "3 72 107" - "color2" "0 2 19" - "color3" "0 5 19" - "pattern_scale" "5.000000" - "phongexponent" "4" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" - "dialog_config" "7,0,0,1" + "name" "antwerp2022_signature_art_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_art_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_art_gold" + "sticker_material" "antwerp2022/sig_art_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "250" + "5484" { - "name" "hy_varicamo_red" - "description_string" "#PaintKit_varicamo" - "description_tag" "#PaintKit_hy_varicamo_red_Tag" - "style" "2" - "pattern" "varicamo" - "color0" "106 36 14" - "color1" "47 15 12" - "color2" "15 5 0" - "color3" "10 0 1" - "pattern_scale" "2.500000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "75.000000" - "pattern_rotate_end" "105.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_kscerato_2" + "item_name" "#StickerKit_antwerp2022_signature_kscerato" + "description_string" "#StickerKit_desc_antwerp2022_signature_kscerato" + "sticker_material" "antwerp2022/sig_kscerato" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "251" + "5485" { - "name" "hy_snakeskin" - "description_string" "#PaintKit_snakeskin" - "description_tag" "#PaintKit_hy_snakeskin_Tag" - "style" "2" - "pattern" "snakeskin" - "color0" "65 73 56" - "color1" "14 51 2" - "color2" "5 11 0" - "color3" "64 83 28" - "pattern_scale" "3.500000" - "phongexponent" "255" - "phongintensity" "64" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.080000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_kscerato_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_kscerato_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_kscerato_glitter" + "sticker_material" "antwerp2022/sig_kscerato_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "252" + "5486" { - "name" "am_crystallized_silver" - "description_string" "#PaintKit_am_crystallized" - "description_tag" "#PaintKit_am_crystallized_silver_Tag" - "style" "5" - "pattern" "crystallized" - "color0" "17 17 17" - "color1" "70 70 70" - "color2" "20 20 20" - "color3" "22 22 22" - "pattern_scale" "5.000000" - "phongexponent" "4" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "0" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "0" - "pattern_rotate_end" "360" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_kscerato_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_kscerato_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_kscerato_holo" + "sticker_material" "antwerp2022/sig_kscerato_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "253" + "5487" { - "name" "aa_fade_grassland" - "description_string" "#PaintKit_aa_fade" - "description_tag" "#PaintKit_aa_fade_grassland_Tag" - "style" "6" - "pattern" "fade" - "color0" "19 19 19" - "color1" "36 42 29" - "color2" "52 67 15" - "color3" "113 94 56" - "pattern_scale" "2.000000" - "phongexponent" "34" - "phongalbedoboost" "80" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "-2.400000" - "pattern_offset_x_end" "-2.100000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "-55.000000" - "pattern_rotate_end" "-65.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.030000" + "name" "antwerp2022_signature_kscerato_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_kscerato_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_kscerato_gold" + "sticker_material" "antwerp2022/sig_kscerato_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "254" + "5488" { - "name" "so_orange_accents" - "description_string" "#PaintKit_so_tangerine" - "description_tag" "#PaintKit_so_orange_accents_Tag" - "style" "1" - "color0" "17 17 17" - "color1" "35 35 35" - "color2" "153 64 33" - "color3" "153 64 33" - "phongexponent" "192" - "phongintensity" "60" - "only_first_material" "0" + "name" "antwerp2022_signature_drop_2" + "item_name" "#StickerKit_antwerp2022_signature_drop" + "description_string" "#StickerKit_desc_antwerp2022_signature_drop" + "sticker_material" "antwerp2022/sig_drop" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "255" + "5489" { - "name" "cu_m4_asimov" - "description_string" "#PaintKit_cu_m4_asimov" - "description_tag" "#PaintKit_cu_m4_asimov_tag" - "style" "7" - "pattern" "zone9_m4" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongintensity" "255" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.180000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_drop_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_drop_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_drop_glitter" + "sticker_material" "antwerp2022/sig_drop_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "256" + "5490" { - "name" "cu_sawedoff_octopump" - "description_string" "#PaintKit_cu_sawedoff_octopump" - "description_tag" "#PaintKit_cu_sawedoff_octopump_tag" - "style" "7" - "pattern" "octopump" - "pattern_scale" "1.000000" - "phongexponent" "70" - "phongintensity" "5" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_drop_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_drop_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_drop_holo" + "sticker_material" "antwerp2022/sig_drop_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "257" + "5491" { - "name" "cu_m4a1-s_elegant" - "description_string" "#PaintKit_cu_m4a1-s_elegant" - "description_tag" "#PaintKit_cu_m4a1-s_elegant_Tag" - "style" "7" - "pattern" "M4A1-S_ct_elegant_update" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "40" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_drop_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_drop_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_drop_gold" + "sticker_material" "antwerp2022/sig_drop_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "258" + "5492" { - "name" "cu_p250_refined" - "description_string" "#PaintKit_cu_p250_refined" - "description_tag" "#PaintKit_cu_p250_refined_Tag" - "style" "7" - "pattern" "p250_orange_gun_refined" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_saffee_2" + "item_name" "#StickerKit_antwerp2022_signature_saffee" + "description_string" "#StickerKit_desc_antwerp2022_signature_saffee" + "sticker_material" "antwerp2022/sig_saffee" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "259" + "5493" { - "name" "cu_awp_cobra" - "description_string" "#PaintKit_cu_awp_cobra" - "description_tag" "#PaintKit_cu_awp_cobra_tag" - "style" "7" - "pattern" "ElegantRedAwpEND" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_saffee_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_saffee_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_saffee_glitter" + "sticker_material" "antwerp2022/sig_saffee_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "260" + "5494" { - "name" "cu_famas_pulse" - "description_string" "#PaintKit_cu_famas_pulse" - "description_tag" "#PaintKit_cu_famas_pulse_tag" - "style" "7" - "pattern" "triangles" - "pattern_scale" "2.000000" - "phongexponent" "32" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.050000" - "pattern_offset_y_end" "0.050000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_saffee_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_saffee_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_saffee_holo" + "sticker_material" "antwerp2022/sig_saffee_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "261" + "5495" { - "name" "hy_marina_sunrise" - "description_string" "#PaintKit_hy_marina_sunrise" - "description_tag" "#PaintKit_hy_marina_sunrise_tag" - "style" "2" - "pattern" "peacepolar" - "color0" "16 32 67" - "color1" "178 146 15" - "color2" "25 44 78" - "color3" "207 141 26" - "pattern_scale" "3.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.050000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_saffee_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_saffee_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_saffee_gold" + "sticker_material" "antwerp2022/sig_saffee_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "262" + "5496" { - "name" "am_thorny_rose_mp9" - "description_string" "#PaintKit_am_thorny_rose_mp9" - "description_tag" "#PaintKit_am_thorny_rose_mp9_tag" - "style" "5" - "pattern" "Thorns_and_roses_sketch9b" - "color0" "0 0 0" - "color1" "25 25 25" - "color2" "214 125 0" - "color3" "169 46 63" - "pattern_scale" "3.000000" - "phongexponent" "32" - "phongalbedoboost" "20" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.750000" - "pattern_offset_x_end" "0.900000" - "pattern_offset_y_start" "0.180000" - "pattern_offset_y_end" "0.220000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_rain_2" + "item_name" "#StickerKit_antwerp2022_signature_rain" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain" + "sticker_material" "antwerp2022/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "263" + "5497" { - "name" "cu_skull_nova" - "description_string" "#PaintKit_cu_skull_nova" - "description_tag" "#PaintKit_cu_skull_nova_tag" - "style" "7" - "pattern" "nova_skull_16" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "55" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_rain_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_rain_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain_glitter" + "sticker_material" "antwerp2022/sig_rain_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "264" + "5498" { - "name" "cu_sandstorm" - "description_string" "#PaintKit_cu_sandstorm" - "description_tag" "#PaintKit_cu_sandstorm_tag" - "style" "7" - "pattern" "underwater" - "pattern_scale" "0.500000" - "phongexponent" "150" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.500000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.500000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_rain_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_rain_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain_holo" + "sticker_material" "antwerp2022/sig_rain_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "265" + "5499" { - "name" "hy_kami" - "description_string" "#PaintKit_hy_kami" - "description_tag" "#PaintKit_hy_kami_tag" - "style" "2" - "pattern" "kami" - "color0" "218 208 183" - "color1" "31 33 28" - "color2" "34 38 37" - "color3" "37 38 42" - "pattern_scale" "1.000000" - "phongexponent" "165" - "phongintensity" "2" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "10.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" - "dialog_config" "6,0,0,1" + "name" "antwerp2022_signature_rain_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_rain_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain_gold" + "sticker_material" "antwerp2022/sig_rain_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "266" + "5500" { - "name" "aq_obsidian" - "description_string" "#PaintKit_aq_obsidian" - "description_tag" "#PaintKit_aq_obsidian_tag" - "style" "8" - "pattern" "01-tex2b" - "color0" "90 62 50" - "color1" "77 46 40" - "color2" "68 72 70" - "color3" "121 142 135" - "pattern_scale" "4.000000" - "phongexponent" "10" - "phongalbedoboost" "60" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_karrigan_2" + "item_name" "#StickerKit_antwerp2022_signature_karrigan" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan" + "sticker_material" "antwerp2022/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5501" + { + "name" "antwerp2022_signature_karrigan_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_karrigan_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan_glitter" + "sticker_material" "antwerp2022/sig_karrigan_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5502" + { + "name" "antwerp2022_signature_karrigan_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_karrigan_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan_holo" + "sticker_material" "antwerp2022/sig_karrigan_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5503" + { + "name" "antwerp2022_signature_karrigan_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_karrigan_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan_gold" + "sticker_material" "antwerp2022/sig_karrigan_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5504" + { + "name" "antwerp2022_signature_twistzz_2" + "item_name" "#StickerKit_antwerp2022_signature_twistzz" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz" + "sticker_material" "antwerp2022/sig_twistzz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" + } + "5505" + { + "name" "antwerp2022_signature_twistzz_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_twistzz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz_glitter" + "sticker_material" "antwerp2022/sig_twistzz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" } - "267" + "5506" { - "name" "am_turqoise_halftone" - "description_string" "#PaintKit_am_turqoise_halftone" - "description_tag" "#PaintKit_am_turqoise_halftone_tag" - "style" "5" - "pattern" "patterns" - "color0" "78 139 144" - "color1" "55 58 62" - "color2" "47 51 61" - "color3" "54 58 64" - "pattern_scale" "4.000000" - "phongexponent" "64" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.050000" - "wear_remap_max" "0.450000" + "name" "antwerp2022_signature_twistzz_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_twistzz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz_holo" + "sticker_material" "antwerp2022/sig_twistzz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" } - "268" + "5507" { - "name" "am_diamond_plate" - "description_string" "#PaintKit_am_diamond_plate" - "description_tag" "#PaintKit_am_diamond_plate_Tag" - "style" "5" - "pattern" "diamond_plate" - "color0" "25 25 25" - "color1" "28 28 28" - "color2" "65 65 65" - "color3" "46 46 46" - "pattern_scale" "64.000000" - "phongexponent" "160" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "45.000000" - "pattern_rotate_end" "45.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_twistzz_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_twistzz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz_gold" + "sticker_material" "antwerp2022/sig_twistzz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" } - "269" + "5508" { - "name" "am_fuschia" - "description_string" "#PaintKit_am_fuschia" - "description_tag" "#PaintKit_am_fuschia_Tag" - "style" "5" - "pattern" "solid" - "color0" "74 9 47" - "color1" "39 39 39" - "color2" "32 32 32" - "color3" "55 55 55" - "pattern_scale" "0.000000" - "phongexponent" "160" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "256" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_broky_2" + "item_name" "#StickerKit_antwerp2022_signature_broky" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky" + "sticker_material" "antwerp2022/sig_broky" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "270" + "5509" { - "name" "aq_etched_cz75" - "description_string" "#PaintKit_aq_etched_cz75" - "description_tag" "#PaintKit_aq_etched_cz75_Tag" - "style" "8" - "pattern" "etched_cz75" - "color0" "255 255 255" - "color1" "255 255 255" - "color2" "184 188 192" - "color3" "58 58 71" - "pattern_scale" "1.000000" - "phongexponent" "120" - "phongalbedoboost" "20" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_broky_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_broky_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky_glitter" + "sticker_material" "antwerp2022/sig_broky_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "271" + "5510" { - "name" "am_p250_beaded_paint" - "description_string" "#PaintKit_am_p250_beaded_paint" - "description_tag" "#PaintKit_am_p250_beaded_paint_Tag" - "style" "5" - "pattern" "p250_beaded_paint" - "color0" "4 4 4" - "color1" "4 54 74" - "color2" "10 10 10" - "color3" "25 25 25" - "pattern_scale" "1.000000" - "phongexponent" "160" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_broky_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_broky_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky_holo" + "sticker_material" "antwerp2022/sig_broky_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "272" + "5511" { - "name" "am_fluted_tec9" - "description_string" "#PaintKit_am_fluted_tec9" - "description_tag" "#PaintKit_am_fluted_tec9_Tag" - "style" "5" - "pattern" "fluted_tec9" - "color0" "2 19 36" - "color1" "29 29 29" - "color2" "19 19 19" - "color3" "57 57 57" - "pattern_scale" "1.000000" - "phongexponent" "160" - "phongalbedoboost" "20" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_broky_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_broky_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky_gold" + "sticker_material" "antwerp2022/sig_broky_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "273" + "5512" { - "name" "aq_engraved_deagle" - "description_string" "#PaintKit_aq_engraved_deagle" - "description_tag" "#PaintKit_aq_engraved_deagle_Tag" - "style" "8" - "pattern" "etched_deagle" - "color0" "255 255 255" - "color1" "255 255 255" - "color2" "185 190 197" - "color3" "125 120 120" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongalbedoboost" "8" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_ropz_2" + "item_name" "#StickerKit_antwerp2022_signature_ropz" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz" + "sticker_material" "antwerp2022/sig_ropz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "274" + "5513" { - "name" "am_copper_flecks" - "description_string" "#PaintKit_am_copper_flecks" - "description_tag" "#PaintKit_am_copper_flecks_Tag" - "style" "5" - "pattern" "noise" - "color0" "16 7 2" - "color1" "25 2 2" - "color2" "49 30 9" - "color3" "32 25 7" - "pattern_scale" "8.000000" - "phongexponent" "32" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_ropz_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_ropz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz_glitter" + "sticker_material" "antwerp2022/sig_ropz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "275" + "5514" { - "name" "hy_poly_camo" - "description_string" "#PaintKit_hy_poly_camo" - "description_tag" "#PaintKit_hy_poly_camo_Tag" - "style" "2" - "pattern" "poly_camo" - "color0" "83 58 58" - "color1" "35 26 33" - "color2" "67 0 0" - "color3" "52 0 0" - "pattern_scale" "2.000000" - "phongexponent" "32" - "phongintensity" "40" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_ropz_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_ropz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz_holo" + "sticker_material" "antwerp2022/sig_ropz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "276" + "5515" { - "name" "so_panther" - "description_string" "#PaintKit_so_panther" - "description_tag" "#PaintKit_so_panther_Tag" - "style" "1" - "color0" "64 12 12 255" - "color1" "16 16 16 255" - "color2" "53 53 53" - "color3" "16 16 16" - "phongexponent" "127" - "phongintensity" "10" - "only_first_material" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.580000" + "name" "antwerp2022_signature_ropz_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_ropz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz_gold" + "sticker_material" "antwerp2022/sig_ropz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "277" + "5516" { - "name" "aq_usp_stainless" - "description_string" "#PaintKit_aq_usp_stainless" - "description_tag" "#PaintKit_aq_usp_stainless_Tag" - "style" "8" - "pattern" "silver_usp" - "color0" "255 255 255" - "color1" "255 255 255" - "color2" "219 219 219" - "color3" "75 72 68" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongalbedoboost" "20" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_rez_2" + "item_name" "#StickerKit_antwerp2022_signature_rez" + "description_string" "#StickerKit_desc_antwerp2022_signature_rez" + "sticker_material" "antwerp2022/sig_rez" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "278" + "5517" { - "name" "hy_craquelure" - "description_string" "#PaintKit_hy_craquelure" - "description_tag" "#PaintKit_hy_craquelure_Tag" - "style" "2" - "pattern" "craquelure" - "color0" "17 32 81" - "color1" "16 16 16 255" - "color2" "62 57 67" - "color3" "16 16 16" - "pattern_scale" "1.000000" - "phongexponent" "127" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.060000" - "wear_remap_max" "0.580000" + "name" "antwerp2022_signature_rez_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_rez_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_rez_glitter" + "sticker_material" "antwerp2022/sig_rez_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "279" + "5518" { - "name" "cu_awp_asimov" - "description_string" "#PaintKit_cu_m4_asimov" - "description_tag" "#PaintKit_cu_m4_asimov_tag" - "style" "7" - "pattern" "zone9_awp" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongintensity" "255" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.180000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_rez_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_rez_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_rez_holo" + "sticker_material" "antwerp2022/sig_rez_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "280" + "5519" { - "name" "cu_aug_chameleonaire" - "description_string" "#PaintKit_cu_aug_chameleonaire" - "description_tag" "#PaintKit_cu_aug_chameleonaire_tag" - "style" "7" - "pattern" "Chameleonaire" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "33" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_rez_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_rez_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_rez_gold" + "sticker_material" "antwerp2022/sig_rez_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "281" + "5520" { - "name" "cu_ump_corporal" - "description_string" "#PaintKit_cu_ump_corporal" - "description_tag" "#PaintKit_cu_ump_corporal_tag" - "style" "7" - "pattern" "corporal_ump-45" - "pattern_scale" "1.000000" - "phongexponent" "50" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.050000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_hampus_2" + "item_name" "#StickerKit_antwerp2022_signature_hampus" + "description_string" "#StickerKit_desc_antwerp2022_signature_hampus" + "sticker_material" "antwerp2022/sig_hampus" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "282" + "5521" { - "name" "cu_ak47_cobra" - "description_string" "#PaintKit_cu_awp_cobra" - "description_tag" "#PaintKit_cu_awp_cobra_tag" - "style" "7" - "pattern" "ElegantREDV1.1" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_hampus_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_hampus_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_hampus_glitter" + "sticker_material" "antwerp2022/sig_hampus_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "283" + "5522" { - "name" "cu_p90_trigon" - "description_string" "#PaintKit_cu_p90_trigon" - "description_tag" "#PaintKit_cu_p90_trigon_tag" - "style" "7" - "pattern" "faceit_p90" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "200" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.080000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_hampus_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_hampus_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_hampus_holo" + "sticker_material" "antwerp2022/sig_hampus_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "284" + "5523" { - "name" "cu_mac10_redhot" - "description_string" "#PaintKit_cu_mac10_redhot" - "description_tag" "#PaintKit_cu_mac10_redhot_tag" - "style" "7" - "pattern" "MAC-10 REDHOT" - "pattern_scale" "1.000000" - "phongexponent" "120" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_hampus_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_hampus_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_hampus_gold" + "sticker_material" "antwerp2022/sig_hampus_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "285" + "5524" { - "name" "sp_negev_turq_terrain" - "description_string" "#PaintKit_sp_negev_turq_terrain" - "description_tag" "#PaintKit_sp_negev_turq_terrain_tag" - "style" "3" - "pattern" "terrain_pattern" - "color0" "41 41 41" - "color1" "25 25 25" - "color2" "15 96 90" - "color3" "19 19 19" - "pattern_scale" "1.500000" - "phongexponent" "100" - "phongintensity" "50" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.450000" + "name" "antwerp2022_signature_plopski_2" + "item_name" "#StickerKit_antwerp2022_signature_plopski" + "description_string" "#StickerKit_desc_antwerp2022_signature_plopski" + "sticker_material" "antwerp2022/sig_plopski" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "175613070" } - "286" + "5525" { - "name" "cu_nova_antique" - "description_string" "#PaintKit_cu_nova_antique" - "description_tag" "#PaintKit_cu_nova_antique_tag" - "style" "7" - "pattern" "nova antique" - "pattern_scale" "1.000000" - "phongexponent" "192" - "phongintensity" "20" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_plopski_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_plopski_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_plopski_glitter" + "sticker_material" "antwerp2022/sig_plopski_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "175613070" } - "287" + "5526" { - "name" "cu_sg553_pulse" - "description_string" "#PaintKit_cu_famas_pulse" - "description_tag" "#PaintKit_cu_famas_pulse_tag" - "style" "7" - "pattern" "triangles" - "pattern_scale" "2.000000" - "phongexponent" "32" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.200000" - "pattern_offset_x_end" "0.300000" - "pattern_offset_y_start" "0.300000" - "pattern_offset_y_end" "0.400000" - "pattern_rotate_start" "45.000000" - "pattern_rotate_end" "45.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_plopski_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_plopski_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_plopski_holo" + "sticker_material" "antwerp2022/sig_plopski_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "175613070" } - "288" + "5527" { - "name" "an_famas_sgt" - "description_string" "#PaintKit_an_famas_sgt" - "description_tag" "#PaintKit_an_famas_sgt_tag" - "style" "8" - "pattern" "staffsgt_famas" - "color0" "138 124 120" - "color1" "120 120 120" - "color2" "255 255 255" - "color3" "119 104 104" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongalbedoboost" "45" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_plopski_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_plopski_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_plopski_gold" + "sticker_material" "antwerp2022/sig_plopski_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "175613070" + } + "5528" + { + "name" "antwerp2022_signature_es3tag_2" + "item_name" "#StickerKit_antwerp2022_signature_es3tag" + "description_string" "#StickerKit_desc_antwerp2022_signature_es3tag" + "sticker_material" "antwerp2022/sig_es3tag" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "1859646" + } + "5529" + { + "name" "antwerp2022_signature_es3tag_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_es3tag_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_es3tag_glitter" + "sticker_material" "antwerp2022/sig_es3tag_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "1859646" + } + "5530" + { + "name" "antwerp2022_signature_es3tag_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_es3tag_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_es3tag_holo" + "sticker_material" "antwerp2022/sig_es3tag_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "1859646" + } + "5531" + { + "name" "antwerp2022_signature_es3tag_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_es3tag_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_es3tag_gold" + "sticker_material" "antwerp2022/sig_es3tag_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "1859646" + } + "5532" + { + "name" "antwerp2022_signature_brollan_2" + "item_name" "#StickerKit_antwerp2022_signature_brollan" + "description_string" "#StickerKit_desc_antwerp2022_signature_brollan" + "sticker_material" "antwerp2022/sig_brollan" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "289" + "5533" { - "name" "cu_tec9_sandstorm" - "description_string" "#PaintKit_cu_sandstorm" - "description_tag" "#PaintKit_cu_sandstorm_tag" - "style" "7" - "pattern" "underwater" - "pattern_scale" "0.500000" - "phongexponent" "150" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.500000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.500000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_brollan_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_brollan_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_brollan_glitter" + "sticker_material" "antwerp2022/sig_brollan_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "290" + "5534" { - "name" "cu_usp_elegant" - "description_string" "#PaintKit_cu_usp-s_elegant" - "description_tag" "#PaintKit_cu_m4a1-s_elegant_Tag" - "style" "7" - "pattern" "USP-S_ct_elegant_update" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.380000" + "name" "antwerp2022_signature_brollan_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_brollan_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_brollan_holo" + "sticker_material" "antwerp2022/sig_brollan_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "291" + "5535" { - "name" "cu_mag7_heaven" - "description_string" "#PaintKit_cu_mag7_heaven" - "description_tag" "#PaintKit_cu_mag7_heaven_tag" - "style" "7" - "pattern" "m2" - "pattern_scale" "1.000000" - "phongexponent" "100" - "phongintensity" "75" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_brollan_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_brollan_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_brollan_gold" + "sticker_material" "antwerp2022/sig_brollan_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "293" + "5536" { - "name" "hy_nerodia" - "description_string" "#PaintKit_snakeskin" - "description_tag" "#PaintKit_hy_nerodia_Tag" - "style" "2" - "pattern" "snakeskin" - "color0" "118 115 111" - "color1" "86 78 68" - "color2" "25 22 21" - "color3" "158 141 111" - "pattern_scale" "7.000000" - "phongexponent" "255" - "phongintensity" "32" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.080000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_s1mple_2" + "item_name" "#StickerKit_antwerp2022_signature_s1mple" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1mple" + "sticker_material" "antwerp2022/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "294" + "5537" { - "name" "so_green" - "description_string" "#PaintKit_so_green" - "description_tag" "#PaintKit_so_green_Tag" - "style" "1" - "color0" "32 32 32" - "color1" "31 62 19" - "color2" "32 32 32" - "color3" "32 32 32 255" - "phongexponent" "255" - "phongintensity" "80" - "only_first_material" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" - "dialog_config" "7,0,0,1" + "name" "antwerp2022_signature_s1mple_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_s1mple_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1mple_glitter" + "sticker_material" "antwerp2022/sig_s1mple_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "295" + "5538" { - "name" "cu_money" - "description_string" "#PaintKit_cu_money" - "description_tag" "#PaintKit_cu_money_Tag" - "style" "7" - "pattern" "money" - "pattern_scale" "3.000000" - "phongexponent" "255" - "phongintensity" "255" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_s1mple_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_s1mple_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1mple_holo" + "sticker_material" "antwerp2022/sig_s1mple_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "296" + "5539" { - "name" "am_crystallized_dark" - "description_string" "#PaintKit_am_crystallized" - "description_tag" "#PaintKit_am_crystallized_dark_Tag" - "style" "5" - "pattern" "crystallized" - "color0" "20 20 20" - "color1" "48 44 33" - "color2" "61 57 36" - "color3" "38 44 38" - "pattern_scale" "6.000000" - "phongexponent" "32" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.180000" + "name" "antwerp2022_signature_s1mple_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_s1mple_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1mple_gold" + "sticker_material" "antwerp2022/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "297" + "5540" { - "name" "so_orca" - "description_string" "#PaintKit_so_orca" - "description_tag" "#PaintKit_so_orca_Tag" - "style" "1" - "color0" "20 20 19" - "color1" "203 202 195" - "color2" "20 20 19" - "color3" "20 20 19" - "phongexponent" "16" - "phongintensity" "10" - "only_first_material" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_boombl4_2" + "item_name" "#StickerKit_antwerp2022_signature_boombl4" + "description_string" "#StickerKit_desc_antwerp2022_signature_boombl4" + "sticker_material" "antwerp2022/sig_boombl4" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "185941338" } - "298" + "5541" { - "name" "am_army_shine" - "description_string" "#PaintKit_am_army_shine" - "description_tag" "#PaintKit_am_army_shine_Tag" - "style" "5" - "pattern" "caustics" - "color0" "14 14 14" - "color1" "40 39 32" - "color2" "46 44 34" - "color3" "38 44 38" - "pattern_scale" "3.000000" - "phongexponent" "32" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "512" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_boombl4_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_boombl4_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_boombl4_glitter" + "sticker_material" "antwerp2022/sig_boombl4_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "185941338" } - "299" + "5542" { - "name" "am_oval_hex" - "description_string" "#PaintKit_am_oval_hex" - "description_tag" "#PaintKit_am_oval_hex_Tag" - "style" "5" - "pattern" "sparkle_oval" - "color0" "14 14 14" - "color1" "95 95 95" - "color2" "21 21 21" - "color3" "0 0 0" - "pattern_scale" "10.000000" - "phongexponent" "0" - "phongalbedoboost" "50" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.280000" - "pattern_offset_y_end" "0.280000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_boombl4_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_boombl4_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_boombl4_holo" + "sticker_material" "antwerp2022/sig_boombl4_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "185941338" } - "300" + "5543" { - "name" "cu_pinstripe_ak47" - "description_string" "#PaintKit_cu_pinstripe_ak47" - "description_tag" "#PaintKit_cu_pinstripe_ak47_Tag" - "style" "7" - "pattern" "pinstripe_ak47" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_boombl4_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_boombl4_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_boombl4_gold" + "sticker_material" "antwerp2022/sig_boombl4_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "185941338" } - "301" + "5544" { - "name" "am_m4a1-s_alloy_orange" - "description_string" "#PaintKit_am_alloy_orange" - "description_tag" "#PaintKit_am_alloy_orange_Tag" - "style" "5" - "pattern" "face_it_m4a1s" - "color0" "25 25 25" - "color1" "255 125 0" - "color2" "174 66 0" - "color3" "94 32 0" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongalbedoboost" "100" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "360.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.900000" + "name" "antwerp2022_signature_perfecto_2" + "item_name" "#StickerKit_antwerp2022_signature_perfecto" + "description_string" "#StickerKit_desc_antwerp2022_signature_perfecto" + "sticker_material" "antwerp2022/sig_perfecto" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "302" + "5545" { - "name" "cu_ak47_rubber" - "description_string" "#PaintKit_cu_rubber_ak47" - "description_tag" "#PaintKit_cu_rubber_ak47_Tag" - "style" "7" - "pattern" "rubber_ak47" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.900000" + "name" "antwerp2022_signature_perfecto_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_perfecto_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_perfecto_glitter" + "sticker_material" "antwerp2022/sig_perfecto_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "303" + "5546" { - "name" "cu_tec9_asiimov" - "description_string" "#PaintKit_cu_tec_isaac" - "description_tag" "#PaintKit_cu_tec_isaac_tag" - "style" "7" - "pattern" "asiimov_tec09" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_perfecto_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_perfecto_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_perfecto_holo" + "sticker_material" "antwerp2022/sig_perfecto_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "304" + "5547" { - "name" "cu_ssg08_immortal" - "description_string" "#PaintKit_cu_immortal_ssg08" - "description_tag" "#PaintKit_cu_immortal_ssg08_Tag" - "style" "7" - "pattern" "immortal_ssg08" - "pattern_scale" "1.000000" - "phongexponent" "100" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.170000" - "pattern_offset_x_end" "0.170000" - "pattern_offset_y_start" "1.120000" - "pattern_offset_y_end" "1.120000" - "pattern_rotate_start" "321.000000" - "pattern_rotate_end" "321.000000" - "wear_remap_min" "0.150000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_perfecto_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_perfecto_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_perfecto_gold" + "sticker_material" "antwerp2022/sig_perfecto_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "305" + "5548" { - "name" "cu_aug_progressiv" - "description_string" "#PaintKit_cu_progressiv_aug" - "description_tag" "#PaintKit_cu_progressiv_aug_Tag" - "style" "7" - "pattern" "progressiv_aug" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "45" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "0" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "0" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_electronic_2" + "item_name" "#StickerKit_antwerp2022_signature_electronic" + "description_string" "#StickerKit_desc_antwerp2022_signature_electronic" + "sticker_material" "antwerp2022/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "306" + "5549" { - "name" "cu_bizon_antique" - "description_string" "#PaintKit_cu_nova_antique" - "description_tag" "#PaintKit_cu_nova_antique_tag" - "style" "7" - "pattern" "antique_bizon" - "pattern_scale" "1.000000" - "phongexponent" "50" - "phongintensity" "15" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "0" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "0" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_electronic_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_electronic_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_electronic_glitter" + "sticker_material" "antwerp2022/sig_electronic_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "307" + "5550" { - "name" "cu_retribution" - "description_string" "#PaintKit_cu_retribution_beretta" - "description_tag" "#PaintKit_cu_retribution_beretta_Tag" - "style" "7" - "pattern" "retribution_beretta" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "20" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.450000" + "name" "antwerp2022_signature_electronic_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_electronic_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_electronic_holo" + "sticker_material" "antwerp2022/sig_electronic_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "308" + "5551" { - "name" "hy_galil_kami" - "description_string" "#PaintKit_hy_kami" - "description_tag" "#PaintKit_hy_kami_tag" - "style" "2" - "pattern" "kami_galil" - "color0" "218 208 183" - "color1" "31 33 28" - "color2" "34 38 37" - "color3" "37 38 42" - "pattern_scale" "2.300000" - "phongexponent" "165" - "phongintensity" "2" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "10.000000" - "pattern_rotate_end" "45" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_electronic_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_electronic_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_electronic_gold" + "sticker_material" "antwerp2022/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "309" + "5552" { - "name" "cu_m4a1_howling" - "description_string" "#PaintKit_cu_howling" - "description_tag" "#PaintKit_cu_howling_tag" - "style" "7" - "pattern" "howling_m4a1" - "pattern_scale" "1.000000" - "phongexponent" "50" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_b1t_2" + "item_name" "#StickerKit_antwerp2022_signature_b1t" + "description_string" "#StickerKit_desc_antwerp2022_signature_b1t" + "sticker_material" "antwerp2022/sig_b1t" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "310" + "5553" { - "name" "cu_mac10_decay" - "description_string" "#PaintKit_cu_decay_mac10" - "description_tag" "#PaintKit_cu_decay_mac10_tag" - "style" "7" - "pattern" "decay_mac10" - "pattern_scale" "1.000000" - "phongexponent" "60" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_b1t_2_glitter" + "item_name" "#StickerKit_antwerp2022_signature_b1t_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_b1t_glitter" + "sticker_material" "antwerp2022/sig_b1t_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "311" + "5554" { - "name" "cu_p90_scorpius" - "description_string" "#PaintKit_cu_scorpius_p90" - "description_tag" "#PaintKit_cu_scorpius_p90_tag" - "style" "7" - "pattern" "scorpius_reborn_p90" - "pattern_scale" "1.000000" - "phongexponent" "40" - "phongintensity" "20" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_b1t_2_holo" + "item_name" "#StickerKit_antwerp2022_signature_b1t_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_b1t_holo" + "sticker_material" "antwerp2022/sig_b1t_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "312" + "5555" { - "name" "cu_scar_cyrex" - "description_string" "#PaintKit_cu_cyrex" - "description_tag" "#PaintKit_cu_cyrex_tag" - "style" "7" - "pattern" "cyrex_scar" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "25" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_b1t_2_gold" + "item_name" "#StickerKit_antwerp2022_signature_b1t_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_b1t_gold" + "sticker_material" "antwerp2022/sig_b1t_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "313" + "5556" { - "name" "cu_usp_spitfire" - "description_string" "#PaintKit_cu_spitfire" - "description_tag" "#PaintKit_cu_spitfire_tag" - "style" "7" - "pattern" "spitfire_usp" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "90" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_snappi_1" + "item_name" "#StickerKit_antwerp2022_signature_snappi" + "description_string" "#StickerKit_desc_antwerp2022_signature_snappi" + "sticker_material" "antwerp2022/sig_snappi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "29157337" + } + "5557" + { + "name" "antwerp2022_signature_snappi_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_snappi_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_snappi_glitter" + "sticker_material" "antwerp2022/sig_snappi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "29157337" + } + "5558" + { + "name" "antwerp2022_signature_snappi_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_snappi_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_snappi_holo" + "sticker_material" "antwerp2022/sig_snappi_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "29157337" } - "314" + "5559" { - "name" "cu_xm1014_heaven_guard" - "description_string" "#PaintKit_cu_mag7_heaven" - "description_tag" "#PaintKit_cu_mag7_heaven_tag" - "style" "7" - "pattern" "heaven_guard_xm1014" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "22" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.030000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_snappi_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_snappi_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_snappi_gold" + "sticker_material" "antwerp2022/sig_snappi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "29157337" } - "315" + "5560" { - "name" "am_nitrogen" - "description_string" "#PaintKit_am_nitrogen" - "description_tag" "#PaintKit_am_nitrogen_tag" - "style" "5" - "pattern" "nitrogen_cz75" - "color0" "0 0 0" - "color1" "0 149 254" - "color2" "26 26 27" - "color3" "29 29 29" - "pattern_scale" "4.000000" - "phongexponent" "32" - "phongalbedoboost" "12" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_dycha_1" + "item_name" "#StickerKit_antwerp2022_signature_dycha" + "description_string" "#StickerKit_desc_antwerp2022_signature_dycha" + "sticker_material" "antwerp2022/sig_dycha" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "81151265" } - "316" + "5561" { - "name" "cu_panther_ak47" - "description_string" "#PaintKit_cu_panther_ak47" - "description_tag" "#PaintKit_cu_panther_ak47_Tag" - "style" "7" - "pattern" "panther_ak47" - "pattern_scale" "1.000000" - "phongexponent" "64" - "phongintensity" "32" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_dycha_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_dycha_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_dycha_glitter" + "sticker_material" "antwerp2022/sig_dycha_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "81151265" } - "317" + "5562" { - "name" "cu_bratatat_negev" - "description_string" "#PaintKit_cu_bratatat_negev" - "description_tag" "#PaintKit_cu_bratatat_negev_Tag" - "style" "7" - "pattern" "bratatat_negev" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "25" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_dycha_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_dycha_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_dycha_holo" + "sticker_material" "antwerp2022/sig_dycha_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "81151265" } - "318" + "5563" { - "name" "cu_usp_sandpapered" - "description_string" "#PaintKit_cu_usp_sandpapered" - "description_tag" "#PaintKit_cu_usp_sandpapered_Tag" - "style" "7" - "pattern" "usp-s_sandpapered" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "32" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_dycha_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_dycha_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_dycha_gold" + "sticker_material" "antwerp2022/sig_dycha_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "81151265" } - "319" + "5564" { - "name" "hy_ssg08_marker" - "description_string" "#PaintKit_hy_ssg08_marker" - "description_tag" "#PaintKit_hy_ssg08_marker_Tag" - "style" "2" - "pattern" "ssg08_marker" - "color0" "215 215 207" - "color1" "0 0 0" - "color2" "0 0 0" - "color3" "19 18 18" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.430000" + "name" "antwerp2022_signature_spinx_1" + "item_name" "#StickerKit_antwerp2022_signature_spinx" + "description_string" "#StickerKit_desc_antwerp2022_signature_spinx" + "sticker_material" "antwerp2022/sig_spinx" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "103070679" } - "320" + "5565" { - "name" "hy_snakeskin_red" - "description_string" "#PaintKit_snakeskin" - "description_tag" "#PaintKit_hy_snakeskin_red_Tag" - "style" "2" - "pattern" "snakeskin" - "color0" "47 34 2" - "color1" "63 15 3" - "color2" "13 10 10" - "color3" "67 65 59" - "pattern_scale" "5.000000" - "phongexponent" "255" - "phongintensity" "30" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.080000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_spinx_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_spinx_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_spinx_glitter" + "sticker_material" "antwerp2022/sig_spinx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "103070679" } - "321" + "5566" { - "name" "cu_m4a1-s_silence" - "description_string" "#PaintKit_cu_m4a1-s_silence" - "description_tag" "#PaintKit_cu_m4a1-s_silence_Tag" - "style" "7" - "pattern" "m4a1-s_silence" - "pattern_scale" "1.000000" - "phongexponent" "128" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_spinx_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_spinx_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_spinx_holo" + "sticker_material" "antwerp2022/sig_spinx_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "103070679" } - "322" + "5567" { - "name" "so_orange_accents2" - "description_string" "#PaintKit_so_tangerine" - "description_tag" "#PaintKit_so_orange_accents_Tag" - "style" "1" - "color0" "17 17 17" - "color1" "35 35 35" - "color2" "35 35 35" - "color3" "153 64 33" - "phongexponent" "192" - "phongintensity" "60" - "only_first_material" "0" - "wear_remap_min" "0.060000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_spinx_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_spinx_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_spinx_gold" + "sticker_material" "antwerp2022/sig_spinx_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "103070679" } - "323" + "5568" { - "name" "aq_steel" - "description_string" "#PaintKit_aq_steel" - "description_tag" "#PaintKit_aq_steel_bravo_Tag" - "pattern" "steel" - "wear_default" "0.400000" - "seed" "21" - "style" "8" - "color0" "164 109 67" - "color1" "129 134 143" - "color2" "148 115 84" - "color3" "215 120 26" - "phongalbedoboost" "1" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-4" - "pattern_rotate_end" "4" - "wear_remap_min" "0.000000" + "name" "antwerp2022_signature_hades_1" + "item_name" "#StickerKit_antwerp2022_signature_hades" + "description_string" "#StickerKit_desc_antwerp2022_signature_hades" + "sticker_material" "antwerp2022/sig_hades" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "90656280" } - "325" + "5569" { - "name" "am_royal" - "description_string" "#PaintKit_am_royal" - "description_tag" "#PaintKit_am_royal_Tag" - "style" "5" - "pattern" "solid" - "color0" "13 7 69" - "color1" "4 22 57" - "color2" "28 19 1" - "color3" "28 19 1" - "pattern_scale" "32.000000" - "phongexponent" "1" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "512" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "10.000000" - "pattern_rotate_start" "42.000000" - "pattern_rotate_end" "40.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.100000" + "name" "antwerp2022_signature_hades_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_hades_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_hades_glitter" + "sticker_material" "antwerp2022/sig_hades_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "90656280" } - "326" + "5570" { - "name" "am_metals" - "description_string" "#PaintKit_am_metals" - "description_tag" "#PaintKit_am_metals_Tag" - "style" "5" - "pattern" "armor_m4a1_s" - "color0" "35 35 38" - "color1" "4 22 57" - "color2" "71 54 7" - "color3" "22 22 23" - "pattern_scale" "1.000000" - "phongexponent" "1" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "512" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.100000" + "name" "antwerp2022_signature_hades_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_hades_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_hades_holo" + "sticker_material" "antwerp2022/sig_hades_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "90656280" } - "327" + "5571" { - "name" "am_chainmail" - "description_string" "#PaintKit_am_chainmail" - "description_tag" "#PaintKit_am_chainmail_Tag" - "style" "5" - "pattern" "chainmail" - "color0" "10 10 10" - "color1" "80 78 74" - "color2" "33 27 12" - "color3" "33 27 12" - "pattern_scale" "12.000000" - "phongexponent" "1" - "phongalbedoboost" "30" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "10.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.220000" + "name" "antwerp2022_signature_hades_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_hades_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_hades_gold" + "sticker_material" "antwerp2022/sig_hades_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "90656280" } - "328" + "5572" { - "name" "aq_handcannon" - "description_string" "#PaintKit_aq_handcannon" - "description_tag" "#PaintKit_aq_handcannon_Tag" - "style" "8" - "pattern" "handcannon" - "color0" "191 191 191" - "color1" "118 118 118" - "color2" "218 214 233" - "color3" "25 31 50" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongalbedoboost" "8" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.010000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_maden_1" + "item_name" "#StickerKit_antwerp2022_signature_maden" + "description_string" "#StickerKit_desc_antwerp2022_signature_maden" + "sticker_material" "antwerp2022/sig_maden" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "329" + "5573" { - "name" "am_metal_inlay" - "description_string" "#PaintKit_am_metal_inlay" - "description_tag" "#PaintKit_am_metal_inlay_Tag" - "style" "5" - "pattern" "medieval_motif_b" - "color0" "77 77 75" - "color1" "27 27 27" - "color2" "13 13 12" - "color3" "6 6 6" - "pattern_scale" "12.000000" - "phongexponent" "1" - "phongalbedoboost" "30" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "45.000000" - "pattern_rotate_end" "45.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.220000" + "name" "antwerp2022_signature_maden_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_maden_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_maden_glitter" + "sticker_material" "antwerp2022/sig_maden_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "330" + "5574" { - "name" "hy_vines" - "description_string" "#PaintKit_hy_vines" - "description_tag" "#PaintKit_hy_vines_Tag" - "style" "2" - "pattern" "vines" - "color0" "10 10 10" - "color1" "24 43 79" - "color2" "50 62 39" - "color3" "64 23 27" - "pattern_scale" "8.000000" - "phongexponent" "1" - "phongintensity" "0" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.020000" - "pattern_offset_x_end" "0.020000" - "pattern_offset_y_start" "4.150000" - "pattern_offset_y_end" "4.150000" - "pattern_rotate_start" "45.000000" - "pattern_rotate_end" "45.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.220000" + "name" "antwerp2022_signature_maden_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_maden_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_maden_holo" + "sticker_material" "antwerp2022/sig_maden_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "332" + "5575" { - "name" "hy_indigo_usp" - "description_string" "#PaintKit_so_indigo" - "description_tag" "#PaintKit_so_indigo_Tag" - "style" "2" - "pattern" "usp_solid_colors" - "color0" "13 7 69" - "color1" "24 43 79" - "color2" "64 23 27" - "color3" "64 64 64" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.060000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_maden_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_maden_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_maden_gold" + "sticker_material" "antwerp2022/sig_maden_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "333" + "5576" { - "name" "so_indigo_and_grey" - "description_string" "#PaintKit_so_indigo_and_grey" - "description_tag" "#PaintKit_so_indigo_and_grey_Tag" - "style" "1" - "color0" "13 7 69" - "color1" "36 50 77" - "color2" "34 34 34" - "color3" "31 38 38" - "phongexponent" "16" - "phongintensity" "10" - "only_first_material" "0" - "wear_remap_min" "0.060000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_aleksib_1" + "item_name" "#StickerKit_antwerp2022_signature_aleksib" + "description_string" "#StickerKit_desc_antwerp2022_signature_aleksib" + "sticker_material" "antwerp2022/sig_aleksib" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52977598" } - "334" + "5577" { - "name" "am_gyrate" - "description_string" "#PaintKit_am_gyrate" - "description_tag" "#PaintKit_am_gyrate_tag" - "style" "5" - "pattern" "gyrate_cz75" - "color0" "1 7 16" - "color1" "23 47 77" - "color2" "93 101 107" - "color3" "160 160 160" - "pattern_scale" "1.400000" - "phongexponent" "32" - "phongalbedoboost" "12" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "27.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "69.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "44.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_aleksib_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_aleksib_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_aleksib_glitter" + "sticker_material" "antwerp2022/sig_aleksib_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52977598" } - "335" + "5578" { - "name" "an_royalbleed" - "description_string" "#PaintKit_an_royalbleed" - "description_tag" "#PaintKit_an_royalbleed_tag" - "style" "8" - "pattern" "p90_royalbleed" - "pattern_scale" "2.000000" - "phongexponent" "40" - "phongalbedoboost" "20" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.350000" + "name" "antwerp2022_signature_aleksib_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_aleksib_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_aleksib_holo" + "sticker_material" "antwerp2022/sig_aleksib_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52977598" } - "336" + "5579" { - "name" "cu_titanstorm" - "description_string" "#PaintKit_cu_titanstorm" - "description_tag" "#PaintKit_cu_titanstorm_tag" - "style" "7" - "pattern" "m4a4_titanstorm" - "pattern_scale" "1.000000" - "phongexponent" "50" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_aleksib_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_aleksib_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_aleksib_gold" + "sticker_material" "antwerp2022/sig_aleksib_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52977598" } - "337" + "5580" { - "name" "cu_korupt" - "description_string" "#PaintKit_cu_korupt" - "description_tag" "#PaintKit_cu_korupt_tag" - "style" "7" - "pattern" "mac10_korupt" - "pattern_scale" "1.000000" - "phongexponent" "60" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_hunter_1" + "item_name" "#StickerKit_antwerp2022_signature_hunter" + "description_string" "#StickerKit_desc_antwerp2022_signature_hunter" + "sticker_material" "antwerp2022/sig_hunter" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52606325" } - "338" + "5581" { - "name" "cu_p2000_pulse" - "description_string" "#PaintKit_cu_famas_pulse" - "description_tag" "#PaintKit_cu_famas_pulse_tag" - "style" "7" - "pattern" "p2000_pulse" - "pattern_scale" "1.000000" - "phongexponent" "60" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.100000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.100000" - "pattern_rotate_start" "0.500000" - "pattern_rotate_end" "1.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_hunter_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_hunter_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_hunter_glitter" + "sticker_material" "antwerp2022/sig_hunter_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52606325" + } + "5582" + { + "name" "antwerp2022_signature_hunter_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_hunter_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_hunter_holo" + "sticker_material" "antwerp2022/sig_hunter_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52606325" + } + "5583" + { + "name" "antwerp2022_signature_hunter_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_hunter_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_hunter_gold" + "sticker_material" "antwerp2022/sig_hunter_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "52606325" + } + "5584" + { + "name" "antwerp2022_signature_jackz_1" + "item_name" "#StickerKit_antwerp2022_signature_jackz" + "description_string" "#StickerKit_desc_antwerp2022_signature_jackz" + "sticker_material" "antwerp2022/sig_jackz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "11977189" } - "339" + "5585" { - "name" "cu_kaiman" - "description_string" "#PaintKit_cu_kaiman" - "description_tag" "#PaintKit_cu_kaiman_tag" - "style" "7" - "pattern" "usp_kaiman" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "90" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_jackz_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_jackz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_jackz_glitter" + "sticker_material" "antwerp2022/sig_jackz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "11977189" } - "340" + "5586" { - "name" "cu_well_traveled_ak47" - "description_string" "#PaintKit_cu_well_traveled_ak47" - "description_tag" "#PaintKit_cu_well_traveled_ak47_Tag" - "style" "7" - "pattern" "well_traveled" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongintensity" "8" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_jackz_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_jackz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_jackz_holo" + "sticker_material" "antwerp2022/sig_jackz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "11977189" } - "341" + "5587" { - "name" "cu_green_leather_ak47" - "description_string" "#PaintKit_cu_green_leather" - "description_tag" "#PaintKit_cu_green_leather_Tag" - "style" "7" - "pattern" "green_leather" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongintensity" "6" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_jackz_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_jackz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_jackz_gold" + "sticker_material" "antwerp2022/sig_jackz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "11977189" } - "342" + "5588" { - "name" "cu_brown_leather_p90" - "description_string" "#PaintKit_cu_brown_leather_p90" - "description_tag" "#PaintKit_cu_brown_leather_p90_Tag" - "style" "7" - "pattern" "brown_leather_p90" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongintensity" "4" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_m0nesy_1" + "item_name" "#StickerKit_antwerp2022_signature_m0nesy" + "description_string" "#StickerKit_desc_antwerp2022_signature_m0nesy" + "sticker_material" "antwerp2022/sig_m0nesy" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "114497073" } - "343" + "5589" { - "name" "cu_luggage_mac10" - "description_string" "#PaintKit_cu_luggage_mac10" - "description_tag" "#PaintKit_cu_luggage_mac10_Tag" - "style" "7" - "pattern" "luggage_mac10" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongintensity" "4" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_m0nesy_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_m0nesy_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_m0nesy_glitter" + "sticker_material" "antwerp2022/sig_m0nesy_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "114497073" } - "344" + "5590" { - "name" "cu_medieval_dragon_awp" - "description_string" "#PaintKit_cu_medieval_dragon_awp" - "description_tag" "#PaintKit_cu_medieval_dragon_awp_Tag" - "style" "7" - "pattern" "dragon_awp" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "140" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_m0nesy_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_m0nesy_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_m0nesy_holo" + "sticker_material" "antwerp2022/sig_m0nesy_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "114497073" } - "345" + "5591" { - "name" "cu_green_leather_sawedoff" - "description_string" "#PaintKit_cu_green_leather" - "description_tag" "#PaintKit_cu_green_leather_Tag" - "style" "7" - "pattern" "green_leather_sawedoff" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongintensity" "6" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_m0nesy_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_m0nesy_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_m0nesy_gold" + "sticker_material" "antwerp2022/sig_m0nesy_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "114497073" } - "346" + "5592" { - "name" "cu_luggage_p2000" - "description_string" "#PaintKit_cu_luggage_p2000" - "description_tag" "#PaintKit_cu_luggage_p2000_Tag" - "style" "7" - "pattern" "leather_p2000" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongintensity" "4" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" - "view_model_exponent_override_size" "512" + "name" "antwerp2022_signature_niko_1" + "item_name" "#StickerKit_antwerp2022_signature_niko" + "description_string" "#StickerKit_desc_antwerp2022_signature_niko" + "sticker_material" "antwerp2022/sig_niko" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "81417650" } - "347" + "5593" { - "name" "aq_pilot_deagle" - "description_string" "#PaintKit_aq_pilot_deagle" - "description_tag" "#PaintKit_aq_pilot_deagle_Tag" - "style" "8" - "pattern" "pilot_deagle" - "color0" "255 255 255" - "color1" "255 255 255" - "color2" "203 209 221" - "color3" "225 221 207" - "pattern_scale" "1.000000" - "phongexponent" "60" - "phongalbedoboost" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_niko_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_niko_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_niko_glitter" + "sticker_material" "antwerp2022/sig_niko_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "81417650" } - "348" + "5594" { - "name" "cu_leather_xm1014" - "description_string" "#PaintKit_cu_leather_xm1014" - "description_tag" "#PaintKit_cu_leather_xm1014_Tag" - "style" "7" - "pattern" "leather_xm1014" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongintensity" "4" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.560000" + "name" "antwerp2022_signature_niko_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_niko_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_niko_holo" + "sticker_material" "antwerp2022/sig_niko_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "81417650" } - "349" + "5595" { - "name" "cu_bizon-osiris" - "description_string" "#PaintKit_cu_bizon-osiris" - "description_tag" "#PaintKit_cu_bizon-osiris_tag" - "style" "7" - "pattern" "osiris" - "pattern_scale" "1.000000" - "phongexponent" "100" - "phongintensity" "55" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_niko_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_niko_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_niko_gold" + "sticker_material" "antwerp2022/sig_niko_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "59" + "tournament_player_id" "81417650" } - "350" + "5596" { - "name" "cu_c75a-tiger" - "description_string" "#PaintKit_cu_c75a-tiger" - "description_tag" "#PaintKit_cu_c75a-tiger_tag" - "style" "7" - "pattern" "cz-75-tiger" - "pattern_scale" "1.000000" - "phongexponent" "132" - "phongintensity" "42" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_jerry_1" + "item_name" "#StickerKit_antwerp2022_signature_jerry" + "description_string" "#StickerKit_desc_antwerp2022_signature_jerry" + "sticker_material" "antwerp2022/sig_jerry" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "65822428" } - "351" + "5597" { - "name" "cu_deagle_aureus" - "description_string" "#PaintKit_cu_deagle_aureus" - "description_tag" "#PaintKit_cu_deagle_aureus_tag" - "style" "7" - "pattern" "deagle_aureus" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_jerry_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_jerry_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_jerry_glitter" + "sticker_material" "antwerp2022/sig_jerry_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "65822428" } - "352" + "5598" { - "name" "aq_57_feathers" - "description_string" "#PaintKit_aq_57_feathers" - "description_tag" "#PaintKit_aq_57_feathers_tag" - "style" "8" - "pattern" "57_feathers" - "color0" "128 128 128 255" - "color1" "150 150 150 255" - "color2" "96 96 96 255" - "color3" "108 108 108 255" - "pattern_scale" "1.000000" - "phongexponent" "100" - "phongalbedoboost" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_jerry_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_jerry_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_jerry_holo" + "sticker_material" "antwerp2022/sig_jerry_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "65822428" } - "353" + "5599" { - "name" "cu_glock-liquescent" - "description_string" "#PaintKit_cu_glock-liquescent" - "description_tag" "#PaintKit_cu_glock-liquescent_tag" - "style" "7" - "pattern" "liquescent" - "pattern_scale" "1.000000" - "phongexponent" "185" - "phongintensity" "58" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_jerry_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_jerry_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_jerry_gold" + "sticker_material" "antwerp2022/sig_jerry_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "65822428" } - "354" + "5600" { - "name" "cu_mp7-commander" - "description_string" "#PaintKit_cu_mp7-commander" - "description_tag" "#PaintKit_cu_mp7-commander_tag" - "style" "7" - "pattern" "mp7-commander" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_zorte_1" + "item_name" "#StickerKit_antwerp2022_signature_zorte" + "description_string" "#StickerKit_desc_antwerp2022_signature_zorte" + "sticker_material" "antwerp2022/sig_zorte" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "99348674" } - "355" + "5601" { - "name" "cu_negev_titanstorm" - "description_string" "#PaintKit_cu_titanstorm" - "description_tag" "#PaintKit_cu_titanstorm_tag" - "style" "7" - "pattern" "mach_negev_titanstorm" - "pattern_scale" "1.000000" - "phongexponent" "100" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_zorte_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_zorte_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_zorte_glitter" + "sticker_material" "antwerp2022/sig_zorte_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "99348674" } - "356" + "5602" { - "name" "cu_nova_koi" - "description_string" "#PaintKit_cu_nova_koi" - "description_tag" "#PaintKit_cu_nova_koi_tag" - "style" "7" - "pattern" "nova_koi" - "pattern_scale" "1.000000" - "phongexponent" "128" - "phongintensity" "64" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_zorte_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_zorte_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_zorte_holo" + "sticker_material" "antwerp2022/sig_zorte_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "99348674" } - "357" + "5603" { - "name" "cu_p2000_ivory" - "description_string" "#PaintKit_cu_p2000_ivory" - "description_tag" "#PaintKit_cu_p2000_ivory_tag" - "style" "7" - "pattern" "p2000_ivory" - "pattern_scale" "1.000000" - "phongexponent" "30" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_zorte_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_zorte_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_zorte_gold" + "sticker_material" "antwerp2022/sig_zorte_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "99348674" } - "358" + "5604" { - "name" "cu_bittersweet" - "description_string" "#PaintKit_cu_bittersweet" - "description_tag" "#PaintKit_cu_bittersweet_tag" - "style" "7" - "pattern" "bittersweet" - "pattern_scale" "2.000000" - "phongexponent" "75" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_kensi_1" + "item_name" "#StickerKit_antwerp2022_signature_kensi" + "description_string" "#StickerKit_desc_antwerp2022_signature_kensi" + "sticker_material" "antwerp2022/sig_kensi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "440380554" } - "359" + "5605" { - "name" "cu_p90-asiimov" - "description_string" "#PaintKit_cu_m4_asimov" - "description_tag" "#PaintKit_cu_m4_asimov_tag" - "style" "7" - "pattern" "zone9_p90" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongintensity" "255" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.920000" + "name" "antwerp2022_signature_kensi_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_kensi_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_kensi_glitter" + "sticker_material" "antwerp2022/sig_kensi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "440380554" } - "360" + "5606" { - "name" "cu_m4a1s_cyrex" - "description_string" "#PaintKit_cu_cyrex" - "description_tag" "#PaintKit_cu_cyrex_tag" - "style" "7" - "pattern" "m4a1_cyrex" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "25" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_kensi_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_kensi_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_kensi_holo" + "sticker_material" "antwerp2022/sig_kensi_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "440380554" } - "361" + "5607" { - "name" "aq_leviathan" - "description_string" "#PaintKit_aq_leviathan" - "description_tag" "#PaintKit_aq_leviathan_tag" - "style" "8" - "pattern" "leviathan" - "color0" "255 255 255" - "color1" "50 171 255" - "color2" "255 255 255" - "color3" "255 255 255" - "pattern_scale" "2.500000" - "phongexponent" "32" - "phongalbedoboost" "1" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" - "dialog_config" "25,0,0,1" + "name" "antwerp2022_signature_kensi_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_kensi_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_kensi_gold" + "sticker_material" "antwerp2022/sig_kensi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "440380554" } - "362" + "5608" { - "name" "hy_lines_orange" - "description_string" "#PaintKit_hy_lines_orange" - "description_tag" "#PaintKit_hy_lines_orange_tag" - "style" "2" - "pattern" "liner" - "color0" "191 207 209" - "color1" "0 0 0" - "color2" "68 82 87" - "color3" "207 140 57" - "pattern_scale" "2.000000" - "phongexponent" "60" - "phongintensity" "100" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_norwi_1" + "item_name" "#StickerKit_antwerp2022_signature_norwi" + "description_string" "#StickerKit_desc_antwerp2022_signature_norwi" + "sticker_material" "antwerp2022/sig_norwi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "194638879" + } + "5609" + { + "name" "antwerp2022_signature_norwi_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_norwi_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_norwi_glitter" + "sticker_material" "antwerp2022/sig_norwi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "194638879" + } + "5610" + { + "name" "antwerp2022_signature_norwi_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_norwi_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_norwi_holo" + "sticker_material" "antwerp2022/sig_norwi_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "194638879" + } + "5611" + { + "name" "antwerp2022_signature_norwi_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_norwi_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_norwi_gold" + "sticker_material" "antwerp2022/sig_norwi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "194638879" + } + "5612" + { + "name" "antwerp2022_signature_shalfey_1" + "item_name" "#StickerKit_antwerp2022_signature_shalfey" + "description_string" "#StickerKit_desc_antwerp2022_signature_shalfey" + "sticker_material" "antwerp2022/sig_shalfey" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "405431972" + } + "5613" + { + "name" "antwerp2022_signature_shalfey_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_shalfey_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_shalfey_glitter" + "sticker_material" "antwerp2022/sig_shalfey_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "405431972" } - "363" + "5614" { - "name" "cu_luggage_sg553" - "description_string" "#PaintKit_cu_luggage_sg553" - "description_tag" "#PaintKit_cu_luggage_sg553_Tag" - "style" "7" - "pattern" "luggage_sg553" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "4" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_shalfey_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_shalfey_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_shalfey_holo" + "sticker_material" "antwerp2022/sig_shalfey_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "405431972" } - "364" + "5615" { - "name" "cu_luggage_usp-s" - "description_string" "#PaintKit_cu_luggage_usp-s" - "description_tag" "#PaintKit_cu_luggage_usp-s_Tag" - "style" "7" - "pattern" "luggage_usp-s" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "4" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_shalfey_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_shalfey_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_shalfey_gold" + "sticker_material" "antwerp2022/sig_shalfey_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "90" + "tournament_player_id" "405431972" } - "365" + "5616" { - "name" "hy_plaid1" - "description_string" "#PaintKit_hy_plaid1" - "description_tag" "#PaintKit_hy_plaid1_Tag" - "style" "2" - "pattern" "tartan1" - "color0" "14 14 14" - "color1" "150 139 123" - "color2" "121 121 97" - "color3" "63 64 48" - "pattern_scale" "4.000000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "25.000000" - "pattern_rotate_end" "45.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.580000" + "name" "antwerp2022_signature_gla1ve_1" + "item_name" "#StickerKit_antwerp2022_signature_gla1ve" + "description_string" "#StickerKit_desc_antwerp2022_signature_gla1ve" + "sticker_material" "antwerp2022/sig_gla1ve" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "50245293" } - "366" + "5617" { - "name" "hy_plaid2" - "description_string" "#PaintKit_hy_plaid2" - "description_tag" "#PaintKit_chy_plaid2_Tag" - "style" "2" - "pattern" "tartan1" - "color0" "14 14 14" - "color1" "90 82 69" - "color2" "121 116 97" - "color3" "48 64 58" - "pattern_scale" "4.000000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "25.000000" - "pattern_rotate_end" "45.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.580000" + "name" "antwerp2022_signature_gla1ve_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_gla1ve_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_gla1ve_glitter" + "sticker_material" "antwerp2022/sig_gla1ve_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "50245293" } - "367" + "5618" { - "name" "am_nuclear_pattern1_glock" - "description_string" "#PaintKit_am_nuclear_pattern1_glock" - "description_tag" "#PaintKit_am_nuclear_pattern1_glock_Tag" - "style" "5" - "pattern" "nuclear_pattern" - "color0" "34 31 29" - "color1" "77 51 13" - "color2" "40 37 33" - "color3" "236 138 22" - "pattern_scale" "2.200000" - "phongexponent" "1" - "phongalbedoboost" "66" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "1.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" - "dialog_config" "9,0,0,1" + "name" "antwerp2022_signature_gla1ve_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_gla1ve_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_gla1ve_holo" + "sticker_material" "antwerp2022/sig_gla1ve_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "50245293" } - "368" + "5619" { - "name" "hy_nuclear_pattern2_mp9" - "description_string" "#PaintKit_hy_nuclear_pattern2_mp9" - "description_tag" "#PaintKit_hy_nuclear_pattern2_mp9_Tag" - "style" "2" - "pattern" "nuclear_pattern" - "color0" "22 21 20" - "color1" "95 19 1" - "color2" "35 33 31" - "color3" "238 67 7" - "pattern_scale" "2.200000" - "phongexponent" "0" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "1.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" - "dialog_config" "16,0,0,2" + "name" "antwerp2022_signature_gla1ve_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_gla1ve_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_gla1ve_gold" + "sticker_material" "antwerp2022/sig_gla1ve_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "50245293" } - "369" + "5620" { - "name" "sp_nuclear_pattern3_negev" - "description_string" "#PaintKit_sp_nuclear_pattern3_negev" - "description_tag" "#PaintKit_sp_nuclear_pattern3_negev_Tag" - "style" "3" - "pattern" "nuclear_pattern" - "color0" "31 16 3" - "color1" "28 27 25" - "color2" "18 17 17" - "color3" "240 155 20" - "pattern_scale" "2.200000" - "phongexponent" "0" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "1.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" - "dialog_config" "17,0,0,1" + "name" "antwerp2022_signature_blamef_1" + "item_name" "#StickerKit_antwerp2022_signature_blamef" + "description_string" "#StickerKit_desc_antwerp2022_signature_blamef" + "sticker_material" "antwerp2022/sig_blamef" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "68193075" } - "370" + "5621" { - "name" "am_nuclear_skulls1_xm1014" - "description_string" "#PaintKit_am_nuclear_skulls1_xm1014" - "description_tag" "#PaintKit_am_nuclear_skulls1_xm1014_Tag" - "style" "5" - "pattern" "nuclear_skulls_02" - "color0" "60 26 4" - "color1" "25 189 134" - "color2" "229 97 8" - "color3" "14 27 4" - "pattern_scale" "2.700000" - "phongexponent" "2" - "phongalbedoboost" "33" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" - "dialog_config" "30,0,0,1" + "name" "antwerp2022_signature_blamef_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_blamef_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_blamef_glitter" + "sticker_material" "antwerp2022/sig_blamef_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "68193075" } - "371" + "5622" { - "name" "am_nuclear_skulls2_famas" - "description_string" "#PaintKit_am_nuclear_skulls2_famas" - "description_tag" "#PaintKit_am_nuclear_skulls2_famas_Tag" - "style" "5" - "pattern" "nuclear_skulls_02" - "color0" "28 5 3" - "color1" "180 155 126" - "color2" "81 2 7" - "color3" "13 11 10" - "pattern_scale" "3.000000" - "phongexponent" "12" - "phongalbedoboost" "44" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" - "dialog_config" "5,0,0,1" + "name" "antwerp2022_signature_blamef_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_blamef_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_blamef_holo" + "sticker_material" "antwerp2022/sig_blamef_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "68193075" } - "372" + "5623" { - "name" "am_nuclear_skulls3_mac10" - "description_string" "#PaintKit_am_nuclear_skulls3_mac10" - "description_tag" "#PaintKit_am_nuclear_skulls3_mac10_Tag" - "style" "5" - "pattern" "nuclear_skulls_02" - "color0" "86 140 38" - "color1" "205 226 64" - "color2" "45 60 43" - "color3" "13 11 10" - "pattern_scale" "3.000000" - "phongexponent" "12" - "phongalbedoboost" "44" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" - "dialog_config" "13,0,0,0" + "name" "antwerp2022_signature_blamef_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_blamef_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_blamef_gold" + "sticker_material" "antwerp2022/sig_blamef_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "68193075" } - "373" + "5624" { - "name" "hy_nuclear_skulls4_p250" - "description_string" "#PaintKit_hy_nuclear_skulls4_p250" - "description_tag" "#PaintKit_hy_nuclear_skulls4_p250_Tag" - "style" "2" - "pattern" "nuclear_skulls_02" - "color0" "55 60 71" - "color1" "201 192 148" - "color2" "136 111 71" - "color3" "20 23 35" - "pattern_scale" "2.300000" - "phongexponent" "55" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.830000" - "dialog_config" "20,0,0,1" + "name" "antwerp2022_signature_k0nfig_1" + "item_name" "#StickerKit_antwerp2022_signature_k0nfig" + "description_string" "#StickerKit_desc_antwerp2022_signature_k0nfig" + "sticker_material" "antwerp2022/sig_k0nfig" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "19403447" } - "374" + "5625" { - "name" "hy_nuclear_skulls5_tec9" - "description_string" "#PaintKit_hy_nuclear_skulls5_tec9" - "description_tag" "#PaintKit_hy_nuclear_skulls5_tec9_Tag" - "style" "2" - "pattern" "nuclear_skulls_02" - "color0" "46 26 14" - "color1" "65 170 135" - "color2" "215 102 27" - "color3" "14 27 4" - "pattern_scale" "2.200000" - "phongexponent" "55" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" - "dialog_config" "27,0,0,0" + "name" "antwerp2022_signature_k0nfig_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_k0nfig_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_k0nfig_glitter" + "sticker_material" "antwerp2022/sig_k0nfig_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "19403447" } - "375" + "5626" { - "name" "sp_nukestripe_orange_aug" - "description_string" "#PaintKit_sp_nukestripe" - "description_tag" "#PaintKit_sp_nukestripe_orange_Tag" - "style" "3" - "pattern" "nukestripe" - "color0" "37 41 41" - "color1" "41 52 65" - "color2" "244 80 32" - "color3" "183 58 28" - "pattern_scale" "1.000000" - "phongexponent" "12" - "phongintensity" "12" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.810000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.250000" - "pattern_offset_y_end" "0.330000" - "pattern_rotate_start" "0" - "pattern_rotate_end" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.550000" - "dialog_config" "1,0,0,1" + "name" "antwerp2022_signature_k0nfig_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_k0nfig_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_k0nfig_holo" + "sticker_material" "antwerp2022/sig_k0nfig_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "19403447" } - "376" + "5627" { - "name" "so_grey_nuclear_green_bizon" - "description_string" "#PaintKit_so_grey_nuclear_green_bizon" - "description_tag" "#PaintKit_so_grey_nuclear_green_bizon_Tag" - "style" "1" - "color0" "163 200 34" - "color1" "33 35 27" - "color2" "23 26 19" - "color3" "24 24 17" - "phongexponent" "30" - "phongintensity" "44" - "only_first_material" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.900000" - "dialog_config" "22,0,0,0" + "name" "antwerp2022_signature_k0nfig_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_k0nfig_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_k0nfig_gold" + "sticker_material" "antwerp2022/sig_k0nfig_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "19403447" } - "377" + "5628" { - "name" "so_grey_nuclear_orange_five_seven" - "description_string" "#PaintKit_so_grey_nuclear_orange_five_seven" - "description_tag" "#PaintKit_so_grey_nuclear_orange_five_seven_Tag" - "style" "1" - "color0" "142 197 46" - "color1" "57 57 53" - "color2" "156 158 135" - "color3" "25 25 23" - "phongexponent" "30" - "phongintensity" "44" - "only_first_material" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" - "dialog_config" "6,0,0,1" + "name" "antwerp2022_signature_xyp9x_1" + "item_name" "#StickerKit_antwerp2022_signature_xyp9x" + "description_string" "#StickerKit_desc_antwerp2022_signature_xyp9x" + "sticker_material" "antwerp2022/sig_xyp9x" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "30416534" } - "378" + "5629" { - "name" "sp_nukestripe_maroon_sg553" - "description_string" "#PaintKit_sp_nukestripe" - "description_tag" "#PaintKit_sp_nukestripe_maroon_Tag" - "style" "3" - "pattern" "nukestripe" - "color0" "98 40 40" - "color1" "41 65 70" - "color2" "177 52 52" - "color3" "44 46 28" - "pattern_scale" "1.200000" - "phongexponent" "12" - "phongintensity" "12" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.790000" - "pattern_offset_x_end" "0.790000" - "pattern_offset_y_start" "0.570000" - "pattern_offset_y_end" "0.670000" - "pattern_rotate_start" "350.000000" - "pattern_rotate_end" "351.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" - "dialog_config" "24,0,0,1" + "name" "antwerp2022_signature_xyp9x_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_xyp9x_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_xyp9x_glitter" + "sticker_material" "antwerp2022/sig_xyp9x_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "30416534" } - "379" + "5630" { - "name" "cu_cerbrus_galil" - "description_string" "#PaintKit_cu_cerbrus_galil" - "description_tag" "#PaintKit_cu_cerbrus_galil_Tag" - "style" "7" - "pattern" "cerbrus_galil" - "pattern_scale" "1.000000" - "phongexponent" "4" - "phongintensity" "2" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.900000" - "dialog_config" "8,0,0,0" + "name" "antwerp2022_signature_xyp9x_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_xyp9x_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_xyp9x_holo" + "sticker_material" "antwerp2022/sig_xyp9x_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "30416534" } - "380" + "5631" { - "name" "cu_tribute_ak47" - "description_string" "#PaintKit_cu_tribute_ak47" - "description_tag" "#PaintKit_cu_tribute_ak47_Tag" - "style" "7" - "pattern" "workshop/tribute_ak47" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.050000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_xyp9x_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_xyp9x_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_xyp9x_gold" + "sticker_material" "antwerp2022/sig_xyp9x_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "30416534" } - "381" + "5632" { - "name" "aq_glock_coiled" - "description_string" "#PaintKit_aq_glock_coiled" - "description_tag" "#PaintKit_aq_glock_coiled_Tag" - "style" "8" - "pattern" "workshop/167-miracle" - "pattern_scale" "2.000000" - "phongexponent" "50" - "phongalbedoboost" "50" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.020000" - "wear_remap_max" "0.250000" + "name" "antwerp2022_signature_farlig_1" + "item_name" "#StickerKit_antwerp2022_signature_farlig" + "description_string" "#StickerKit_desc_antwerp2022_signature_farlig" + "sticker_material" "antwerp2022/sig_farlig" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "63982401" } - "382" + "5633" { - "name" "am_g3sg1_murky" - "description_string" "#PaintKit_am_g3sg1_murky" - "description_tag" "#PaintKit_am_g3sg1_murky_Tag" - "style" "5" - "pattern" "workshop/lepo" - "color0" "128 128 128 255" - "color1" "150 150 150 255" - "color2" "15 15 15" - "color3" "24 27 28" - "pattern_scale" "6.000000" - "phongexponent" "100" - "phongalbedoboost" "19" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.250000" + "name" "antwerp2022_signature_farlig_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_farlig_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_farlig_glitter" + "sticker_material" "antwerp2022/sig_farlig_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "63982401" } - "383" + "5634" { - "name" "aq_m4a1s_basilisk" - "description_string" "#PaintKit_aq_m4a1s_basilisk" - "description_tag" "#PaintKit_aq_m4a1s_basilisk_Tag" - "style" "8" - "pattern" "workshop/basilisk" - "color0" "174 174 174" - "color1" "219 219 219" - "color2" "160 160 145" - "color3" "89 82 72" - "pattern_scale" "1.000000" - "phongexponent" "64" - "phongalbedoboost" "18" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.680000" + "name" "antwerp2022_signature_farlig_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_farlig_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_farlig_holo" + "sticker_material" "antwerp2022/sig_farlig_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "63982401" } - "384" + "5635" { - "name" "cu_m4a4_griffin" - "description_string" "#PaintKit_cu_m4a4_griffin" - "description_tag" "#PaintKit_cu_m4a4_griffin_Tag" - "style" "7" - "pattern" "workshop/M4A4_Griffin" - "pattern_scale" "1.000000" - "phongexponent" "182" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_farlig_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_farlig_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_farlig_gold" + "sticker_material" "antwerp2022/sig_farlig_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "60" + "tournament_player_id" "63982401" + } + "5636" + { + "name" "antwerp2022_signature_apex_1" + "item_name" "#StickerKit_antwerp2022_signature_apex" + "description_string" "#StickerKit_desc_antwerp2022_signature_apex" + "sticker_material" "antwerp2022/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "385" + "5637" { - "name" "sp_mag7_firebitten" - "description_string" "#PaintKit_sp_mag7_firebitten" - "description_tag" "#PaintKit_sp_mag7_firebitten_Tag" - "style" "3" - "pattern" "workshop/firebitten" - "color0" "152 45 45" - "color1" "48 134 34" - "color2" "96 96 96 255" - "color3" "108 108 108 255" - "pattern_scale" "0.300000" - "phongexponent" "32" - "phongintensity" "255" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.060000" - "wear_remap_max" "0.490000" + "name" "antwerp2022_signature_apex_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_apex_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_apex_glitter" + "sticker_material" "antwerp2022/sig_apex_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "386" + "5638" { - "name" "cu_mp9_chevron" - "description_string" "#PaintKit_cu_mp9_chevron" - "description_tag" "#PaintKit_cu_mp9_chevron_Tag" - "style" "7" - "pattern" "workshop/mp9_chevron" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "5" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.460000" + "name" "antwerp2022_signature_apex_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_apex_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_apex_holo" + "sticker_material" "antwerp2022/sig_apex_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "387" + "5639" { - "name" "cu_fiveseven_urban_hazard" - "description_string" "#PaintKit_cu_fiveseven_urban_hazard" - "description_tag" "#PaintKit_cu_mp7-commander_tag" - "style" "7" - "pattern" "workshop/fiveseven_urban_hazard" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "180" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.250000" + "name" "antwerp2022_signature_apex_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_apex_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_apex_gold" + "sticker_material" "antwerp2022/sig_apex_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "388" + "5640" { - "name" "aq_p250_cartel" - "description_string" "#PaintKit_aq_p250_cartel" - "description_tag" "#PaintKit_aq_p250_cartel_Tag" - "style" "8" - "pattern" "workshop/P250_CARTEL" - "color0" "128 128 128 255" - "color1" "150 150 150 255" - "color2" "96 96 96 255" - "color3" "108 108 108 255" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongalbedoboost" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_misutaaa_1" + "item_name" "#StickerKit_antwerp2022_signature_misutaaa" + "description_string" "#StickerKit_desc_antwerp2022_signature_misutaaa" + "sticker_material" "antwerp2022/sig_misutaaa" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "121263183" } - "389" + "5641" { - "name" "cu_p2000_fire_elemental" - "description_string" "#PaintKit_cu_p2000_fire_elemental" - "description_tag" "#PaintKit_cu_p2000_fire_elemental_Tag" - "style" "7" - "pattern" "workshop/P2000_Fire" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongintensity" "70" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_misutaaa_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_misutaaa_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_misutaaa_glitter" + "sticker_material" "antwerp2022/sig_misutaaa_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "121263183" } - "390" + "5642" { - "name" "aq_sawedoff_blackgold" - "description_string" "#PaintKit_aq_sawedoff_blackgold" - "description_tag" "#PaintKit_aq_sawedoff_blackgold_Tag" - "style" "8" - "pattern" "workshop/sawedoff_blackgold" - "color0" "88 79 72" - "color1" "255 255 255" - "color2" "255 255 255" - "color3" "211 49 44" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongalbedoboost" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_misutaaa_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_misutaaa_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_misutaaa_holo" + "sticker_material" "antwerp2022/sig_misutaaa_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "121263183" } - "391" + "5643" { - "name" "cu_scar20_intervention" - "description_string" "#PaintKit_cu_scar20_intervention" - "description_tag" "#PaintKit_cu_scar20_intervention_Tag" - "style" "7" - "pattern" "workshop/scar20_intervention" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_misutaaa_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_misutaaa_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_misutaaa_gold" + "sticker_material" "antwerp2022/sig_misutaaa_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "121263183" } - "392" + "5644" { - "name" "sp_ump45_d-visions" - "description_string" "#PaintKit_sp_ump45_d-visions" - "description_tag" "#PaintKit_sp_ump45_d-visions_Tag" - "style" "3" - "pattern" "workshop/ump45_dvisions" - "color0" "80 0 115" - "color1" "0 0 0" - "color2" "0 0 0" - "color3" "209 240 0" - "pattern_scale" "1.250000" - "phongexponent" "10" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.060000" - "wear_remap_max" "0.350000" + "name" "antwerp2022_signature_dupreeh_1" + "item_name" "#StickerKit_antwerp2022_signature_dupreeh" + "description_string" "#StickerKit_desc_antwerp2022_signature_dupreeh" + "sticker_material" "antwerp2022/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "393" + "5645" { - "name" "cu_xm1014_caritas" - "description_string" "#PaintKit_cu_xm1014_caritas" - "description_tag" "#PaintKit_cu_xm1014_caritas_Tag" - "style" "7" - "pattern" "workshop/xm1014_caritas" - "pattern_scale" "1.000000" - "phongexponent" "110" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_dupreeh_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_dupreeh_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_dupreeh_glitter" + "sticker_material" "antwerp2022/sig_dupreeh_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "394" + "5646" { - "name" "aq_ak47_cartel" - "description_string" "#PaintKit_aq_p250_cartel" - "description_tag" "#PaintKit_aq_p250_cartel_Tag" - "style" "8" - "pattern" "workshop/AK47_CARTEL" - "color0" "128 128 128 255" - "color1" "150 150 150 255" - "color2" "96 96 96 255" - "color3" "108 108 108 255" - "pattern_scale" "1.000000" - "phongexponent" "160" - "phongalbedoboost" "65" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_dupreeh_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_dupreeh_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_dupreeh_holo" + "sticker_material" "antwerp2022/sig_dupreeh_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "395" + "5647" { - "name" "am_awp_glory" - "description_string" "#PaintKit_am_awp_glory" - "description_tag" "#PaintKit_am_awp_glory_Tag" - "style" "5" - "pattern" "workshop/glory_awp" - "color0" "162 131 43" - "color1" "157 126 71" - "color2" "24 32 54 255" - "color3" "4 7 26" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_dupreeh_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_dupreeh_gold" + "sticker_material" "antwerp2022/sig_dupreeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "396" + "5648" { - "name" "cu_elites_urbanstorm" - "description_string" "#PaintKit_cu_elites_urbanstorm" - "description_tag" "#PaintKit_cu_elites_urbanstorm_Tag" - "style" "7" - "pattern" "workshop/EliteUrbanStorm" - "pattern_scale" "1.000000" - "phongexponent" "225" - "phongintensity" "80" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.470000" + "name" "antwerp2022_signature_magisk_1" + "item_name" "#StickerKit_antwerp2022_signature_magisk" + "description_string" "#StickerKit_desc_antwerp2022_signature_magisk" + "sticker_material" "antwerp2022/sig_magisk" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "397" + "5649" { - "name" "aq_deagle_naga" - "description_string" "#PaintKit_aq_deagle_naga" - "description_tag" "#PaintKit_aq_deagle_naga_Tag" - "style" "8" - "pattern" "workshop/deagle_naga" - "color0" "174 174 174" - "color1" "213 213 213" - "color2" "176 172 166" - "color3" "255 255 255" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongalbedoboost" "16" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_magisk_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_magisk_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_magisk_glitter" + "sticker_material" "antwerp2022/sig_magisk_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "398" + "5650" { - "name" "cu_galil_abrasion" - "description_string" "#PaintKit_cu_galil_abrasion" - "description_tag" "#PaintKit_cu_galil_abrasion_Tag" - "style" "7" - "pattern" "workshop/galil_abrasion" - "pattern_scale" "1.000000" - "phongexponent" "64" - "phongintensity" "64" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.350000" - "wear_remap_max" "0.850000" + "name" "antwerp2022_signature_magisk_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_magisk_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_magisk_holo" + "sticker_material" "antwerp2022/sig_magisk_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "399" + "5651" { - "name" "cu_glock_deathtoll" - "description_string" "#PaintKit_cu_glock_deathtoll" - "description_tag" "#PaintKit_cu_glock_deathtoll_Tag" - "style" "5" - "pattern" "workshop/skull" - "color0" "16 16 16" - "color1" "4 4 4" - "color2" "125 125 125" - "color3" "4 4 4" - "pattern_scale" "4.000000" - "phongexponent" "4" - "phongalbedoboost" "20" - "view_model_exponent_override_size" "512" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "-1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "-1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_magisk_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_magisk_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_magisk_gold" + "sticker_material" "antwerp2022/sig_magisk_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "400" + "5652" { - "name" "cu_m4a4_ancestral" - "description_string" "#PaintKit_cu_m4a4_ancestral" - "description_tag" "#PaintKit_cu_m4a4_ancestral_Tag" - "style" "7" - "pattern" "workshop/m4a4_ancestral" - "pattern_scale" "1.000000" - "phongexponent" "72" - "phongintensity" "42" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_zywoo_1" + "item_name" "#StickerKit_antwerp2022_signature_zywoo" + "description_string" "#StickerKit_desc_antwerp2022_signature_zywoo" + "sticker_material" "antwerp2022/sig_zywoo" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "401" + "5653" { - "name" "cu_m249_sektor" - "description_string" "#PaintKit_cu_m249_sektor" - "description_tag" "#PaintKit_cu_m249_sektor_Tag" - "style" "7" - "pattern" "workshop/M249_Sektor" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "3" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_zywoo_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_zywoo_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_zywoo_glitter" + "sticker_material" "antwerp2022/sig_zywoo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "402" + "5654" { - "name" "am_mac10_malachite" - "description_string" "#PaintKit_am_mac10_malachite" - "description_tag" "#PaintKit_am_mac10_malachite_Tag" - "style" "5" - "pattern" "workshop/malachite" - "color0" "6 85 128" - "color1" "0 25 16" - "color2" "30 161 119" - "color3" "0 0 0" - "pattern_scale" "2.000000" - "phongexponent" "4" - "phongalbedoboost" "15" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.300000" - "pattern_offset_x_end" "0.750000" - "pattern_offset_y_start" "0.810000" - "pattern_offset_y_end" "0.900000" - "pattern_rotate_start" "15.000000" - "pattern_rotate_end" "35.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_zywoo_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_zywoo_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_zywoo_holo" + "sticker_material" "antwerp2022/sig_zywoo_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "403" + "5655" { - "name" "cu_mp9_deadly_poison" - "description_string" "#PaintKit_cu_mp9_deadly_poison" - "description_tag" "#PaintKit_cu_mp9_deadly_poison_Tag" - "style" "7" - "pattern" "workshop/mp9_deadly_poison" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "15" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_zywoo_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_zywoo_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_zywoo_gold" + "sticker_material" "antwerp2022/sig_zywoo_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "404" + "5656" { - "name" "cu_p250_mandala" - "description_string" "#PaintKit_cu_p250_mandala" - "description_tag" "#PaintKit_cu_p250_mandala_Tag" - "style" "7" - "pattern" "workshop/p250_mandala" - "pattern_scale" "1.000000" - "phongexponent" "100" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_wood7_1" + "item_name" "#StickerKit_antwerp2022_signature_wood7" + "description_string" "#StickerKit_desc_antwerp2022_signature_wood7" + "sticker_material" "antwerp2022/sig_wood7" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "42876435" } - "405" + "5657" { - "name" "cu_sawedoff_deva" - "description_string" "#PaintKit_cu_sawedoff_deva" - "description_tag" "#PaintKit_cu_sawedoff_deva_Tag" - "style" "7" - "pattern" "workshop/sawedoff_deva" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongintensity" "35" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_wood7_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_wood7_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_wood7_glitter" + "sticker_material" "antwerp2022/sig_wood7_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "42876435" } - "406" + "5658" { - "name" "aq_scar20_leak" - "description_string" "#PaintKit_aq_scar20_leak" - "description_tag" "#PaintKit_aq_scar20_leak_Tag" - "style" "8" - "pattern" "workshop/scar20_leak" - "pattern_scale" "3.000000" - "phongexponent" "64" - "phongalbedoboost" "75" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_wood7_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_wood7_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_wood7_holo" + "sticker_material" "antwerp2022/sig_wood7_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "42876435" } - "407" + "5659" { - "name" "aq_xm1014_sigla" - "description_string" "#PaintKit_aq_xm1014_sigla" - "description_tag" "#PaintKit_aq_xm1014_sigla_Tag" - "style" "8" - "pattern" "workshop/xm1014_sigla" - "pattern_scale" "2.000000" - "phongexponent" "40" - "phongalbedoboost" "30" - "ignore_weapon_size_scale" "1" - "pattern_offset_x_start" "0.080000" - "pattern_offset_x_end" "0.350000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "38.000000" - "pattern_rotate_end" "98.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_wood7_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_wood7_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_wood7_gold" + "sticker_material" "antwerp2022/sig_wood7_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "42876435" + } + "5660" + { + "name" "antwerp2022_signature_chelo_1" + "item_name" "#StickerKit_antwerp2022_signature_chelo" + "description_string" "#StickerKit_desc_antwerp2022_signature_chelo" + "sticker_material" "antwerp2022/sig_chelo" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "107498100" + } + "5661" + { + "name" "antwerp2022_signature_chelo_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_chelo_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_chelo_glitter" + "sticker_material" "antwerp2022/sig_chelo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "107498100" + } + "5662" + { + "name" "antwerp2022_signature_chelo_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_chelo_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_chelo_holo" + "sticker_material" "antwerp2022/sig_chelo_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "107498100" } - "409" + "5663" { - "name" "an_tiger_orange" - "description_string" "#PaintKit_an_tiger_orange" - "description_tag" "#PaintKit_an_tiger_orange_Tag" - "style" "5" - "pattern" "tiger" - "color0" "66 40 5" - "color1" "67 41 5" - "color2" "87 52 4" - "color3" "87 52 4" - "pattern_scale" "4.000000" - "phongexponent" "16" - "phongalbedoboost" "50" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "45.000000" - "pattern_rotate_end" "45.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_chelo_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_chelo_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_chelo_gold" + "sticker_material" "antwerp2022/sig_chelo_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "107498100" } - "410" + "5664" { - "name" "aq_damascus" - "description_string" "#PaintKit_aq_damascus_knife" - "description_tag" "#PaintKit_aq_damascus_Tag" - "style" "8" - "pattern" "damascus" - "color0" "59 64 68" - "color1" "91 95 100" - "color2" "30 31 31" - "color3" "8 5 1" - "pattern_scale" "3.000000" - "phongexponent" "8" - "phongalbedoboost" "60" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_tuurtle_1" + "item_name" "#StickerKit_antwerp2022_signature_tuurtle" + "description_string" "#StickerKit_desc_antwerp2022_signature_tuurtle" + "sticker_material" "antwerp2022/sig_tuurtle" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "34114868" } - "411" + "5665" { - "name" "aq_damascus_90" - "description_string" "#PaintKit_aq_damascus_knife" - "description_tag" "#PaintKit_aq_damascus_Tag" - "style" "8" - "pattern" "damascus" - "color0" "59 64 68" - "color1" "91 95 100" - "color2" "30 31 31" - "color3" "8 5 1" - "pattern_scale" "3.000000" - "phongexponent" "8" - "phongalbedoboost" "60" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "90.000000" - "pattern_rotate_end" "90.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_tuurtle_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_tuurtle_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_tuurtle_glitter" + "sticker_material" "antwerp2022/sig_tuurtle_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "34114868" } - "413" + "5666" { - "name" "am_marble_fade" - "description_string" "#PaintKit_am_marble_fade" - "description_tag" "#PaintKit_am_marble_fade_Tag" - "style" "5" - "pattern" "smoke2" - "color0" "9 8 8" - "color1" "156 123 10" - "color2" "143 43 30" - "color3" "30 61 131" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "-0.700000" - "pattern_offset_y_end" "-0.700000" - "pattern_rotate_start" "-50.000000" - "pattern_rotate_end" "-70.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_tuurtle_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_tuurtle_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_tuurtle_holo" + "sticker_material" "antwerp2022/sig_tuurtle_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "34114868" } - "414" + "5667" { - "name" "aq_steel_knife" - "description_string" "#PaintKit_aq_steel" - "description_tag" "#PaintKit_aq_steel_bravo_Tag" - "pattern" "steel" - "wear_default" "0.400000" - "seed" "21" - "style" "8" - "color0" "164 109 67" - "color1" "129 134 143" - "color2" "148 115 84" - "color3" "215 120 26" - "phongalbedoboost" "1" - "pattern_scale" "4" - "pattern_offset_x_start" "0" - "pattern_offset_x_end" "1" - "pattern_offset_y_start" "0" - "pattern_offset_y_end" "1" - "pattern_rotate_start" "-4" - "pattern_rotate_end" "4" - "wear_remap_min" "0.400000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_tuurtle_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_tuurtle_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_tuurtle_gold" + "sticker_material" "antwerp2022/sig_tuurtle_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "34114868" } - "415" + "5668" { - "name" "am_ruby_marbleized" - "description_string" "#PaintKit_am_marbleized" - "description_tag" "#PaintKit_am_marbleized_Tag" - "style" "5" - "pattern" "smoke2" - "color0" "59 5 14" - "color1" "15 6 1" - "color2" "17 6 1" - "color3" "22 2 6" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_exit_1" + "item_name" "#StickerKit_antwerp2022_signature_exit" + "description_string" "#StickerKit_desc_antwerp2022_signature_exit" + "sticker_material" "antwerp2022/sig_exit" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "50230614" } - "416" + "5669" { - "name" "am_sapphire_marbleized" - "description_string" "#PaintKit_am_marbleized" - "description_tag" "#PaintKit_am_marbleized_Tag" - "style" "5" - "pattern" "smoke2" - "color0" "34 23 117" - "color1" "10 1 15" - "color2" "1 13 17" - "color3" "8 2 22" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_exit_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_exit_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_exit_glitter" + "sticker_material" "antwerp2022/sig_exit_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "50230614" } - "417" + "5670" { - "name" "am_blackpearl_marbleized" - "description_string" "#PaintKit_am_marbleized" - "description_tag" "#PaintKit_am_marbleized_Tag" - "style" "5" - "pattern" "smoke" - "color0" "16 67 131" - "color1" "42 57 8" - "color2" "40 10 24" - "color3" "11 14 27" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_exit_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_exit_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_exit_holo" + "sticker_material" "antwerp2022/sig_exit_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "50230614" } - "418" + "5671" { - "name" "am_doppler_phase1" - "description_string" "#PaintKit_am_marbleized" - "description_tag" "#PaintKit_am_marbleized_Tag" - "style" "5" - "pattern" "smoke2" - "color0" "11 14 27" - "color1" "30 22 12" - "color2" "98 13 28" - "color3" "11 14 27" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-50.000000" - "pattern_rotate_end" "-70.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_exit_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_exit_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_exit_gold" + "sticker_material" "antwerp2022/sig_exit_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "50230614" } - "419" + "5672" { - "name" "am_doppler_phase2" - "description_string" "#PaintKit_am_marbleized" - "description_tag" "#PaintKit_am_marbleized_Tag" - "style" "5" - "pattern" "smoke2" - "color0" "11 14 27" - "color1" "99 9 36" - "color2" "30 22 12" - "color3" "99 9 36" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-50.000000" - "pattern_rotate_end" "-70.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_jota_1" + "item_name" "#StickerKit_antwerp2022_signature_jota" + "description_string" "#StickerKit_desc_antwerp2022_signature_jota" + "sticker_material" "antwerp2022/sig_jota" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "94554756" } - "420" + "5673" { - "name" "am_doppler_phase3" - "description_string" "#PaintKit_am_marbleized" - "description_tag" "#PaintKit_am_marbleized_Tag" - "style" "5" - "pattern" "smoke2" - "color0" "6 8 15" - "color1" "34 23 117" - "color2" "7 24 15" - "color3" "28 20 9" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-50.000000" - "pattern_rotate_end" "-70.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_jota_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_jota_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_jota_glitter" + "sticker_material" "antwerp2022/sig_jota_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "94554756" } - "421" + "5674" { - "name" "am_doppler_phase4" - "description_string" "#PaintKit_am_marbleized" - "description_tag" "#PaintKit_am_marbleized_Tag" - "style" "5" - "pattern" "smoke2" - "color0" "7 9 18" - "color1" "34 23 117" - "color2" "12 31 174" - "color3" "28 20 9" - "pattern_scale" "1.600000" - "phongexponent" "34" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-50.000000" - "pattern_rotate_end" "-70.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_jota_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_jota_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_jota_holo" + "sticker_material" "antwerp2022/sig_jota_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "94554756" } - "422" + "5675" { - "name" "cu_ak47_mastery" - "description_string" "#PaintKit_cu_ak47_mastery" - "description_tag" "#PaintKit_cu_ak47_mastery_Tag" - "style" "7" - "pattern" "workshop/ak47_mastery" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "20" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_jota_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_jota_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_jota_gold" + "sticker_material" "antwerp2022/sig_jota_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "80" + "tournament_player_id" "94554756" } - "423" + "5676" { - "name" "aq_mp7_ultramodern" - "description_string" "#PaintKit_aq_mp7_ultramodern" - "description_tag" "#PaintKit_aq_mp7_ultramodern_Tag" - "style" "8" - "pattern" "workshop/mp7um06" - "color0" "155 155 155" - "color1" "171 171 171" - "color2" "101 101 101" - "color3" "29 29 29" - "pattern_scale" "1.000000" - "phongexponent" "20" - "phongalbedoboost" "18" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_fallen_1" + "item_name" "#StickerKit_antwerp2022_signature_fallen" + "description_string" "#StickerKit_desc_antwerp2022_signature_fallen" + "sticker_material" "antwerp2022/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "424467" } - "424" + "5677" { - "name" "aq_awp_twine" - "description_string" "#PaintKit_aq_awp_twine" - "description_tag" "#PaintKit_aq_awp_twine_Tag" - "style" "8" - "pattern" "workshop/AWP_twine" - "color0" "128 128 128 255" - "color1" "150 150 150 255" - "color2" "96 96 96 255" - "color3" "108 108 108 255" - "pattern_scale" "1.000000" - "phongexponent" "0" - "phongalbedoboost" "5" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.450000" + "name" "antwerp2022_signature_fallen_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_fallen_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_fallen_glitter" + "sticker_material" "antwerp2022/sig_fallen_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "424467" } - "425" + "5678" { - "name" "am_bronze_sparkle" - "description_string" "#PaintKit_am_bronze_sparkle" - "description_tag" "#PaintKit_am_bronze_sparkle_Tag" - "style" "5" - "pattern" "workshop/bronze_flakes" - "color0" "45 45 45" - "color1" "48 39 24" - "color2" "70 56 35" - "color3" "151 121 76" - "pattern_scale" "1.500000" - "phongexponent" "4" - "phongalbedoboost" "70" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "-20.000000" - "pattern_rotate_end" "20.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.460000" + "name" "antwerp2022_signature_fallen_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_fallen_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_fallen_holo" + "sticker_material" "antwerp2022/sig_fallen_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "424467" } - "426" + "5679" { - "name" "aq_p250_contour" - "description_string" "#PaintKit_aq_p250_contour" - "description_tag" "#PaintKit_aq_p250_contour_Tag" - "style" "8" - "pattern" "workshop/coridium_p250_contour_blue" - "color0" "171 156 141" - "color1" "255 255 255" - "color2" "255 255 255" - "color3" "139 119 98" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongalbedoboost" "25" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_fallen_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_fallen_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_fallen_gold" + "sticker_material" "antwerp2022/sig_fallen_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "424467" } - "427" + "5680" { - "name" "cu_fiveseven_banana" - "description_string" "#PaintKit_cu_fiveseven_banana" - "description_tag" "#PaintKit_cu_fiveseven_banana_Tag" - "style" "7" - "pattern" "workshop/FiveSeven_Banana" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "80" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.900000" + "name" "antwerp2022_signature_fer_1" + "item_name" "#StickerKit_antwerp2022_signature_fer" + "description_string" "#StickerKit_desc_antwerp2022_signature_fer" + "sticker_material" "antwerp2022/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "38921219" } - "428" + "5681" { - "name" "cu_galil_eco" - "description_string" "#PaintKit_cu_galil_eco" - "description_tag" "#PaintKit_cu_galil_eco_Tag" - "style" "7" - "pattern" "workshop/Galil_Eco" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.850000" + "name" "antwerp2022_signature_fer_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_fer_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_fer_glitter" + "sticker_material" "antwerp2022/sig_fer_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "38921219" } - "429" + "5682" { - "name" "aq_famas_jinn" - "description_string" "#PaintKit_aq_famas_jinn" - "description_tag" "#PaintKit_aq_famas_jinn_Tag" - "style" "8" - "pattern" "workshop/jinn" - "color0" "86 84 82" - "color1" "208 208 208" - "color2" "153 141 134" - "color3" "87 69 57" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongalbedoboost" "24" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_fer_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_fer_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_fer_holo" + "sticker_material" "antwerp2022/sig_fer_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "38921219" } - "430" + "5683" { - "name" "cu_m4a1_hyper_beast" - "description_string" "#PaintKit_cu_m4a1_hyper_beast" - "description_tag" "#PaintKit_cu_m4a1_hyper_beast_Tag" - "style" "7" - "pattern" "workshop/M4_Hyper_beast" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongintensity" "45" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_fer_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_fer_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_fer_gold" + "sticker_material" "antwerp2022/sig_fer_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "38921219" + } + "5684" + { + "name" "antwerp2022_signature_fnx_1" + "item_name" "#StickerKit_antwerp2022_signature_fnx" + "description_string" "#StickerKit_desc_antwerp2022_signature_fnx" + "sticker_material" "antwerp2022/sig_fnx" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "170178574" + } + "5685" + { + "name" "antwerp2022_signature_fnx_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_fnx_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_fnx_glitter" + "sticker_material" "antwerp2022/sig_fnx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "170178574" } - "431" + "5686" { - "name" "cu_mag7_redhot" - "description_string" "#PaintKit_cu_mac10_redhot" - "description_tag" "#PaintKit_cu_mac10_redhot_tag" - "style" "7" - "pattern" "workshop/mag7_redhot_v2" - "pattern_scale" "1.000000" - "phongexponent" "21" - "phongintensity" "21" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_fnx_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_fnx_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_fnx_holo" + "sticker_material" "antwerp2022/sig_fnx_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "170178574" } - "432" + "5687" { - "name" "am_negev_glory" - "description_string" "#PaintKit_am_awp_glory" - "description_tag" "#PaintKit_am_awp_glory_Tag" - "style" "5" - "pattern" "workshop/Wind_Alternate3" - "color0" "162 131 43" - "color1" "157 126 71" - "color2" "24 32 54 255" - "color3" "4 7 26" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.100000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_fnx_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_fnx_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_fnx_gold" + "sticker_material" "antwerp2022/sig_fnx_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "170178574" } - "433" + "5688" { - "name" "cu_mac10_neonrider" - "description_string" "#PaintKit_cu_mac10_neonrider" - "description_tag" "#PaintKit_cu_mac10_neonrider_Tag" - "style" "7" - "pattern" "workshop/mac10_neonrider" - "pattern_scale" "1.000000" - "phongexponent" "100" - "phongintensity" "255" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.450000" + "name" "antwerp2022_signature_boltz_1" + "item_name" "#StickerKit_antwerp2022_signature_boltz" + "description_string" "#StickerKit_desc_antwerp2022_signature_boltz" + "sticker_material" "antwerp2022/sig_boltz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "58113672" } - "434" + "5689" { - "name" "cu_sawedoff_origami" - "description_string" "#PaintKit_cu_sawedoff_origami" - "description_tag" "#PaintKit_cu_sawedoff_origami_Tag" - "style" "7" - "pattern" "workshop/ori_sawed" - "pattern_scale" "1.000000" - "phongexponent" "250" - "phongintensity" "100" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.550000" + "name" "antwerp2022_signature_boltz_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_boltz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_boltz_glitter" + "sticker_material" "antwerp2022/sig_boltz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "58113672" } - "435" + "5690" { - "name" "cu_cz75_precision" - "description_string" "#PaintKit_cu_cz75_precision" - "description_tag" "#PaintKit_cu_cz75_precision_Tag" - "style" "7" - "pattern" "workshop/Precision_cz75" - "pattern_scale" "1.000000" - "phongexponent" "50" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_boltz_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_boltz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_boltz_holo" + "sticker_material" "antwerp2022/sig_boltz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "58113672" } - "436" + "5691" { - "name" "am_ump_racer" - "description_string" "#PaintKit_am_ump_racer" - "description_tag" "#PaintKit_am_ump_racer_Tag" - "style" "5" - "pattern" "workshop/ump_racer_rbg" - "color0" "198 176 137" - "color1" "203 203 203" - "color2" "44 44 44" - "color3" "171 59 57" - "pattern_scale" "1.000000" - "phongexponent" "50" - "phongalbedoboost" "1" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.250000" - "wear_remap_max" "0.350000" + "name" "antwerp2022_signature_boltz_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_boltz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_boltz_gold" + "sticker_material" "antwerp2022/sig_boltz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "58113672" } - "437" + "5692" { - "name" "am_aqua_flecks" - "description_string" "#PaintKit_am_copper_flecks" - "description_tag" "#PaintKit_am_aqua_flecks_Tag" - "style" "5" - "pattern" "noise" - "color0" "2 16 12" - "color1" "2 25 25" - "color2" "9 46 49" - "color3" "8 7 32" - "pattern_scale" "8.000000" - "phongexponent" "32" - "phongalbedoboost" "80" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_vini_1" + "item_name" "#StickerKit_antwerp2022_signature_vini" + "description_string" "#StickerKit_desc_antwerp2022_signature_vini" + "sticker_material" "antwerp2022/sig_vini" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "36104456" } - "438" + "5693" { - "name" "cu_chronos_g3sg1" - "description_string" "#PaintKit_cu_chronos_g3sg1" - "description_tag" "#PaintKit_cu_chronos_g3sg1_Tag" - "style" "7" - "pattern" "chronos_g3sg1" - "pattern_scale" "1.000000" - "phongexponent" "128" - "phongintensity" "60" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_vini_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_vini_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_vini_glitter" + "sticker_material" "antwerp2022/sig_vini_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "36104456" } - "439" + "5694" { - "name" "hy_hades" - "description_string" "#PaintKit_hy_hades" - "description_tag" "#PaintKit_hy_hades_Tag" - "style" "2" - "pattern" "hades" - "color0" "177 178 163" - "color1" "31 31 31" - "color2" "123 123 123" - "color3" "77 77 77" - "pattern_scale" "12.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_vini_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_vini_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_vini_holo" + "sticker_material" "antwerp2022/sig_vini_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "36104456" } - "440" + "5695" { - "name" "hy_icarus" - "description_string" "#PaintKit_hy_icarus" - "description_tag" "#PaintKit_hy_icarus_Tag" - "style" "2" - "pattern" "icarus" - "color0" "4 9 31" - "color1" "0 0 8" - "color2" "0 63 89" - "color3" "14 195 198" - "pattern_scale" "1.400000" - "phongexponent" "255" - "phongintensity" "32" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.500000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "-0.500000" - "pattern_offset_y_end" "-0.500000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.100000" + "name" "antwerp2022_signature_vini_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_vini_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_vini_gold" + "sticker_material" "antwerp2022/sig_vini_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "113" + "tournament_player_id" "36104456" } - "441" + "5696" { - "name" "cu_labyrinth" - "description_string" "#PaintKit_cu_labyrinth" - "description_tag" "#PaintKit_cu_labyrinth_Tag" - "style" "7" - "pattern" "labyrinth" - "pattern_scale" "1.210000" - "phongexponent" "80" - "phongintensity" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.490000" - "pattern_offset_y_end" "0.490000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.390000" + "name" "antwerp2022_signature_rigon_1" + "item_name" "#StickerKit_antwerp2022_signature_rigon" + "description_string" "#StickerKit_desc_antwerp2022_signature_rigon" + "sticker_material" "antwerp2022/sig_rigon" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "442" + "5697" { - "name" "sp_labyrinth" - "description_string" "#PaintKit_sp_labyrinth1" - "description_tag" "#PaintKit_sp_labyrinth1_Tag" - "style" "3" - "pattern" "labyrinth_basic" - "color0" "8 7 60" - "color1" "18 100 83" - "color2" "12 78 133" - "color3" "24 13 114" - "pattern_scale" "0.770000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.550000" + "name" "antwerp2022_signature_rigon_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_rigon_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_rigon_glitter" + "sticker_material" "antwerp2022/sig_rigon_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "443" + "5698" { - "name" "sp_labyrinth2" - "description_string" "#PaintKit_sp_labyrinth2" - "description_tag" "#PaintKit_sp_labyrinth2_Tag" - "style" "3" - "pattern" "labyrinth_basic" - "color0" "24 24 24" - "color1" "121 121 121" - "color2" "45 45 45" - "color3" "40 40 40" - "pattern_scale" "3.000000" - "phongexponent" "255" - "phongintensity" "0" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.350000" + "name" "antwerp2022_signature_rigon_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_rigon_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_rigon_holo" + "sticker_material" "antwerp2022/sig_rigon_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "444" + "5699" { - "name" "sp_labyrinth3" - "description_string" "#PaintKit_sp_labyrinth3" - "description_tag" "#PaintKit_sp_labyrinth3_Tag" - "style" "3" - "pattern" "labyrinth_basic" - "color0" "1 10 16" - "color1" "42 44 45" - "color2" "66 21 7" - "color3" "65 66 67" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.550000" + "name" "antwerp2022_signature_rigon_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_rigon_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_rigon_gold" + "sticker_material" "antwerp2022/sig_rigon_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "445" + "5700" { - "name" "an_red_m4a1s" - "description_string" "#PaintKit_an_red" - "description_tag" "#PaintKit_an_red_Tag" - "style" "5" - "pattern" "m4a1s_hotrod" - "color0" "48 2 2" - "color1" "60 3 3" - "color2" "17 17 17" - "color3" "59 59 59" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongalbedoboost" "100" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_juanflatroo_1" + "item_name" "#StickerKit_antwerp2022_signature_juanflatroo" + "description_string" "#StickerKit_desc_antwerp2022_signature_juanflatroo" + "sticker_material" "antwerp2022/sig_juanflatroo" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "446" + "5701" { - "name" "cu_medusa_awp" - "description_string" "#PaintKit_cu_medusa_awp" - "description_tag" "#PaintKit_cu_medusa_awp_Tag" - "style" "8" - "pattern" "medusa_awp" - "color0" "78 249 255" - "color1" "255 255 255" - "color2" "255 255 255" - "color3" "74 178 127" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongalbedoboost" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_juanflatroo_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_juanflatroo_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_juanflatroo_glitter" + "sticker_material" "antwerp2022/sig_juanflatroo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "447" + "5702" { - "name" "gs_mother_of_pearl_elite" - "description_string" "#PaintKit_gs_mother_of_pearl_elite" - "description_tag" "#PaintKit_gs_mother_of_pearl_elite_Tag" - "style" "9" - "pattern" "mother_of_pearl_elite" - "color0" "255 255 255" - "color1" "255 255 255" - "color2" "196 196 196" - "color3" "228 228 228" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "10" - "phongalbedoboost" "20" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_juanflatroo_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_juanflatroo_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_juanflatroo_holo" + "sticker_material" "antwerp2022/sig_juanflatroo_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "448" + "5703" { - "name" "aa_pandora" - "description_string" "#PaintKit_aa_pandora" - "description_tag" "#PaintKit_aa_pandora_Tag" - "style" "6" - "pattern" "pandora" - "color0" "4 4 22" - "color1" "11 66 119" - "color2" "49 21 72" - "color3" "170 170 170" - "pattern_scale" "2.500000" - "phongexponent" "255" - "phongalbedoboost" "10" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "180.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.300000" + "name" "antwerp2022_signature_juanflatroo_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_juanflatroo_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_juanflatroo_gold" + "sticker_material" "antwerp2022/sig_juanflatroo_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "449" + "5704" { - "name" "cu_poseidon" - "description_string" "#PaintKit_cu_poseidon" - "description_tag" "#PaintKit_cu_poseidon_Tag" - "style" "7" - "pattern" "poseidon_m4" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.330000" + "name" "antwerp2022_signature_sener1_1" + "item_name" "#StickerKit_antwerp2022_signature_sener1" + "description_string" "#StickerKit_desc_antwerp2022_signature_sener1" + "sticker_material" "antwerp2022/sig_sener1" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "192112459" } - "450" + "5705" { - "name" "hy_zodiac1" - "description_string" "#PaintKit_hy_zodiac1" - "description_tag" "#PaintKit_hy_zodiac1_Tag" - "style" "2" - "pattern" "zodiac" - "color0" "11 19 55" - "color1" "37 37 57" - "color2" "1 3 13" - "color3" "13 17 35" - "pattern_scale" "3.000000" - "phongexponent" "20" - "phongintensity" "4" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_sener1_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_sener1_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_sener1_glitter" + "sticker_material" "antwerp2022/sig_sener1_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "192112459" } - "451" + "5706" { - "name" "hy_zodiac2" - "description_string" "#PaintKit_hy_zodiac2" - "description_tag" "#PaintKit_hy_zodiac2_Tag" - "style" "2" - "pattern" "zodiac" - "color0" "11 19 55" - "color1" "0 9 10" - "color2" "43 29 108" - "color3" "13 17 35" - "pattern_scale" "2.000000" - "phongexponent" "64" - "phongintensity" "20" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_sener1_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_sener1_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_sener1_holo" + "sticker_material" "antwerp2022/sig_sener1_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "192112459" } - "452" + "5707" { - "name" "hy_zodiac3" - "description_string" "#PaintKit_hy_zodiac3" - "description_tag" "#PaintKit_hy_zodiac3_Tag" - "style" "2" - "pattern" "zodiac" - "color0" "21 68 66" - "color1" "37 37 57" - "color2" "1 3 13" - "color3" "13 17 35" - "pattern_scale" "1.400000" - "phongexponent" "20" - "phongintensity" "4" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_sener1_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_sener1_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_sener1_gold" + "sticker_material" "antwerp2022/sig_sener1_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "192112459" + } + "5708" + { + "name" "antwerp2022_signature_sinnopsyy_1" + "item_name" "#StickerKit_antwerp2022_signature_sinnopsyy" + "description_string" "#StickerKit_desc_antwerp2022_signature_sinnopsyy" + "sticker_material" "antwerp2022/sig_sinnopsyy" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "453" + "5709" { - "name" "an_emerald" - "description_string" "#PaintKit_an_emerald" - "description_tag" "#PaintKit_an_emerald_bravo_Tag" - "wear_default" "0.060000" - "style" "4" - "color0" "5 61 34" - "color1" "5 61 34" - "color2" "1 1 1" - "color3" "1 1 1" - "phongexponent" "32" - "phongalbedoboost" "30" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.080000" + "name" "antwerp2022_signature_sinnopsyy_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_sinnopsyy_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_sinnopsyy_glitter" + "sticker_material" "antwerp2022/sig_sinnopsyy_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "454" + "5710" { - "name" "so_khaki_green" - "description_string" "#PaintKit_so_khaki_green" - "description_tag" "#PaintKit_so_khaki_green_Tag" - "style" "2" - "pattern" "usp_solid" - "color0" "18 18 18" - "color1" "88 107 76" - "color2" "18 18 18" - "color3" "18 18 18" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "200" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_sinnopsyy_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_sinnopsyy_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_sinnopsyy_holo" + "sticker_material" "antwerp2022/sig_sinnopsyy_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "455" + "5711" { - "name" "cu_anime_aug" - "description_string" "#PaintKit_cu_anime_aug" - "description_tag" "#PaintKit_cu_anime_aug_Tag" - "style" "7" - "pattern" "anime_aug" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongintensity" "180" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_sinnopsyy_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_sinnopsyy_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_sinnopsyy_gold" + "sticker_material" "antwerp2022/sig_sinnopsyy_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "456" + "5712" { - "name" "am_bamboo_jungle" - "description_string" "#PaintKit_am_bamboo_jungle" - "description_tag" "#PaintKit_am_bamboo_jungle_Tag" - "style" "5" - "pattern" "bamboo_jungle" - "color0" "223 227 213" - "color1" "143 19 19" - "color2" "32 31 28" - "color3" "86 107 34" - "pattern_scale" "1.400000" - "phongexponent" "40" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.730000" - "pattern_offset_x_end" "0.820000" - "pattern_offset_y_start" "0.340000" - "pattern_offset_y_end" "0.340000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_gxx_1" + "item_name" "#StickerKit_antwerp2022_signature_gxx" + "description_string" "#StickerKit_desc_antwerp2022_signature_gxx" + "sticker_material" "antwerp2022/sig_gxx" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "457" + "5713" { - "name" "hy_bamboo_jungle_ink" - "description_string" "#PaintKit_hy_bamboo_jungle_ink" - "description_tag" "#PaintKit_hy_bamboo_jungle_ink_Tag" - "style" "2" - "pattern" "bamboo_jungle" - "color0" "221 218 196" - "color1" "143 19 19" - "color2" "50 46 39" - "color3" "116 114 111" - "pattern_scale" "3.000000" - "phongexponent" "120" - "phongintensity" "160" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.550000" - "pattern_offset_x_end" "0.590000" - "pattern_offset_y_start" "0.180000" - "pattern_offset_y_end" "0.220000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "2.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_gxx_1_glitter" + "item_name" "#StickerKit_antwerp2022_signature_gxx_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_gxx_glitter" + "sticker_material" "antwerp2022/sig_gxx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "458" + "5714" { - "name" "hy_bamboo_jungle_black" - "description_string" "#PaintKit_hy_bamboo_jungle_black" - "description_tag" "#PaintKit_hy_bamboo_jungle_black_Tag" - "style" "2" - "pattern" "bamboo_jungle" - "color0" "21 22 25" - "color1" "143 19 19" - "color2" "33 30 26" - "color3" "55 54 51" - "pattern_scale" "2.000000" - "phongexponent" "40" - "phongintensity" "12" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.070000" - "pattern_offset_x_end" "0.200000" - "pattern_offset_y_start" "0.270000" - "pattern_offset_y_end" "0.360000" - "pattern_rotate_start" "270.000000" - "pattern_rotate_end" "270.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_gxx_1_holo" + "item_name" "#StickerKit_antwerp2022_signature_gxx_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_gxx_holo" + "sticker_material" "antwerp2022/sig_gxx_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "459" + "5715" { - "name" "hy_bamboo_jungle" - "description_string" "#PaintKit_hy_bamboo_jungle" - "description_tag" "#PaintKit_hy_bamboo_jungle_Tag" - "style" "2" - "pattern" "bamboo_jungle" - "color0" "206 207 193" - "color1" "88 3 3" - "color2" "26 21 17" - "color3" "114 138 29" - "pattern_scale" "1.400000" - "phongexponent" "140" - "phongintensity" "140" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.550000" - "pattern_offset_x_end" "0.590000" - "pattern_offset_y_start" "0.400000" - "pattern_offset_y_end" "0.420000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "1.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_gxx_1_gold" + "item_name" "#StickerKit_antwerp2022_signature_gxx_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_gxx_gold" + "sticker_material" "antwerp2022/sig_gxx_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "460" + "5716" { - "name" "am_geometric_steps" - "description_string" "#PaintKit_am_geometric_steps" - "description_tag" "#PaintKit_am_geometric_steps_Tag" - "style" "5" - "pattern" "geometric_steps" - "color0" "94 146 141" - "color1" "61 138 120" - "color2" "187 187 187" - "color3" "33 154 217" - "pattern_scale" "4.550000" - "phongexponent" "80" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_xantares_4" + "item_name" "#StickerKit_antwerp2022_signature_xantares" + "description_string" "#StickerKit_desc_antwerp2022_signature_xantares" + "sticker_material" "antwerp2022/sig_xantares" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "83853068" } - "462" + "5717" { - "name" "hy_geometric_steps_green" - "description_string" "#PaintKit_hy_geometric_steps_green" - "description_tag" "#PaintKit_hy_geometric_steps_green_Tag" - "style" "2" - "pattern" "geometric_steps" - "color0" "221 203 203" - "color1" "255 85 81" - "color2" "49 49 49" - "color3" "99 181 51" - "pattern_scale" "3.500000" - "phongexponent" "100" - "phongintensity" "180" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.650000" - "dialog_config" "14,0,0,0" + "name" "antwerp2022_signature_xantares_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_xantares_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_xantares_glitter" + "sticker_material" "antwerp2022/sig_xantares_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "83853068" } - "463" + "5718" { - "name" "hy_geometric_steps_yellow" - "description_string" "#PaintKit_hy_geometric_steps_yellow" - "description_tag" "#PaintKit_hy_geometric_steps_yellow_Tag" - "style" "2" - "pattern" "geometric_steps" - "color0" "60 65 65" - "color1" "244 129 118" - "color2" "241 188 26" - "color3" "207 203 175" - "pattern_scale" "5.000000" - "phongexponent" "200" - "phongintensity" "100" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_xantares_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_xantares_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_xantares_holo" + "sticker_material" "antwerp2022/sig_xantares_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "83853068" } - "464" + "5719" { - "name" "hy_kimono_diamonds" - "description_string" "#PaintKit_hy_kimono_diamonds" - "description_tag" "#PaintKit_hy_kimono_diamonds_Tag" - "style" "2" - "pattern" "kimono_diamonds" - "color0" "182 230 28" - "color1" "184 181 157" - "color2" "120 116 99" - "color3" "201 211 167" - "pattern_scale" "4.500000" - "phongexponent" "120" - "phongintensity" "120" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "90.000000" - "pattern_rotate_end" "90.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_xantares_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_xantares_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_xantares_gold" + "sticker_material" "antwerp2022/sig_xantares_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "83853068" } - "465" + "5720" { - "name" "hy_kimono_diamonds_orange" - "description_string" "#PaintKit_hy_kimono_diamonds_orange" - "description_tag" "#PaintKit_hy_kimono_diamonds_orange_Tag" - "style" "2" - "pattern" "kimono_diamonds" - "color0" "66 65 63" - "color1" "39 39 39" - "color2" "242 152 35" - "color3" "76 74 71" - "pattern_scale" "2.000000" - "phongexponent" "160" - "phongintensity" "80" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "180.000000" - "pattern_rotate_end" "180.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_woxic_4" + "item_name" "#StickerKit_antwerp2022_signature_woxic" + "description_string" "#StickerKit_desc_antwerp2022_signature_woxic" + "sticker_material" "antwerp2022/sig_woxic" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "123219778" } - "466" + "5721" { - "name" "hy_kimono_diamonds_red" - "description_string" "#PaintKit_hy_kimono_diamonds_red" - "description_tag" "#PaintKit_hy_kimono_diamonds_red_Tag" - "style" "2" - "pattern" "kimono_diamonds" - "color0" "14 13 13" - "color1" "28 32 34" - "color2" "144 17 17" - "color3" "54 31 31" - "pattern_scale" "4.500000" - "phongexponent" "140" - "phongintensity" "100" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_woxic_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_woxic_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_woxic_glitter" + "sticker_material" "antwerp2022/sig_woxic_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "123219778" } - "467" + "5722" { - "name" "sp_kimono_diamonds" - "description_string" "#PaintKit_sp_kimono_diamonds" - "description_tag" "#PaintKit_sp_kimono_diamonds_Tag" - "style" "3" - "pattern" "kimono_diamonds" - "color0" "27 27 27" - "color1" "146 164 173" - "color2" "161 215 15" - "color3" "105 116 96" - "pattern_scale" "1.700000" - "phongexponent" "180" - "phongintensity" "80" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "90.000000" - "pattern_rotate_end" "90.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_woxic_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_woxic_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_woxic_holo" + "sticker_material" "antwerp2022/sig_woxic_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "123219778" } - "468" + "5723" { - "name" "am_seastorm" - "description_string" "#PaintKit_am_seastorm" - "description_tag" "#PaintKit_am_seastorm_Tag" - "style" "5" - "pattern" "sea_storm" - "color0" "22 39 35" - "color1" "105 154 173" - "color2" "74 162 172" - "color3" "10 2 25" - "pattern_scale" "1.400000" - "phongexponent" "140" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "10.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_woxic_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_woxic_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_woxic_gold" + "sticker_material" "antwerp2022/sig_woxic_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "123219778" } - "469" + "5724" { - "name" "am_seastorm_blood" - "description_string" "#PaintKit_am_seastorm_blood" - "description_tag" "#PaintKit_am_seastorm_blood_Tag" - "style" "5" - "pattern" "sea_storm_blood" - "color0" "56 6 6" - "color1" "143 43 8" - "color2" "188 97 65" - "color3" "7 0 0" - "pattern_scale" "1.600000" - "phongexponent" "160" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.450000" - "pattern_offset_x_end" "0.550000" - "pattern_offset_y_start" "0.500000" - "pattern_offset_y_end" "0.600000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "1.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_imorr_4" + "item_name" "#StickerKit_antwerp2022_signature_imorr" + "description_string" "#StickerKit_desc_antwerp2022_signature_imorr" + "sticker_material" "antwerp2022/sig_imorr" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "107082440" } - "470" + "5725" { - "name" "am_seastorm_shojo" - "description_string" "#PaintKit_am_seastorm_blood" - "description_tag" "#PaintKit_am_seastorm_shojo_Tag" - "style" "5" - "pattern" "sea_storm_shojo" - "color0" "56 6 6" - "color1" "143 43 8" - "color2" "188 97 65" - "color3" "7 0 0" - "pattern_scale" "1.600000" - "phongexponent" "160" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.450000" - "pattern_offset_x_end" "0.550000" - "pattern_offset_y_start" "0.500000" - "pattern_offset_y_end" "0.600000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "1.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.750000" + "name" "antwerp2022_signature_imorr_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_imorr_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_imorr_glitter" + "sticker_material" "antwerp2022/sig_imorr_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "107082440" } - "471" + "5726" { - "name" "am_kimono_sunrise" - "description_string" "#PaintKit_am_kimono_sunrise" - "description_tag" "#PaintKit_am_kimono_sunrise_Tag" - "style" "5" - "pattern" "kimono_sunrise" - "color0" "254 236 116" - "color1" "163 119 55" - "color2" "134 146 148" - "color3" "64 42 17" - "pattern_scale" "1.500000" - "phongexponent" "220" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.140000" - "pattern_offset_x_end" "0.900000" - "pattern_offset_y_start" "0.230000" - "pattern_offset_y_end" "0.230000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_imorr_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_imorr_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_imorr_holo" + "sticker_material" "antwerp2022/sig_imorr_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "107082440" } - "472" + "5727" { - "name" "so_keycolors" - "description_string" "#PaintKit_so_keycolors" - "description_tag" "#PaintKit_am_so_keycolors_Tag" - "style" "1" - "color0" "235 154 26" - "color1" "58 68 77" - "color2" "95 255 8" - "color3" "77 71 69" - "phongexponent" "64" - "phongintensity" "44" - "only_first_material" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_imorr_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_imorr_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_imorr_gold" + "sticker_material" "antwerp2022/sig_imorr_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "107082440" } - "473" + "5728" { - "name" "so_aqua" - "description_string" "#PaintKit_so_aqua" - "description_tag" "#PaintKit_so_aqua_Tag" - "style" "1" - "color0" "128 64 64" - "color1" "20 30 34" - "color2" "92 146 145" - "color3" "161 158 129" - "phongexponent" "80" - "phongintensity" "200" - "only_first_material" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_calyx_4" + "item_name" "#StickerKit_antwerp2022_signature_calyx" + "description_string" "#StickerKit_desc_antwerp2022_signature_calyx" + "sticker_material" "antwerp2022/sig_calyx" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "92280537" } - "474" + "5729" { - "name" "cu_ak47_courage_alt" - "description_string" "#PaintKit_cu_ak47_courage_alt" - "description_tag" "#PaintKit_cu_ak47_courage_alt_Tag" - "style" "7" - "pattern" "workshop/ak47_courage" - "pattern_scale" "1.000000" - "phongexponent" "88" - "phongintensity" "18" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_calyx_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_calyx_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_calyx_glitter" + "sticker_material" "antwerp2022/sig_calyx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "92280537" } - "475" + "5730" { - "name" "cu_awp_hyper_beast" - "description_string" "#PaintKit_cu_m4a1_hyper_beast" - "description_tag" "#PaintKit_cu_m4a1_hyper_beast_Tag" - "style" "7" - "pattern" "workshop/awp_hyper_beast" - "pattern_scale" "1.000000" - "phongexponent" "190" - "phongintensity" "78" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_calyx_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_calyx_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_calyx_holo" + "sticker_material" "antwerp2022/sig_calyx_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "92280537" + } + "5731" + { + "name" "antwerp2022_signature_calyx_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_calyx_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_calyx_gold" + "sticker_material" "antwerp2022/sig_calyx_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "92280537" + } + "5732" + { + "name" "antwerp2022_signature_xfl0ud_4" + "item_name" "#StickerKit_antwerp2022_signature_xfl0ud" + "description_string" "#StickerKit_desc_antwerp2022_signature_xfl0ud" + "sticker_material" "antwerp2022/sig_xfl0ud" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "217943381" + } + "5733" + { + "name" "antwerp2022_signature_xfl0ud_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_xfl0ud_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_xfl0ud_glitter" + "sticker_material" "antwerp2022/sig_xfl0ud_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "217943381" + } + "5734" + { + "name" "antwerp2022_signature_xfl0ud_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_xfl0ud_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_xfl0ud_holo" + "sticker_material" "antwerp2022/sig_xfl0ud_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "217943381" + } + "5735" + { + "name" "antwerp2022_signature_xfl0ud_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_xfl0ud_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_xfl0ud_gold" + "sticker_material" "antwerp2022/sig_xfl0ud_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "110" + "tournament_player_id" "217943381" } - "476" + "5736" { - "name" "cu_cz75a_chastizer" - "description_string" "#PaintKit_cu_cz75a_chastizer" - "description_tag" "#PaintKit_cu_cz75a_chastizer_Tag" - "style" "7" - "pattern" "workshop/cz75a_chastizer" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "255" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_chopper_4" + "item_name" "#StickerKit_antwerp2022_signature_chopper" + "description_string" "#StickerKit_desc_antwerp2022_signature_chopper" + "sticker_material" "antwerp2022/sig_chopper" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "477" + "5737" { - "name" "am_famas_dots" - "description_string" "#PaintKit_am_famas_dots" - "description_tag" "#PaintKit_am_famas_dots_Tag" - "style" "5" - "pattern" "workshop/dots" - "color0" "205 167 15" - "color1" "140 136 96" - "color2" "58 59 53" - "color3" "1 2 2" - "pattern_scale" "4.000000" - "phongexponent" "32" - "phongalbedoboost" "0" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "0" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "360.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_chopper_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_chopper_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_chopper_glitter" + "sticker_material" "antwerp2022/sig_chopper_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "478" + "5738" { - "name" "cu_galilar_particles" - "description_string" "#PaintKit_cu_galilar_particles" - "description_tag" "#PaintKit_cu_galilar_particles_Tag" - "style" "7" - "pattern" "workshop/particles" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_chopper_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_chopper_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_chopper_holo" + "sticker_material" "antwerp2022/sig_chopper_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "479" + "5739" { - "name" "aq_glock18_flames_blue" - "description_string" "#PaintKit_aq_glock18_flames_blue" - "description_tag" "#PaintKit_aq_glock18_flames_blue_Tag" - "style" "8" - "pattern" "workshop/glock_flames_blue_green" - "color0" "127 156 106" - "color1" "112 129 179" - "color2" "137 146 90" - "color3" "119 132 219" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongalbedoboost" "75" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_chopper_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_chopper_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_chopper_gold" + "sticker_material" "antwerp2022/sig_chopper_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "480" + "5740" { - "name" "cu_m4a4_evil_daimyo" - "description_string" "#PaintKit_cu_m4a4_evil_daimyo" - "description_tag" "#PaintKit_cu_m4a4_evil_daimyo_Tag" - "style" "7" - "pattern" "workshop/daimyo_evil_greyred" - "pattern_scale" "1.000000" - "phongexponent" "230" - "phongintensity" "18" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.520000" + "name" "antwerp2022_signature_magixx_4" + "item_name" "#StickerKit_antwerp2022_signature_magixx" + "description_string" "#StickerKit_desc_antwerp2022_signature_magixx" + "sticker_material" "antwerp2022/sig_magixx" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - "481" + "5741" { - "name" "cu_mp7_nemsis" - "description_string" "#PaintKit_cu_mp7_nemsis" - "description_tag" "#PaintKit_cu_mp7_nemsis_Tag" - "style" "7" - "pattern" "workshop/nemesis_mp7" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "15" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.320000" + "name" "antwerp2022_signature_magixx_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_magixx_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_magixx_glitter" + "sticker_material" "antwerp2022/sig_magixx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - "482" + "5742" { - "name" "am_mp9_nitrogen" - "description_string" "#PaintKit_am_mp9_nitrogen" - "description_tag" "#PaintKit_am_mp9_nitrogen_Tag" - "style" "5" - "pattern" "workshop/nitrogen_pattern" - "color0" "0 0 0" - "color1" "215 64 4" - "color2" "23 15 18" - "color3" "53 15 46" - "pattern_scale" "2.500000" - "phongexponent" "25" - "phongalbedoboost" "33" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_magixx_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_magixx_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_magixx_holo" + "sticker_material" "antwerp2022/sig_magixx_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - "483" + "5743" { - "name" "cu_negev_annihilator" - "description_string" "#PaintKit_cu_negev_annihilator" - "description_tag" "#PaintKit_cu_negev_annihilator_Tag" - "style" "7" - "pattern" "workshop/negev_annihilator" - "pattern_scale" "1.000000" - "phongexponent" "128" - "phongintensity" "48" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.140000" - "wear_remap_max" "0.650000" + "name" "antwerp2022_signature_magixx_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_magixx_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_magixx_gold" + "sticker_material" "antwerp2022/sig_magixx_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - "484" + "5744" { - "name" "cu_nova_ranger" - "description_string" "#PaintKit_cu_nova_ranger" - "description_tag" "#PaintKit_cu_nova_ranger_Tag" - "style" "7" - "pattern" "workshop/nova_ranger" - "pattern_scale" "1.000000" - "phongexponent" "20" - "phongintensity" "5" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_degster_4" + "item_name" "#StickerKit_antwerp2022_signature_degster" + "description_string" "#StickerKit_desc_antwerp2022_signature_degster" + "sticker_material" "antwerp2022/sig_degster" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "839074394" } - "485" + "5745" { - "name" "aq_p2000_boom" - "description_string" "#PaintKit_aq_p2000_boom" - "description_tag" "#PaintKit_aq_p2000_boom_Tag" - "style" "8" - "pattern" "workshop/p2000_boom" - "color0" "50 50 50" - "color1" "255 255 255" - "color2" "255 255 255" - "color3" "76 76 76" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongalbedoboost" "150" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_degster_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_degster_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_degster_glitter" + "sticker_material" "antwerp2022/sig_degster_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "839074394" } - "486" + "5746" { - "name" "cu_p90_mastery" - "description_string" "#PaintKit_cu_ak47_mastery" - "description_tag" "#PaintKit_cu_ak47_mastery_Tag" - "style" "7" - "pattern" "workshop/P90_mastery" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_degster_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_degster_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_degster_holo" + "sticker_material" "antwerp2022/sig_degster_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "839074394" } - "487" + "5747" { - "name" "cu_sg553_cyrex" - "description_string" "#PaintKit_cu_cyrex" - "description_tag" "#PaintKit_cu_cyrex_tag" - "style" "7" - "pattern" "workshop/ssg_cyrex" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "3" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_degster_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_degster_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_degster_gold" + "sticker_material" "antwerp2022/sig_degster_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "839074394" } - "488" + "5748" { - "name" "cu_ump45_uproar" - "description_string" "#PaintKit_cu_ump45_uproar" - "description_tag" "#PaintKit_cu_ump45_uproar_Tag" - "style" "7" - "pattern" "workshop/ump45_uproar" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.700000" + "name" "antwerp2022_signature_patsi_4" + "item_name" "#StickerKit_antwerp2022_signature_patsi" + "description_string" "#StickerKit_desc_antwerp2022_signature_patsi" + "sticker_material" "antwerp2022/sig_patsi" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "489" + "5749" { - "name" "cu_usp_progressiv" - "description_string" "#PaintKit_cu_usp_progressiv" - "description_tag" "#PaintKit_cu_usp_progressiv_Tag" - "style" "7" - "pattern" "workshop/usps_progressiv" - "pattern_scale" "1.000000" - "phongexponent" "150" - "phongintensity" "70" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.460000" + "name" "antwerp2022_signature_patsi_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_patsi_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_patsi_glitter" + "sticker_material" "antwerp2022/sig_patsi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "490" + "5750" { - "name" "cu_ak47_winter_sport" - "description_string" "#PaintKit_cu_ak47_winter_sport" - "description_tag" "#PaintKit_cu_ak47_winter_sport_Tag" - "style" "7" - "pattern" "workshop/ak47_winter_sport" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "30" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.020000" - "wear_remap_max" "0.870000" + "name" "antwerp2022_signature_patsi_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_patsi_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_patsi_holo" + "sticker_material" "antwerp2022/sig_patsi_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "491" + "5751" { - "name" "cu_dualberretta_dragons" - "description_string" "#PaintKit_cu_dualberretta_dragons" - "description_tag" "#PaintKit_cu_dualberretta_dragons_Tag" - "style" "7" - "pattern" "workshop/dualberretta_dragons" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "40" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_patsi_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_patsi_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_patsi_gold" + "sticker_material" "antwerp2022/sig_patsi_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "492" + "5752" { - "name" "cu_famas_lenta" - "description_string" "#PaintKit_cu_famas_lenta" - "description_tag" "#PaintKit_cu_famas_lenta_Tag" - "style" "7" - "pattern" "workshop/famas_lenta" - "pattern_scale" "1.000000" - "phongexponent" "80" - "phongintensity" "20" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.600000" + "name" "antwerp2022_signature_s1ren_4" + "item_name" "#StickerKit_antwerp2022_signature_s1ren" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1ren" + "sticker_material" "antwerp2022/sig_s1ren" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "493" + "5753" { - "name" "gs_g3sg1_flux_purple" - "description_string" "#PaintKit_gs_g3sg1_flux_purple" - "description_tag" "#PaintKit_gs_g3sg1_flux_purple_Tag" - "style" "9" - "pattern" "workshop/g3sg1_flux_purple" - "color0" "255 255 255" - "color1" "97 97 120" - "color2" "255 255 255" - "color3" "56 28 8" - "pattern_scale" "1.000000" - "phongexponent" "10" - "phongintensity" "0" - "phongalbedoboost" "25" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.900000" + "name" "antwerp2022_signature_s1ren_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_s1ren_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1ren_glitter" + "sticker_material" "antwerp2022/sig_s1ren_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "494" + "5754" { - "name" "gs_galil_nightwing" - "description_string" "#PaintKit_gs_galil_nightwing" - "description_tag" "#PaintKit_gs_galil_nightwing_Tag" - "style" "9" - "pattern" "workshop/galil_nightwing" - "color0" "64 64 64" - "color1" "211 211 211" - "color2" "119 154 181" - "color3" "162 224 247" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "255" - "phongalbedoboost" "30" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.900000" + "name" "antwerp2022_signature_s1ren_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_s1ren_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1ren_holo" + "sticker_material" "antwerp2022/sig_s1ren_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "495" + "5755" { - "name" "gs_glock18_wrathys" - "description_string" "#PaintKit_gs_glock18_wrathys" - "description_tag" "#PaintKit_gs_glock18_wrathys_Tag" - "style" "9" - "pattern" "workshop/glock18_wrathys" - "color0" "91 91 91" - "color1" "166 166 166" - "color2" "102 76 56" - "color3" "99 93 89" - "pattern_scale" "1.000000" - "phongexponent" "16" - "phongintensity" "1" - "phongalbedoboost" "18" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_s1ren_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_s1ren_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_s1ren_gold" + "sticker_material" "antwerp2022/sig_s1ren_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "496" + "5756" { - "name" "gs_m249_nebula_crusader" - "description_string" "#PaintKit_gs_m249_nebula_crusader" - "description_tag" "#PaintKit_gs_m249_nebula_crusader_Tag" - "style" "9" - "pattern" "workshop/m249_nebula_crusader" - "color0" "0 255 174" - "color1" "217 210 199" - "color2" "255 189 111" - "color3" "102 255 221" - "pattern_scale" "1.000000" - "phongexponent" "120" - "phongintensity" "12" - "phongalbedoboost" "32" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_jame_4" + "item_name" "#StickerKit_antwerp2022_signature_jame" + "description_string" "#StickerKit_desc_antwerp2022_signature_jame" + "sticker_material" "antwerp2022/sig_jame" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "75859856" } - "497" + "5757" { - "name" "gs_m4a1s_snakebite_gold" - "description_string" "#PaintKit_gs_m4a1s_snakebite_gold" - "description_tag" "#PaintKit_gs_m4a1s_snakebite_gold_Tag" - "style" "9" - "pattern" "workshop/m4a1s_snakebite_gold" - "color0" "218 200 113" - "color1" "194 188 164" - "color2" "109 106 89" - "color3" "175 198 196" - "pattern_scale" "1.000000" - "phongexponent" "5" - "phongintensity" "0" - "phongalbedoboost" "2" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_jame_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_jame_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_jame_glitter" + "sticker_material" "antwerp2022/sig_jame_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "75859856" } - "498" + "5758" { - "name" "cu_mac10_alekhya_duo" - "description_string" "#PaintKit_cu_mac10_alekhya_duo" - "description_tag" "#PaintKit_cu_mac10_alekhya_duo_Tag" - "style" "7" - "pattern" "workshop/mac10_alekhya_duo" - "pattern_scale" "1.000000" - "phongexponent" "125" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_jame_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_jame_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_jame_holo" + "sticker_material" "antwerp2022/sig_jame_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "5759" + { + "name" "antwerp2022_signature_jame_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_jame_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_jame_gold" + "sticker_material" "antwerp2022/sig_jame_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "75859856" } - "499" + "5760" { - "name" "cu_mag7_myrcene" - "description_string" "#PaintKit_cu_mag7_myrcene" - "description_tag" "#PaintKit_cu_mag7_myrcene_Tag" - "style" "7" - "pattern" "workshop/mag7_myrcene" - "pattern_scale" "1.000000" - "phongexponent" "10" - "phongintensity" "2" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_qikert_4" + "item_name" "#StickerKit_antwerp2022_signature_qikert" + "description_string" "#StickerKit_desc_antwerp2022_signature_qikert" + "sticker_material" "antwerp2022/sig_qikert" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "166970562" } - "500" + "5761" { - "name" "cu_mp7_classified" - "description_string" "#PaintKit_cu_mp7_classified" - "description_tag" "#PaintKit_cu_mp7_classified_Tag" - "style" "7" - "pattern" "workshop/mp7_classified" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongintensity" "50" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.620000" + "name" "antwerp2022_signature_qikert_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_qikert_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_qikert_glitter" + "sticker_material" "antwerp2022/sig_qikert_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "166970562" } - "501" + "5762" { - "name" "hy_p250_crackshot" - "description_string" "#PaintKit_hy_p250_crackshot" - "description_tag" "#PaintKit_hy_p250_crackshot_Tag" - "style" "2" - "pattern" "workshop/p250_crackshot" - "color0" "209 188 12" - "color1" "206 206 206" - "color2" "51 68 73" - "color3" "0 0 0" - "pattern_scale" "1.000000" - "phongexponent" "225" - "phongintensity" "110" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.900000" + "name" "antwerp2022_signature_qikert_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_qikert_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_qikert_holo" + "sticker_material" "antwerp2022/sig_qikert_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "166970562" } - "502" + "5763" { - "name" "gs_scar20_peacemaker03" - "description_string" "#PaintKit_gs_scar20_peacemaker03" - "description_tag" "#PaintKit_gs_scar20_peacemaker03_Tag" - "style" "9" - "pattern" "workshop/scar20_peacemaker03" - "color0" "200 198 180" - "color1" "170 170 170" - "color2" "75 60 33" - "color3" "169 169 169" - "pattern_scale" "1.000000" - "phongexponent" "20" - "phongintensity" "5" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_qikert_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_qikert_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_qikert_gold" + "sticker_material" "antwerp2022/sig_qikert_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "166970562" } - "503" + "5764" { - "name" "cu_ssg08_technicality" - "description_string" "#PaintKit_cu_ssg08_technicality" - "description_tag" "#PaintKit_cu_ssg08_technicality_Tag" - "style" "7" - "pattern" "workshop/ssg08_technicality" - "pattern_scale" "1.000000" - "phongexponent" "66" - "phongintensity" "44" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.640000" + "name" "antwerp2022_signature_buster_4" + "item_name" "#StickerKit_antwerp2022_signature_buster" + "description_string" "#StickerKit_desc_antwerp2022_signature_buster" + "sticker_material" "antwerp2022/sig_buster" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "212936195" } - "504" + "5765" { - "name" "cu_usp_kill_confirmed" - "description_string" "#PaintKit_cu_usp_kill_confirmed" - "description_tag" "#PaintKit_cu_usp_kill_confirmed_Tag" - "style" "7" - "pattern" "workshop/usp_kill_confirmed" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "25" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_buster_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_buster_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_buster_glitter" + "sticker_material" "antwerp2022/sig_buster_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "212936195" } - "505" + "5766" { - "name" "aq_xm1014_scumbria" - "description_string" "#PaintKit_aq_xm1014_scumbria" - "description_tag" "#PaintKit_aq_xm1014_scumbria_Tag" - "style" "8" - "pattern" "workshop/xm1014_scumbria" - "color0" "193 208 214" - "color1" "163 163 163" - "color2" "168 189 189" - "color3" "151 161 157" - "pattern_scale" "1.000000" - "phongexponent" "160" - "phongalbedoboost" "70" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_buster_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_buster_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_buster_holo" + "sticker_material" "antwerp2022/sig_buster_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "212936195" } - "506" + "5767" { - "name" "cu_ak47_point_disarray" - "description_string" "#PaintKit_cu_ak47_point_disarray" - "description_tag" "#PaintKit_cu_ak47_point_disarray_Tag" - "style" "7" - "pattern" "workshop/ak47_point_disarray" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "255" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.670000" + "name" "antwerp2022_signature_buster_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_buster_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_buster_gold" + "sticker_material" "antwerp2022/sig_buster_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "212936195" } - "507" + "5768" { - "name" "am_aug_jumble" - "description_string" "#PaintKit_am_aug_jumble" - "description_tag" "#PaintKit_am_aug_jumble_Tag" - "style" "5" - "pattern" "workshop/jumble" - "color0" "17 17 17" - "color1" "60 60 60" - "color2" "33 33 33" - "color3" "0 138 133" - "pattern_scale" "5.000000" - "phongexponent" "255" - "phongalbedoboost" "100" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_yekindar_4" + "item_name" "#StickerKit_antwerp2022_signature_yekindar" + "description_string" "#StickerKit_desc_antwerp2022_signature_yekindar" + "sticker_material" "antwerp2022/sig_yekindar" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "174136197" } - "508" + "5769" { - "name" "cu_bizon_noxious" - "description_string" "#PaintKit_cu_bizon_noxious" - "description_tag" "#PaintKit_cu_bizon_noxious_Tag" - "style" "7" - "pattern" "workshop/bizon_noxious" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_yekindar_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_yekindar_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_yekindar_glitter" + "sticker_material" "antwerp2022/sig_yekindar_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "174136197" } - "509" + "5770" { - "name" "aq_deagle_corinthian" - "description_string" "#PaintKit_aq_deagle_corinthian" - "description_tag" "#PaintKit_aq_deagle_corinthian_Tag" - "style" "8" - "pattern" "workshop/deagle_corinthian" - "color0" "128 128 128" - "color1" "150 150 150" - "color2" "64 40 40" - "color3" "108 108 108" - "pattern_scale" "1.000000" - "phongexponent" "180" - "phongalbedoboost" "150" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.440000" + "name" "antwerp2022_signature_yekindar_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_yekindar_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_yekindar_holo" + "sticker_material" "antwerp2022/sig_yekindar_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "174136197" } - "510" + "5771" { - "name" "cu_fiveseven_retrobution" - "description_string" "#PaintKit_cu_fiveseven_retrobution" - "description_tag" "#PaintKit_cu_fiveseven_retrobution_Tag" - "style" "7" - "pattern" "workshop/fiveseven_retrobution" - "pattern_scale" "1.000000" - "phongexponent" "140" - "phongintensity" "255" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_yekindar_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_yekindar_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_yekindar_gold" + "sticker_material" "antwerp2022/sig_yekindar_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "174136197" } - "511" + "5772" { - "name" "cu_g3sg1_executioner" - "description_string" "#PaintKit_cu_g3sg1_executioner" - "description_tag" "#PaintKit_cu_g3sg1_executioner_Tag" - "style" "7" - "pattern" "workshop/g3sg1_executioner" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "16" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "1.000000" - "pattern_offset_x_end" "1.000000" - "pattern_offset_y_start" "1.000000" - "pattern_offset_y_end" "1.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.140000" - "wear_remap_max" "0.850000" + "name" "antwerp2022_signature_fl1t_4" + "item_name" "#StickerKit_antwerp2022_signature_fl1t" + "description_string" "#StickerKit_desc_antwerp2022_signature_fl1t" + "sticker_material" "antwerp2022/sig_fl1t" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "35551773" } - "512" + "5773" { - "name" "gs_m4a4_royal_squire" - "description_string" "#PaintKit_gs_m4a4_royal_squire" - "description_tag" "#PaintKit_gs_m4a4_royal_squire_Tag" - "style" "9" - "pattern" "workshop/m4a4_royal_squire" - "color0" "136 118 81" - "color1" "221 178 128" - "color2" "111 102 87" - "color3" "125 112 89" - "pattern_scale" "1.000000" - "phongexponent" "250" - "phongintensity" "30" - "phongalbedoboost" "30" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.800000" + "name" "antwerp2022_signature_fl1t_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_fl1t_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_fl1t_glitter" + "sticker_material" "antwerp2022/sig_fl1t_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "35551773" } - "514" + "5774" { - "name" "cu_negev_impact" - "description_string" "#PaintKit_cu_negev_impact" - "description_tag" "#PaintKit_cu_negev_impact_Tag" - "style" "7" - "pattern" "workshop/negev_impact" - "pattern_scale" "1.000000" - "phongexponent" "80" - "phongintensity" "40" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_fl1t_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_fl1t_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_fl1t_holo" + "sticker_material" "antwerp2022/sig_fl1t_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "35551773" } - "515" + "5775" { - "name" "am_p2000_imperial_red" - "description_string" "#PaintKit_am_p2000_imperial_red" - "description_tag" "#PaintKit_am_p2000_imperial_red_Tag" - "style" "5" - "pattern" "workshop/p2000_imperial_red" - "color0" "29 29 29" - "color1" "185 142 40" - "color2" "39 3 6" - "color3" "146 107 25" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongalbedoboost" "12" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.200000" + "name" "antwerp2022_signature_fl1t_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_fl1t_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_fl1t_gold" + "sticker_material" "antwerp2022/sig_fl1t_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "109" + "tournament_player_id" "35551773" } - "516" + "5776" { - "name" "cu_p90_shapewood" - "description_string" "#PaintKit_cu_p90_shapewood" - "description_tag" "#PaintKit_cu_p90_shapewood_Tag" - "style" "7" - "pattern" "workshop/p90_shapewood" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "0" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_fang_4" + "item_name" "#StickerKit_antwerp2022_signature_fang" + "description_string" "#StickerKit_desc_antwerp2022_signature_fang" + "sticker_material" "antwerp2022/sig_fang" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "312457591" } - "517" + "5777" { - "name" "gs_sawedoff_necromancer" - "description_string" "#PaintKit_gs_sawedoff_necromancer" - "description_tag" "#PaintKit_gs_sawedoff_necromancer_Tag" - "style" "9" - "pattern" "workshop/sawedoff_necromancer" - "color0" "84 127 123" - "color1" "232 231 231" - "color2" "144 189 178" - "color3" "146 214 215" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongintensity" "25" - "phongalbedoboost" "30" - "view_model_exponent_override_size" "1024" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_fang_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_fang_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_fang_glitter" + "sticker_material" "antwerp2022/sig_fang_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "312457591" } - "518" + "5778" { - "name" "hy_scar20_jungler" - "description_string" "#PaintKit_hy_scar20_jungler" - "description_tag" "#PaintKit_hy_scar20_jungler_Tag" - "style" "2" - "pattern" "workshop/jungler" - "color0" "173 197 141" - "color1" "253 255 54" - "color2" "28 32 25" - "color3" "50 64 46" - "pattern_scale" "1.000000" - "phongexponent" "255" - "phongintensity" "120" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.500000" + "name" "antwerp2022_signature_fang_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_fang_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_fang_holo" + "sticker_material" "antwerp2022/sig_fang_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "312457591" } - "519" + "5779" { - "name" "gs_sg553_tiger_moth" - "description_string" "#PaintKit_gs_sg553_tiger_moth" - "description_tag" "#PaintKit_gs_sg553_tiger_moth_Tag" - "style" "9" - "pattern" "workshop/sg553_tigermoth" - "color0" "84 85 89" - "color1" "208 206 206" - "color2" "102 102 102" - "color3" "255 255 255" - "pattern_scale" "1.000000" - "phongexponent" "230" - "phongintensity" "45" - "phongalbedoboost" "60" - "view_model_exponent_override_size" "256" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_fang_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_fang_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_fang_gold" + "sticker_material" "antwerp2022/sig_fang_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "312457591" } - "520" + "5780" { - "name" "cu_tec9_avalanche" - "description_string" "#PaintKit_cu_tec9_avalanche" - "description_tag" "#PaintKit_cu_tec9_avalanche_Tag" - "style" "7" - "pattern" "workshop/tec9_avalanche" - "pattern_scale" "1.000000" - "phongexponent" "32" - "phongintensity" "10" - "ignore_weapon_size_scale" "1" - "only_first_material" "1" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "1.000000" + "name" "antwerp2022_signature_floppy_4" + "item_name" "#StickerKit_antwerp2022_signature_floppy" + "description_string" "#StickerKit_desc_antwerp2022_signature_floppy" + "sticker_material" "antwerp2022/sig_floppy" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "346253535" } - "521" + "5781" { - "name" "aq_xm1014_hot_rod" - "description_string" "#PaintKit_aq_xm1014_hot_rod" - "description_tag" "#PaintKit_aq_xm1014_hot_rod_Tag" - "style" "8" - "pattern" "workshop/xm1014_flames_yellow" - "color0" "202 202 202" - "color1" "166 166 166" - "color2" "120 19 19" - "color3" "0 50 237" - "pattern_scale" "1.000000" - "phongexponent" "200" - "phongalbedoboost" "40" - "ignore_weapon_size_scale" "1" - "only_first_material" "0" - "pattern_offset_x_start" "0.000000" - "pattern_offset_x_end" "0.000000" - "pattern_offset_y_start" "0.000000" - "pattern_offset_y_end" "0.000000" - "pattern_rotate_start" "0.000000" - "pattern_rotate_end" "0.000000" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.650000" + "name" "antwerp2022_signature_floppy_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_floppy_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_floppy_glitter" + "sticker_material" "antwerp2022/sig_floppy_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "346253535" + } + "5782" + { + "name" "antwerp2022_signature_floppy_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_floppy_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_floppy_holo" + "sticker_material" "antwerp2022/sig_floppy_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "346253535" + } + "5783" + { + "name" "antwerp2022_signature_floppy_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_floppy_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_floppy_gold" + "sticker_material" "antwerp2022/sig_floppy_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "346253535" + } + "5784" + { + "name" "antwerp2022_signature_grim_4" + "item_name" "#StickerKit_antwerp2022_signature_grim" + "description_string" "#StickerKit_desc_antwerp2022_signature_grim" + "sticker_material" "antwerp2022/sig_grim" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "230970467" + } + "5785" + { + "name" "antwerp2022_signature_grim_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_grim_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_grim_glitter" + "sticker_material" "antwerp2022/sig_grim_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "230970467" + } + "5786" + { + "name" "antwerp2022_signature_grim_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_grim_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_grim_holo" + "sticker_material" "antwerp2022/sig_grim_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "230970467" + } + "5787" + { + "name" "antwerp2022_signature_grim_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_grim_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_grim_gold" + "sticker_material" "antwerp2022/sig_grim_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "230970467" } - "522" + "5788" { - "name" "aa_fade_revolver" - "description_string" "#PaintKit_aa_fade" - "description_tag" "#PaintKit_aa_fade_Tag" - "pattern" "fade" - "wear_default" "0.200000" - "style" "6" - "color0" "44 41 39" - "color1" "84 52 14" - "color2" "71 18 28" - "color3" "28 31 57" - "phongalbedoboost" "80" - "phongexponent" "34" - "pattern_scale" "1" - "pattern_offset_x_start" "-0.700000" - "pattern_offset_x_end" "-0.700000" - "pattern_offset_y_start" "-0.700000" - "pattern_offset_y_end" "-0.700000" - "pattern_rotate_start" "-55" - "pattern_rotate_end" "-65" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_jt_4" + "item_name" "#StickerKit_antwerp2022_signature_jt" + "description_string" "#StickerKit_desc_antwerp2022_signature_jt" + "sticker_material" "antwerp2022/sig_jt" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "61449372" } - "523" + "5789" { - "name" "aa_fade_metallic_revolver" - "description_string" "#PaintKit_aa_fade" - "description_tag" "#PaintKit_aa_fade_metallic_Tag" - "style" "6" - "pattern" "fade" - "color0" "19 19 19" - "color1" "36 42 29" - "color2" "67 33 15" - "color3" "113 94 56" - "phongalbedoboost" "80" - "phongexponent" "34" - "pattern_scale" "1" - "pattern_offset_x_start" "-0.700000" - "pattern_offset_x_end" "-0.700000" - "pattern_offset_y_start" "-0.700000" - "pattern_offset_y_end" "-0.700000" - "pattern_rotate_start" "-55" - "pattern_rotate_end" "-65" - "ignore_weapon_size_scale" "1" - "wear_remap_min" "0.000000" - "wear_remap_max" "0.400000" + "name" "antwerp2022_signature_jt_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_jt_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_jt_glitter" + "sticker_material" "antwerp2022/sig_jt_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "61449372" + } + "5790" + { + "name" "antwerp2022_signature_jt_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_jt_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_jt_holo" + "sticker_material" "antwerp2022/sig_jt_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "61449372" + } + "5791" + { + "name" "antwerp2022_signature_jt_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_jt_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_jt_gold" + "sticker_material" "antwerp2022/sig_jt_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "61449372" + } + "5792" + { + "name" "antwerp2022_signature_junior_4" + "item_name" "#StickerKit_antwerp2022_signature_junior" + "description_string" "#StickerKit_desc_antwerp2022_signature_junior" + "sticker_material" "antwerp2022/sig_junior" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "103793230" + } + "5793" + { + "name" "antwerp2022_signature_junior_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_junior_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_junior_glitter" + "sticker_material" "antwerp2022/sig_junior_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "103793230" + } + "5794" + { + "name" "antwerp2022_signature_junior_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_junior_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_junior_holo" + "sticker_material" "antwerp2022/sig_junior_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "103793230" + } + "5795" + { + "name" "antwerp2022_signature_junior_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_junior_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_junior_gold" + "sticker_material" "antwerp2022/sig_junior_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "111" + "tournament_player_id" "103793230" + } + "5796" + { + "name" "antwerp2022_signature_blitz_4" + "item_name" "#StickerKit_antwerp2022_signature_blitz" + "description_string" "#StickerKit_desc_antwerp2022_signature_blitz" + "sticker_material" "antwerp2022/sig_blitz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "5797" + { + "name" "antwerp2022_signature_blitz_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_blitz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_blitz_glitter" + "sticker_material" "antwerp2022/sig_blitz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "5798" + { + "name" "antwerp2022_signature_blitz_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_blitz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_blitz_holo" + "sticker_material" "antwerp2022/sig_blitz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "5799" + { + "name" "antwerp2022_signature_blitz_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_blitz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_blitz_gold" + "sticker_material" "antwerp2022/sig_blitz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "5800" + { + "name" "antwerp2022_signature_kabal_4" + "item_name" "#StickerKit_antwerp2022_signature_kabal" + "description_string" "#StickerKit_desc_antwerp2022_signature_kabal" + "sticker_material" "antwerp2022/sig_kabal" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "5801" + { + "name" "antwerp2022_signature_kabal_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_kabal_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_kabal_glitter" + "sticker_material" "antwerp2022/sig_kabal_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "5802" + { + "name" "antwerp2022_signature_kabal_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_kabal_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_kabal_holo" + "sticker_material" "antwerp2022/sig_kabal_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "5803" + { + "name" "antwerp2022_signature_kabal_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_kabal_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_kabal_gold" + "sticker_material" "antwerp2022/sig_kabal_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "5804" + { + "name" "antwerp2022_signature_nin9_4" + "item_name" "#StickerKit_antwerp2022_signature_nin9" + "description_string" "#StickerKit_desc_antwerp2022_signature_nin9" + "sticker_material" "antwerp2022/sig_nin9" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "168197870" + } + "5805" + { + "name" "antwerp2022_signature_nin9_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_nin9_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_nin9_glitter" + "sticker_material" "antwerp2022/sig_nin9_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "168197870" + } + "5806" + { + "name" "antwerp2022_signature_nin9_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_nin9_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_nin9_holo" + "sticker_material" "antwerp2022/sig_nin9_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "168197870" + } + "5807" + { + "name" "antwerp2022_signature_nin9_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_nin9_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_nin9_gold" + "sticker_material" "antwerp2022/sig_nin9_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "168197870" + } + "5808" + { + "name" "antwerp2022_signature_sk0r_4" + "item_name" "#StickerKit_antwerp2022_signature_sk0r" + "description_string" "#StickerKit_desc_antwerp2022_signature_sk0r" + "sticker_material" "antwerp2022/sig_sk0r" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "863160115" + } + "5809" + { + "name" "antwerp2022_signature_sk0r_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_sk0r_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_sk0r_glitter" + "sticker_material" "antwerp2022/sig_sk0r_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "863160115" + } + "5810" + { + "name" "antwerp2022_signature_sk0r_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_sk0r_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_sk0r_holo" + "sticker_material" "antwerp2022/sig_sk0r_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "863160115" + } + "5811" + { + "name" "antwerp2022_signature_sk0r_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_sk0r_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_sk0r_gold" + "sticker_material" "antwerp2022/sig_sk0r_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "863160115" + } + "5812" + { + "name" "antwerp2022_signature_techno4k_4" + "item_name" "#StickerKit_antwerp2022_signature_techno4k" + "description_string" "#StickerKit_desc_antwerp2022_signature_techno4k" + "sticker_material" "antwerp2022/sig_techno4k" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" + } + "5813" + { + "name" "antwerp2022_signature_techno4k_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_techno4k_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_techno4k_glitter" + "sticker_material" "antwerp2022/sig_techno4k_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" + } + "5814" + { + "name" "antwerp2022_signature_techno4k_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_techno4k_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_techno4k_holo" + "sticker_material" "antwerp2022/sig_techno4k_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" + } + "5815" + { + "name" "antwerp2022_signature_techno4k_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_techno4k_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_techno4k_gold" + "sticker_material" "antwerp2022/sig_techno4k_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" + } + "5816" + { + "name" "antwerp2022_signature_ins_4" + "item_name" "#StickerKit_antwerp2022_signature_ins" + "description_string" "#StickerKit_desc_antwerp2022_signature_ins" + "sticker_material" "antwerp2022/sig_ins" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "26946895" + } + "5817" + { + "name" "antwerp2022_signature_ins_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_ins_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_ins_glitter" + "sticker_material" "antwerp2022/sig_ins_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "26946895" + } + "5818" + { + "name" "antwerp2022_signature_ins_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_ins_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_ins_holo" + "sticker_material" "antwerp2022/sig_ins_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "26946895" + } + "5819" + { + "name" "antwerp2022_signature_ins_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_ins_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_ins_gold" + "sticker_material" "antwerp2022/sig_ins_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "26946895" + } + "5820" + { + "name" "antwerp2022_signature_sico_4" + "item_name" "#StickerKit_antwerp2022_signature_sico" + "description_string" "#StickerKit_desc_antwerp2022_signature_sico" + "sticker_material" "antwerp2022/sig_sico" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "39266546" + } + "5821" + { + "name" "antwerp2022_signature_sico_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_sico_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_sico_glitter" + "sticker_material" "antwerp2022/sig_sico_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "39266546" + } + "5822" + { + "name" "antwerp2022_signature_sico_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_sico_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_sico_holo" + "sticker_material" "antwerp2022/sig_sico_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "39266546" + } + "5823" + { + "name" "antwerp2022_signature_sico_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_sico_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_sico_gold" + "sticker_material" "antwerp2022/sig_sico_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "39266546" + } + "5824" + { + "name" "antwerp2022_signature_liazz_4" + "item_name" "#StickerKit_antwerp2022_signature_liazz" + "description_string" "#StickerKit_desc_antwerp2022_signature_liazz" + "sticker_material" "antwerp2022/sig_liazz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "5825" + { + "name" "antwerp2022_signature_liazz_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_liazz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_liazz_glitter" + "sticker_material" "antwerp2022/sig_liazz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "5826" + { + "name" "antwerp2022_signature_liazz_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_liazz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_liazz_holo" + "sticker_material" "antwerp2022/sig_liazz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "5827" + { + "name" "antwerp2022_signature_liazz_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_liazz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_liazz_gold" + "sticker_material" "antwerp2022/sig_liazz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "112055988" + } + "5828" + { + "name" "antwerp2022_signature_hatz_4" + "item_name" "#StickerKit_antwerp2022_signature_hatz" + "description_string" "#StickerKit_desc_antwerp2022_signature_hatz" + "sticker_material" "antwerp2022/sig_hatz" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "64662058" + } + "5829" + { + "name" "antwerp2022_signature_hatz_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_hatz_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_hatz_glitter" + "sticker_material" "antwerp2022/sig_hatz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "64662058" + } + "5830" + { + "name" "antwerp2022_signature_hatz_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_hatz_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_hatz_holo" + "sticker_material" "antwerp2022/sig_hatz_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "64662058" + } + "5831" + { + "name" "antwerp2022_signature_hatz_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_hatz_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_hatz_gold" + "sticker_material" "antwerp2022/sig_hatz_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "64662058" + } + "5832" + { + "name" "antwerp2022_signature_alistair_4" + "item_name" "#StickerKit_antwerp2022_signature_alistair" + "description_string" "#StickerKit_desc_antwerp2022_signature_alistair" + "sticker_material" "antwerp2022/sig_alistair" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "138080982" + } + "5833" + { + "name" "antwerp2022_signature_alistair_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_alistair_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_alistair_glitter" + "sticker_material" "antwerp2022/sig_alistair_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "138080982" + } + "5834" + { + "name" "antwerp2022_signature_alistair_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_alistair_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_alistair_holo" + "sticker_material" "antwerp2022/sig_alistair_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "138080982" + } + "5835" + { + "name" "antwerp2022_signature_alistair_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_alistair_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_alistair_gold" + "sticker_material" "antwerp2022/sig_alistair_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "53" + "tournament_player_id" "138080982" + } + "5836" + { + "name" "antwerp2022_signature_shox_4" + "item_name" "#StickerKit_antwerp2022_signature_shox" + "description_string" "#StickerKit_desc_antwerp2022_signature_shox" + "sticker_material" "antwerp2022/sig_shox" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "46654567" + } + "5837" + { + "name" "antwerp2022_signature_shox_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_shox_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_shox_glitter" + "sticker_material" "antwerp2022/sig_shox_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "46654567" + } + "5838" + { + "name" "antwerp2022_signature_shox_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_shox_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_shox_holo" + "sticker_material" "antwerp2022/sig_shox_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "46654567" + } + "5839" + { + "name" "antwerp2022_signature_shox_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_shox_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_shox_gold" + "sticker_material" "antwerp2022/sig_shox_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "46654567" + } + "5840" + { + "name" "antwerp2022_signature_elige_4" + "item_name" "#StickerKit_antwerp2022_signature_elige" + "description_string" "#StickerKit_desc_antwerp2022_signature_elige" + "sticker_material" "antwerp2022/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "5841" + { + "name" "antwerp2022_signature_elige_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_elige_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_elige_glitter" + "sticker_material" "antwerp2022/sig_elige_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "5842" + { + "name" "antwerp2022_signature_elige_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_elige_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_elige_holo" + "sticker_material" "antwerp2022/sig_elige_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "5843" + { + "name" "antwerp2022_signature_elige_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_elige_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_elige_gold" + "sticker_material" "antwerp2022/sig_elige_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "106428011" + } + "5844" + { + "name" "antwerp2022_signature_osee_4" + "item_name" "#StickerKit_antwerp2022_signature_osee" + "description_string" "#StickerKit_desc_antwerp2022_signature_osee" + "sticker_material" "antwerp2022/sig_osee" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "87206806" + } + "5845" + { + "name" "antwerp2022_signature_osee_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_osee_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_osee_glitter" + "sticker_material" "antwerp2022/sig_osee_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "87206806" + } + "5846" + { + "name" "antwerp2022_signature_osee_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_osee_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_osee_holo" + "sticker_material" "antwerp2022/sig_osee_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "87206806" + } + "5847" + { + "name" "antwerp2022_signature_osee_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_osee_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_osee_gold" + "sticker_material" "antwerp2022/sig_osee_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "87206806" + } + "5848" + { + "name" "antwerp2022_signature_nitro_4" + "item_name" "#StickerKit_antwerp2022_signature_nitro" + "description_string" "#StickerKit_desc_antwerp2022_signature_nitro" + "sticker_material" "antwerp2022/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "5849" + { + "name" "antwerp2022_signature_nitro_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_nitro_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_nitro_glitter" + "sticker_material" "antwerp2022/sig_nitro_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "5850" + { + "name" "antwerp2022_signature_nitro_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_nitro_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_nitro_holo" + "sticker_material" "antwerp2022/sig_nitro_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "5851" + { + "name" "antwerp2022_signature_nitro_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_nitro_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_nitro_gold" + "sticker_material" "antwerp2022/sig_nitro_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "35624002" + } + "5852" + { + "name" "antwerp2022_signature_naf_4" + "item_name" "#StickerKit_antwerp2022_signature_naf" + "description_string" "#StickerKit_desc_antwerp2022_signature_naf" + "sticker_material" "antwerp2022/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "5853" + { + "name" "antwerp2022_signature_naf_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_naf_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_naf_glitter" + "sticker_material" "antwerp2022/sig_naf_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "5854" + { + "name" "antwerp2022_signature_naf_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_naf_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_naf_holo" + "sticker_material" "antwerp2022/sig_naf_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "5855" + { + "name" "antwerp2022_signature_naf_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_naf_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_naf_gold" + "sticker_material" "antwerp2022/sig_naf_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "48" + "tournament_player_id" "40885967" + } + "5856" + { + "name" "antwerp2022_signature_rox_4" + "item_name" "#StickerKit_antwerp2022_signature_rox" + "description_string" "#StickerKit_desc_antwerp2022_signature_rox" + "sticker_material" "antwerp2022/sig_rox" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "897065446" + } + "5857" + { + "name" "antwerp2022_signature_rox_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_rox_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_rox_glitter" + "sticker_material" "antwerp2022/sig_rox_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "897065446" + } + "5858" + { + "name" "antwerp2022_signature_rox_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_rox_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_rox_holo" + "sticker_material" "antwerp2022/sig_rox_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "897065446" + } + "5859" + { + "name" "antwerp2022_signature_rox_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_rox_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_rox_gold" + "sticker_material" "antwerp2022/sig_rox_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "897065446" + } + "5860" + { + "name" "antwerp2022_signature_luken_4" + "item_name" "#StickerKit_antwerp2022_signature_luken" + "description_string" "#StickerKit_desc_antwerp2022_signature_luken" + "sticker_material" "antwerp2022/sig_luken" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "46114258" + } + "5861" + { + "name" "antwerp2022_signature_luken_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_luken_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_luken_glitter" + "sticker_material" "antwerp2022/sig_luken_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "46114258" + } + "5862" + { + "name" "antwerp2022_signature_luken_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_luken_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_luken_holo" + "sticker_material" "antwerp2022/sig_luken_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "46114258" + } + "5863" + { + "name" "antwerp2022_signature_luken_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_luken_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_luken_gold" + "sticker_material" "antwerp2022/sig_luken_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "46114258" + } + "5864" + { + "name" "antwerp2022_signature_max_4" + "item_name" "#StickerKit_antwerp2022_signature_max" + "description_string" "#StickerKit_desc_antwerp2022_signature_max" + "sticker_material" "antwerp2022/sig_max" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "282684656" + } + "5865" + { + "name" "antwerp2022_signature_max_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_max_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_max_glitter" + "sticker_material" "antwerp2022/sig_max_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "282684656" + } + "5866" + { + "name" "antwerp2022_signature_max_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_max_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_max_holo" + "sticker_material" "antwerp2022/sig_max_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "282684656" + } + "5867" + { + "name" "antwerp2022_signature_max_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_max_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_max_gold" + "sticker_material" "antwerp2022/sig_max_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "282684656" + } + "5868" + { + "name" "antwerp2022_signature_dgt_4" + "item_name" "#StickerKit_antwerp2022_signature_dgt" + "description_string" "#StickerKit_desc_antwerp2022_signature_dgt" + "sticker_material" "antwerp2022/sig_dgt" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "256625848" + } + "5869" + { + "name" "antwerp2022_signature_dgt_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_dgt_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_dgt_glitter" + "sticker_material" "antwerp2022/sig_dgt_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "256625848" + } + "5870" + { + "name" "antwerp2022_signature_dgt_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_dgt_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_dgt_holo" + "sticker_material" "antwerp2022/sig_dgt_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "256625848" + } + "5871" + { + "name" "antwerp2022_signature_dgt_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_dgt_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_dgt_gold" + "sticker_material" "antwerp2022/sig_dgt_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "256625848" + } + "5872" + { + "name" "antwerp2022_signature_dav1d_4" + "item_name" "#StickerKit_antwerp2022_signature_dav1d" + "description_string" "#StickerKit_desc_antwerp2022_signature_dav1d" + "sticker_material" "antwerp2022/sig_dav1d" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "160225583" + } + "5873" + { + "name" "antwerp2022_signature_dav1d_4_glitter" + "item_name" "#StickerKit_antwerp2022_signature_dav1d_glitter" + "description_string" "#StickerKit_desc_antwerp2022_signature_dav1d_glitter" + "sticker_material" "antwerp2022/sig_dav1d_glitter" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "160225583" + } + "5874" + { + "name" "antwerp2022_signature_dav1d_4_holo" + "item_name" "#StickerKit_antwerp2022_signature_dav1d_holo" + "description_string" "#StickerKit_desc_antwerp2022_signature_dav1d_holo" + "sticker_material" "antwerp2022/sig_dav1d_holo" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "160225583" + } + "5875" + { + "name" "antwerp2022_signature_dav1d_4_gold" + "item_name" "#StickerKit_antwerp2022_signature_dav1d_gold" + "description_string" "#StickerKit_desc_antwerp2022_signature_dav1d_gold" + "sticker_material" "antwerp2022/sig_dav1d_gold" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "112" + "tournament_player_id" "160225583" + } + "5876" + { + "name" "antwerp2022_signature_rain_32" + "item_name" "#StickerKit_antwerp2022_signature_rain_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain_champion" + "sticker_material" "antwerp2022/sig_rain_champion" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "5877" + { + "name" "antwerp2022_signature_rain_32_glitter" + "item_name" "#StickerKit_antwerp2022_signature_rain_glitter_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain_glitter_champion" + "sticker_material" "antwerp2022/sig_rain_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "5878" + { + "name" "antwerp2022_signature_rain_32_holo" + "item_name" "#StickerKit_antwerp2022_signature_rain_holo_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain_holo_champion" + "sticker_material" "antwerp2022/sig_rain_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "5879" + { + "name" "antwerp2022_signature_rain_32_gold" + "item_name" "#StickerKit_antwerp2022_signature_rain_gold_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_rain_gold_champion" + "sticker_material" "antwerp2022/sig_rain_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "37085479" + } + "5880" + { + "name" "antwerp2022_signature_karrigan_32" + "item_name" "#StickerKit_antwerp2022_signature_karrigan_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan_champion" + "sticker_material" "antwerp2022/sig_karrigan_champion" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5881" + { + "name" "antwerp2022_signature_karrigan_32_glitter" + "item_name" "#StickerKit_antwerp2022_signature_karrigan_glitter_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan_glitter_champion" + "sticker_material" "antwerp2022/sig_karrigan_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5882" + { + "name" "antwerp2022_signature_karrigan_32_holo" + "item_name" "#StickerKit_antwerp2022_signature_karrigan_holo_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan_holo_champion" + "sticker_material" "antwerp2022/sig_karrigan_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5883" + { + "name" "antwerp2022_signature_karrigan_32_gold" + "item_name" "#StickerKit_antwerp2022_signature_karrigan_gold_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_karrigan_gold_champion" + "sticker_material" "antwerp2022/sig_karrigan_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "29164525" + } + "5884" + { + "name" "antwerp2022_signature_twistzz_32" + "item_name" "#StickerKit_antwerp2022_signature_twistzz_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz_champion" + "sticker_material" "antwerp2022/sig_twistzz_champion" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" + } + "5885" + { + "name" "antwerp2022_signature_twistzz_32_glitter" + "item_name" "#StickerKit_antwerp2022_signature_twistzz_glitter_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz_glitter_champion" + "sticker_material" "antwerp2022/sig_twistzz_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" + } + "5886" + { + "name" "antwerp2022_signature_twistzz_32_holo" + "item_name" "#StickerKit_antwerp2022_signature_twistzz_holo_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz_holo_champion" + "sticker_material" "antwerp2022/sig_twistzz_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" + } + "5887" + { + "name" "antwerp2022_signature_twistzz_32_gold" + "item_name" "#StickerKit_antwerp2022_signature_twistzz_gold_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_twistzz_gold_champion" + "sticker_material" "antwerp2022/sig_twistzz_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "55989477" + } + "5888" + { + "name" "antwerp2022_signature_broky_32" + "item_name" "#StickerKit_antwerp2022_signature_broky_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky_champion" + "sticker_material" "antwerp2022/sig_broky_champion" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" + } + "5889" + { + "name" "antwerp2022_signature_broky_32_glitter" + "item_name" "#StickerKit_antwerp2022_signature_broky_glitter_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky_glitter_champion" + "sticker_material" "antwerp2022/sig_broky_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" + } + "5890" + { + "name" "antwerp2022_signature_broky_32_holo" + "item_name" "#StickerKit_antwerp2022_signature_broky_holo_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky_holo_champion" + "sticker_material" "antwerp2022/sig_broky_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" + } + "5891" + { + "name" "antwerp2022_signature_broky_32_gold" + "item_name" "#StickerKit_antwerp2022_signature_broky_gold_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_broky_gold_champion" + "sticker_material" "antwerp2022/sig_broky_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "241354762" + } + "5892" + { + "name" "antwerp2022_signature_ropz_32" + "item_name" "#StickerKit_antwerp2022_signature_ropz_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz_champion" + "sticker_material" "antwerp2022/sig_ropz_champion" + "item_rarity" "rare" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" + } + "5893" + { + "name" "antwerp2022_signature_ropz_32_glitter" + "item_name" "#StickerKit_antwerp2022_signature_ropz_glitter_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz_glitter_champion" + "sticker_material" "antwerp2022/sig_ropz_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" + } + "5894" + { + "name" "antwerp2022_signature_ropz_32_holo" + "item_name" "#StickerKit_antwerp2022_signature_ropz_holo_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz_holo_champion" + "sticker_material" "antwerp2022/sig_ropz_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" + } + "5895" + { + "name" "antwerp2022_signature_ropz_32_gold" + "item_name" "#StickerKit_antwerp2022_signature_ropz_gold_champion" + "description_string" "#StickerKit_desc_antwerp2022_signature_ropz_gold_champion" + "sticker_material" "antwerp2022/sig_ropz_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "19" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } } - "paint_kits_rarity" - { - "so_olive" "common" - "so_red" "uncommon" - "hy_ddpat" "common" - "hy_arctic" "uncommon" - "hy_desert" "common" - "hy_tiger" "legendary" - "hy_copperhead" "rare" - "hy_skulls" "rare" - "hy_webs" "rare" - "hy_splatter" "mythical" - "hy_ak47lam" "mythical" - "hy_gelpen" "uncommon" - "hy_v_tiger" "common" - "hy_ddpat_urb" "common" - "hy_zombie" "mythical" - "hy_granite" "common" - "sp_spray" "common" - "sp_leaves" "common" - "sp_short_tape" "common" - "sp_tape" "common" - "an_navy" "rare" - "sp_snake" "uncommon" - "an_silver" "uncommon" - "an_red" "rare" - "am_urban" "uncommon" - "am_ossify" "rare" - "aa_flames" "rare" - "aa_fade" "rare" - "so_yellow" "mythical" - "so_night" "common" - "aq_copper" "rare" - "aq_blued" "uncommon" - "aq_forced" "uncommon" - "aq_oiled" "mythical" - "so_pmc" "common" - "so_space_marine" "common" - "am_dragon_glock" "rare" - "am_lightning_awp" "legendary" - "am_zebra" "rare" - "am_zebra_dark" "rare" - "aa_vertigo" "mythical" - "cu_spring_nova" "legendary" - "am_slither_p90" "legendary" - "am_carbon_fiber" "uncommon" - "am_scorpion_p2000" "rare" - "sp_mesh_tan" "common" - "hy_feathers_aug" "rare" - "hy_arctic_contrast" "common" - "hy_blizzard" "uncommon" - "hy_forest_winter" "uncommon" - "hy_forest_boreal" "common" - "hy_forest_night" "common" - "hy_ddpat_orange" "mythical" - "hy_ddpat_pink" "rare" - "hy_mottled_sand" "common" - "hy_reef" "uncommon" - "so_caramel" "common" - "so_grassland" "common" - "so_moss" "common" - "so_purple" "rare" - "so_sand" "common" - "so_stormfront" "common" - "so_tornado" "common" - "so_whiteout" "rare" - "sp_leaves_grassland" "common" - "sp_mesh_arctic_contrast" "common" - "sp_mesh_forest_fire" "uncommon" - "sp_mesh_glacier" "rare" - "sp_mesh_sand" "common" - "sp_spray_desert_sage" "common" - "sp_spray_jungle" "common" - "sp_spray_sand" "common" - "sp_tape_dots_urban" "common" - "sp_tape_dots_waves" "common" - "sp_tape_orange" "uncommon" - "sp_tape_urban" "common" - "sp_tape_short_jungle" "common" - "sp_tape_short_sand" "common" - "sp_tape_short_urban" "common" - "so_jungle" "common" - "so_tangerine" "mythical" - "cu_broken_path_famas" "legendary" - "cu_bullet_rain_m4a1" "ancient" - "cu_catskulls_p90" "ancient" - "sp_palm" "uncommon" - "cu_walnut_nova" "common" - "aq_brass" "rare" - "sp_splash_p250" "mythical" - "hy_hunter_modern" "rare" - "hy_hunter_blaze_pink" "legendary" - "hy_hunter_blaze_orange" "rare" - "sp_nukestripe_orange" "uncommon" - "sp_nukestripe_green" "mythical" - "sp_nukestripe_maroon" "uncommon" - "sp_zebracam" "common" - "sp_nukestripe_brown" "common" - "hy_ak47lam_bw" "uncommon" - "hy_blam_simple" "mythical" - "sp_dapple" "common" - "sp_zebracam_bw" "uncommon" - "hy_icosahedron" "rare" - "hy_doomkitty" "rare" - "sp_nukestripe_green_tec9" "mythical" - "cu_fireserpent_ak47_bravo" "legendary" - "cu_favela_awp" "mythical" - "cu_dragon_p90_bravo" "legendary" - "hy_siege_bravo" "rare" - "cu_favela_p2000" "mythical" - "am_scales_bravo" "legendary" - "sp_spray_waves_bravo" "rare" - "sp_star_bravo" "rare" - "aq_etched_mac10_bravo" "mythical" - "hy_ocean_bravo" "rare" - "cu_season_elites_bravo" "rare" - "hy_seaside_bravo" "rare" - "hy_crumple_bravo" "rare" - "sp_skull_diagram_bravo" "rare" - "sp_spitfire_famas_bravo" "mythical" - "hy_bluepolygon_bravo" "rare" - "an_emerald_bravo" "mythical" - "an_navy_bravo" "rare" - "sp_hazard_bravo" "rare" - "sp_tape_dots_bravo" "common" - "hy_mayan_dreams_bravo" "uncommon" - "sp_palm_bravo" "uncommon" - "hy_ddpat_jungle_bravo" "common" - "aq_steel_bravo" "rare" - "hy_ali_tile_bravo" "uncommon" - "so_jungle_bravo" "common" - "so_tornado_bravo" "common" - "hy_crumple_dark_bravo" "uncommon" - "so_sand_bravo" "common" - "so_olive_bravo" "common" - "an_gunmetal_bravo" "common" - "am_ossify_blue_p2000_bravo" "mythical" - "am_crumple_bravo" "mythical" - "am_ossify_blue" "mythical" - "am_crumple" "mythical" - "cu_xray_m4" "ancient" - "an_titanium30v" "rare" - "hy_redtiger" "uncommon" - "hy_bluehex" "rare" - "hy_redhex" "rare" - "am_ossify_red" "mythical" - "am_electric_red" "mythical" - "cu_shark" "ancient" - "hy_flowers" "rare" - "hy_water_crest" "rare" - "sp_camo_wood_blue" "rare" - "hy_ak47lam_blue" "rare" - "hy_hive" "mythical" - "hy_modspots" "mythical" - "sp_zebracam_blue" "rare" - "am_ddpatdense_silver" "rare" - "am_ddpatdense_peacock" "mythical" - "hy_webs_darker" "rare" - "sp_palm_shadow" "uncommon" - "sp_twigs" "uncommon" - "hy_varicamo" "uncommon" - "hy_varicamo_night" "uncommon" - "hy_varicamo_urban" "uncommon" - "hy_varicamo_blue" "rare" - "hy_varicamo_desert" "uncommon" - "sp_mesh_slashes" "common" - "sp_mesh_army" "common" - "sp_mesh_python" "uncommon" - "sp_mesh_hot_and_cold" "rare" - "sp_spray_army" "common" - "aa_fade_metallic" "rare" - "aq_damascus_sg553" "rare" - "am_crystallized" "mythical" - "am_crystallized_blue" "mythical" - "hy_varicamo_red" "rare" - "hy_snakeskin" "rare" - "am_crystallized_silver" "rare" - "aa_fade_grassland" "rare" - "so_orange_accents" "rare" - "cu_m4_asimov" "legendary" - "cu_sawedoff_octopump" "ancient" - "cu_m4a1-s_elegant" "mythical" - "cu_p250_refined" "legendary" - "cu_awp_cobra" "mythical" - "cu_famas_pulse" "mythical" - "hy_marina_sunrise" "mythical" - "am_thorny_rose_mp9" "mythical" - "cu_skull_nova" "mythical" - "cu_sandstorm" "rare" - "hy_kami" "rare" - "aq_obsidian" "rare" - "am_turqoise_halftone" "rare" - "am_diamond_plate" "mythical" - "am_fuschia" "legendary" - "aq_etched_cz75" "ancient" - "am_p250_beaded_paint" "legendary" - "am_fluted_tec9" "mythical" - "aq_engraved_deagle" "rare" - "am_copper_flecks" "mythical" - "hy_poly_camo" "uncommon" - "so_panther" "rare" - "aq_usp_stainless" "uncommon" - "hy_craquelure" "uncommon" - "cu_awp_asimov" "legendary" - "cu_aug_chameleonaire" "ancient" - "cu_ump_corporal" "rare" - "cu_ak47_cobra" "mythical" - "cu_p90_trigon" "legendary" - "cu_mac10_redhot" "mythical" - "sp_negev_turq_terrain" "rare" - "cu_nova_antique" "legendary" - "cu_sg553_pulse" "mythical" - "an_famas_sgt" "mythical" - "cu_tec9_sandstorm" "rare" - "cu_usp_elegant" "rare" - "cu_mag7_heaven" "rare" - "hy_nerodia" "common" - "so_green" "uncommon" - "cu_money" "legendary" - "am_crystallized_dark" "uncommon" - "so_orca" "rare" - "am_army_shine" "common" - "am_oval_hex" "uncommon" - "cu_pinstripe_ak47" "rare" - "am_m4a1-s_alloy_orange" "mythical" - "cu_ak47_rubber" "legendary" - "cu_tec9_asiimov" "rare" - "cu_ssg08_immortal" "rare" - "cu_aug_progressiv" "mythical" - "cu_bizon_antique" "mythical" - "cu_retribution" "rare" - "hy_galil_kami" "rare" - "cu_m4a1_howling" "immortal" - "cu_mac10_decay" "mythical" - "cu_p90_scorpius" "rare" - "cu_scar_cyrex" "legendary" - "cu_usp_spitfire" "mythical" - "cu_xm1014_heaven_guard" "mythical" - "am_nitrogen" "rare" - "cu_panther_ak47" "legendary" - "cu_bratatat_negev" "rare" - "cu_usp_sandpapered" "rare" - "hy_ssg08_marker" "rare" - "hy_snakeskin_red" "rare" - "cu_m4a1-s_silence" "mythical" - "so_orange_accents2" "rare" - "aq_steel" "uncommon" - "am_royal" "mythical" - "am_metals" "mythical" - "am_chainmail" "uncommon" - "aq_handcannon" "rare" - "am_metal_inlay" "rare" - "hy_vines" "common" - "hy_indigo_usp" "common" - "so_indigo_and_grey" "common" - "am_gyrate" "rare" - "an_royalbleed" "rare" - "cu_titanstorm" "legendary" - "cu_korupt" "mythical" - "cu_p2000_pulse" "uncommon" - "cu_kaiman" "mythical" - "cu_well_traveled_ak47" "mythical" - "cu_green_leather_ak47" "rare" - "cu_brown_leather_p90" "uncommon" - "cu_luggage_mac10" "uncommon" - "cu_medieval_dragon_awp" "legendary" - "cu_green_leather_sawedoff" "rare" - "cu_luggage_p2000" "common" - "aq_pilot_deagle" "rare" - "cu_leather_xm1014" "rare" - "cu_bizon-osiris" "mythical" - "cu_c75a-tiger" "mythical" - "cu_deagle_aureus" "mythical" - "aq_57_feathers" "legendary" - "cu_glock-liquescent" "mythical" - "cu_mp7-commander" "rare" - "cu_negev_titanstorm" "rare" - "cu_nova_koi" "mythical" - "cu_p2000_ivory" "uncommon" - "cu_bittersweet" "mythical" - "cu_p90-asiimov" "ancient" - "cu_m4a1s_cyrex" "legendary" - "aq_leviathan" "rare" - "hy_lines_orange" "rare" - "cu_luggage_sg553" "uncommon" - "cu_luggage_usp-s" "uncommon" - "hy_plaid1" "common" - "hy_plaid2" "common" - "am_nuclear_pattern1_glock" "uncommon" - "hy_nuclear_pattern2_mp9" "rare" - "sp_nuclear_pattern3_negev" "uncommon" - "am_nuclear_skulls1_xm1014" "rare" - "am_nuclear_skulls2_famas" "mythical" - "am_nuclear_skulls3_mac10" "rare" - "hy_nuclear_skulls4_p250" "uncommon" - "hy_nuclear_skulls5_tec9" "rare" - "sp_nukestripe_orange_aug" "uncommon" - "so_grey_nuclear_green_bizon" "uncommon" - "so_grey_nuclear_orange_five_seven" "uncommon" - "sp_nukestripe_maroon_sg553" "uncommon" - "cu_cerbrus_galil" "mythical" - "cu_tribute_ak47" "legendary" - "aq_glock_coiled" "rare" - "am_g3sg1_murky" "rare" - "aq_m4a1s_basilisk" "rare" - "cu_m4a4_griffin" "rare" - "sp_mag7_firebitten" "rare" - "cu_mp9_chevron" "rare" - "cu_fiveseven_urban_hazard" "rare" - "aq_p250_cartel" "legendary" - "cu_p2000_fire_elemental" "legendary" - "aq_sawedoff_blackgold" "mythical" - "cu_scar20_intervention" "legendary" - "sp_ump45_d-visions" "rare" - "cu_xm1014_caritas" "legendary" - "aq_ak47_cartel" "mythical" - "am_awp_glory" "legendary" - "cu_elites_urbanstorm" "mythical" - "aq_deagle_naga" "rare" - "cu_galil_abrasion" "ancient" - "cu_glock_deathtoll" "uncommon" - "cu_m4a4_ancestral" "mythical" - "cu_m249_sektor" "rare" - "am_mac10_malachite" "mythical" - "cu_mp9_deadly_poison" "rare" - "cu_p250_mandala" "legendary" - "cu_sawedoff_deva" "mythical" - "aq_scar20_leak" "rare" - "aq_xm1014_sigla" "rare" - "an_tiger_orange" "legendary" - "aq_damascus" "mythical" - "aq_damascus_90" "mythical" - "am_marble_fade" "legendary" - "aq_steel_knife" "rare" - "am_ruby_marbleized" "legendary" - "am_sapphire_marbleized" "legendary" - "am_blackpearl_marbleized" "ancient" - "am_doppler_phase1" "mythical" - "am_doppler_phase2" "mythical" - "am_doppler_phase3" "mythical" - "am_doppler_phase4" "mythical" - "cu_ak47_mastery" "uncommon" - "aq_mp7_ultramodern" "rare" - "aq_awp_twine" "rare" - "am_bronze_sparkle" "uncommon" - "aq_p250_contour" "rare" - "cu_fiveseven_banana" "legendary" - "cu_galil_eco" "legendary" - "aq_famas_jinn" "legendary" - "cu_m4a1_hyper_beast" "legendary" - "cu_mag7_redhot" "mythical" - "am_negev_glory" "rare" - "cu_mac10_neonrider" "ancient" - "cu_sawedoff_origami" "rare" - "cu_cz75_precision" "mythical" - "am_ump_racer" "mythical" - "am_aqua_flecks" "mythical" - "cu_chronos_g3sg1" "mythical" - "hy_hades" "uncommon" - "hy_icarus" "rare" - "cu_labyrinth" "rare" - "sp_labyrinth" "common" - "sp_labyrinth2" "common" - "sp_labyrinth3" "common" - "an_red_m4a1s" "mythical" - "cu_medusa_awp" "legendary" - "gs_mother_of_pearl_elite" "mythical" - "aa_pandora" "rare" - "cu_poseidon" "mythical" - "hy_zodiac1" "common" - "hy_zodiac2" "common" - "hy_zodiac3" "uncommon" - "an_emerald" "rare" - "so_khaki_green" "common" - "cu_anime_aug" "ancient" - "am_bamboo_jungle" "mythical" - "hy_bamboo_jungle_ink" "common" - "hy_bamboo_jungle_black" "common" - "hy_bamboo_jungle" "common" - "am_geometric_steps" "rare" - "hy_geometric_steps_green" "rare" - "hy_geometric_steps_yellow" "rare" - "hy_kimono_diamonds" "mythical" - "hy_kimono_diamonds_orange" "common" - "hy_kimono_diamonds_red" "uncommon" - "sp_kimono_diamonds" "common" - "am_seastorm" "common" - "am_seastorm_blood" "rare" - "am_seastorm_shojo" "rare" - "am_kimono_sunrise" "rare" - "so_keycolors" "common" - "so_aqua" "common" - "cu_ak47_courage_alt" "legendary" - "cu_awp_hyper_beast" "legendary" - "cu_cz75a_chastizer" "legendary" - "am_famas_dots" "mythical" - "cu_galilar_particles" "rare" - "aq_glock18_flames_blue" "uncommon" - "cu_m4a4_evil_daimyo" "rare" - "cu_mp7_nemsis" "legendary" - "am_mp9_nitrogen" "mythical" - "cu_negev_annihilator" "mythical" - "cu_nova_ranger" "rare" - "aq_p2000_boom" "rare" - "cu_p90_mastery" "rare" - "cu_sg553_cyrex" "legendary" - "cu_ump45_uproar" "rare" - "cu_usp_progressiv" "uncommon" - "cu_ak47_winter_sport" "mythical" - "cu_dualberretta_dragons" "rare" - "cu_famas_lenta" "rare" - "gs_g3sg1_flux_purple" "legendary" - "gs_galil_nightwing" "mythical" - "gs_glock18_wrathys" "uncommon" - "gs_m249_nebula_crusader" "mythical" - "gs_m4a1s_snakebite_gold" "legendary" - "cu_mac10_alekhya_duo" "rare" - "cu_mag7_myrcene" "rare" - "cu_mp7_classified" "mythical" - "hy_p250_crackshot" "mythical" - "gs_scar20_peacemaker03" "rare" - "cu_ssg08_technicality" "legendary" - "cu_usp_kill_confirmed" "legendary" - "aq_xm1014_scumbria" "rare" - "cu_ak47_point_disarray" "mythical" - "am_aug_jumble" "rare" - "cu_bizon_noxious" "mythical" - "aq_deagle_corinthian" "uncommon" - "cu_fiveseven_retrobution" "mythical" - "cu_g3sg1_executioner" "legendary" - "gs_m4a4_royal_squire" "legendary" - "cu_negev_impact" "mythical" - "am_p2000_imperial_red" "uncommon" - "cu_p90_shapewood" "legendary" - "gs_sawedoff_necromancer" "rare" - "hy_scar20_jungler" "rare" - "gs_sg553_tiger_moth" "mythical" - "cu_tec9_avalanche" "mythical" - "aq_xm1014_hot_rod" "mythical" - "aa_fade_revolver" "ancient" - "aa_fade_metallic_revolver" "legendary" - } - "item_sets" + "quest_definitions" { - "set_community_3" + "232" { - "name" "#CSGO_set_community_3" - "set_description" "#CSGO_set_community_3_desc" - "is_collection" "1" - "items" - { - "[cu_tec9_asiimov]weapon_tec9" "1" - "[cu_ssg08_immortal]weapon_ssg08" "1" - "[cu_retribution]weapon_elite" "1" - "[hy_galil_kami]weapon_galilar" "1" - "[cu_p90_scorpius]weapon_p90" "1" - "[am_nitrogen]weapon_cz75a" "1" - "[am_gyrate]weapon_cz75a" "1" - "[an_royalbleed]weapon_p90" "1" - "[cu_p2000_pulse]weapon_hkp2000" "1" - "[cu_aug_progressiv]weapon_aug" "1" - "[cu_bizon_antique]weapon_bizon" "1" - "[cu_mac10_decay]weapon_mac10" "1" - "[cu_xm1014_heaven_guard]weapon_xm1014" "1" - "[cu_korupt]weapon_mac10" "1" - "[am_m4a1-s_alloy_orange]weapon_m4a1_silencer" "1" - "[cu_scar_cyrex]weapon_scar20" "1" - "[cu_usp_spitfire]weapon_usp_silencer" "1" - "[cu_kaiman]weapon_usp_silencer" "1" - "[cu_ak47_rubber]weapon_ak47" "1" - "[cu_titanstorm]weapon_m4a1" "1" - } + "name" "quest_antwerp2022_activate_pass" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_activate_pass" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_activate_pass" + "quest_icon" "pass" + "gamemode" "competitive" } - "set_weapons_i" + "233" { - "name" "#CSGO_set_weapons_i" - "set_description" "#CSGO_set_weapons_i_desc" - "is_collection" "1" - "items" - { - "[hy_skulls]weapon_mp7" "1" - "[hy_feathers_aug]weapon_aug" "1" - "[so_purple]weapon_sg556" "1" - "[am_dragon_glock]weapon_glock" "1" - "[am_zebra_dark]weapon_usp_silencer" "1" - "[am_zebra_dark]weapon_m4a1_silencer" "1" - "[aq_oiled]weapon_ak47" "1" - "[aa_vertigo]weapon_deagle" "1" - "[am_lightning_awp]weapon_awp" "1" - } + "name" "quest_antwerp2022_challengers_calender" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_challengers_calender" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_challengers_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "set_esports" + "234" { - "name" "#CSGO_set_esports" - "set_description" "#CSGO_set_esports_desc" - "is_collection" "1" - "items" - { - "[sp_zebracam_bw]weapon_m4a1" "1" - "[hy_icosahedron]weapon_mag7" "1" - "[hy_doomkitty]weapon_famas" "1" - "[hy_ddpat_orange]weapon_galilar" "1" - "[hy_ddpat_orange]weapon_sawedoff" "1" - "[sp_splash_p250]weapon_p250" "1" - "[hy_ak47lam]weapon_ak47" "1" - "[hy_blam_simple]weapon_awp" "1" - "[cu_catskulls_p90]weapon_p90" "1" - } + "name" "quest_antwerp2022_challengers_pickem" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_challengers_pickem" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_challengers_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "set_bravo_i" + "235" { - "name" "#CSGO_set_bravo_i" - "set_description" "#CSGO_set_bravo_i_desc" - "is_collection" "1" - "items" - { - "[sp_spray_waves_bravo]weapon_sg556" "1" - "[cu_season_elites_bravo]weapon_elite" "1" - "[hy_seaside_bravo]weapon_nova" "1" - "[hy_crumple_bravo]weapon_galilar" "1" - "[sp_skull_diagram_bravo]weapon_ump45" "1" - "[hy_bluepolygon_bravo]weapon_g3sg1" "1" - "[hy_siege_bravo]weapon_usp_silencer" "1" - "[sp_star_bravo]weapon_m4a1" "1" - "[aq_etched_mac10_bravo]weapon_mac10" "1" - "[hy_ocean_bravo]weapon_m4a1_silencer" "1" - "[cu_dragon_p90_bravo]weapon_p90" "1" - "[am_ossify_blue_p2000_bravo]weapon_hkp2000" "1" - "[am_crumple_bravo]weapon_awp" "1" - "[cu_fireserpent_ak47_bravo]weapon_ak47" "1" - "[am_scales_bravo]weapon_deagle" "1" - } + "name" "quest_antwerp2022_legends_calender" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_legends_calender" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_legends_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "set_weapons_ii" + "236" { - "name" "#CSGO_set_weapons_ii" - "set_description" "#CSGO_set_weapons_ii_desc" - "is_collection" "1" - "items" + "name" "quest_antwerp2022_legends_pickem" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_legends_pickem" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_legends_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "237" + { + "name" "quest_antwerp2022_grandfinal_calender" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_grandfinal_calender" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_grandfinal_calender" + "quest_icon" "calender" + "gamemode" "competitive" + } + "238" + { + "name" "quest_antwerp2022_quarterfinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_quarterfinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_quarterfinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "239" + { + "name" "quest_antwerp2022_semifinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_semifinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_semifinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "240" + { + "name" "quest_antwerp2022_grandfinal_pickem" + "loc_name" "#CSGO_TournamentChallenge_antwerp2022_grandfinal_pickem" + "loc_description" "#CSGO_TournamentChallenge_antwerp2022_grandfinal_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + } + "campaign_definitions" + { + "13" + { + "loc_name" "#CSGO_TournamentJournal_antwerp2022" + "loc_description" "#CSGO_TournamentJournal_antwerp2022_Desc" + "1" { - "[an_titanium30v]weapon_tec9" "1" - "[hy_redtiger]weapon_m4a1_silencer" "1" - "[hy_bluehex]weapon_famas" "1" - "[hy_redhex]weapon_p250" "1" - "[hy_webs_darker]weapon_scar20" "1" - "[aq_oiled]weapon_fiveseven" "1" - "[aa_vertigo]weapon_mp9" "1" - "[am_crumple]weapon_nova" "1" - "[am_ossify_red]weapon_elite" "1" - "[am_slither_p90]weapon_p90" "1" - "[am_electric_red]weapon_usp_silencer" "1" - "[cu_shark]weapon_ssg08" "1" + "quest_index" "232" + } + "2" + { + "quest_index" "233" + } + "3" + { + "quest_index" "234" + } + "4" + { + "quest_index" "235" + } + "5" + { + "quest_index" "236" + } + "6" + { + "quest_index" "237" + } + "7" + { + "quest_index" "238" + } + "8" + { + "quest_index" "239" + } + "9" + { + "quest_index" "240" } } - "set_esports_ii" + } + "prefabs" + { + "rio2022_sticker_capsule_prefab" { - "name" "#CSGO_set_esports_ii" - "set_description" "#CSGO_set_esports_ii_desc" - "is_collection" "1" - "items" + "first_sale_date" "2022-10-20" + "prefab" "weapon_case_base" + "inv_container_and_tools" "sticker_capsule" + "attributes" { - "[an_titanium30v]weapon_galilar" "1" - "[hy_flowers]weapon_fiveseven" "1" - "[hy_water_crest]weapon_bizon" "1" - "[sp_camo_wood_blue]weapon_nova" "1" - "[sp_zebracam_blue]weapon_g3sg1" "1" - "[am_ddpatdense_silver]weapon_p250" "1" - "[hy_ak47lam_blue]weapon_ak47" "1" - "[hy_modspots]weapon_p90" "1" - "[cu_broken_path_famas]weapon_famas" "1" - "[hy_hive]weapon_awp" "1" - "[am_ddpatdense_peacock]weapon_deagle" "1" - "[cu_xray_m4]weapon_m4a1" "1" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } } } - "set_community_1" + "rio2022_signature_capsule_prefab" { - "name" "#CSGO_set_community_1" - "set_description" "#CSGO_set_community_1_desc" - "is_collection" "1" - "items" + "first_sale_date" "2022-10-20" + "prefab" "weapon_case_base" + "inv_container_and_tools" "sticker_capsule" + "attributes" { - "[cu_sandstorm]weapon_galilar" "1" - "[hy_kami]weapon_fiveseven" "1" - "[aq_obsidian]weapon_m249" "1" - "[am_turqoise_halftone]weapon_bizon" "1" - "[cu_famas_pulse]weapon_famas" "1" - "[hy_marina_sunrise]weapon_elite" "1" - "[am_thorny_rose_mp9]weapon_mp9" "1" - "[cu_skull_nova]weapon_nova" "1" - "[cu_m4a1-s_elegant]weapon_m4a1_silencer" "1" - "[cu_p250_refined]weapon_p250" "1" - "[cu_awp_cobra]weapon_awp" "1" - "[cu_m4_asimov]weapon_m4a1" "1" - "[cu_sawedoff_octopump]weapon_sawedoff" "1" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } } - } - "set_weapons_iii" - { - "name" "#CSGO_set_weapons_iii" - "set_description" "#CSGO_set_weapons_iii_desc" - "is_collection" "1" - "items" + "tags" { - "[hy_webs]weapon_cz75a" "1" - "[hy_poly_camo]weapon_hkp2000" "1" - "[so_panther]weapon_elite" "1" - "[aq_usp_stainless]weapon_usp_silencer" "1" - "[hy_craquelure]weapon_glock" "1" - "[am_diamond_plate]weapon_cz75a" "1" - "[am_fluted_tec9]weapon_tec9" "1" - "[aq_engraved_deagle]weapon_deagle" "1" - "[am_copper_flecks]weapon_fiveseven" "1" - "[am_fuschia]weapon_cz75a" "1" - "[am_p250_beaded_paint]weapon_p250" "1" - "[aq_etched_cz75]weapon_cz75a" "1" + "StickerCapsule" + { + "tag_value" "crate_signature_pack_rio2022_group_players_collection" + "tag_text" "#CSGO_crate_signature_pack_rio2022_group_players_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } } } - "set_community_2" + "rio2022_tournament_pass_prefab" { - "name" "#CSGO_set_community_2" - "set_description" "#CSGO_set_community_2_desc" - "is_collection" "1" - "items" + "first_sale_date" "2022-10-20" + "prefab" "fan_token" + "attributes" { - "[cu_ump_corporal]weapon_ump45" "1" - "[sp_negev_turq_terrain]weapon_negev" "1" - "[cu_tec9_sandstorm]weapon_tec9" "1" - "[cu_mag7_heaven]weapon_mag7" "1" - "[cu_mac10_redhot]weapon_mac10" "1" - "[cu_sg553_pulse]weapon_sg556" "1" - "[an_famas_sgt]weapon_famas" "1" - "[cu_usp_elegant]weapon_usp_silencer" "1" - "[cu_ak47_cobra]weapon_ak47" "1" - "[cu_p90_trigon]weapon_p90" "1" - "[cu_nova_antique]weapon_nova" "1" - "[cu_awp_asimov]weapon_awp" "1" - "[cu_aug_chameleonaire]weapon_aug" "1" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } } } - "set_community_4" + "rio2022_tournament_journal_prefab" { - "name" "#CSGO_set_community_4" - "set_description" "#CSGO_set_community_4_desc" - "is_collection" "1" - "items" + "item_description" "#CSGO_TournamentJournal_rio2022_Desc" + "first_sale_date" "2022-10-20" + "prefab" "fan_shield" + "attributes" { - "[cu_mp7-commander]weapon_mp7" "1" - "[cu_negev_titanstorm]weapon_negev" "1" - "[cu_p2000_ivory]weapon_hkp2000" "1" - "[aq_leviathan]weapon_ssg08" "1" - "[hy_lines_orange]weapon_ump45" "1" - "[cu_bizon-osiris]weapon_bizon" "1" - "[cu_c75a-tiger]weapon_cz75a" "1" - "[cu_nova_koi]weapon_nova" "1" - "[cu_bittersweet]weapon_p250" "1" - "[cu_deagle_aureus]weapon_deagle" "1" - "[aq_57_feathers]weapon_fiveseven" "1" - "[cu_glock-liquescent]weapon_glock" "1" - "[cu_p90-asiimov]weapon_p90" "1" - "[cu_m4a1s_cyrex]weapon_m4a1_silencer" "1" + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + "campaign id" + { + "attribute_class" "campaign_id" + "value" "14" + } + "sticker slot 0 id" + { + "attribute_class" "sticker_slot_id" + "value" "6085" + "force_gc_to_generate" "1" + } + "campaign completion bitfield" + { + "attribute_class" "campaign_completion_bitfield" + "value" "1" + "force_gc_to_generate" "1" + } + "operation drops awarded 0" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } + "operation drops awarded 1" + { + "attribute_class" "operation_drops_awarded" + "value" "0" + "force_gc_to_generate" "1" + } } } - "set_esports_iii" + } + "revolving_loot_lists" + { + "359" "crate_sticker_pack_rio2022_legends" + "360" "crate_sticker_pack_rio2022_challengers" + "361" "crate_sticker_pack_rio2022_contenders" + "362" "crate_rio2022_promo_de_inferno" + "363" "crate_rio2022_promo_de_mirage" + "364" "crate_rio2022_promo_de_dust2" + "365" "crate_rio2022_promo_de_overpass" + "366" "crate_rio2022_promo_de_ancient" + "367" "crate_rio2022_promo_de_nuke" + "368" "crate_rio2022_promo_de_vertigo" + "369" "crate_signature_pack_rio2022_group_players_collection_legends" + "370" "crate_signature_pack_rio2022_group_players_collection_challengers" + "371" "crate_signature_pack_rio2022_group_players_collection_contenders" + "372" "crate_signature_pack_rio2022_group_players_collection_champions" + "373" "storageunit0_rio2022_generated_contents" + "374" "storageunit1_rio2022_generated_contents" + } + "client_loot_lists" + { + "crate_sticker_pack_rio2022_legends_rare" + { + "[rio2022_team_ence]sticker" "1" + "[rio2022_team_faze]sticker" "1" + "[rio2022_team_hero]sticker" "1" + "[rio2022_team_navi]sticker" "1" + "[rio2022_team_nip]sticker" "1" + "[rio2022_team_spr]sticker" "1" + "[rio2022_team_liq]sticker" "1" + "[rio2022_team_spir]sticker" "1" + "[rio2022_team_iem]sticker" "1" + } + "crate_sticker_pack_rio2022_legends_mythical" + { + "[rio2022_team_ence_glitter]sticker" "1" + "[rio2022_team_faze_glitter]sticker" "1" + "[rio2022_team_hero_glitter]sticker" "1" + "[rio2022_team_navi_glitter]sticker" "1" + "[rio2022_team_nip_glitter]sticker" "1" + "[rio2022_team_spr_glitter]sticker" "1" + "[rio2022_team_liq_glitter]sticker" "1" + "[rio2022_team_spir_glitter]sticker" "1" + "[rio2022_team_iem_glitter]sticker" "1" + } + "crate_sticker_pack_rio2022_legends_legendary" + { + "[rio2022_team_ence_holo]sticker" "1" + "[rio2022_team_faze_holo]sticker" "1" + "[rio2022_team_hero_holo]sticker" "1" + "[rio2022_team_navi_holo]sticker" "1" + "[rio2022_team_nip_holo]sticker" "1" + "[rio2022_team_spr_holo]sticker" "1" + "[rio2022_team_liq_holo]sticker" "1" + "[rio2022_team_spir_holo]sticker" "1" + "[rio2022_team_iem_holo]sticker" "1" + } + "crate_sticker_pack_rio2022_legends_ancient" + { + "[rio2022_team_ence_gold]sticker" "1" + "[rio2022_team_faze_gold]sticker" "1" + "[rio2022_team_hero_gold]sticker" "1" + "[rio2022_team_navi_gold]sticker" "1" + "[rio2022_team_nip_gold]sticker" "1" + "[rio2022_team_spr_gold]sticker" "1" + "[rio2022_team_liq_gold]sticker" "1" + "[rio2022_team_spir_gold]sticker" "1" + "[rio2022_team_iem_gold]sticker" "1" + } + "crate_sticker_pack_rio2022_legends" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_rio2022_legends_rare" "1" + "crate_sticker_pack_rio2022_legends_mythical" "1" + "crate_sticker_pack_rio2022_legends_legendary" "1" + "crate_sticker_pack_rio2022_legends_ancient" "1" + } + "crate_sticker_pack_rio2022_challengers_rare" + { + "[rio2022_team_nine]sticker" "1" + "[rio2022_team_bne]sticker" "1" + "[rio2022_team_big]sticker" "1" + "[rio2022_team_c9]sticker" "1" + "[rio2022_team_evl]sticker" "1" + "[rio2022_team_mouz]sticker" "1" + "[rio2022_team_og]sticker" "1" + "[rio2022_team_vita]sticker" "1" + "[rio2022_team_iem]sticker" "1" + } + "crate_sticker_pack_rio2022_challengers_mythical" + { + "[rio2022_team_nine_glitter]sticker" "1" + "[rio2022_team_bne_glitter]sticker" "1" + "[rio2022_team_big_glitter]sticker" "1" + "[rio2022_team_c9_glitter]sticker" "1" + "[rio2022_team_evl_glitter]sticker" "1" + "[rio2022_team_mouz_glitter]sticker" "1" + "[rio2022_team_og_glitter]sticker" "1" + "[rio2022_team_vita_glitter]sticker" "1" + "[rio2022_team_iem_glitter]sticker" "1" + } + "crate_sticker_pack_rio2022_challengers_legendary" + { + "[rio2022_team_nine_holo]sticker" "1" + "[rio2022_team_bne_holo]sticker" "1" + "[rio2022_team_big_holo]sticker" "1" + "[rio2022_team_c9_holo]sticker" "1" + "[rio2022_team_evl_holo]sticker" "1" + "[rio2022_team_mouz_holo]sticker" "1" + "[rio2022_team_og_holo]sticker" "1" + "[rio2022_team_vita_holo]sticker" "1" + "[rio2022_team_iem_holo]sticker" "1" + } + "crate_sticker_pack_rio2022_challengers_ancient" + { + "[rio2022_team_nine_gold]sticker" "1" + "[rio2022_team_bne_gold]sticker" "1" + "[rio2022_team_big_gold]sticker" "1" + "[rio2022_team_c9_gold]sticker" "1" + "[rio2022_team_evl_gold]sticker" "1" + "[rio2022_team_mouz_gold]sticker" "1" + "[rio2022_team_og_gold]sticker" "1" + "[rio2022_team_vita_gold]sticker" "1" + "[rio2022_team_iem_gold]sticker" "1" + } + "crate_sticker_pack_rio2022_challengers" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_rio2022_challengers_rare" "1" + "crate_sticker_pack_rio2022_challengers_mythical" "1" + "crate_sticker_pack_rio2022_challengers_legendary" "1" + "crate_sticker_pack_rio2022_challengers_ancient" "1" + } + "crate_sticker_pack_rio2022_contenders_rare" + { + "[rio2022_team_zzn]sticker" "1" + "[rio2022_team_fntc]sticker" "1" + "[rio2022_team_furi]sticker" "1" + "[rio2022_team_gl]sticker" "1" + "[rio2022_team_gray]sticker" "1" + "[rio2022_team_ihc]sticker" "1" + "[rio2022_team_imp]sticker" "1" + "[rio2022_team_out]sticker" "1" + "[rio2022_team_iem]sticker" "1" + } + "crate_sticker_pack_rio2022_contenders_mythical" + { + "[rio2022_team_zzn_glitter]sticker" "1" + "[rio2022_team_fntc_glitter]sticker" "1" + "[rio2022_team_furi_glitter]sticker" "1" + "[rio2022_team_gl_glitter]sticker" "1" + "[rio2022_team_gray_glitter]sticker" "1" + "[rio2022_team_ihc_glitter]sticker" "1" + "[rio2022_team_imp_glitter]sticker" "1" + "[rio2022_team_out_glitter]sticker" "1" + "[rio2022_team_iem_glitter]sticker" "1" + } + "crate_sticker_pack_rio2022_contenders_legendary" + { + "[rio2022_team_zzn_holo]sticker" "1" + "[rio2022_team_fntc_holo]sticker" "1" + "[rio2022_team_furi_holo]sticker" "1" + "[rio2022_team_gl_holo]sticker" "1" + "[rio2022_team_gray_holo]sticker" "1" + "[rio2022_team_ihc_holo]sticker" "1" + "[rio2022_team_imp_holo]sticker" "1" + "[rio2022_team_out_holo]sticker" "1" + "[rio2022_team_iem_holo]sticker" "1" + } + "crate_sticker_pack_rio2022_contenders_ancient" + { + "[rio2022_team_zzn_gold]sticker" "1" + "[rio2022_team_fntc_gold]sticker" "1" + "[rio2022_team_furi_gold]sticker" "1" + "[rio2022_team_gl_gold]sticker" "1" + "[rio2022_team_gray_gold]sticker" "1" + "[rio2022_team_ihc_gold]sticker" "1" + "[rio2022_team_imp_gold]sticker" "1" + "[rio2022_team_out_gold]sticker" "1" + "[rio2022_team_iem_gold]sticker" "1" + } + "crate_sticker_pack_rio2022_contenders" + { + "contains_stickers_representing_organizations" "1" + "crate_sticker_pack_rio2022_contenders_rare" "1" + "crate_sticker_pack_rio2022_contenders_mythical" "1" + "crate_sticker_pack_rio2022_contenders_legendary" "1" + "crate_sticker_pack_rio2022_contenders_ancient" "1" + } + "crate_signature_pack_rio2022_group_legends_rare" + { + "[rio2022_signature_snappi_2]sticker" "1" + "[rio2022_signature_dycha_2]sticker" "1" + "[rio2022_signature_maden_2]sticker" "1" + "[rio2022_signature_v4lde_2]sticker" "1" + "[rio2022_signature_sunpayus_2]sticker" "1" + "[rio2022_signature_karrigan_2]sticker" "1" + "[rio2022_signature_rain_2]sticker" "1" + "[rio2022_signature_twistzz_2]sticker" "1" + "[rio2022_signature_ropz_2]sticker" "1" + "[rio2022_signature_broky_2]sticker" "1" + "[rio2022_signature_cadian_2]sticker" "1" + "[rio2022_signature_teses_2]sticker" "1" + "[rio2022_signature_sjuush_2]sticker" "1" + "[rio2022_signature_jabbi_2]sticker" "1" + "[rio2022_signature_stavn_2]sticker" "1" + "[rio2022_signature_b1t_2]sticker" "1" + "[rio2022_signature_electronic_2]sticker" "1" + "[rio2022_signature_sdy_2]sticker" "1" + "[rio2022_signature_perfecto_2]sticker" "1" + "[rio2022_signature_s1mple_2]sticker" "1" + "[rio2022_signature_es3tag_2]sticker" "1" + "[rio2022_signature_aleksib_2]sticker" "1" + "[rio2022_signature_rez_2]sticker" "1" + "[rio2022_signature_hampus_2]sticker" "1" + "[rio2022_signature_brollan_2]sticker" "1" + "[rio2022_signature_slaxz_2]sticker" "1" + "[rio2022_signature_launx_2]sticker" "1" + "[rio2022_signature_refrezh_2]sticker" "1" + "[rio2022_signature_staehr_2]sticker" "1" + "[rio2022_signature_zyphon_2]sticker" "1" + "[rio2022_signature_yekindar_2]sticker" "1" + "[rio2022_signature_osee_2]sticker" "1" + "[rio2022_signature_nitro_2]sticker" "1" + "[rio2022_signature_naf_2]sticker" "1" + "[rio2022_signature_elige_2]sticker" "1" + "[rio2022_signature_chopper_2]sticker" "1" + "[rio2022_signature_magixx_2]sticker" "1" + "[rio2022_signature_patsi_2]sticker" "1" + "[rio2022_signature_s1ren_2]sticker" "1" + "[rio2022_signature_w0nderful_2]sticker" "1" + } + "crate_signature_pack_rio2022_group_legends_mythical" + { + "[rio2022_signature_snappi_2_glitter]sticker" "1" + "[rio2022_signature_dycha_2_glitter]sticker" "1" + "[rio2022_signature_maden_2_glitter]sticker" "1" + "[rio2022_signature_v4lde_2_glitter]sticker" "1" + "[rio2022_signature_sunpayus_2_glitter]sticker" "1" + "[rio2022_signature_karrigan_2_glitter]sticker" "1" + "[rio2022_signature_rain_2_glitter]sticker" "1" + "[rio2022_signature_twistzz_2_glitter]sticker" "1" + "[rio2022_signature_ropz_2_glitter]sticker" "1" + "[rio2022_signature_broky_2_glitter]sticker" "1" + "[rio2022_signature_cadian_2_glitter]sticker" "1" + "[rio2022_signature_teses_2_glitter]sticker" "1" + "[rio2022_signature_sjuush_2_glitter]sticker" "1" + "[rio2022_signature_jabbi_2_glitter]sticker" "1" + "[rio2022_signature_stavn_2_glitter]sticker" "1" + "[rio2022_signature_b1t_2_glitter]sticker" "1" + "[rio2022_signature_electronic_2_glitter]sticker" "1" + "[rio2022_signature_sdy_2_glitter]sticker" "1" + "[rio2022_signature_perfecto_2_glitter]sticker" "1" + "[rio2022_signature_s1mple_2_glitter]sticker" "1" + "[rio2022_signature_es3tag_2_glitter]sticker" "1" + "[rio2022_signature_aleksib_2_glitter]sticker" "1" + "[rio2022_signature_rez_2_glitter]sticker" "1" + "[rio2022_signature_hampus_2_glitter]sticker" "1" + "[rio2022_signature_brollan_2_glitter]sticker" "1" + "[rio2022_signature_slaxz_2_glitter]sticker" "1" + "[rio2022_signature_launx_2_glitter]sticker" "1" + "[rio2022_signature_refrezh_2_glitter]sticker" "1" + "[rio2022_signature_staehr_2_glitter]sticker" "1" + "[rio2022_signature_zyphon_2_glitter]sticker" "1" + "[rio2022_signature_yekindar_2_glitter]sticker" "1" + "[rio2022_signature_osee_2_glitter]sticker" "1" + "[rio2022_signature_nitro_2_glitter]sticker" "1" + "[rio2022_signature_naf_2_glitter]sticker" "1" + "[rio2022_signature_elige_2_glitter]sticker" "1" + "[rio2022_signature_chopper_2_glitter]sticker" "1" + "[rio2022_signature_magixx_2_glitter]sticker" "1" + "[rio2022_signature_patsi_2_glitter]sticker" "1" + "[rio2022_signature_s1ren_2_glitter]sticker" "1" + "[rio2022_signature_w0nderful_2_glitter]sticker" "1" + } + "crate_signature_pack_rio2022_group_legends_legendary" + { + "[rio2022_signature_snappi_2_holo]sticker" "1" + "[rio2022_signature_dycha_2_holo]sticker" "1" + "[rio2022_signature_maden_2_holo]sticker" "1" + "[rio2022_signature_v4lde_2_holo]sticker" "1" + "[rio2022_signature_sunpayus_2_holo]sticker" "1" + "[rio2022_signature_karrigan_2_holo]sticker" "1" + "[rio2022_signature_rain_2_holo]sticker" "1" + "[rio2022_signature_twistzz_2_holo]sticker" "1" + "[rio2022_signature_ropz_2_holo]sticker" "1" + "[rio2022_signature_broky_2_holo]sticker" "1" + "[rio2022_signature_cadian_2_holo]sticker" "1" + "[rio2022_signature_teses_2_holo]sticker" "1" + "[rio2022_signature_sjuush_2_holo]sticker" "1" + "[rio2022_signature_jabbi_2_holo]sticker" "1" + "[rio2022_signature_stavn_2_holo]sticker" "1" + "[rio2022_signature_b1t_2_holo]sticker" "1" + "[rio2022_signature_electronic_2_holo]sticker" "1" + "[rio2022_signature_sdy_2_holo]sticker" "1" + "[rio2022_signature_perfecto_2_holo]sticker" "1" + "[rio2022_signature_s1mple_2_holo]sticker" "1" + "[rio2022_signature_es3tag_2_holo]sticker" "1" + "[rio2022_signature_aleksib_2_holo]sticker" "1" + "[rio2022_signature_rez_2_holo]sticker" "1" + "[rio2022_signature_hampus_2_holo]sticker" "1" + "[rio2022_signature_brollan_2_holo]sticker" "1" + "[rio2022_signature_slaxz_2_holo]sticker" "1" + "[rio2022_signature_launx_2_holo]sticker" "1" + "[rio2022_signature_refrezh_2_holo]sticker" "1" + "[rio2022_signature_staehr_2_holo]sticker" "1" + "[rio2022_signature_zyphon_2_holo]sticker" "1" + "[rio2022_signature_yekindar_2_holo]sticker" "1" + "[rio2022_signature_osee_2_holo]sticker" "1" + "[rio2022_signature_nitro_2_holo]sticker" "1" + "[rio2022_signature_naf_2_holo]sticker" "1" + "[rio2022_signature_elige_2_holo]sticker" "1" + "[rio2022_signature_chopper_2_holo]sticker" "1" + "[rio2022_signature_magixx_2_holo]sticker" "1" + "[rio2022_signature_patsi_2_holo]sticker" "1" + "[rio2022_signature_s1ren_2_holo]sticker" "1" + "[rio2022_signature_w0nderful_2_holo]sticker" "1" + } + "crate_signature_pack_rio2022_group_legends_gold" + { + "[rio2022_signature_snappi_2_gold]sticker" "1" + "[rio2022_signature_dycha_2_gold]sticker" "1" + "[rio2022_signature_maden_2_gold]sticker" "1" + "[rio2022_signature_v4lde_2_gold]sticker" "1" + "[rio2022_signature_sunpayus_2_gold]sticker" "1" + "[rio2022_signature_karrigan_2_gold]sticker" "1" + "[rio2022_signature_rain_2_gold]sticker" "1" + "[rio2022_signature_twistzz_2_gold]sticker" "1" + "[rio2022_signature_ropz_2_gold]sticker" "1" + "[rio2022_signature_broky_2_gold]sticker" "1" + "[rio2022_signature_cadian_2_gold]sticker" "1" + "[rio2022_signature_teses_2_gold]sticker" "1" + "[rio2022_signature_sjuush_2_gold]sticker" "1" + "[rio2022_signature_jabbi_2_gold]sticker" "1" + "[rio2022_signature_stavn_2_gold]sticker" "1" + "[rio2022_signature_b1t_2_gold]sticker" "1" + "[rio2022_signature_electronic_2_gold]sticker" "1" + "[rio2022_signature_sdy_2_gold]sticker" "1" + "[rio2022_signature_perfecto_2_gold]sticker" "1" + "[rio2022_signature_s1mple_2_gold]sticker" "1" + "[rio2022_signature_es3tag_2_gold]sticker" "1" + "[rio2022_signature_aleksib_2_gold]sticker" "1" + "[rio2022_signature_rez_2_gold]sticker" "1" + "[rio2022_signature_hampus_2_gold]sticker" "1" + "[rio2022_signature_brollan_2_gold]sticker" "1" + "[rio2022_signature_slaxz_2_gold]sticker" "1" + "[rio2022_signature_launx_2_gold]sticker" "1" + "[rio2022_signature_refrezh_2_gold]sticker" "1" + "[rio2022_signature_staehr_2_gold]sticker" "1" + "[rio2022_signature_zyphon_2_gold]sticker" "1" + "[rio2022_signature_yekindar_2_gold]sticker" "1" + "[rio2022_signature_osee_2_gold]sticker" "1" + "[rio2022_signature_nitro_2_gold]sticker" "1" + "[rio2022_signature_naf_2_gold]sticker" "1" + "[rio2022_signature_elige_2_gold]sticker" "1" + "[rio2022_signature_chopper_2_gold]sticker" "1" + "[rio2022_signature_magixx_2_gold]sticker" "1" + "[rio2022_signature_patsi_2_gold]sticker" "1" + "[rio2022_signature_s1ren_2_gold]sticker" "1" + "[rio2022_signature_w0nderful_2_gold]sticker" "1" + } + "crate_signature_pack_rio2022_group_challengers_rare" + { + "[rio2022_signature_nqz_1]sticker" "1" + "[rio2022_signature_dav1deus_1]sticker" "1" + "[rio2022_signature_max_1]sticker" "1" + "[rio2022_signature_dgt_1]sticker" "1" + "[rio2022_signature_buda_1]sticker" "1" + "[rio2022_signature_gxx_1]sticker" "1" + "[rio2022_signature_sener1_1]sticker" "1" + "[rio2022_signature_juanflatroo_1]sticker" "1" + "[rio2022_signature_rigon_1]sticker" "1" + "[rio2022_signature_sinnopsyy_1]sticker" "1" + "[rio2022_signature_faven_1]sticker" "1" + "[rio2022_signature_krimbo_1]sticker" "1" + "[rio2022_signature_k1to_1]sticker" "1" + "[rio2022_signature_tabsen_1]sticker" "1" + "[rio2022_signature_syrson_1]sticker" "1" + "[rio2022_signature_sh1ro_1]sticker" "1" + "[rio2022_signature_nafany_1]sticker" "1" + "[rio2022_signature_ax1le_1]sticker" "1" + "[rio2022_signature_interz_1]sticker" "1" + "[rio2022_signature_hobbit_1]sticker" "1" + "[rio2022_signature_autimatic_1]sticker" "1" + "[rio2022_signature_nealan_1]sticker" "1" + "[rio2022_signature_brehze_1]sticker" "1" + "[rio2022_signature_hext_1]sticker" "1" + "[rio2022_signature_cerq_1]sticker" "1" + "[rio2022_signature_frozen_1]sticker" "1" + "[rio2022_signature_dexter_1]sticker" "1" + "[rio2022_signature_jdc_1]sticker" "1" + "[rio2022_signature_torzsi_1]sticker" "1" + "[rio2022_signature_xertion_1]sticker" "1" + "[rio2022_signature_nexa_1]sticker" "1" + "[rio2022_signature_neofrag_1]sticker" "1" + "[rio2022_signature_flamez_1]sticker" "1" + "[rio2022_signature_degster_1]sticker" "1" + "[rio2022_signature_f1ku_1]sticker" "1" + "[rio2022_signature_dupreeh_1]sticker" "1" + "[rio2022_signature_magisk_1]sticker" "1" + "[rio2022_signature_apex_1]sticker" "1" + "[rio2022_signature_spinx_1]sticker" "1" + "[rio2022_signature_zywoo_1]sticker" "1" + } + "crate_signature_pack_rio2022_group_challengers_mythical" + { + "[rio2022_signature_nqz_1_glitter]sticker" "1" + "[rio2022_signature_dav1deus_1_glitter]sticker" "1" + "[rio2022_signature_max_1_glitter]sticker" "1" + "[rio2022_signature_dgt_1_glitter]sticker" "1" + "[rio2022_signature_buda_1_glitter]sticker" "1" + "[rio2022_signature_gxx_1_glitter]sticker" "1" + "[rio2022_signature_sener1_1_glitter]sticker" "1" + "[rio2022_signature_juanflatroo_1_glitter]sticker" "1" + "[rio2022_signature_rigon_1_glitter]sticker" "1" + "[rio2022_signature_sinnopsyy_1_glitter]sticker" "1" + "[rio2022_signature_faven_1_glitter]sticker" "1" + "[rio2022_signature_krimbo_1_glitter]sticker" "1" + "[rio2022_signature_k1to_1_glitter]sticker" "1" + "[rio2022_signature_tabsen_1_glitter]sticker" "1" + "[rio2022_signature_syrson_1_glitter]sticker" "1" + "[rio2022_signature_sh1ro_1_glitter]sticker" "1" + "[rio2022_signature_nafany_1_glitter]sticker" "1" + "[rio2022_signature_ax1le_1_glitter]sticker" "1" + "[rio2022_signature_interz_1_glitter]sticker" "1" + "[rio2022_signature_hobbit_1_glitter]sticker" "1" + "[rio2022_signature_autimatic_1_glitter]sticker" "1" + "[rio2022_signature_nealan_1_glitter]sticker" "1" + "[rio2022_signature_brehze_1_glitter]sticker" "1" + "[rio2022_signature_hext_1_glitter]sticker" "1" + "[rio2022_signature_cerq_1_glitter]sticker" "1" + "[rio2022_signature_frozen_1_glitter]sticker" "1" + "[rio2022_signature_dexter_1_glitter]sticker" "1" + "[rio2022_signature_jdc_1_glitter]sticker" "1" + "[rio2022_signature_torzsi_1_glitter]sticker" "1" + "[rio2022_signature_xertion_1_glitter]sticker" "1" + "[rio2022_signature_nexa_1_glitter]sticker" "1" + "[rio2022_signature_neofrag_1_glitter]sticker" "1" + "[rio2022_signature_flamez_1_glitter]sticker" "1" + "[rio2022_signature_degster_1_glitter]sticker" "1" + "[rio2022_signature_f1ku_1_glitter]sticker" "1" + "[rio2022_signature_dupreeh_1_glitter]sticker" "1" + "[rio2022_signature_magisk_1_glitter]sticker" "1" + "[rio2022_signature_apex_1_glitter]sticker" "1" + "[rio2022_signature_spinx_1_glitter]sticker" "1" + "[rio2022_signature_zywoo_1_glitter]sticker" "1" + } + "crate_signature_pack_rio2022_group_challengers_legendary" + { + "[rio2022_signature_nqz_1_holo]sticker" "1" + "[rio2022_signature_dav1deus_1_holo]sticker" "1" + "[rio2022_signature_max_1_holo]sticker" "1" + "[rio2022_signature_dgt_1_holo]sticker" "1" + "[rio2022_signature_buda_1_holo]sticker" "1" + "[rio2022_signature_gxx_1_holo]sticker" "1" + "[rio2022_signature_sener1_1_holo]sticker" "1" + "[rio2022_signature_juanflatroo_1_holo]sticker" "1" + "[rio2022_signature_rigon_1_holo]sticker" "1" + "[rio2022_signature_sinnopsyy_1_holo]sticker" "1" + "[rio2022_signature_faven_1_holo]sticker" "1" + "[rio2022_signature_krimbo_1_holo]sticker" "1" + "[rio2022_signature_k1to_1_holo]sticker" "1" + "[rio2022_signature_tabsen_1_holo]sticker" "1" + "[rio2022_signature_syrson_1_holo]sticker" "1" + "[rio2022_signature_sh1ro_1_holo]sticker" "1" + "[rio2022_signature_nafany_1_holo]sticker" "1" + "[rio2022_signature_ax1le_1_holo]sticker" "1" + "[rio2022_signature_interz_1_holo]sticker" "1" + "[rio2022_signature_hobbit_1_holo]sticker" "1" + "[rio2022_signature_autimatic_1_holo]sticker" "1" + "[rio2022_signature_nealan_1_holo]sticker" "1" + "[rio2022_signature_brehze_1_holo]sticker" "1" + "[rio2022_signature_hext_1_holo]sticker" "1" + "[rio2022_signature_cerq_1_holo]sticker" "1" + "[rio2022_signature_frozen_1_holo]sticker" "1" + "[rio2022_signature_dexter_1_holo]sticker" "1" + "[rio2022_signature_jdc_1_holo]sticker" "1" + "[rio2022_signature_torzsi_1_holo]sticker" "1" + "[rio2022_signature_xertion_1_holo]sticker" "1" + "[rio2022_signature_nexa_1_holo]sticker" "1" + "[rio2022_signature_neofrag_1_holo]sticker" "1" + "[rio2022_signature_flamez_1_holo]sticker" "1" + "[rio2022_signature_degster_1_holo]sticker" "1" + "[rio2022_signature_f1ku_1_holo]sticker" "1" + "[rio2022_signature_dupreeh_1_holo]sticker" "1" + "[rio2022_signature_magisk_1_holo]sticker" "1" + "[rio2022_signature_apex_1_holo]sticker" "1" + "[rio2022_signature_spinx_1_holo]sticker" "1" + "[rio2022_signature_zywoo_1_holo]sticker" "1" + } + "crate_signature_pack_rio2022_group_challengers_gold" + { + "[rio2022_signature_nqz_1_gold]sticker" "1" + "[rio2022_signature_dav1deus_1_gold]sticker" "1" + "[rio2022_signature_max_1_gold]sticker" "1" + "[rio2022_signature_dgt_1_gold]sticker" "1" + "[rio2022_signature_buda_1_gold]sticker" "1" + "[rio2022_signature_gxx_1_gold]sticker" "1" + "[rio2022_signature_sener1_1_gold]sticker" "1" + "[rio2022_signature_juanflatroo_1_gold]sticker" "1" + "[rio2022_signature_rigon_1_gold]sticker" "1" + "[rio2022_signature_sinnopsyy_1_gold]sticker" "1" + "[rio2022_signature_faven_1_gold]sticker" "1" + "[rio2022_signature_krimbo_1_gold]sticker" "1" + "[rio2022_signature_k1to_1_gold]sticker" "1" + "[rio2022_signature_tabsen_1_gold]sticker" "1" + "[rio2022_signature_syrson_1_gold]sticker" "1" + "[rio2022_signature_sh1ro_1_gold]sticker" "1" + "[rio2022_signature_nafany_1_gold]sticker" "1" + "[rio2022_signature_ax1le_1_gold]sticker" "1" + "[rio2022_signature_interz_1_gold]sticker" "1" + "[rio2022_signature_hobbit_1_gold]sticker" "1" + "[rio2022_signature_autimatic_1_gold]sticker" "1" + "[rio2022_signature_nealan_1_gold]sticker" "1" + "[rio2022_signature_brehze_1_gold]sticker" "1" + "[rio2022_signature_hext_1_gold]sticker" "1" + "[rio2022_signature_cerq_1_gold]sticker" "1" + "[rio2022_signature_frozen_1_gold]sticker" "1" + "[rio2022_signature_dexter_1_gold]sticker" "1" + "[rio2022_signature_jdc_1_gold]sticker" "1" + "[rio2022_signature_torzsi_1_gold]sticker" "1" + "[rio2022_signature_xertion_1_gold]sticker" "1" + "[rio2022_signature_nexa_1_gold]sticker" "1" + "[rio2022_signature_neofrag_1_gold]sticker" "1" + "[rio2022_signature_flamez_1_gold]sticker" "1" + "[rio2022_signature_degster_1_gold]sticker" "1" + "[rio2022_signature_f1ku_1_gold]sticker" "1" + "[rio2022_signature_dupreeh_1_gold]sticker" "1" + "[rio2022_signature_magisk_1_gold]sticker" "1" + "[rio2022_signature_apex_1_gold]sticker" "1" + "[rio2022_signature_spinx_1_gold]sticker" "1" + "[rio2022_signature_zywoo_1_gold]sticker" "1" + } + "crate_signature_pack_rio2022_group_contenders_rare" + { + "[rio2022_signature_taco_4]sticker" "1" + "[rio2022_signature_coldzera_4]sticker" "1" + "[rio2022_signature_try_4]sticker" "1" + "[rio2022_signature_latto_4]sticker" "1" + "[rio2022_signature_dumau_4]sticker" "1" + "[rio2022_signature_krimz_4]sticker" "1" + "[rio2022_signature_mezii_4]sticker" "1" + "[rio2022_signature_fashr_4]sticker" "1" + "[rio2022_signature_roej_4]sticker" "1" + "[rio2022_signature_nicoodoz_4]sticker" "1" + "[rio2022_signature_kscerato_4]sticker" "1" + "[rio2022_signature_yuurih_4]sticker" "1" + "[rio2022_signature_drop_4]sticker" "1" + "[rio2022_signature_saffee_4]sticker" "1" + "[rio2022_signature_art_4]sticker" "1" + "[rio2022_signature_acor_4]sticker" "1" + "[rio2022_signature_im_4]sticker" "1" + "[rio2022_signature_siuhy_4]sticker" "1" + "[rio2022_signature_keoz_4]sticker" "1" + "[rio2022_signature_isak_4]sticker" "1" + "[rio2022_signature_ins_4]sticker" "1" + "[rio2022_signature_vexite_4]sticker" "1" + "[rio2022_signature_sico_4]sticker" "1" + "[rio2022_signature_liazz_4]sticker" "1" + "[rio2022_signature_alistair_4]sticker" "1" + "[rio2022_signature_sk0r_4]sticker" "1" + "[rio2022_signature_techno4k_4]sticker" "1" + "[rio2022_signature_kabal_4]sticker" "1" + "[rio2022_signature_blitz_4]sticker" "1" + "[rio2022_signature_annihilation_4]sticker" "1" + "[rio2022_signature_fallen_4]sticker" "1" + "[rio2022_signature_fer_4]sticker" "1" + "[rio2022_signature_boltz_4]sticker" "1" + "[rio2022_signature_vini_4]sticker" "1" + "[rio2022_signature_chelo_4]sticker" "1" + "[rio2022_signature_fl1t_4]sticker" "1" + "[rio2022_signature_n0rb3r7_4]sticker" "1" + "[rio2022_signature_jame_4]sticker" "1" + "[rio2022_signature_qikert_4]sticker" "1" + "[rio2022_signature_fame_4]sticker" "1" + } + "crate_signature_pack_rio2022_group_contenders_mythical" + { + "[rio2022_signature_taco_4_glitter]sticker" "1" + "[rio2022_signature_coldzera_4_glitter]sticker" "1" + "[rio2022_signature_try_4_glitter]sticker" "1" + "[rio2022_signature_latto_4_glitter]sticker" "1" + "[rio2022_signature_dumau_4_glitter]sticker" "1" + "[rio2022_signature_krimz_4_glitter]sticker" "1" + "[rio2022_signature_mezii_4_glitter]sticker" "1" + "[rio2022_signature_fashr_4_glitter]sticker" "1" + "[rio2022_signature_roej_4_glitter]sticker" "1" + "[rio2022_signature_nicoodoz_4_glitter]sticker" "1" + "[rio2022_signature_kscerato_4_glitter]sticker" "1" + "[rio2022_signature_yuurih_4_glitter]sticker" "1" + "[rio2022_signature_drop_4_glitter]sticker" "1" + "[rio2022_signature_saffee_4_glitter]sticker" "1" + "[rio2022_signature_art_4_glitter]sticker" "1" + "[rio2022_signature_acor_4_glitter]sticker" "1" + "[rio2022_signature_im_4_glitter]sticker" "1" + "[rio2022_signature_siuhy_4_glitter]sticker" "1" + "[rio2022_signature_keoz_4_glitter]sticker" "1" + "[rio2022_signature_isak_4_glitter]sticker" "1" + "[rio2022_signature_ins_4_glitter]sticker" "1" + "[rio2022_signature_vexite_4_glitter]sticker" "1" + "[rio2022_signature_sico_4_glitter]sticker" "1" + "[rio2022_signature_liazz_4_glitter]sticker" "1" + "[rio2022_signature_alistair_4_glitter]sticker" "1" + "[rio2022_signature_sk0r_4_glitter]sticker" "1" + "[rio2022_signature_techno4k_4_glitter]sticker" "1" + "[rio2022_signature_kabal_4_glitter]sticker" "1" + "[rio2022_signature_blitz_4_glitter]sticker" "1" + "[rio2022_signature_annihilation_4_glitter]sticker" "1" + "[rio2022_signature_fallen_4_glitter]sticker" "1" + "[rio2022_signature_fer_4_glitter]sticker" "1" + "[rio2022_signature_boltz_4_glitter]sticker" "1" + "[rio2022_signature_vini_4_glitter]sticker" "1" + "[rio2022_signature_chelo_4_glitter]sticker" "1" + "[rio2022_signature_fl1t_4_glitter]sticker" "1" + "[rio2022_signature_n0rb3r7_4_glitter]sticker" "1" + "[rio2022_signature_jame_4_glitter]sticker" "1" + "[rio2022_signature_qikert_4_glitter]sticker" "1" + "[rio2022_signature_fame_4_glitter]sticker" "1" + } + "crate_signature_pack_rio2022_group_contenders_legendary" + { + "[rio2022_signature_taco_4_holo]sticker" "1" + "[rio2022_signature_coldzera_4_holo]sticker" "1" + "[rio2022_signature_try_4_holo]sticker" "1" + "[rio2022_signature_latto_4_holo]sticker" "1" + "[rio2022_signature_dumau_4_holo]sticker" "1" + "[rio2022_signature_krimz_4_holo]sticker" "1" + "[rio2022_signature_mezii_4_holo]sticker" "1" + "[rio2022_signature_fashr_4_holo]sticker" "1" + "[rio2022_signature_roej_4_holo]sticker" "1" + "[rio2022_signature_nicoodoz_4_holo]sticker" "1" + "[rio2022_signature_kscerato_4_holo]sticker" "1" + "[rio2022_signature_yuurih_4_holo]sticker" "1" + "[rio2022_signature_drop_4_holo]sticker" "1" + "[rio2022_signature_saffee_4_holo]sticker" "1" + "[rio2022_signature_art_4_holo]sticker" "1" + "[rio2022_signature_acor_4_holo]sticker" "1" + "[rio2022_signature_im_4_holo]sticker" "1" + "[rio2022_signature_siuhy_4_holo]sticker" "1" + "[rio2022_signature_keoz_4_holo]sticker" "1" + "[rio2022_signature_isak_4_holo]sticker" "1" + "[rio2022_signature_ins_4_holo]sticker" "1" + "[rio2022_signature_vexite_4_holo]sticker" "1" + "[rio2022_signature_sico_4_holo]sticker" "1" + "[rio2022_signature_liazz_4_holo]sticker" "1" + "[rio2022_signature_alistair_4_holo]sticker" "1" + "[rio2022_signature_sk0r_4_holo]sticker" "1" + "[rio2022_signature_techno4k_4_holo]sticker" "1" + "[rio2022_signature_kabal_4_holo]sticker" "1" + "[rio2022_signature_blitz_4_holo]sticker" "1" + "[rio2022_signature_annihilation_4_holo]sticker" "1" + "[rio2022_signature_fallen_4_holo]sticker" "1" + "[rio2022_signature_fer_4_holo]sticker" "1" + "[rio2022_signature_boltz_4_holo]sticker" "1" + "[rio2022_signature_vini_4_holo]sticker" "1" + "[rio2022_signature_chelo_4_holo]sticker" "1" + "[rio2022_signature_fl1t_4_holo]sticker" "1" + "[rio2022_signature_n0rb3r7_4_holo]sticker" "1" + "[rio2022_signature_jame_4_holo]sticker" "1" + "[rio2022_signature_qikert_4_holo]sticker" "1" + "[rio2022_signature_fame_4_holo]sticker" "1" + } + "crate_signature_pack_rio2022_group_contenders_gold" + { + "[rio2022_signature_taco_4_gold]sticker" "1" + "[rio2022_signature_coldzera_4_gold]sticker" "1" + "[rio2022_signature_try_4_gold]sticker" "1" + "[rio2022_signature_latto_4_gold]sticker" "1" + "[rio2022_signature_dumau_4_gold]sticker" "1" + "[rio2022_signature_krimz_4_gold]sticker" "1" + "[rio2022_signature_mezii_4_gold]sticker" "1" + "[rio2022_signature_fashr_4_gold]sticker" "1" + "[rio2022_signature_roej_4_gold]sticker" "1" + "[rio2022_signature_nicoodoz_4_gold]sticker" "1" + "[rio2022_signature_kscerato_4_gold]sticker" "1" + "[rio2022_signature_yuurih_4_gold]sticker" "1" + "[rio2022_signature_drop_4_gold]sticker" "1" + "[rio2022_signature_saffee_4_gold]sticker" "1" + "[rio2022_signature_art_4_gold]sticker" "1" + "[rio2022_signature_acor_4_gold]sticker" "1" + "[rio2022_signature_im_4_gold]sticker" "1" + "[rio2022_signature_siuhy_4_gold]sticker" "1" + "[rio2022_signature_keoz_4_gold]sticker" "1" + "[rio2022_signature_isak_4_gold]sticker" "1" + "[rio2022_signature_ins_4_gold]sticker" "1" + "[rio2022_signature_vexite_4_gold]sticker" "1" + "[rio2022_signature_sico_4_gold]sticker" "1" + "[rio2022_signature_liazz_4_gold]sticker" "1" + "[rio2022_signature_alistair_4_gold]sticker" "1" + "[rio2022_signature_sk0r_4_gold]sticker" "1" + "[rio2022_signature_techno4k_4_gold]sticker" "1" + "[rio2022_signature_kabal_4_gold]sticker" "1" + "[rio2022_signature_blitz_4_gold]sticker" "1" + "[rio2022_signature_annihilation_4_gold]sticker" "1" + "[rio2022_signature_fallen_4_gold]sticker" "1" + "[rio2022_signature_fer_4_gold]sticker" "1" + "[rio2022_signature_boltz_4_gold]sticker" "1" + "[rio2022_signature_vini_4_gold]sticker" "1" + "[rio2022_signature_chelo_4_gold]sticker" "1" + "[rio2022_signature_fl1t_4_gold]sticker" "1" + "[rio2022_signature_n0rb3r7_4_gold]sticker" "1" + "[rio2022_signature_jame_4_gold]sticker" "1" + "[rio2022_signature_qikert_4_gold]sticker" "1" + "[rio2022_signature_fame_4_gold]sticker" "1" + } + "crate_signature_pack_rio2022_group_champions_rare" + { + "[rio2022_signature_fl1t_32]sticker" "1" + "[rio2022_signature_n0rb3r7_32]sticker" "1" + "[rio2022_signature_jame_32]sticker" "1" + "[rio2022_signature_qikert_32]sticker" "1" + "[rio2022_signature_fame_32]sticker" "1" + } + "crate_signature_pack_rio2022_group_champions_mythical" + { + "[rio2022_signature_fl1t_32_glitter]sticker" "1" + "[rio2022_signature_n0rb3r7_32_glitter]sticker" "1" + "[rio2022_signature_jame_32_glitter]sticker" "1" + "[rio2022_signature_qikert_32_glitter]sticker" "1" + "[rio2022_signature_fame_32_glitter]sticker" "1" + } + "crate_signature_pack_rio2022_group_champions_legendary" + { + "[rio2022_signature_fl1t_32_holo]sticker" "1" + "[rio2022_signature_n0rb3r7_32_holo]sticker" "1" + "[rio2022_signature_jame_32_holo]sticker" "1" + "[rio2022_signature_qikert_32_holo]sticker" "1" + "[rio2022_signature_fame_32_holo]sticker" "1" + } + "crate_signature_pack_rio2022_group_champions_gold" { - "name" "#CSGO_set_esports_2014_summer" - "set_description" "#CSGO_set_esports_2014_summer_desc" - "is_collection" "1" - "items" - { - "[am_zebra_dark]weapon_ssg08" "1" - "[so_purple]weapon_mac10" "1" - "[hy_redtiger]weapon_usp_silencer" "1" - "[hy_bluehex]weapon_cz75a" "1" - "[cu_bratatat_negev]weapon_negev" "1" - "[hy_snakeskin_red]weapon_xm1014" "1" - "[hy_splatter]weapon_bizon" "1" - "[hy_zombie]weapon_p90" "1" - "[am_ossify_blue]weapon_mp7" "1" - "[am_ddpatdense_silver]weapon_glock" "1" - "[hy_webs_darker]weapon_deagle" "1" - "[hy_tiger]weapon_aug" "1" - "[cu_spring_nova]weapon_nova" "1" - "[cu_favela_awp]weapon_awp" "1" - "[cu_favela_p2000]weapon_hkp2000" "1" - "[cu_bullet_rain_m4a1]weapon_m4a1" "1" - "[cu_panther_ak47]weapon_ak47" "1" - } + "[rio2022_signature_fl1t_32_gold]sticker" "1" + "[rio2022_signature_n0rb3r7_32_gold]sticker" "1" + "[rio2022_signature_jame_32_gold]sticker" "1" + "[rio2022_signature_qikert_32_gold]sticker" "1" + "[rio2022_signature_fame_32_gold]sticker" "1" } - "set_community_5" + "crate_signature_pack_rio2022_group_players_collection_legends" { - "name" "#CSGO_set_community_5" - "set_description" "#CSGO_set_community_5_desc" - "is_collection" "1" - "items" - { - "[am_g3sg1_murky]weapon_g3sg1" "1" - "[sp_mag7_firebitten]weapon_mag7" "1" - "[cu_mp9_chevron]weapon_mp9" "1" - "[cu_fiveseven_urban_hazard]weapon_fiveseven" "1" - "[sp_ump45_d-visions]weapon_ump45" "1" - "[aq_glock_coiled]weapon_glock" "1" - "[aq_m4a1s_basilisk]weapon_m4a1_silencer" "1" - "[cu_m4a4_griffin]weapon_m4a1" "1" - "[aq_sawedoff_blackgold]weapon_sawedoff" "1" - "[aq_p250_cartel]weapon_p250" "1" - "[cu_scar20_intervention]weapon_scar20" "1" - "[cu_xm1014_caritas]weapon_xm1014" "1" - "[cu_tribute_ak47]weapon_ak47" "1" - "[cu_p2000_fire_elemental]weapon_hkp2000" "1" - } + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_rio2022_group_legends_rare" "1" + "crate_signature_pack_rio2022_group_legends_mythical" "1" + "crate_signature_pack_rio2022_group_legends_legendary" "1" + "crate_signature_pack_rio2022_group_legends_gold" "1" } - "set_community_6" + "crate_signature_pack_rio2022_group_players_collection_challengers" { - "name" "#CSGO_set_community_6" - "set_description" "#CSGO_set_community_6_desc" - "is_collection" "1" - "items" - { - "[cu_glock_deathtoll]weapon_glock" "1" - "[cu_m249_sektor]weapon_m249" "1" - "[cu_mp9_deadly_poison]weapon_mp9" "1" - "[aq_scar20_leak]weapon_scar20" "1" - "[aq_xm1014_sigla]weapon_xm1014" "1" - "[cu_elites_urbanstorm]weapon_elite" "1" - "[aq_deagle_naga]weapon_deagle" "1" - "[am_mac10_malachite]weapon_mac10" "1" - "[cu_sawedoff_deva]weapon_sawedoff" "1" - "[aq_ak47_cartel]weapon_ak47" "1" - "[cu_m4a4_ancestral]weapon_m4a1" "1" - "[cu_p250_mandala]weapon_p250" "1" - "[am_awp_glory]weapon_awp" "1" - "[cu_galil_abrasion]weapon_galilar" "1" - } + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_rio2022_group_challengers_rare" "1" + "crate_signature_pack_rio2022_group_challengers_mythical" "1" + "crate_signature_pack_rio2022_group_challengers_legendary" "1" + "crate_signature_pack_rio2022_group_challengers_gold" "1" } - "set_community_7" + "crate_signature_pack_rio2022_group_players_collection_contenders" { - "name" "#CSGO_set_community_7" - "set_description" "#CSGO_set_community_7_desc" - "is_collection" "1" - "items" - { - "[cu_ak47_mastery]weapon_ak47" "1" - "[aq_mp7_ultramodern]weapon_mp7" "1" - "[am_bronze_sparkle]weapon_deagle" "1" - "[aq_p250_contour]weapon_p250" "1" - "[am_negev_glory]weapon_negev" "1" - "[cu_sawedoff_origami]weapon_sawedoff" "1" - "[aq_awp_twine]weapon_awp" "1" - "[cu_mag7_redhot]weapon_mag7" "1" - "[cu_cz75_precision]weapon_cz75a" "1" - "[am_ump_racer]weapon_ump45" "1" - "[cu_fiveseven_banana]weapon_fiveseven" "1" - "[cu_galil_eco]weapon_galilar" "1" - "[aq_famas_jinn]weapon_famas" "1" - "[cu_m4a1_hyper_beast]weapon_m4a1_silencer" "1" - "[cu_mac10_neonrider]weapon_mac10" "1" - } + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_rio2022_group_contenders_rare" "1" + "crate_signature_pack_rio2022_group_contenders_mythical" "1" + "crate_signature_pack_rio2022_group_contenders_legendary" "1" + "crate_signature_pack_rio2022_group_contenders_gold" "1" } - "set_dust" + "crate_signature_pack_rio2022_group_players_collection_champions" { - "name" "#CSGO_set_dust" - "set_description" "#CSGO_set_dust_desc" - "is_collection" "1" - "items" - { - "[hy_desert]weapon_m4a1" "1" - "[sp_palm]weapon_scar20" "1" - "[sp_zebracam]weapon_ak47" "1" - "[hy_copperhead]weapon_aug" "1" - "[sp_snake]weapon_awp" "1" - "[aq_copper]weapon_sawedoff" "1" - "[aa_flames]weapon_deagle" "1" - "[am_scorpion_p2000]weapon_hkp2000" "1" - "[aq_brass]weapon_glock" "1" - } + "contains_stickers_autographed_by_proplayers" "1" + "crate_signature_pack_rio2022_group_champions_rare" "1" + "crate_signature_pack_rio2022_group_champions_mythical" "1" + "crate_signature_pack_rio2022_group_champions_legendary" "1" + "crate_signature_pack_rio2022_group_champions_gold" "1" } - "set_aztec" + "rio2022_contents_team0_ence" { - "name" "#CSGO_set_aztec" - "set_description" "#CSGO_set_aztec_desc" - "is_collection" "1" - "items" - { - "[sp_leaves]weapon_nova" "1" - "[sp_short_tape]weapon_ssg08" "1" - "[so_jungle]weapon_fiveseven" "1" - "[hy_v_tiger]weapon_m4a1" "1" - "[sp_spray_jungle]weapon_ak47" "1" - "[am_ossify]weapon_tec9" "1" - } + "[rio2022_team_ence]sticker" "1" } - "set_vertigo" + "rio2022_contents_team1_ence" { - "name" "#CSGO_set_vertigo" - "set_description" "#CSGO_set_vertigo_desc" - "is_collection" "1" - "items" - { - "[hy_ddpat_urb]weapon_mac10" "1" - "[sp_tape_dots_urban]weapon_xm1014" "1" - "[am_carbon_fiber]weapon_bizon" "1" - "[sp_mesh_glacier]weapon_p90" "1" - "[hy_ak47lam_bw]weapon_ak47" "1" - "[so_tangerine]weapon_elite" "1" - } + "[rio2022_team_ence_glitter]sticker" "1" } - "set_inferno" + "rio2022_contents_team0_faze" { - "name" "#CSGO_set_inferno" - "set_description" "#CSGO_set_inferno_desc" - "is_collection" "1" - "items" - { - "[so_sand]weapon_mag7" "1" - "[cu_walnut_nova]weapon_nova" "1" - "[hy_gelpen]weapon_p250" "1" - "[so_tornado]weapon_m4a1" "1" - "[an_navy]weapon_elite" "1" - "[aq_brass]weapon_tec9" "1" - } + "[rio2022_team_faze]sticker" "1" } - "set_militia" + "rio2022_contents_team1_faze" { - "name" "#CSGO_set_militia" - "set_description" "#CSGO_set_militia_desc" - "is_collection" "1" - "items" - { - "[sp_leaves]weapon_bizon" "1" - "[so_grassland]weapon_xm1014" "1" - "[so_tornado]weapon_mac10" "1" - "[sp_leaves_grassland]weapon_hkp2000" "1" - "[hy_hunter_modern]weapon_bizon" "1" - "[hy_hunter_modern]weapon_nova" "1" - "[hy_hunter_modern]weapon_p250" "1" - "[hy_hunter_blaze_orange]weapon_nova" "1" - "[hy_hunter_blaze_orange]weapon_xm1014" "1" - "[hy_hunter_modern]weapon_m4a1" "1" - "[hy_hunter_blaze_pink]weapon_scar20" "1" - } + "[rio2022_team_faze_glitter]sticker" "1" } - "set_nuke" + "rio2022_contents_team0_hero" { - "name" "#CSGO_set_nuke" - "set_description" "#CSGO_set_nuke_desc" - "is_collection" "1" - "items" - { - "[sp_nukestripe_brown]weapon_bizon" "1" - "[sp_nukestripe_brown]weapon_mag7" "1" - "[sp_nukestripe_brown]weapon_sawedoff" "1" - "[sp_nukestripe_maroon]weapon_p90" "1" - "[sp_nukestripe_maroon]weapon_ump45" "1" - "[sp_nukestripe_maroon]weapon_xm1014" "1" - "[sp_nukestripe_orange]weapon_m4a1" "1" - "[sp_nukestripe_green]weapon_p250" "1" - "[sp_nukestripe_green_tec9]weapon_tec9" "1" - } + "[rio2022_team_hero]sticker" "1" } - "set_office" + "rio2022_contents_team1_hero" { - "name" "#CSGO_set_office" - "set_description" "#CSGO_set_office_desc" - "is_collection" "1" - "items" - { - "[sp_spray]weapon_famas" "1" - "[hy_arctic]weapon_g3sg1" "1" - "[hy_blizzard]weapon_m249" "1" - "[hy_forest_winter]weapon_galilar" "1" - "[an_silver]weapon_hkp2000" "1" - "[so_whiteout]weapon_mp7" "1" - } + "[rio2022_team_hero_glitter]sticker" "1" } - "set_assault" + "rio2022_contents_team0_navi" { - "name" "#CSGO_set_assault" - "set_description" "#CSGO_set_assault_desc" - "is_collection" "1" - "items" - { - "[so_caramel]weapon_ump45" "1" - "[so_tornado]weapon_sg556" "1" - "[so_red]weapon_fiveseven" "1" - "[an_navy]weapon_negev" "1" - "[an_red]weapon_aug" "1" - "[aa_fade]weapon_glock" "1" - "[so_yellow]weapon_mp9" "1" - } + "[rio2022_team_navi]sticker" "1" } - "set_bravo_ii" + "rio2022_contents_team1_navi" { - "name" "#CSGO_set_bravo_ii" - "set_description" "#CSGO_set_bravo_ii_desc" - "is_collection" "1" - "items" - { - "[sp_tape_dots_bravo]weapon_mp9" "1" - "[hy_ddpat_jungle_bravo]weapon_m249" "1" - "[so_jungle_bravo]weapon_xm1014" "1" - "[so_tornado_bravo]weapon_tec9" "1" - "[so_olive_bravo]weapon_mp7" "1" - "[an_gunmetal_bravo]weapon_fiveseven" "1" - "[hy_mayan_dreams_bravo]weapon_ssg08" "1" - "[sp_palm_bravo]weapon_negev" "1" - "[hy_ali_tile_bravo]weapon_sawedoff" "1" - "[hy_crumple_dark_bravo]weapon_p250" "1" - "[so_sand_bravo]weapon_glock" "1" - "[an_navy_bravo]weapon_aug" "1" - "[sp_hazard_bravo]weapon_mag7" "1" - "[aq_steel_bravo]weapon_bizon" "1" - "[sp_spitfire_famas_bravo]weapon_famas" "1" - "[an_emerald_bravo]weapon_scar20" "1" - } + "[rio2022_team_navi_glitter]sticker" "1" } - "set_dust_2" + "rio2022_contents_team0_nip" { - "name" "#CSGO_set_dust_2" - "set_description" "#CSGO_set_dust_2_desc" - "is_collection" "1" - "items" - { - "[hy_desert]weapon_g3sg1" "1" - "[so_sand]weapon_p250" "1" - "[sp_mesh_sand]weapon_scar20" "1" - "[sp_spray_sand]weapon_p90" "1" - "[sp_tape_short_sand]weapon_mp9" "1" - "[sp_zebracam]weapon_nova" "1" - "[sp_snake]weapon_sawedoff" "1" - "[sp_mesh_tan]weapon_ak47" "1" - "[sp_tape_orange]weapon_fiveseven" "1" - "[sp_palm]weapon_mac10" "1" - "[hy_varicamo]weapon_tec9" "1" - "[aq_brass]weapon_bizon" "1" - "[hy_varicamo]weapon_m4a1_silencer" "1" - "[aq_damascus_sg553]weapon_sg556" "1" - "[aa_fade_metallic]weapon_hkp2000" "1" - "[aa_fade_metallic_revolver]weapon_revolver" "1" - } + "[rio2022_team_nip]sticker" "1" } - "set_train" + "rio2022_contents_team1_nip" { - "name" "#CSGO_set_train" - "set_description" "#CSGO_set_train_desc" - "is_collection" "1" - "items" - { - "[hy_ddpat_urb]weapon_ump45" "1" - "[so_space_marine]weapon_elite" "1" - "[hy_arctic_contrast]weapon_g3sg1" "1" - "[hy_forest_night]weapon_fiveseven" "1" - "[sp_mesh_arctic_contrast]weapon_nova" "1" - "[sp_tape_short_urban]weapon_bizon" "1" - "[so_red]weapon_mac10" "1" - "[hy_ddpat_urb]weapon_m4a1" "1" - "[am_urban]weapon_mag7" "1" - "[am_urban]weapon_p250" "1" - "[am_carbon_fiber]weapon_scar20" "1" - "[sp_twigs]weapon_p90" "1" - "[hy_varicamo_urban]weapon_deagle" "1" - "[aa_fade_metallic]weapon_sawedoff" "1" - "[am_crystallized]weapon_tec9" "1" - } + "[rio2022_team_nip_glitter]sticker" "1" } - "set_mirage" + "rio2022_contents_team0_spr" { - "name" "#CSGO_set_mirage" - "set_description" "#CSGO_set_mirage_desc" - "is_collection" "1" - "items" - { - "[sp_tape]weapon_p250" "1" - "[so_pmc]weapon_fiveseven" "1" - "[so_space_marine]weapon_aug" "1" - "[sp_mesh_tan]weapon_g3sg1" "1" - "[sp_dapple]weapon_p90" "1" - "[sp_mesh_slashes]weapon_galilar" "1" - "[so_olive]weapon_glock" "1" - "[sp_tape_orange]weapon_mp7" "1" - "[sp_palm_shadow]weapon_ssg08" "1" - "[hy_varicamo_desert]weapon_negev" "1" - "[sp_mesh_python]weapon_sg556" "1" - "[an_red]weapon_mp9" "1" - "[aa_flames]weapon_ump45" "1" - "[aa_fade_metallic]weapon_mac10" "1" - "[so_yellow]weapon_mag7" "1" - } + "[rio2022_team_spr]sticker" "1" } - "set_italy" + "rio2022_contents_team1_spr" { - "name" "#CSGO_set_italy" - "set_description" "#CSGO_set_italy_desc" - "is_collection" "1" - "items" - { - "[so_olive]weapon_tec9" "1" - "[so_pmc]weapon_aug" "1" - "[so_space_marine]weapon_famas" "1" - "[so_sand]weapon_nova" "1" - "[sp_tape_short_sand]weapon_bizon" "1" - "[so_red]weapon_nova" "1" - "[hy_gelpen]weapon_ump45" "1" - "[hy_granite]weapon_hkp2000" "1" - "[aq_forced]weapon_elite" "1" - "[hy_forest_boreal]weapon_m4a1_silencer" "1" - "[hy_varicamo_desert]weapon_xm1014" "1" - "[so_red]weapon_glock" "1" - "[an_navy]weapon_mp7" "1" - "[hy_varicamo_red]weapon_sawedoff" "1" - "[hy_snakeskin]weapon_awp" "1" - } + "[rio2022_team_spr_glitter]sticker" "1" } - "set_lake" + "rio2022_contents_team0_liq" { - "name" "#CSGO_set_lake" - "set_description" "#CSGO_set_lake_desc" - "is_collection" "1" - "items" - { - "[hy_forest_boreal]weapon_p250" "1" - "[so_moss]weapon_xm1014" "1" - "[so_stormfront]weapon_aug" "1" - "[sp_spray_desert_sage]weapon_galilar" "1" - "[sp_tape_dots_waves]weapon_sg556" "1" - "[sp_tape_short_jungle]weapon_g3sg1" "1" - "[aq_blued]weapon_xm1014" "1" - "[sp_mesh_tan]weapon_awp" "1" - "[hy_mottled_sand]weapon_deagle" "1" - "[hy_reef]weapon_famas" "1" - "[hy_varicamo_night]weapon_bizon" "1" - "[an_navy]weapon_sg556" "1" - "[hy_varicamo_night]weapon_usp_silencer" "1" - "[sp_mesh_hot_and_cold]weapon_p90" "1" - "[am_crystallized_blue]weapon_elite" "1" - } + "[rio2022_team_liq]sticker" "1" + } + "rio2022_contents_team1_liq" + { + "[rio2022_team_liq_glitter]sticker" "1" + } + "rio2022_contents_team0_spir" + { + "[rio2022_team_spir]sticker" "1" + } + "rio2022_contents_team1_spir" + { + "[rio2022_team_spir_glitter]sticker" "1" + } + "rio2022_contents_team0_nine" + { + "[rio2022_team_nine]sticker" "1" + } + "rio2022_contents_team1_nine" + { + "[rio2022_team_nine_glitter]sticker" "1" + } + "rio2022_contents_team0_bne" + { + "[rio2022_team_bne]sticker" "1" + } + "rio2022_contents_team1_bne" + { + "[rio2022_team_bne_glitter]sticker" "1" + } + "rio2022_contents_team0_big" + { + "[rio2022_team_big]sticker" "1" + } + "rio2022_contents_team1_big" + { + "[rio2022_team_big_glitter]sticker" "1" + } + "rio2022_contents_team0_c9" + { + "[rio2022_team_c9]sticker" "1" + } + "rio2022_contents_team1_c9" + { + "[rio2022_team_c9_glitter]sticker" "1" + } + "rio2022_contents_team0_evl" + { + "[rio2022_team_evl]sticker" "1" } - "set_safehouse" + "rio2022_contents_team1_evl" { - "name" "#CSGO_set_safehouse" - "set_description" "#CSGO_set_safehouse_desc" - "is_collection" "1" - "items" - { - "[so_pmc]weapon_elite" "1" - "[so_pmc]weapon_scar20" "1" - "[so_moss]weapon_ssg08" "1" - "[sp_mesh_army]weapon_tec9" "1" - "[sp_spray_army]weapon_mp7" "1" - "[sp_leaves]weapon_usp_silencer" "1" - "[sp_mesh_forest_fire]weapon_aug" "1" - "[sp_tape_orange]weapon_mp9" "1" - "[hy_varicamo]weapon_g3sg1" "1" - "[hy_varicamo]weapon_galilar" "1" - "[sp_mesh_python]weapon_m249" "1" - "[sp_mesh_hot_and_cold]weapon_famas" "1" - "[am_crystallized_silver]weapon_fiveseven" "1" - "[aa_fade_grassland]weapon_ssg08" "1" - "[so_orange_accents]weapon_m4a1_silencer" "1" - } + "[rio2022_team_evl_glitter]sticker" "1" } - "set_bank" + "rio2022_contents_team0_mouz" { - "name" "#CSGO_set_bank" - "set_description" "#CSGO_set_bank_desc" - "is_collection" "1" - "items" - { - "[hy_ddpat]weapon_mp7" "1" - "[hy_ddpat]weapon_sawedoff" "1" - "[hy_ddpat_urb]weapon_tec9" "1" - "[sp_tape]weapon_revolver" "1" - "[am_army_shine]weapon_negev" "1" - "[am_army_shine]weapon_sg556" "1" - "[an_silver]weapon_mac10" "1" - "[am_carbon_fiber]weapon_ump45" "1" - "[hy_nerodia]weapon_glock" "1" - "[so_green]weapon_g3sg1" "1" - "[am_oval_hex]weapon_nova" "1" - "[am_crystallized_dark]weapon_deagle" "1" - "[so_orca]weapon_galilar" "1" - "[so_orca]weapon_cz75a" "1" - "[cu_pinstripe_ak47]weapon_ak47" "1" - "[cu_money]weapon_p250" "1" - } + "[rio2022_team_mouz]sticker" "1" } - "set_overpass" + "rio2022_contents_team1_mouz" { - "name" "#CSGO_set_overpass" - "set_description" "#CSGO_set_overpass_desc" - "is_collection" "1" - "items" - { - "[sp_spray]weapon_m249" "1" - "[so_stormfront]weapon_mag7" "1" - "[so_stormfront]weapon_mp9" "1" - "[sp_spray_desert_sage]weapon_sawedoff" "1" - "[sp_dapple]weapon_ump45" "1" - "[hy_gelpen]weapon_mp7" "1" - "[hy_ddpat_urb]weapon_deagle" "1" - "[so_night]weapon_glock" "1" - "[so_grassland]weapon_hkp2000" "1" - "[hy_varicamo_blue]weapon_xm1014" "1" - "[hy_ssg08_marker]weapon_ssg08" "1" - "[so_orange_accents2]weapon_cz75a" "1" - "[hy_ddpat_pink]weapon_awp" "1" - "[cu_usp_sandpapered]weapon_usp_silencer" "1" - "[cu_m4a1-s_silence]weapon_m4a1_silencer" "1" - } + "[rio2022_team_mouz_glitter]sticker" "1" } - "set_cobblestone" + "rio2022_contents_team0_og" { - "name" "#CSGO_set_cobblestone" - "set_description" "#CSGO_set_cobblestone_desc" - "is_collection" "1" - "items" - { - "[so_stormfront]weapon_p90" "1" - "[so_stormfront]weapon_scar20" "1" - "[hy_vines]weapon_elite" "1" - "[so_indigo_and_grey]weapon_mac10" "1" - "[so_indigo_and_grey]weapon_ump45" "1" - "[an_silver]weapon_mag7" "1" - "[so_green]weapon_nova" "1" - "[aq_steel]weapon_sawedoff" "1" - "[hy_indigo_usp]weapon_usp_silencer" "1" - "[am_chainmail]weapon_hkp2000" "1" - "[am_metal_inlay]weapon_mp9" "1" - "[am_royal]weapon_cz75a" "1" - "[aq_handcannon]weapon_deagle" "1" - "[am_metals]weapon_m4a1_silencer" "1" - "[cu_medieval_dragon_awp]weapon_awp" "1" - } + "[rio2022_team_og]sticker" "1" } - "set_baggage" + "rio2022_contents_team1_og" { - "name" "#CSGO_set_baggage" - "set_description" "#CSGO_set_baggage_desc" - "is_collection" "1" - "items" - { - "[so_pmc]weapon_g3sg1" "1" - "[so_sand]weapon_ssg08" "1" - "[hy_plaid1]weapon_mp7" "1" - "[hy_plaid2]weapon_mp9" "1" - "[hy_plaid2]weapon_cz75a" "1" - "[cu_brown_leather_p90]weapon_p90" "1" - "[cu_luggage_mac10]weapon_mac10" "1" - "[cu_luggage_p2000]weapon_hkp2000" "1" - "[cu_luggage_sg553]weapon_sg556" "1" - "[cu_green_leather_sawedoff]weapon_sawedoff" "1" - "[cu_leather_xm1014]weapon_xm1014" "1" - "[cu_luggage_usp-s]weapon_usp_silencer" "1" - "[cu_green_leather_ak47]weapon_ak47" "1" - "[aq_pilot_deagle]weapon_deagle" "1" - "[cu_well_traveled_ak47]weapon_ak47" "1" - } + "[rio2022_team_og_glitter]sticker" "1" } - "set_cache" + "rio2022_contents_team0_vita" { - "name" "#CSGO_set_cache" - "set_description" "#CSGO_set_cache_desc" - "is_collection" "1" - "items" - { - "[sp_nuclear_pattern3_negev]weapon_negev" "1" - "[hy_nuclear_skulls4_p250]weapon_p250" "1" - "[sp_nukestripe_orange_aug]weapon_aug" "1" - "[so_grey_nuclear_green_bizon]weapon_bizon" "1" - "[so_grey_nuclear_orange_five_seven]weapon_fiveseven" "1" - "[sp_nukestripe_maroon_sg553]weapon_sg556" "1" - "[am_nuclear_pattern1_glock]weapon_glock" "1" - "[hy_nuclear_pattern2_mp9]weapon_mp9" "1" - "[am_nuclear_skulls1_xm1014]weapon_xm1014" "1" - "[am_nuclear_skulls3_mac10]weapon_mac10" "1" - "[hy_nuclear_skulls5_tec9]weapon_tec9" "1" - "[am_nuclear_skulls2_famas]weapon_famas" "1" - "[cu_cerbrus_galil]weapon_galilar" "1" - } + "[rio2022_team_vita]sticker" "1" } - "set_gods_and_monsters" + "rio2022_contents_team1_vita" { - "name" "#CSGO_set_gods_and_monsters" - "set_description" "#CSGO_set_gods_and_monsters_desc" - "is_collection" "1" - "items" - { - "[sp_labyrinth]weapon_mp7" "1" - "[sp_labyrinth3]weapon_aug" "1" - "[hy_zodiac1]weapon_elite" "1" - "[hy_zodiac1]weapon_nova" "1" - "[hy_hades]weapon_tec9" "1" - "[sp_labyrinth2]weapon_hkp2000" "1" - "[hy_zodiac2]weapon_awp" "1" - "[hy_zodiac3]weapon_m249" "1" - "[cu_labyrinth]weapon_ump45" "1" - "[aa_pandora]weapon_mp9" "1" - "[cu_chronos_g3sg1]weapon_g3sg1" "1" - "[hy_icarus]weapon_m4a1_silencer" "1" - "[cu_poseidon]weapon_m4a1" "1" - "[cu_medusa_awp]weapon_awp" "1" - } + "[rio2022_team_vita_glitter]sticker" "1" } - "set_chopshop" + "rio2022_contents_team0_zzn" { - "name" "#CSGO_set_chopshop" - "set_description" "#CSGO_set_chopshop_desc" - "is_collection" "1" - "items" - { - "[am_army_shine]weapon_scar20" "1" - "[am_army_shine]weapon_cz75a" "1" - "[so_keycolors]weapon_m249" "1" - "[so_aqua]weapon_mag7" "1" - "[so_night]weapon_deagle" "1" - "[hy_varicamo_urban]weapon_galilar" "1" - "[so_khaki_green]weapon_usp_silencer" "1" - "[aa_fade]weapon_mac10" "1" - "[so_whiteout]weapon_p250" "1" - "[hy_varicamo_red]weapon_mp7" "1" - "[so_orange_accents]weapon_fiveseven" "1" - "[an_emerald]weapon_cz75a" "1" - "[so_yellow]weapon_sg556" "1" - "[gs_mother_of_pearl_elite]weapon_elite" "1" - "[am_aqua_flecks]weapon_glock" "1" - "[an_red_m4a1s]weapon_m4a1_silencer" "1" - } + "[rio2022_team_zzn]sticker" "1" } - "set_kimono" + "rio2022_contents_team1_zzn" { - "name" "#CSGO_set_kimono" - "set_description" "#CSGO_set_kimono_desc" - "is_collection" "1" - "items" - { - "[hy_bamboo_jungle_ink]weapon_bizon" "1" - "[hy_bamboo_jungle_black]weapon_sawedoff" "1" - "[hy_bamboo_jungle]weapon_tec9" "1" - "[hy_kimono_diamonds_orange]weapon_g3sg1" "1" - "[sp_kimono_diamonds]weapon_p250" "1" - "[hy_kimono_diamonds_red]weapon_p250" "1" - "[am_seastorm]weapon_deagle" "1" - "[am_geometric_steps]weapon_galilar" "1" - "[hy_geometric_steps_green]weapon_mag7" "1" - "[hy_geometric_steps_yellow]weapon_tec9" "1" - "[hy_kimono_diamonds]weapon_fiveseven" "1" - "[am_seastorm_blood]weapon_deagle" "1" - "[am_seastorm_shojo]weapon_deagle" "1" - "[am_kimono_sunrise]weapon_m4a1" "1" - "[am_bamboo_jungle]weapon_ak47" "1" - "[cu_anime_aug]weapon_aug" "1" - } + "[rio2022_team_zzn_glitter]sticker" "1" } - "set_community_8" + "rio2022_contents_team0_fntc" { - "name" "#CSGO_set_community_8" - "set_description" "#CSGO_set_community_8_desc" - "is_collection" "1" - "items" - { - "[cu_galilar_particles]weapon_galilar" "1" - "[aq_glock18_flames_blue]weapon_glock" "1" - "[cu_nova_ranger]weapon_nova" "1" - "[cu_p90_mastery]weapon_p90" "1" - "[cu_ump45_uproar]weapon_ump45" "1" - "[cu_usp_progressiv]weapon_usp_silencer" "1" - "[am_famas_dots]weapon_famas" "1" - "[cu_m4a4_evil_daimyo]weapon_m4a1" "1" - "[am_mp9_nitrogen]weapon_mp9" "1" - "[cu_negev_annihilator]weapon_negev" "1" - "[aq_p2000_boom]weapon_hkp2000" "1" - "[cu_cz75a_chastizer]weapon_cz75a" "1" - "[cu_mp7_nemsis]weapon_mp7" "1" - "[cu_sg553_cyrex]weapon_sg556" "1" - "[cu_ak47_courage_alt]weapon_ak47" "1" - "[cu_awp_hyper_beast]weapon_awp" "1" - } + "[rio2022_team_fntc]sticker" "1" } - "set_community_9" + "rio2022_contents_team1_fntc" { - "name" "#CSGO_set_community_9" - "set_description" "#CSGO_set_community_9_desc" - "is_collection" "1" - "items" - { - "[cu_dualberretta_dragons]weapon_elite" "1" - "[cu_famas_lenta]weapon_famas" "1" - "[gs_glock18_wrathys]weapon_glock" "1" - "[cu_mac10_alekhya_duo]weapon_mac10" "1" - "[cu_mag7_myrcene]weapon_mag7" "1" - "[gs_scar20_peacemaker03]weapon_scar20" "1" - "[aq_xm1014_scumbria]weapon_xm1014" "1" - "[gs_galil_nightwing]weapon_galilar" "1" - "[gs_m249_nebula_crusader]weapon_m249" "1" - "[cu_mp7_classified]weapon_mp7" "1" - "[hy_p250_crackshot]weapon_p250" "1" - "[cu_ak47_winter_sport]weapon_ak47" "1" - "[gs_g3sg1_flux_purple]weapon_g3sg1" "1" - "[cu_ssg08_technicality]weapon_ssg08" "1" - "[gs_m4a1s_snakebite_gold]weapon_m4a1_silencer" "1" - "[cu_usp_kill_confirmed]weapon_usp_silencer" "1" - } + "[rio2022_team_fntc_glitter]sticker" "1" } - "set_community_10" + "rio2022_contents_team0_furi" { - "name" "#CSGO_set_community_10" - "set_description" "#CSGO_set_community_10_desc" - "is_collection" "1" - "items" - { - "[hy_webs]weapon_revolver" "1" - "[am_aug_jumble]weapon_aug" "1" - "[aq_deagle_corinthian]weapon_deagle" "1" - "[am_p2000_imperial_red]weapon_hkp2000" "1" - "[gs_sawedoff_necromancer]weapon_sawedoff" "1" - "[hy_scar20_jungler]weapon_scar20" "1" - "[cu_bizon_noxious]weapon_bizon" "1" - "[cu_fiveseven_retrobution]weapon_fiveseven" "1" - "[cu_negev_impact]weapon_negev" "1" - "[gs_sg553_tiger_moth]weapon_sg556" "1" - "[cu_tec9_avalanche]weapon_tec9" "1" - "[aq_xm1014_hot_rod]weapon_xm1014" "1" - "[cu_ak47_point_disarray]weapon_ak47" "1" - "[cu_g3sg1_executioner]weapon_g3sg1" "1" - "[cu_p90_shapewood]weapon_p90" "1" - "[gs_m4a4_royal_squire]weapon_m4a1" "1" - "[aa_fade_revolver]weapon_revolver" "1" - } + "[rio2022_team_furi]sticker" "1" } - } - "client_loot_lists" - { - "crate_valve_1_rare" + "rio2022_contents_team1_furi" { - "[hy_skulls]weapon_mp7" "1" - "[hy_feathers_aug]weapon_aug" "1" - "[so_purple]weapon_sg556" "1" + "[rio2022_team_furi_glitter]sticker" "1" } - "crate_valve_1_mythical" + "rio2022_contents_team0_gl" { - "[am_dragon_glock]weapon_glock" "1" - "[am_zebra_dark]weapon_usp_silencer" "1" - "[am_zebra_dark]weapon_m4a1_silencer" "1" + "[rio2022_team_gl]sticker" "1" } - "crate_valve_1_legendary" + "rio2022_contents_team1_gl" { - "[aq_oiled]weapon_ak47" "1" - "[aa_vertigo]weapon_deagle" "1" + "[rio2022_team_gl_glitter]sticker" "1" } - "crate_valve_1_ancient" + "rio2022_contents_team0_gray" { - "[am_lightning_awp]weapon_awp" "1" + "[rio2022_team_gray]sticker" "1" } - "crate_esports_2013_rare" + "rio2022_contents_team1_gray" { - "[sp_zebracam_bw]weapon_m4a1" "1" - "[hy_icosahedron]weapon_mag7" "1" - "[hy_doomkitty]weapon_famas" "1" + "[rio2022_team_gray_glitter]sticker" "1" } - "crate_esports_2013_mythical" + "rio2022_contents_team0_ihc" { - "[hy_ddpat_orange]weapon_galilar" "1" - "[hy_ddpat_orange]weapon_sawedoff" "1" - "[sp_splash_p250]weapon_p250" "1" + "[rio2022_team_ihc]sticker" "1" } - "crate_esports_2013_legendary" + "rio2022_contents_team1_ihc" { - "[hy_ak47lam]weapon_ak47" "1" - "[hy_blam_simple]weapon_awp" "1" + "[rio2022_team_ihc_glitter]sticker" "1" } - "crate_esports_2013_ancient" + "rio2022_contents_team0_imp" { - "[cu_catskulls_p90]weapon_p90" "1" + "[rio2022_team_imp]sticker" "1" } - "crate_operation_ii_rare" + "rio2022_contents_team1_imp" { - "[sp_spray_waves_bravo]weapon_sg556" "1" - "[cu_season_elites_bravo]weapon_elite" "1" - "[hy_seaside_bravo]weapon_nova" "1" - "[hy_crumple_bravo]weapon_galilar" "1" - "[sp_skull_diagram_bravo]weapon_ump45" "1" - "[hy_bluepolygon_bravo]weapon_g3sg1" "1" + "[rio2022_team_imp_glitter]sticker" "1" } - "crate_operation_ii_mythical" + "rio2022_contents_team0_out" { - "[hy_siege_bravo]weapon_usp_silencer" "1" - "[sp_star_bravo]weapon_m4a1" "1" - "[aq_etched_mac10_bravo]weapon_mac10" "1" - "[hy_ocean_bravo]weapon_m4a1_silencer" "1" + "[rio2022_team_out]sticker" "1" } - "crate_operation_ii_legendary" + "rio2022_contents_team1_out" { - "[cu_dragon_p90_bravo]weapon_p90" "1" - "[am_ossify_blue_p2000_bravo]weapon_hkp2000" "1" - "[am_crumple_bravo]weapon_awp" "1" + "[rio2022_team_out_glitter]sticker" "1" } - "crate_operation_ii_ancient" + "rio2022_contents_team0_iem" { - "[cu_fireserpent_ak47_bravo]weapon_ak47" "1" - "[am_scales_bravo]weapon_deagle" "1" + "[rio2022_team_iem]sticker" "1" } - "crate_valve_2_rare" + "rio2022_contents_team1_iem" { - "[an_titanium30v]weapon_tec9" "1" - "[hy_redtiger]weapon_m4a1_silencer" "1" - "[hy_bluehex]weapon_famas" "1" - "[hy_redhex]weapon_p250" "1" - "[hy_webs_darker]weapon_scar20" "1" + "[rio2022_team_iem_glitter]sticker" "1" } - "crate_valve_2_mythical" + "rio2022_contents_signature0_snappi_2" { - "[aq_oiled]weapon_fiveseven" "1" - "[aa_vertigo]weapon_mp9" "1" - "[am_crumple]weapon_nova" "1" - "[am_ossify_red]weapon_elite" "1" + "[rio2022_signature_snappi_2]sticker" "1" } - "crate_valve_2_legendary" + "rio2022_contents_signature1_snappi_2" { - "[am_slither_p90]weapon_p90" "1" - "[am_electric_red]weapon_usp_silencer" "1" + "[rio2022_signature_snappi_2_glitter]sticker" "1" } - "crate_valve_2_ancient" + "rio2022_contents_signature0_dycha_2" { - "[cu_shark]weapon_ssg08" "1" + "[rio2022_signature_dycha_2]sticker" "1" } - "crate_esports_2013_winter_rare" + "rio2022_contents_signature1_dycha_2" { - "[an_titanium30v]weapon_galilar" "1" - "[hy_flowers]weapon_fiveseven" "1" - "[hy_water_crest]weapon_bizon" "1" - "[sp_camo_wood_blue]weapon_nova" "1" - "[sp_zebracam_blue]weapon_g3sg1" "1" - "[am_ddpatdense_silver]weapon_p250" "1" + "[rio2022_signature_dycha_2_glitter]sticker" "1" } - "crate_esports_2013_winter_mythical" + "rio2022_contents_signature0_maden_2" { - "[hy_ak47lam_blue]weapon_ak47" "1" - "[hy_modspots]weapon_p90" "1" + "[rio2022_signature_maden_2]sticker" "1" } - "crate_esports_2013_winter_legendary" + "rio2022_contents_signature1_maden_2" { - "[cu_broken_path_famas]weapon_famas" "1" - "[hy_hive]weapon_awp" "1" - "[am_ddpatdense_peacock]weapon_deagle" "1" + "[rio2022_signature_maden_2_glitter]sticker" "1" } - "crate_esports_2013_winter_ancient" + "rio2022_contents_signature0_v4lde_2" { - "[cu_xray_m4]weapon_m4a1" "1" + "[rio2022_signature_v4lde_2]sticker" "1" } - "crate_community_1_rare" + "rio2022_contents_signature1_v4lde_2" { - "[cu_sandstorm]weapon_galilar" "1" - "[hy_kami]weapon_fiveseven" "1" - "[aq_obsidian]weapon_m249" "1" - "[am_turqoise_halftone]weapon_bizon" "1" + "[rio2022_signature_v4lde_2_glitter]sticker" "1" } - "crate_community_1_mythical" + "rio2022_contents_signature0_sunpayus_2" { - "[cu_famas_pulse]weapon_famas" "1" - "[hy_marina_sunrise]weapon_elite" "1" - "[am_thorny_rose_mp9]weapon_mp9" "1" - "[cu_skull_nova]weapon_nova" "1" + "[rio2022_signature_sunpayus_2]sticker" "1" } - "crate_community_1_legendary" + "rio2022_contents_signature1_sunpayus_2" { - "[cu_m4a1-s_elegant]weapon_m4a1_silencer" "1" - "[cu_p250_refined]weapon_p250" "1" - "[cu_awp_cobra]weapon_awp" "1" + "[rio2022_signature_sunpayus_2_glitter]sticker" "1" } - "crate_community_1_ancient" + "rio2022_contents_signature0_karrigan_2" { - "[cu_m4_asimov]weapon_m4a1" "1" - "[cu_sawedoff_octopump]weapon_sawedoff" "1" + "[rio2022_signature_karrigan_2]sticker" "1" } - "crate_valve_3_rare" + "rio2022_contents_signature1_karrigan_2" { - "[hy_webs]weapon_cz75a" "1" - "[hy_poly_camo]weapon_hkp2000" "1" - "[so_panther]weapon_elite" "1" - "[aq_usp_stainless]weapon_usp_silencer" "1" - "[hy_craquelure]weapon_glock" "1" + "[rio2022_signature_karrigan_2_glitter]sticker" "1" } - "crate_valve_3_mythical" + "rio2022_contents_signature0_rain_2" { - "[am_diamond_plate]weapon_cz75a" "1" - "[am_fluted_tec9]weapon_tec9" "1" - "[aq_engraved_deagle]weapon_deagle" "1" - "[am_copper_flecks]weapon_fiveseven" "1" + "[rio2022_signature_rain_2]sticker" "1" } - "crate_valve_3_legendary" + "rio2022_contents_signature1_rain_2" { - "[am_fuschia]weapon_cz75a" "1" - "[am_p250_beaded_paint]weapon_p250" "1" + "[rio2022_signature_rain_2_glitter]sticker" "1" } - "crate_valve_3_ancient" + "rio2022_contents_signature0_twistzz_2" { - "[aq_etched_cz75]weapon_cz75a" "1" + "[rio2022_signature_twistzz_2]sticker" "1" } - "crate_community_2_rare" + "rio2022_contents_signature1_twistzz_2" { - "[cu_ump_corporal]weapon_ump45" "1" - "[sp_negev_turq_terrain]weapon_negev" "1" - "[cu_tec9_sandstorm]weapon_tec9" "1" - "[cu_mag7_heaven]weapon_mag7" "1" + "[rio2022_signature_twistzz_2_glitter]sticker" "1" } - "crate_community_2_mythical" + "rio2022_contents_signature0_ropz_2" { - "[cu_mac10_redhot]weapon_mac10" "1" - "[cu_sg553_pulse]weapon_sg556" "1" - "[an_famas_sgt]weapon_famas" "1" - "[cu_usp_elegant]weapon_usp_silencer" "1" + "[rio2022_signature_ropz_2]sticker" "1" } - "crate_community_2_legendary" + "rio2022_contents_signature1_ropz_2" { - "[cu_ak47_cobra]weapon_ak47" "1" - "[cu_p90_trigon]weapon_p90" "1" - "[cu_nova_antique]weapon_nova" "1" + "[rio2022_signature_ropz_2_glitter]sticker" "1" } - "crate_community_2_ancient" + "rio2022_contents_signature0_broky_2" { - "[cu_awp_asimov]weapon_awp" "1" - "[cu_aug_chameleonaire]weapon_aug" "1" + "[rio2022_signature_broky_2]sticker" "1" } - "crate_community_4_rare" + "rio2022_contents_signature1_broky_2" { - "[cu_mp7-commander]weapon_mp7" "1" - "[cu_negev_titanstorm]weapon_negev" "1" - "[cu_p2000_ivory]weapon_hkp2000" "1" - "[aq_leviathan]weapon_ssg08" "1" - "[hy_lines_orange]weapon_ump45" "1" + "[rio2022_signature_broky_2_glitter]sticker" "1" } - "crate_community_4_mythical" + "rio2022_contents_signature0_cadian_2" { - "[cu_bizon-osiris]weapon_bizon" "1" - "[cu_c75a-tiger]weapon_cz75a" "1" - "[cu_nova_koi]weapon_nova" "1" - "[cu_bittersweet]weapon_p250" "1" + "[rio2022_signature_cadian_2]sticker" "1" } - "crate_community_4_legendary" + "rio2022_contents_signature1_cadian_2" { - "[cu_deagle_aureus]weapon_deagle" "1" - "[aq_57_feathers]weapon_fiveseven" "1" - "[cu_glock-liquescent]weapon_glock" "1" + "[rio2022_signature_cadian_2_glitter]sticker" "1" } - "crate_community_4_ancient" + "rio2022_contents_signature0_teses_2" { - "[cu_p90-asiimov]weapon_p90" "1" - "[cu_m4a1s_cyrex]weapon_m4a1_silencer" "1" + "[rio2022_signature_teses_2]sticker" "1" } - "crate_esports_2014_summer_rare" + "rio2022_contents_signature1_teses_2" { - "[am_zebra_dark]weapon_ssg08" "1" - "[so_purple]weapon_mac10" "1" - "[hy_redtiger]weapon_usp_silencer" "1" - "[hy_bluehex]weapon_cz75a" "1" - "[cu_bratatat_negev]weapon_negev" "1" - "[hy_snakeskin_red]weapon_xm1014" "1" + "[rio2022_signature_teses_2_glitter]sticker" "1" } - "crate_esports_2014_summer_mythical" + "rio2022_contents_signature0_sjuush_2" { - "[hy_splatter]weapon_bizon" "1" - "[hy_zombie]weapon_p90" "1" - "[am_ossify_blue]weapon_mp7" "1" - "[am_ddpatdense_silver]weapon_glock" "1" - "[hy_webs_darker]weapon_deagle" "1" + "[rio2022_signature_sjuush_2]sticker" "1" } - "crate_esports_2014_summer_legendary" + "rio2022_contents_signature1_sjuush_2" { - "[hy_tiger]weapon_aug" "1" - "[cu_spring_nova]weapon_nova" "1" - "[cu_favela_awp]weapon_awp" "1" - "[cu_favela_p2000]weapon_hkp2000" "1" + "[rio2022_signature_sjuush_2_glitter]sticker" "1" } - "crate_esports_2014_summer_ancient" + "rio2022_contents_signature0_jabbi_2" { - "[cu_bullet_rain_m4a1]weapon_m4a1" "1" - "[cu_panther_ak47]weapon_ak47" "1" + "[rio2022_signature_jabbi_2]sticker" "1" } - "crate_community_5_rare" + "rio2022_contents_signature1_jabbi_2" { - "[am_g3sg1_murky]weapon_g3sg1" "1" - "[sp_mag7_firebitten]weapon_mag7" "1" - "[cu_mp9_chevron]weapon_mp9" "1" - "[cu_fiveseven_urban_hazard]weapon_fiveseven" "1" - "[sp_ump45_d-visions]weapon_ump45" "1" + "[rio2022_signature_jabbi_2_glitter]sticker" "1" } - "crate_community_5_mythical" + "rio2022_contents_signature0_stavn_2" { - "[aq_glock_coiled]weapon_glock" "1" - "[aq_m4a1s_basilisk]weapon_m4a1_silencer" "1" - "[cu_m4a4_griffin]weapon_m4a1" "1" - "[aq_sawedoff_blackgold]weapon_sawedoff" "1" + "[rio2022_signature_stavn_2]sticker" "1" } - "crate_community_5_legendary" + "rio2022_contents_signature1_stavn_2" { - "[aq_p250_cartel]weapon_p250" "1" - "[cu_scar20_intervention]weapon_scar20" "1" - "[cu_xm1014_caritas]weapon_xm1014" "1" + "[rio2022_signature_stavn_2_glitter]sticker" "1" } - "crate_community_5_ancient" + "rio2022_contents_signature0_b1t_2" { - "[cu_tribute_ak47]weapon_ak47" "1" - "[cu_p2000_fire_elemental]weapon_hkp2000" "1" + "[rio2022_signature_b1t_2]sticker" "1" } - "crate_community_6_rare" + "rio2022_contents_signature1_b1t_2" { - "[cu_glock_deathtoll]weapon_glock" "1" - "[cu_m249_sektor]weapon_m249" "1" - "[cu_mp9_deadly_poison]weapon_mp9" "1" - "[aq_scar20_leak]weapon_scar20" "1" - "[aq_xm1014_sigla]weapon_xm1014" "1" + "[rio2022_signature_b1t_2_glitter]sticker" "1" } - "crate_community_6_mythical" + "rio2022_contents_signature0_electronic_2" { - "[cu_elites_urbanstorm]weapon_elite" "1" - "[aq_deagle_naga]weapon_deagle" "1" - "[am_mac10_malachite]weapon_mac10" "1" - "[cu_sawedoff_deva]weapon_sawedoff" "1" + "[rio2022_signature_electronic_2]sticker" "1" } - "crate_community_6_legendary" + "rio2022_contents_signature1_electronic_2" { - "[aq_ak47_cartel]weapon_ak47" "1" - "[cu_m4a4_ancestral]weapon_m4a1" "1" - "[cu_p250_mandala]weapon_p250" "1" + "[rio2022_signature_electronic_2_glitter]sticker" "1" } - "crate_community_6_ancient" + "rio2022_contents_signature0_sdy_2" { - "[am_awp_glory]weapon_awp" "1" - "[cu_galil_abrasion]weapon_galilar" "1" + "[rio2022_signature_sdy_2]sticker" "1" } - "crate_community_7_rare" + "rio2022_contents_signature1_sdy_2" { - "[cu_ak47_mastery]weapon_ak47" "1" - "[aq_mp7_ultramodern]weapon_mp7" "1" - "[am_bronze_sparkle]weapon_deagle" "1" - "[aq_p250_contour]weapon_p250" "1" - "[am_negev_glory]weapon_negev" "1" - "[cu_sawedoff_origami]weapon_sawedoff" "1" + "[rio2022_signature_sdy_2_glitter]sticker" "1" } - "crate_community_7_mythical" + "rio2022_contents_signature0_perfecto_2" { - "[aq_awp_twine]weapon_awp" "1" - "[cu_mag7_redhot]weapon_mag7" "1" - "[cu_cz75_precision]weapon_cz75a" "1" - "[am_ump_racer]weapon_ump45" "1" + "[rio2022_signature_perfecto_2]sticker" "1" } - "crate_community_7_legendary" + "rio2022_contents_signature1_perfecto_2" { - "[cu_fiveseven_banana]weapon_fiveseven" "1" - "[cu_galil_eco]weapon_galilar" "1" - "[aq_famas_jinn]weapon_famas" "1" + "[rio2022_signature_perfecto_2_glitter]sticker" "1" } - "crate_community_7_ancient" + "rio2022_contents_signature0_s1mple_2" { - "[cu_m4a1_hyper_beast]weapon_m4a1_silencer" "1" - "[cu_mac10_neonrider]weapon_mac10" "1" + "[rio2022_signature_s1mple_2]sticker" "1" } - "crate_community_8_rare" + "rio2022_contents_signature1_s1mple_2" { - "[cu_galilar_particles]weapon_galilar" "1" - "[aq_glock18_flames_blue]weapon_glock" "1" - "[cu_nova_ranger]weapon_nova" "1" - "[cu_p90_mastery]weapon_p90" "1" - "[cu_ump45_uproar]weapon_ump45" "1" - "[cu_usp_progressiv]weapon_usp_silencer" "1" + "[rio2022_signature_s1mple_2_glitter]sticker" "1" } - "crate_community_8_mythical" + "rio2022_contents_signature0_es3tag_2" { - "[am_famas_dots]weapon_famas" "1" - "[cu_m4a4_evil_daimyo]weapon_m4a1" "1" - "[am_mp9_nitrogen]weapon_mp9" "1" - "[cu_negev_annihilator]weapon_negev" "1" - "[aq_p2000_boom]weapon_hkp2000" "1" + "[rio2022_signature_es3tag_2]sticker" "1" } - "crate_community_8_legendary" + "rio2022_contents_signature1_es3tag_2" { - "[cu_cz75a_chastizer]weapon_cz75a" "1" - "[cu_mp7_nemsis]weapon_mp7" "1" - "[cu_sg553_cyrex]weapon_sg556" "1" + "[rio2022_signature_es3tag_2_glitter]sticker" "1" + } + "rio2022_contents_signature0_aleksib_2" + { + "[rio2022_signature_aleksib_2]sticker" "1" + } + "rio2022_contents_signature1_aleksib_2" + { + "[rio2022_signature_aleksib_2_glitter]sticker" "1" } - "crate_community_8_ancient" + "rio2022_contents_signature0_rez_2" { - "[cu_ak47_courage_alt]weapon_ak47" "1" - "[cu_awp_hyper_beast]weapon_awp" "1" + "[rio2022_signature_rez_2]sticker" "1" } - "crate_community_9_rare" + "rio2022_contents_signature1_rez_2" { - "[cu_dualberretta_dragons]weapon_elite" "1" - "[cu_famas_lenta]weapon_famas" "1" - "[gs_glock18_wrathys]weapon_glock" "1" - "[cu_mac10_alekhya_duo]weapon_mac10" "1" - "[cu_mag7_myrcene]weapon_mag7" "1" - "[gs_scar20_peacemaker03]weapon_scar20" "1" - "[aq_xm1014_scumbria]weapon_xm1014" "1" + "[rio2022_signature_rez_2_glitter]sticker" "1" } - "crate_community_9_mythical" + "rio2022_contents_signature0_hampus_2" { - "[gs_galil_nightwing]weapon_galilar" "1" - "[gs_m249_nebula_crusader]weapon_m249" "1" - "[cu_mp7_classified]weapon_mp7" "1" - "[hy_p250_crackshot]weapon_p250" "1" + "[rio2022_signature_hampus_2]sticker" "1" } - "crate_community_9_legendary" + "rio2022_contents_signature1_hampus_2" { - "[cu_ak47_winter_sport]weapon_ak47" "1" - "[gs_g3sg1_flux_purple]weapon_g3sg1" "1" - "[cu_ssg08_technicality]weapon_ssg08" "1" + "[rio2022_signature_hampus_2_glitter]sticker" "1" } - "crate_community_9_ancient" + "rio2022_contents_signature0_brollan_2" { - "[gs_m4a1s_snakebite_gold]weapon_m4a1_silencer" "1" - "[cu_usp_kill_confirmed]weapon_usp_silencer" "1" + "[rio2022_signature_brollan_2]sticker" "1" } - "crate_community_10_rare" + "rio2022_contents_signature1_brollan_2" { - "[hy_webs]weapon_revolver" "1" - "[am_aug_jumble]weapon_aug" "1" - "[aq_deagle_corinthian]weapon_deagle" "1" - "[am_p2000_imperial_red]weapon_hkp2000" "1" - "[gs_sawedoff_necromancer]weapon_sawedoff" "1" - "[hy_scar20_jungler]weapon_scar20" "1" + "[rio2022_signature_brollan_2_glitter]sticker" "1" } - "crate_community_10_mythical" + "rio2022_contents_signature0_slaxz_2" { - "[cu_bizon_noxious]weapon_bizon" "1" - "[cu_fiveseven_retrobution]weapon_fiveseven" "1" - "[cu_negev_impact]weapon_negev" "1" - "[gs_sg553_tiger_moth]weapon_sg556" "1" - "[cu_tec9_avalanche]weapon_tec9" "1" - "[aq_xm1014_hot_rod]weapon_xm1014" "1" + "[rio2022_signature_slaxz_2]sticker" "1" } - "crate_community_10_legendary" + "rio2022_contents_signature1_slaxz_2" { - "[cu_ak47_point_disarray]weapon_ak47" "1" - "[cu_g3sg1_executioner]weapon_g3sg1" "1" - "[cu_p90_shapewood]weapon_p90" "1" + "[rio2022_signature_slaxz_2_glitter]sticker" "1" } - "crate_community_10_ancient" + "rio2022_contents_signature0_launx_2" { - "[gs_m4a4_royal_squire]weapon_m4a1" "1" - "[aa_fade_revolver]weapon_revolver" "1" + "[rio2022_signature_launx_2]sticker" "1" } - "crate_valve_1" + "rio2022_contents_signature1_launx_2" { - "crate_valve_1_rare" "1" - "crate_valve_1_mythical" "1" - "crate_valve_1_legendary" "1" - "crate_valve_1_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_launx_2_glitter]sticker" "1" } - "crate_esports_2013" + "rio2022_contents_signature0_refrezh_2" { - "crate_esports_2013_rare" "1" - "crate_esports_2013_mythical" "1" - "crate_esports_2013_legendary" "1" - "crate_esports_2013_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_refrezh_2]sticker" "1" } - "crate_operation_ii" + "rio2022_contents_signature1_refrezh_2" { - "crate_operation_ii_rare" "1" - "crate_operation_ii_mythical" "1" - "crate_operation_ii_legendary" "1" - "crate_operation_ii_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_refrezh_2_glitter]sticker" "1" } - "crate_valve_2" + "rio2022_contents_signature0_staehr_2" { - "crate_valve_2_rare" "1" - "crate_valve_2_mythical" "1" - "crate_valve_2_legendary" "1" - "crate_valve_2_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_staehr_2]sticker" "1" } - "crate_esports_2013_winter" + "rio2022_contents_signature1_staehr_2" { - "crate_esports_2013_winter_rare" "1" - "crate_esports_2013_winter_mythical" "1" - "crate_esports_2013_winter_legendary" "1" - "crate_esports_2013_winter_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_staehr_2_glitter]sticker" "1" } - "crate_community_1" + "rio2022_contents_signature0_zyphon_2" { - "crate_community_1_rare" "1" - "crate_community_1_mythical" "1" - "crate_community_1_legendary" "1" - "crate_community_1_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_zyphon_2]sticker" "1" } - "crate_valve_3" + "rio2022_contents_signature1_zyphon_2" { - "crate_valve_3_rare" "1" - "crate_valve_3_mythical" "1" - "crate_valve_3_legendary" "1" - "crate_valve_3_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_zyphon_2_glitter]sticker" "1" } - "crate_community_2" + "rio2022_contents_signature0_yekindar_2" { - "crate_community_2_rare" "1" - "crate_community_2_mythical" "1" - "crate_community_2_legendary" "1" - "crate_community_2_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_yekindar_2]sticker" "1" } - "crate_community_4" + "rio2022_contents_signature1_yekindar_2" { - "crate_community_4_rare" "1" - "crate_community_4_mythical" "1" - "crate_community_4_legendary" "1" - "crate_community_4_ancient" "1" - "community_case_4_unusual" "1" + "[rio2022_signature_yekindar_2_glitter]sticker" "1" } - "crate_esports_2014_summer" + "rio2022_contents_signature0_osee_2" { - "crate_esports_2014_summer_rare" "1" - "crate_esports_2014_summer_mythical" "1" - "crate_esports_2014_summer_legendary" "1" - "crate_esports_2014_summer_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_osee_2]sticker" "1" } - "crate_community_5" + "rio2022_contents_signature1_osee_2" { - "crate_community_5_rare" "1" - "crate_community_5_mythical" "1" - "crate_community_5_legendary" "1" - "crate_community_5_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_osee_2_glitter]sticker" "1" } - "crate_community_6" + "rio2022_contents_signature0_nitro_2" { - "crate_community_6_rare" "1" - "crate_community_6_mythical" "1" - "crate_community_6_legendary" "1" - "crate_community_6_ancient" "1" - "community_case_6_unusual" "1" + "[rio2022_signature_nitro_2]sticker" "1" } - "crate_community_7" + "rio2022_contents_signature1_nitro_2" { - "crate_community_7_rare" "1" - "crate_community_7_mythical" "1" - "crate_community_7_legendary" "1" - "crate_community_7_ancient" "1" - "community_case_6_unusual" "1" + "[rio2022_signature_nitro_2_glitter]sticker" "1" } - "crate_community_8" + "rio2022_contents_signature0_naf_2" { - "crate_community_8_rare" "1" - "crate_community_8_mythical" "1" - "crate_community_8_legendary" "1" - "crate_community_8_ancient" "1" - "community_case_8_unusual" "1" + "[rio2022_signature_naf_2]sticker" "1" } - "crate_community_9" + "rio2022_contents_signature1_naf_2" { - "crate_community_9_rare" "1" - "crate_community_9_mythical" "1" - "crate_community_9_legendary" "1" - "crate_community_9_ancient" "1" - "community_case_9_unusual" "1" + "[rio2022_signature_naf_2_glitter]sticker" "1" } - "crate_community_10" + "rio2022_contents_signature0_elige_2" { - "crate_community_10_rare" "1" - "crate_community_10_mythical" "1" - "crate_community_10_legendary" "1" - "crate_community_10_ancient" "1" - "unusual_revolving_list" "1" + "[rio2022_signature_elige_2]sticker" "1" } - "set_dust_uncommon" + "rio2022_contents_signature1_elige_2" { - "[hy_desert]weapon_m4a1" "1" - "[sp_palm]weapon_scar20" "1" - "[sp_zebracam]weapon_ak47" "1" + "[rio2022_signature_elige_2_glitter]sticker" "1" } - "set_dust_rare" + "rio2022_contents_signature0_chopper_2" { - "[hy_copperhead]weapon_aug" "1" - "[sp_snake]weapon_awp" "1" - "[aq_copper]weapon_sawedoff" "1" + "[rio2022_signature_chopper_2]sticker" "1" } - "set_dust_mythical" + "rio2022_contents_signature1_chopper_2" { - "[aa_flames]weapon_deagle" "1" - "[am_scorpion_p2000]weapon_hkp2000" "1" - "[aq_brass]weapon_glock" "1" + "[rio2022_signature_chopper_2_glitter]sticker" "1" } - "set_aztec_common" + "rio2022_contents_signature0_magixx_2" { - "[sp_leaves]weapon_nova" "1" - "[sp_short_tape]weapon_ssg08" "1" - "[so_jungle]weapon_fiveseven" "1" + "[rio2022_signature_magixx_2]sticker" "1" } - "set_aztec_uncommon" + "rio2022_contents_signature1_magixx_2" { - "[hy_v_tiger]weapon_m4a1" "1" - "[sp_spray_jungle]weapon_ak47" "1" + "[rio2022_signature_magixx_2_glitter]sticker" "1" } - "set_aztec_rare" + "rio2022_contents_signature0_patsi_2" { - "[am_ossify]weapon_tec9" "1" + "[rio2022_signature_patsi_2]sticker" "1" } - "set_vertigo_common" + "rio2022_contents_signature1_patsi_2" { - "[hy_ddpat_urb]weapon_mac10" "1" - "[sp_tape_dots_urban]weapon_xm1014" "1" + "[rio2022_signature_patsi_2_glitter]sticker" "1" } - "set_vertigo_uncommon" + "rio2022_contents_signature0_s1ren_2" { - "[am_carbon_fiber]weapon_bizon" "1" + "[rio2022_signature_s1ren_2]sticker" "1" } - "set_vertigo_rare" + "rio2022_contents_signature1_s1ren_2" { - "[sp_mesh_glacier]weapon_p90" "1" - "[hy_ak47lam_bw]weapon_ak47" "1" + "[rio2022_signature_s1ren_2_glitter]sticker" "1" } - "set_vertigo_mythical" + "rio2022_contents_signature0_w0nderful_2" { - "[so_tangerine]weapon_elite" "1" + "[rio2022_signature_w0nderful_2]sticker" "1" } - "set_inferno_common" + "rio2022_contents_signature1_w0nderful_2" { - "[so_sand]weapon_mag7" "1" - "[cu_walnut_nova]weapon_nova" "1" + "[rio2022_signature_w0nderful_2_glitter]sticker" "1" } - "set_inferno_uncommon" + "rio2022_contents_signature0_nqz_1" { - "[hy_gelpen]weapon_p250" "1" - "[so_tornado]weapon_m4a1" "1" + "[rio2022_signature_nqz_1]sticker" "1" } - "set_inferno_rare" + "rio2022_contents_signature1_nqz_1" { - "[an_navy]weapon_elite" "1" - "[aq_brass]weapon_tec9" "1" + "[rio2022_signature_nqz_1_glitter]sticker" "1" } - "set_militia_common" + "rio2022_contents_signature0_dav1deus_1" { - "[sp_leaves]weapon_bizon" "1" - "[so_grassland]weapon_xm1014" "1" - "[so_tornado]weapon_mac10" "1" + "[rio2022_signature_dav1deus_1]sticker" "1" } - "set_militia_uncommon" + "rio2022_contents_signature1_dav1deus_1" { - "[sp_leaves_grassland]weapon_hkp2000" "1" + "[rio2022_signature_dav1deus_1_glitter]sticker" "1" } - "set_militia_rare" + "rio2022_contents_signature0_max_1" { - "[hy_hunter_modern]weapon_bizon" "1" - "[hy_hunter_modern]weapon_nova" "1" - "[hy_hunter_modern]weapon_p250" "1" - "[hy_hunter_blaze_orange]weapon_nova" "1" - "[hy_hunter_blaze_orange]weapon_xm1014" "1" + "[rio2022_signature_max_1]sticker" "1" } - "set_militia_mythical" + "rio2022_contents_signature1_max_1" { - "[hy_hunter_modern]weapon_m4a1" "1" + "[rio2022_signature_max_1_glitter]sticker" "1" } - "set_militia_legendary" + "rio2022_contents_signature0_dgt_1" { - "[hy_hunter_blaze_pink]weapon_scar20" "1" + "[rio2022_signature_dgt_1]sticker" "1" } - "set_nuke_common" + "rio2022_contents_signature1_dgt_1" { - "[sp_nukestripe_brown]weapon_bizon" "1" - "[sp_nukestripe_brown]weapon_mag7" "1" - "[sp_nukestripe_brown]weapon_sawedoff" "1" + "[rio2022_signature_dgt_1_glitter]sticker" "1" } - "set_nuke_uncommon" + "rio2022_contents_signature0_buda_1" { - "[sp_nukestripe_maroon]weapon_p90" "1" - "[sp_nukestripe_maroon]weapon_ump45" "1" - "[sp_nukestripe_maroon]weapon_xm1014" "1" + "[rio2022_signature_buda_1]sticker" "1" } - "set_nuke_rare" + "rio2022_contents_signature1_buda_1" { - "[sp_nukestripe_orange]weapon_m4a1" "1" + "[rio2022_signature_buda_1_glitter]sticker" "1" } - "set_nuke_mythical" + "rio2022_contents_signature0_gxx_1" { - "[sp_nukestripe_green]weapon_p250" "1" - "[sp_nukestripe_green_tec9]weapon_tec9" "1" + "[rio2022_signature_gxx_1]sticker" "1" } - "set_office_common" + "rio2022_contents_signature1_gxx_1" { - "[sp_spray]weapon_famas" "1" + "[rio2022_signature_gxx_1_glitter]sticker" "1" } - "set_office_uncommon" + "rio2022_contents_signature0_sener1_1" { - "[hy_arctic]weapon_g3sg1" "1" - "[hy_blizzard]weapon_m249" "1" - "[hy_forest_winter]weapon_galilar" "1" + "[rio2022_signature_sener1_1]sticker" "1" } - "set_office_rare" + "rio2022_contents_signature1_sener1_1" { - "[an_silver]weapon_hkp2000" "1" - "[so_whiteout]weapon_mp7" "1" + "[rio2022_signature_sener1_1_glitter]sticker" "1" } - "set_assault_common" + "rio2022_contents_signature0_juanflatroo_1" { - "[so_caramel]weapon_ump45" "1" - "[so_tornado]weapon_sg556" "1" + "[rio2022_signature_juanflatroo_1]sticker" "1" } - "set_assault_uncommon" + "rio2022_contents_signature1_juanflatroo_1" { - "[so_red]weapon_fiveseven" "1" + "[rio2022_signature_juanflatroo_1_glitter]sticker" "1" } - "set_assault_rare" + "rio2022_contents_signature0_rigon_1" { - "[an_navy]weapon_negev" "1" - "[an_red]weapon_aug" "1" + "[rio2022_signature_rigon_1]sticker" "1" } - "set_assault_mythical" + "rio2022_contents_signature1_rigon_1" { - "[aa_fade]weapon_glock" "1" - "[so_yellow]weapon_mp9" "1" + "[rio2022_signature_rigon_1_glitter]sticker" "1" } - "set_bravo_ii_common" + "rio2022_contents_signature0_sinnopsyy_1" { - "[sp_tape_dots_bravo]weapon_mp9" "1" - "[hy_ddpat_jungle_bravo]weapon_m249" "1" - "[so_jungle_bravo]weapon_xm1014" "1" - "[so_tornado_bravo]weapon_tec9" "1" - "[so_olive_bravo]weapon_mp7" "1" - "[an_gunmetal_bravo]weapon_fiveseven" "1" + "[rio2022_signature_sinnopsyy_1]sticker" "1" } - "set_bravo_ii_uncommon" + "rio2022_contents_signature1_sinnopsyy_1" { - "[hy_mayan_dreams_bravo]weapon_ssg08" "1" - "[sp_palm_bravo]weapon_negev" "1" - "[hy_ali_tile_bravo]weapon_sawedoff" "1" - "[hy_crumple_dark_bravo]weapon_p250" "1" - "[so_sand_bravo]weapon_glock" "1" + "[rio2022_signature_sinnopsyy_1_glitter]sticker" "1" } - "set_bravo_ii_rare" + "rio2022_contents_signature0_faven_1" { - "[an_navy_bravo]weapon_aug" "1" - "[sp_hazard_bravo]weapon_mag7" "1" - "[aq_steel_bravo]weapon_bizon" "1" + "[rio2022_signature_faven_1]sticker" "1" } - "set_bravo_ii_mythical" + "rio2022_contents_signature1_faven_1" { - "[sp_spitfire_famas_bravo]weapon_famas" "1" - "[an_emerald_bravo]weapon_scar20" "1" + "[rio2022_signature_faven_1_glitter]sticker" "1" } - "set_dust_2_common" + "rio2022_contents_signature0_krimbo_1" { - "[hy_desert]weapon_g3sg1" "1" - "[so_sand]weapon_p250" "1" - "[sp_mesh_sand]weapon_scar20" "1" - "[sp_spray_sand]weapon_p90" "1" - "[sp_tape_short_sand]weapon_mp9" "1" - "[sp_zebracam]weapon_nova" "1" + "[rio2022_signature_krimbo_1]sticker" "1" } - "set_dust_2_uncommon" + "rio2022_contents_signature1_krimbo_1" { - "[sp_snake]weapon_sawedoff" "1" - "[sp_mesh_tan]weapon_ak47" "1" - "[sp_tape_orange]weapon_fiveseven" "1" - "[sp_palm]weapon_mac10" "1" - "[hy_varicamo]weapon_tec9" "1" + "[rio2022_signature_krimbo_1_glitter]sticker" "1" } - "set_dust_2_rare" + "rio2022_contents_signature0_k1to_1" { - "[aq_brass]weapon_bizon" "1" - "[hy_varicamo]weapon_m4a1_silencer" "1" - "[aq_damascus_sg553]weapon_sg556" "1" + "[rio2022_signature_k1to_1]sticker" "1" } - "set_dust_2_mythical" + "rio2022_contents_signature1_k1to_1" { - "[aa_fade_metallic]weapon_hkp2000" "1" + "[rio2022_signature_k1to_1_glitter]sticker" "1" } - "set_dust_2_legendary" + "rio2022_contents_signature0_tabsen_1" { - "[aa_fade_metallic_revolver]weapon_revolver" "1" + "[rio2022_signature_tabsen_1]sticker" "1" } - "set_train_common" + "rio2022_contents_signature1_tabsen_1" { - "[hy_ddpat_urb]weapon_ump45" "1" - "[so_space_marine]weapon_elite" "1" - "[hy_arctic_contrast]weapon_g3sg1" "1" - "[hy_forest_night]weapon_fiveseven" "1" - "[sp_mesh_arctic_contrast]weapon_nova" "1" - "[sp_tape_short_urban]weapon_bizon" "1" + "[rio2022_signature_tabsen_1_glitter]sticker" "1" } - "set_train_uncommon" + "rio2022_contents_signature0_syrson_1" { - "[so_red]weapon_mac10" "1" - "[hy_ddpat_urb]weapon_m4a1" "1" - "[am_urban]weapon_mag7" "1" - "[am_urban]weapon_p250" "1" - "[am_carbon_fiber]weapon_scar20" "1" - "[sp_twigs]weapon_p90" "1" + "[rio2022_signature_syrson_1]sticker" "1" } - "set_train_rare" + "rio2022_contents_signature1_syrson_1" { - "[hy_varicamo_urban]weapon_deagle" "1" - "[aa_fade_metallic]weapon_sawedoff" "1" + "[rio2022_signature_syrson_1_glitter]sticker" "1" } - "set_train_mythical" + "rio2022_contents_signature0_sh1ro_1" { - "[am_crystallized]weapon_tec9" "1" + "[rio2022_signature_sh1ro_1]sticker" "1" } - "set_mirage_common" + "rio2022_contents_signature1_sh1ro_1" { - "[sp_tape]weapon_p250" "1" - "[so_pmc]weapon_fiveseven" "1" - "[so_space_marine]weapon_aug" "1" - "[sp_mesh_tan]weapon_g3sg1" "1" - "[sp_dapple]weapon_p90" "1" - "[sp_mesh_slashes]weapon_galilar" "1" + "[rio2022_signature_sh1ro_1_glitter]sticker" "1" } - "set_mirage_uncommon" + "rio2022_contents_signature0_nafany_1" { - "[so_olive]weapon_glock" "1" - "[sp_tape_orange]weapon_mp7" "1" - "[sp_palm_shadow]weapon_ssg08" "1" - "[hy_varicamo_desert]weapon_negev" "1" - "[sp_mesh_python]weapon_sg556" "1" + "[rio2022_signature_nafany_1]sticker" "1" } - "set_mirage_rare" + "rio2022_contents_signature1_nafany_1" { - "[an_red]weapon_mp9" "1" - "[aa_flames]weapon_ump45" "1" - "[aa_fade_metallic]weapon_mac10" "1" + "[rio2022_signature_nafany_1_glitter]sticker" "1" } - "set_mirage_mythical" + "rio2022_contents_signature0_ax1le_1" { - "[so_yellow]weapon_mag7" "1" + "[rio2022_signature_ax1le_1]sticker" "1" } - "set_italy_common" + "rio2022_contents_signature1_ax1le_1" { - "[so_olive]weapon_tec9" "1" - "[so_pmc]weapon_aug" "1" - "[so_space_marine]weapon_famas" "1" - "[so_sand]weapon_nova" "1" - "[sp_tape_short_sand]weapon_bizon" "1" + "[rio2022_signature_ax1le_1_glitter]sticker" "1" } - "set_italy_uncommon" + "rio2022_contents_signature0_interz_1" { - "[so_red]weapon_nova" "1" - "[hy_gelpen]weapon_ump45" "1" - "[hy_granite]weapon_hkp2000" "1" - "[aq_forced]weapon_elite" "1" - "[hy_forest_boreal]weapon_m4a1_silencer" "1" - "[hy_varicamo_desert]weapon_xm1014" "1" + "[rio2022_signature_interz_1]sticker" "1" } - "set_italy_rare" + "rio2022_contents_signature1_interz_1" { - "[so_red]weapon_glock" "1" - "[an_navy]weapon_mp7" "1" - "[hy_varicamo_red]weapon_sawedoff" "1" + "[rio2022_signature_interz_1_glitter]sticker" "1" } - "set_italy_mythical" + "rio2022_contents_signature0_hobbit_1" { - "[hy_snakeskin]weapon_awp" "1" + "[rio2022_signature_hobbit_1]sticker" "1" } - "set_lake_common" + "rio2022_contents_signature1_hobbit_1" { - "[hy_forest_boreal]weapon_p250" "1" - "[so_moss]weapon_xm1014" "1" - "[so_stormfront]weapon_aug" "1" - "[sp_spray_desert_sage]weapon_galilar" "1" - "[sp_tape_dots_waves]weapon_sg556" "1" - "[sp_tape_short_jungle]weapon_g3sg1" "1" + "[rio2022_signature_hobbit_1_glitter]sticker" "1" } - "set_lake_uncommon" + "rio2022_contents_signature0_autimatic_1" { - "[aq_blued]weapon_xm1014" "1" - "[sp_mesh_tan]weapon_awp" "1" - "[hy_mottled_sand]weapon_deagle" "1" - "[hy_reef]weapon_famas" "1" - "[hy_varicamo_night]weapon_bizon" "1" + "[rio2022_signature_autimatic_1]sticker" "1" } - "set_lake_rare" + "rio2022_contents_signature1_autimatic_1" { - "[an_navy]weapon_sg556" "1" - "[hy_varicamo_night]weapon_usp_silencer" "1" - "[sp_mesh_hot_and_cold]weapon_p90" "1" + "[rio2022_signature_autimatic_1_glitter]sticker" "1" } - "set_lake_mythical" + "rio2022_contents_signature0_nealan_1" { - "[am_crystallized_blue]weapon_elite" "1" + "[rio2022_signature_nealan_1]sticker" "1" } - "set_safehouse_common" + "rio2022_contents_signature1_nealan_1" { - "[so_pmc]weapon_elite" "1" - "[so_pmc]weapon_scar20" "1" - "[so_moss]weapon_ssg08" "1" - "[sp_mesh_army]weapon_tec9" "1" - "[sp_spray_army]weapon_mp7" "1" + "[rio2022_signature_nealan_1_glitter]sticker" "1" } - "set_safehouse_uncommon" + "rio2022_contents_signature0_brehze_1" { - "[sp_leaves]weapon_usp_silencer" "1" - "[sp_mesh_forest_fire]weapon_aug" "1" - "[sp_tape_orange]weapon_mp9" "1" - "[hy_varicamo]weapon_g3sg1" "1" - "[hy_varicamo]weapon_galilar" "1" - "[sp_mesh_python]weapon_m249" "1" + "[rio2022_signature_brehze_1]sticker" "1" } - "set_safehouse_rare" + "rio2022_contents_signature1_brehze_1" { - "[sp_mesh_hot_and_cold]weapon_famas" "1" - "[am_crystallized_silver]weapon_fiveseven" "1" - "[aa_fade_grassland]weapon_ssg08" "1" + "[rio2022_signature_brehze_1_glitter]sticker" "1" } - "set_safehouse_mythical" + "rio2022_contents_signature0_hext_1" { - "[so_orange_accents]weapon_m4a1_silencer" "1" + "[rio2022_signature_hext_1]sticker" "1" } - "set_bank_common" + "rio2022_contents_signature1_hext_1" { - "[hy_ddpat]weapon_mp7" "1" - "[hy_ddpat]weapon_sawedoff" "1" - "[hy_ddpat_urb]weapon_tec9" "1" - "[sp_tape]weapon_revolver" "1" - "[am_army_shine]weapon_negev" "1" - "[am_army_shine]weapon_sg556" "1" + "[rio2022_signature_hext_1_glitter]sticker" "1" } - "set_bank_uncommon" + "rio2022_contents_signature0_cerq_1" { - "[an_silver]weapon_mac10" "1" - "[am_carbon_fiber]weapon_ump45" "1" - "[hy_nerodia]weapon_glock" "1" - "[so_green]weapon_g3sg1" "1" - "[am_oval_hex]weapon_nova" "1" + "[rio2022_signature_cerq_1]sticker" "1" } - "set_bank_rare" + "rio2022_contents_signature1_cerq_1" { - "[am_crystallized_dark]weapon_deagle" "1" - "[so_orca]weapon_galilar" "1" - "[so_orca]weapon_cz75a" "1" + "[rio2022_signature_cerq_1_glitter]sticker" "1" } - "set_bank_mythical" + "rio2022_contents_signature0_frozen_1" { - "[cu_pinstripe_ak47]weapon_ak47" "1" + "[rio2022_signature_frozen_1]sticker" "1" } - "set_bank_legendary" + "rio2022_contents_signature1_frozen_1" { - "[cu_money]weapon_p250" "1" + "[rio2022_signature_frozen_1_glitter]sticker" "1" } - "set_overpass_common" + "rio2022_contents_signature0_dexter_1" { - "[sp_spray]weapon_m249" "1" - "[so_stormfront]weapon_mag7" "1" - "[so_stormfront]weapon_mp9" "1" - "[sp_spray_desert_sage]weapon_sawedoff" "1" - "[sp_dapple]weapon_ump45" "1" + "[rio2022_signature_dexter_1]sticker" "1" } - "set_overpass_uncommon" + "rio2022_contents_signature1_dexter_1" { - "[hy_gelpen]weapon_mp7" "1" - "[hy_ddpat_urb]weapon_deagle" "1" - "[so_night]weapon_glock" "1" - "[so_grassland]weapon_hkp2000" "1" + "[rio2022_signature_dexter_1_glitter]sticker" "1" } - "set_overpass_rare" + "rio2022_contents_signature0_jdc_1" { - "[hy_varicamo_blue]weapon_xm1014" "1" - "[hy_ssg08_marker]weapon_ssg08" "1" - "[so_orange_accents2]weapon_cz75a" "1" + "[rio2022_signature_jdc_1]sticker" "1" } - "set_overpass_mythical" + "rio2022_contents_signature1_jdc_1" { - "[hy_ddpat_pink]weapon_awp" "1" - "[cu_usp_sandpapered]weapon_usp_silencer" "1" + "[rio2022_signature_jdc_1_glitter]sticker" "1" } - "set_overpass_legendary" + "rio2022_contents_signature0_torzsi_1" { - "[cu_m4a1-s_silence]weapon_m4a1_silencer" "1" + "[rio2022_signature_torzsi_1]sticker" "1" } - "set_cobblestone_common" + "rio2022_contents_signature1_torzsi_1" { - "[so_stormfront]weapon_p90" "1" - "[so_stormfront]weapon_scar20" "1" - "[hy_vines]weapon_elite" "1" - "[so_indigo_and_grey]weapon_mac10" "1" - "[so_indigo_and_grey]weapon_ump45" "1" + "[rio2022_signature_torzsi_1_glitter]sticker" "1" } - "set_cobblestone_uncommon" + "rio2022_contents_signature0_xertion_1" { - "[an_silver]weapon_mag7" "1" - "[so_green]weapon_nova" "1" - "[aq_steel]weapon_sawedoff" "1" - "[hy_indigo_usp]weapon_usp_silencer" "1" + "[rio2022_signature_xertion_1]sticker" "1" } - "set_cobblestone_rare" + "rio2022_contents_signature1_xertion_1" { - "[am_chainmail]weapon_hkp2000" "1" - "[am_metal_inlay]weapon_mp9" "1" + "[rio2022_signature_xertion_1_glitter]sticker" "1" } - "set_cobblestone_mythical" + "rio2022_contents_signature0_nexa_1" { - "[am_royal]weapon_cz75a" "1" - "[aq_handcannon]weapon_deagle" "1" + "[rio2022_signature_nexa_1]sticker" "1" } - "set_cobblestone_legendary" + "rio2022_contents_signature1_nexa_1" { - "[am_metals]weapon_m4a1_silencer" "1" + "[rio2022_signature_nexa_1_glitter]sticker" "1" } - "set_cobblestone_ancient" + "rio2022_contents_signature0_neofrag_1" { - "[cu_medieval_dragon_awp]weapon_awp" "1" + "[rio2022_signature_neofrag_1]sticker" "1" } - "set_baggage_common" + "rio2022_contents_signature1_neofrag_1" { - "[so_pmc]weapon_g3sg1" "1" - "[so_sand]weapon_ssg08" "1" - "[hy_plaid1]weapon_mp7" "1" - "[hy_plaid2]weapon_mp9" "1" - "[hy_plaid2]weapon_cz75a" "1" + "[rio2022_signature_neofrag_1_glitter]sticker" "1" } - "set_baggage_uncommon" + "rio2022_contents_signature0_flamez_1" { - "[cu_brown_leather_p90]weapon_p90" "1" - "[cu_luggage_mac10]weapon_mac10" "1" - "[cu_luggage_p2000]weapon_hkp2000" "1" - "[cu_luggage_sg553]weapon_sg556" "1" + "[rio2022_signature_flamez_1]sticker" "1" } - "set_baggage_rare" + "rio2022_contents_signature1_flamez_1" { - "[cu_green_leather_sawedoff]weapon_sawedoff" "1" - "[cu_leather_xm1014]weapon_xm1014" "1" - "[cu_luggage_usp-s]weapon_usp_silencer" "1" + "[rio2022_signature_flamez_1_glitter]sticker" "1" } - "set_baggage_mythical" + "rio2022_contents_signature0_degster_1" { - "[cu_green_leather_ak47]weapon_ak47" "1" - "[aq_pilot_deagle]weapon_deagle" "1" + "[rio2022_signature_degster_1]sticker" "1" } - "set_baggage_legendary" + "rio2022_contents_signature1_degster_1" { - "[cu_well_traveled_ak47]weapon_ak47" "1" + "[rio2022_signature_degster_1_glitter]sticker" "1" } - "set_cache_uncommon" + "rio2022_contents_signature0_f1ku_1" { - "[sp_nuclear_pattern3_negev]weapon_negev" "1" - "[hy_nuclear_skulls4_p250]weapon_p250" "1" - "[sp_nukestripe_orange_aug]weapon_aug" "1" - "[so_grey_nuclear_green_bizon]weapon_bizon" "1" - "[so_grey_nuclear_orange_five_seven]weapon_fiveseven" "1" - "[sp_nukestripe_maroon_sg553]weapon_sg556" "1" + "[rio2022_signature_f1ku_1]sticker" "1" } - "set_cache_rare" + "rio2022_contents_signature1_f1ku_1" { - "[am_nuclear_pattern1_glock]weapon_glock" "1" - "[hy_nuclear_pattern2_mp9]weapon_mp9" "1" - "[am_nuclear_skulls1_xm1014]weapon_xm1014" "1" - "[am_nuclear_skulls3_mac10]weapon_mac10" "1" - "[hy_nuclear_skulls5_tec9]weapon_tec9" "1" + "[rio2022_signature_f1ku_1_glitter]sticker" "1" } - "set_cache_mythical" + "rio2022_contents_signature0_dupreeh_1" { - "[am_nuclear_skulls2_famas]weapon_famas" "1" - "[cu_cerbrus_galil]weapon_galilar" "1" + "[rio2022_signature_dupreeh_1]sticker" "1" } - "set_gods_and_monsters_common" + "rio2022_contents_signature1_dupreeh_1" { - "[sp_labyrinth]weapon_mp7" "1" - "[sp_labyrinth3]weapon_aug" "1" - "[hy_zodiac1]weapon_elite" "1" - "[hy_zodiac1]weapon_nova" "1" + "[rio2022_signature_dupreeh_1_glitter]sticker" "1" } - "set_gods_and_monsters_uncommon" + "rio2022_contents_signature0_magisk_1" { - "[hy_hades]weapon_tec9" "1" - "[sp_labyrinth2]weapon_hkp2000" "1" - "[hy_zodiac2]weapon_awp" "1" - "[hy_zodiac3]weapon_m249" "1" + "[rio2022_signature_magisk_1]sticker" "1" } - "set_gods_and_monsters_rare" + "rio2022_contents_signature1_magisk_1" { - "[cu_labyrinth]weapon_ump45" "1" - "[aa_pandora]weapon_mp9" "1" + "[rio2022_signature_magisk_1_glitter]sticker" "1" } - "set_gods_and_monsters_mythical" + "rio2022_contents_signature0_apex_1" { - "[cu_chronos_g3sg1]weapon_g3sg1" "1" - "[hy_icarus]weapon_m4a1_silencer" "1" + "[rio2022_signature_apex_1]sticker" "1" } - "set_gods_and_monsters_legendary" + "rio2022_contents_signature1_apex_1" { - "[cu_poseidon]weapon_m4a1" "1" + "[rio2022_signature_apex_1_glitter]sticker" "1" } - "set_gods_and_monsters_ancient" + "rio2022_contents_signature0_spinx_1" { - "[cu_medusa_awp]weapon_awp" "1" + "[rio2022_signature_spinx_1]sticker" "1" } - "set_chopshop_common" + "rio2022_contents_signature1_spinx_1" { - "[am_army_shine]weapon_scar20" "1" - "[am_army_shine]weapon_cz75a" "1" - "[so_keycolors]weapon_m249" "1" - "[so_aqua]weapon_mag7" "1" + "[rio2022_signature_spinx_1_glitter]sticker" "1" } - "set_chopshop_uncommon" + "rio2022_contents_signature0_zywoo_1" { - "[so_night]weapon_deagle" "1" - "[hy_varicamo_urban]weapon_galilar" "1" - "[so_khaki_green]weapon_usp_silencer" "1" + "[rio2022_signature_zywoo_1]sticker" "1" } - "set_chopshop_rare" + "rio2022_contents_signature1_zywoo_1" { - "[aa_fade]weapon_mac10" "1" - "[so_whiteout]weapon_p250" "1" - "[hy_varicamo_red]weapon_mp7" "1" - "[so_orange_accents]weapon_fiveseven" "1" - "[an_emerald]weapon_cz75a" "1" + "[rio2022_signature_zywoo_1_glitter]sticker" "1" } - "set_chopshop_mythical" + "rio2022_contents_signature0_taco_4" { - "[so_yellow]weapon_sg556" "1" - "[gs_mother_of_pearl_elite]weapon_elite" "1" + "[rio2022_signature_taco_4]sticker" "1" } - "set_chopshop_legendary" + "rio2022_contents_signature1_taco_4" { - "[am_aqua_flecks]weapon_glock" "1" - "[an_red_m4a1s]weapon_m4a1_silencer" "1" + "[rio2022_signature_taco_4_glitter]sticker" "1" } - "set_kimono_common" + "rio2022_contents_signature0_coldzera_4" { - "[hy_bamboo_jungle_ink]weapon_bizon" "1" - "[hy_bamboo_jungle_black]weapon_sawedoff" "1" - "[hy_bamboo_jungle]weapon_tec9" "1" - "[hy_kimono_diamonds_orange]weapon_g3sg1" "1" - "[sp_kimono_diamonds]weapon_p250" "1" + "[rio2022_signature_coldzera_4]sticker" "1" } - "set_kimono_uncommon" + "rio2022_contents_signature1_coldzera_4" { - "[hy_kimono_diamonds_red]weapon_p250" "1" - "[am_seastorm]weapon_deagle" "1" + "[rio2022_signature_coldzera_4_glitter]sticker" "1" } - "set_kimono_rare" + "rio2022_contents_signature0_try_4" { - "[am_geometric_steps]weapon_galilar" "1" - "[hy_geometric_steps_green]weapon_mag7" "1" - "[hy_geometric_steps_yellow]weapon_tec9" "1" + "[rio2022_signature_try_4]sticker" "1" } - "set_kimono_mythical" + "rio2022_contents_signature1_try_4" { - "[hy_kimono_diamonds]weapon_fiveseven" "1" - "[am_seastorm_blood]weapon_deagle" "1" - "[am_seastorm_shojo]weapon_deagle" "1" - "[am_kimono_sunrise]weapon_m4a1" "1" + "[rio2022_signature_try_4_glitter]sticker" "1" } - "set_kimono_legendary" + "rio2022_contents_signature0_latto_4" { - "[am_bamboo_jungle]weapon_ak47" "1" + "[rio2022_signature_latto_4]sticker" "1" } - "set_kimono_ancient" + "rio2022_contents_signature1_latto_4" { - "[cu_anime_aug]weapon_aug" "1" + "[rio2022_signature_latto_4_glitter]sticker" "1" } - "set_dust" + "rio2022_contents_signature0_dumau_4" { - "set_dust_uncommon" "1" - "set_dust_rare" "1" - "set_dust_mythical" "1" + "[rio2022_signature_dumau_4]sticker" "1" } - "set_aztec" + "rio2022_contents_signature1_dumau_4" { - "set_aztec_common" "1" - "set_aztec_uncommon" "1" - "set_aztec_rare" "1" + "[rio2022_signature_dumau_4_glitter]sticker" "1" } - "set_vertigo" + "rio2022_contents_signature0_krimz_4" { - "set_vertigo_common" "1" - "set_vertigo_uncommon" "1" - "set_vertigo_rare" "1" - "set_vertigo_mythical" "1" + "[rio2022_signature_krimz_4]sticker" "1" } - "set_inferno" + "rio2022_contents_signature1_krimz_4" { - "set_inferno_common" "1" - "set_inferno_uncommon" "1" - "set_inferno_rare" "1" + "[rio2022_signature_krimz_4_glitter]sticker" "1" } - "set_militia" + "rio2022_contents_signature0_mezii_4" { - "set_militia_common" "1" - "set_militia_uncommon" "1" - "set_militia_rare" "1" - "set_militia_mythical" "1" - "set_militia_legendary" "1" + "[rio2022_signature_mezii_4]sticker" "1" } - "set_nuke" + "rio2022_contents_signature1_mezii_4" { - "set_nuke_common" "1" - "set_nuke_uncommon" "1" - "set_nuke_rare" "1" - "set_nuke_mythical" "1" + "[rio2022_signature_mezii_4_glitter]sticker" "1" } - "set_office" + "rio2022_contents_signature0_fashr_4" { - "set_office_common" "1" - "set_office_uncommon" "1" - "set_office_rare" "1" + "[rio2022_signature_fashr_4]sticker" "1" } - "set_assault" + "rio2022_contents_signature1_fashr_4" { - "set_assault_common" "1" - "set_assault_uncommon" "1" - "set_assault_rare" "1" - "set_assault_mythical" "1" + "[rio2022_signature_fashr_4_glitter]sticker" "1" } - "set_bravo_ii" + "rio2022_contents_signature0_roej_4" { - "set_bravo_ii_common" "1" - "set_bravo_ii_uncommon" "1" - "set_bravo_ii_rare" "1" - "set_bravo_ii_mythical" "1" + "[rio2022_signature_roej_4]sticker" "1" } - "set_dust_2" + "rio2022_contents_signature1_roej_4" { - "set_dust_2_common" "1" - "set_dust_2_uncommon" "1" - "set_dust_2_rare" "1" - "set_dust_2_mythical" "1" - "set_dust_2_legendary" "1" + "[rio2022_signature_roej_4_glitter]sticker" "1" } - "set_train" + "rio2022_contents_signature0_nicoodoz_4" { - "set_train_common" "1" - "set_train_uncommon" "1" - "set_train_rare" "1" - "set_train_mythical" "1" + "[rio2022_signature_nicoodoz_4]sticker" "1" } - "set_mirage" + "rio2022_contents_signature1_nicoodoz_4" { - "set_mirage_common" "1" - "set_mirage_uncommon" "1" - "set_mirage_rare" "1" - "set_mirage_mythical" "1" + "[rio2022_signature_nicoodoz_4_glitter]sticker" "1" } - "set_italy" + "rio2022_contents_signature0_kscerato_4" { - "set_italy_common" "1" - "set_italy_uncommon" "1" - "set_italy_rare" "1" - "set_italy_mythical" "1" + "[rio2022_signature_kscerato_4]sticker" "1" } - "set_lake" + "rio2022_contents_signature1_kscerato_4" { - "set_lake_common" "1" - "set_lake_uncommon" "1" - "set_lake_rare" "1" - "set_lake_mythical" "1" + "[rio2022_signature_kscerato_4_glitter]sticker" "1" } - "set_safehouse" + "rio2022_contents_signature0_yuurih_4" { - "set_safehouse_common" "1" - "set_safehouse_uncommon" "1" - "set_safehouse_rare" "1" - "set_safehouse_mythical" "1" + "[rio2022_signature_yuurih_4]sticker" "1" } - "set_bank" + "rio2022_contents_signature1_yuurih_4" { - "set_bank_common" "1" - "set_bank_uncommon" "1" - "set_bank_rare" "1" - "set_bank_mythical" "1" - "set_bank_legendary" "1" + "[rio2022_signature_yuurih_4_glitter]sticker" "1" } - "set_overpass" + "rio2022_contents_signature0_drop_4" { - "set_overpass_common" "1" - "set_overpass_uncommon" "1" - "set_overpass_rare" "1" - "set_overpass_mythical" "1" - "set_overpass_legendary" "1" + "[rio2022_signature_drop_4]sticker" "1" } - "set_cobblestone" + "rio2022_contents_signature1_drop_4" { - "set_cobblestone_common" "1" - "set_cobblestone_uncommon" "1" - "set_cobblestone_rare" "1" - "set_cobblestone_mythical" "1" - "set_cobblestone_legendary" "1" - "set_cobblestone_ancient" "1" + "[rio2022_signature_drop_4_glitter]sticker" "1" } - "set_baggage" + "rio2022_contents_signature0_saffee_4" { - "set_baggage_common" "1" - "set_baggage_uncommon" "1" - "set_baggage_rare" "1" - "set_baggage_mythical" "1" - "set_baggage_legendary" "1" + "[rio2022_signature_saffee_4]sticker" "1" } - "set_cache" + "rio2022_contents_signature1_saffee_4" { - "set_cache_uncommon" "1" - "set_cache_rare" "1" - "set_cache_mythical" "1" + "[rio2022_signature_saffee_4_glitter]sticker" "1" } - "set_gods_and_monsters" + "rio2022_contents_signature0_art_4" { - "set_gods_and_monsters_common" "1" - "set_gods_and_monsters_uncommon" "1" - "set_gods_and_monsters_rare" "1" - "set_gods_and_monsters_mythical" "1" - "set_gods_and_monsters_legendary" "1" - "set_gods_and_monsters_ancient" "1" + "[rio2022_signature_art_4]sticker" "1" } - "set_chopshop" + "rio2022_contents_signature1_art_4" { - "set_chopshop_common" "1" - "set_chopshop_uncommon" "1" - "set_chopshop_rare" "1" - "set_chopshop_mythical" "1" - "set_chopshop_legendary" "1" + "[rio2022_signature_art_4_glitter]sticker" "1" } - "set_kimono" + "rio2022_contents_signature0_acor_4" { - "set_kimono_common" "1" - "set_kimono_uncommon" "1" - "set_kimono_rare" "1" - "set_kimono_mythical" "1" - "set_kimono_legendary" "1" - "set_kimono_ancient" "1" + "[rio2022_signature_acor_4]sticker" "1" } - "crate_community_3_rare" + "rio2022_contents_signature1_acor_4" { - "[cu_tec9_asiimov]weapon_tec9" "1" - "[cu_ssg08_immortal]weapon_ssg08" "1" - "[hy_galil_kami]weapon_galilar" "1" - "[am_gyrate]weapon_cz75a" "1" - "[an_royalbleed]weapon_p90" "1" - "[cu_p2000_pulse]weapon_hkp2000" "1" + "[rio2022_signature_acor_4_glitter]sticker" "1" } - "crate_community_3_mythical" + "rio2022_contents_signature0_im_4" { - "[cu_aug_progressiv]weapon_aug" "1" - "[cu_bizon_antique]weapon_bizon" "1" - "[cu_xm1014_heaven_guard]weapon_xm1014" "1" - "[cu_korupt]weapon_mac10" "1" + "[rio2022_signature_im_4]sticker" "1" } - "crate_community_3_legendary" + "rio2022_contents_signature1_im_4" { - "[am_m4a1-s_alloy_orange]weapon_m4a1_silencer" "1" - "[cu_scar_cyrex]weapon_scar20" "1" - "[cu_kaiman]weapon_usp_silencer" "1" + "[rio2022_signature_im_4_glitter]sticker" "1" } - "crate_community_3_ancient" + "rio2022_contents_signature0_siuhy_4" { - "[cu_ak47_rubber]weapon_ak47" "1" - "[cu_titanstorm]weapon_m4a1" "1" + "[rio2022_signature_siuhy_4]sticker" "1" } - "crate_sticker_pack01_rare" + "rio2022_contents_signature1_siuhy_4" { - "[std_thirteen]sticker" "1" - "[std_aces_high]sticker" "1" - "[std_conquered]sticker" "1" - "[std_destroy]sticker" "1" - "[std_dispatch]sticker" "1" - "[std_fearsome]sticker" "1" - "[std_guarding_hell]sticker" "1" - "[std_lemon]sticker" "1" - "[std_luck]sticker" "1" - "[std_vigilance]sticker" "1" + "[rio2022_signature_siuhy_4_glitter]sticker" "1" } - "crate_sticker_pack01_mythical" + "rio2022_contents_signature0_keoz_4" { - "[std_aces_high_holo]sticker" "1" - "[std_fearsome_holo]sticker" "1" - "[std_vigilance_holo]sticker" "1" + "[rio2022_signature_keoz_4]sticker" "1" } - "crate_sticker_pack01_legendary" + "rio2022_contents_signature1_keoz_4" { - "[std_thirteen_foil]sticker" "1" - "[std_luck_foil]sticker" "1" + "[rio2022_signature_keoz_4_glitter]sticker" "1" } - "crate_sticker_pack01" + "rio2022_contents_signature0_isak_4" { - "crate_sticker_pack01_rare" "1" - "crate_sticker_pack01_mythical" "1" - "crate_sticker_pack01_legendary" "1" + "[rio2022_signature_isak_4]sticker" "1" } - "crate_sticker_pack02_rare" + "rio2022_contents_signature1_isak_4" { - "[std2_banana]sticker" "1" - "[std2_bomb_code]sticker" "1" - "[std2_chicken_lover]sticker" "1" - "[std2_goodgame]sticker" "1" - "[std2_goodluck]sticker" "1" - "[std2_havefun]sticker" "1" - "[std2_lets_roll_oll]sticker" "1" - "[std2_metal]sticker" "1" - "[std2_nice_shot]sticker" "1" - "[std2_welcome_clutch]sticker" "1" + "[rio2022_signature_isak_4_glitter]sticker" "1" } - "crate_sticker_pack02_mythical" + "rio2022_contents_signature0_ins_4" { - "[std2_bish_holo]sticker" "1" - "[std2_bash_holo]sticker" "1" - "[std2_bosh_holo]sticker" "1" - "[std2_lets_roll_oll_holo]sticker" "1" + "[rio2022_signature_ins_4]sticker" "1" } - "crate_sticker_pack02_legendary" + "rio2022_contents_signature1_ins_4" { - "[std_crown_foil]sticker" "1" - "[std2_stupid_banana_foil]sticker" "1" + "[rio2022_signature_ins_4_glitter]sticker" "1" } - "crate_sticker_pack02" + "rio2022_contents_signature0_vexite_4" { - "crate_sticker_pack02_rare" "1" - "crate_sticker_pack02_mythical" "1" - "crate_sticker_pack02_legendary" "1" + "[rio2022_signature_vexite_4]sticker" "1" } - "crate_sticker_pack_enfu_capsule_rare" + "rio2022_contents_signature1_vexite_4" { - "[enfu_chicken]sticker" "1" - "[enfu_bombsquad]sticker" "1" - "[enfu_skullfuskulltorgeist]sticker" "1" - "[enfu_guru]sticker" "1" - "[enfu_ninja]sticker" "1" - "[enfu_samurai]sticker" "1" - "[enfu_skullfutrooop]sticker" "1" - "[enfu_soldier]sticker" "1" - "[enfu_spartan]sticker" "1" - "[enfu_unicorn]sticker" "1" - "[enfu_skullfulilboney]sticker" "1" - "[enfu_zombie]sticker" "1" + "[rio2022_signature_vexite_4_glitter]sticker" "1" } - "crate_sticker_pack_enfu_capsule_mythical" + "rio2022_contents_signature0_sico_4" { - "[enfu_unicorn_holo]sticker" "1" + "[rio2022_signature_sico_4]sticker" "1" } - "crate_sticker_pack_enfu_capsule_legendary" + "rio2022_contents_signature1_sico_4" { - "[enfu_bombsquad_foil]sticker" "1" - "[enfu_ninja_foil]sticker" "1" + "[rio2022_signature_sico_4_glitter]sticker" "1" } - "crate_sticker_pack_enfu_capsule_lootlist" + "rio2022_contents_signature0_liazz_4" { - "crate_sticker_pack_enfu_capsule_rare" "1" - "crate_sticker_pack_enfu_capsule_mythical" "1" - "crate_sticker_pack_enfu_capsule_legendary" "1" + "[rio2022_signature_liazz_4]sticker" "1" } - "crate_sticker_pack_pinups_capsule_rare" + "rio2022_contents_signature1_liazz_4" { - "[pinups_ivette]sticker" "1" - "[pinups_kimberly]sticker" "1" - "[pinups_martha]sticker" "1" - "[pinups_merietta]sticker" "1" - "[pinups_scherry]sticker" "1" - "[pinups_tamara]sticker" "1" + "[rio2022_signature_liazz_4_glitter]sticker" "1" } - "crate_sticker_pack_pinups_capsule_mythical" + "rio2022_contents_signature0_alistair_4" { - "[pinups_ivette_holo]sticker" "1" - "[pinups_kimberly_holo]sticker" "1" - "[pinups_martha_holo]sticker" "1" - "[pinups_merietta_holo]sticker" "1" - "[pinups_scherry_holo]sticker" "1" - "[pinups_tamara_holo]sticker" "1" + "[rio2022_signature_alistair_4]sticker" "1" } - "crate_sticker_pack_pinups_capsule_lootlist" + "rio2022_contents_signature1_alistair_4" { - "crate_sticker_pack_pinups_capsule_rare" "1" - "crate_sticker_pack_pinups_capsule_mythical" "1" + "[rio2022_signature_alistair_4_glitter]sticker" "1" } - "crate_sticker_pack_slid3_capsule_rare" + "rio2022_contents_signature0_sk0r_4" { - "[slid3_boom]sticker" "1" - "[slid3_countdown]sticker" "1" - "[slid3_dontworryigotcha]sticker" "1" - "[slid3_hardclucklife]sticker" "1" - "[slid3_moveit]sticker" "1" + "[rio2022_signature_sk0r_4]sticker" "1" } - "crate_sticker_pack_slid3_capsule_mythical" + "rio2022_contents_signature1_sk0r_4" { - "[slid3_boom_holo]sticker" "1" - "[slid3_countdown_holo]sticker" "1" - "[slid3_dontworryigotcha_holo]sticker" "1" - "[slid3_hardclucklife_holo]sticker" "1" - "[slid3_moveit_holo]sticker" "1" + "[rio2022_signature_sk0r_4_glitter]sticker" "1" } - "crate_sticker_pack_slid3_capsule_legendary" + "rio2022_contents_signature0_techno4k_4" { - "[slid3_boom_foil]sticker" "1" - "[slid3_countdown_foil]sticker" "1" - "[slid3_dontworryigotcha_foil]sticker" "1" - "[slid3_hardclucklife_foil]sticker" "1" - "[slid3_moveit_foil]sticker" "1" + "[rio2022_signature_techno4k_4]sticker" "1" } - "crate_sticker_pack_slid3_capsule_lootlist" + "rio2022_contents_signature1_techno4k_4" { - "crate_sticker_pack_slid3_capsule_rare" "1" - "crate_sticker_pack_slid3_capsule_mythical" "1" - "crate_sticker_pack_slid3_capsule_legendary" "1" + "[rio2022_signature_techno4k_4_glitter]sticker" "1" } - "crate_sticker_pack_team_roles_capsule_rare" + "rio2022_contents_signature0_kabal_4" { - "[team_roles_awper]sticker" "1" - "[team_roles_baiter]sticker" "1" - "[team_roles_bomber]sticker" "1" - "[team_roles_bot]sticker" "1" - "[team_roles_fragger]sticker" "1" - "[team_roles_leader]sticker" "1" - "[team_roles_lurker]sticker" "1" - "[team_roles_nader]sticker" "1" - "[team_roles_ninja]sticker" "1" - "[team_roles_support]sticker" "1" + "[rio2022_signature_kabal_4]sticker" "1" } - "crate_sticker_pack_team_roles_capsule_legendary" + "rio2022_contents_signature1_kabal_4" { - "[team_roles_pro_foil]sticker" "1" + "[rio2022_signature_kabal_4_glitter]sticker" "1" } - "crate_sticker_pack_team_roles_capsule_lootlist" + "rio2022_contents_signature0_blitz_4" { - "crate_sticker_pack_team_roles_capsule_rare" "1" - "crate_sticker_pack_team_roles_capsule_legendary" "1" + "[rio2022_signature_blitz_4]sticker" "1" } - "crate_sticker_pack_kat2014_01_rare" + "rio2022_contents_signature1_blitz_4" { - "[kat2014_3dmax]sticker" "1" - "[kat2014_ibuypower]sticker" "1" - "[kat2014_mousesports]sticker" "1" - "[kat2014_mystik]sticker" "1" - "[kat2014_navi]sticker" "1" - "[kat2014_reason]sticker" "1" - "[kat2014_virtuspro]sticker" "1" - "[kat2014_voxeminor]sticker" "1" + "[rio2022_signature_blitz_4_glitter]sticker" "1" } - "crate_sticker_pack_kat2014_01_mythical" + "rio2022_contents_signature0_annihilation_4" { - "[kat2014_3dmax_holo]sticker" "1" - "[kat2014_ibuypower_holo]sticker" "1" - "[kat2014_mousesports_holo]sticker" "1" - "[kat2014_mystik_holo]sticker" "1" - "[kat2014_navi_holo]sticker" "1" - "[kat2014_reason_holo]sticker" "1" - "[kat2014_virtuspro_holo]sticker" "1" - "[kat2014_voxeminor_holo]sticker" "1" + "[rio2022_signature_annihilation_4]sticker" "1" } - "crate_sticker_pack_kat2014_01_legendary" + "rio2022_contents_signature1_annihilation_4" { - "[kat2014_esl1_foil]sticker" "1" + "[rio2022_signature_annihilation_4_glitter]sticker" "1" } - "crate_sticker_pack_kat2014_01" + "rio2022_contents_signature0_fallen_4" { - "crate_sticker_pack_kat2014_01_rare" "1" - "crate_sticker_pack_kat2014_01_mythical" "1" - "crate_sticker_pack_kat2014_01_legendary" "1" + "[rio2022_signature_fallen_4]sticker" "1" } - "crate_sticker_pack_kat2014_02_rare" + "rio2022_contents_signature1_fallen_4" { - "[kat2014_complexity]sticker" "1" - "[kat2014_dignitas]sticker" "1" - "[kat2014_fnatic]sticker" "1" - "[kat2014_hellraisers]sticker" "1" - "[kat2014_ldlc]sticker" "1" - "[kat2014_lgb]sticker" "1" - "[kat2014_ninjasinpyjamas]sticker" "1" - "[kat2014_titan]sticker" "1" + "[rio2022_signature_fallen_4_glitter]sticker" "1" } - "crate_sticker_pack_kat2014_02_mythical" + "rio2022_contents_signature0_fer_4" { - "[kat2014_complexity_holo]sticker" "1" - "[kat2014_dignitas_holo]sticker" "1" - "[kat2014_fnatic_holo]sticker" "1" - "[kat2014_hellraisers_holo]sticker" "1" - "[kat2014_ldlc_holo]sticker" "1" - "[kat2014_lgb_holo]sticker" "1" - "[kat2014_ninjasinpyjamas_holo]sticker" "1" - "[kat2014_titan_holo]sticker" "1" + "[rio2022_signature_fer_4]sticker" "1" } - "crate_sticker_pack_kat2014_02_legendary" + "rio2022_contents_signature1_fer_4" { - "[kat2014_esl2_foil]sticker" "1" + "[rio2022_signature_fer_4_glitter]sticker" "1" } - "crate_sticker_pack_kat2014_02" + "rio2022_contents_signature0_boltz_4" { - "crate_sticker_pack_kat2014_02_rare" "1" - "crate_sticker_pack_kat2014_02_mythical" "1" - "crate_sticker_pack_kat2014_02_legendary" "1" + "[rio2022_signature_boltz_4]sticker" "1" } - "crate_sticker_pack_dhw2014_01_mythical" + "rio2022_contents_signature1_boltz_4" { - "[dhw2014_fnatic_holo]sticker" "1" - "[dhw2014_cloud9_holo]sticker" "1" - "[dhw2014_virtuspro_holo]sticker" "1" - "[dhw2014_ninjasinpyjamas_holo]sticker" "1" - "[dhw2014_navi_holo]sticker" "1" - "[dhw2014_dignitas_holo]sticker" "1" + "[rio2022_signature_boltz_4_glitter]sticker" "1" } - "crate_sticker_pack_dhw2014_01_legendary" + "rio2022_contents_signature0_vini_4" { - "[dhw2014_fnatic_foil]sticker" "1" - "[dhw2014_cloud9_foil]sticker" "1" - "[dhw2014_virtuspro_foil]sticker" "1" - "[dhw2014_ninjasinpyjamas_foil]sticker" "1" - "[dhw2014_navi_foil]sticker" "1" - "[dhw2014_dignitas_foil]sticker" "1" - "[dhw2014_dhw_foil]sticker" "1" + "[rio2022_signature_vini_4]sticker" "1" } - "crate_sticker_pack_dhw2014_01" + "rio2022_contents_signature1_vini_4" { - "crate_sticker_pack_dhw2014_01_mythical" "1" - "crate_sticker_pack_dhw2014_01_legendary" "1" + "[rio2022_signature_vini_4_glitter]sticker" "1" } - "crate_sticker_pack_eslkatowice2015_01_mythical" + "rio2022_contents_signature0_chelo_4" { - "[eslkatowice2015_fnatic_holo]sticker" "1" - "[eslkatowice2015_hellraisers_holo]sticker" "1" - "[eslkatowice2015_navi_holo]sticker" "1" - "[eslkatowice2015_ninjasinpyjamas_holo]sticker" "1" - "[eslkatowice2015_pentasports_holo]sticker" "1" - "[eslkatowice2015_teamenvyus_holo]sticker" "1" - "[eslkatowice2015_teamsolomid_holo]sticker" "1" - "[eslkatowice2015_virtuspro_holo]sticker" "1" + "[rio2022_signature_chelo_4]sticker" "1" } - "crate_sticker_pack_eslkatowice2015_01_legendary" + "rio2022_contents_signature1_chelo_4" { - "[eslkatowice2015_fnatic_foil]sticker" "1" - "[eslkatowice2015_hellraisers_foil]sticker" "1" - "[eslkatowice2015_navi_foil]sticker" "1" - "[eslkatowice2015_ninjasinpyjamas_foil]sticker" "1" - "[eslkatowice2015_pentasports_foil]sticker" "1" - "[eslkatowice2015_teamenvyus_foil]sticker" "1" - "[eslkatowice2015_teamsolomid_foil]sticker" "1" - "[eslkatowice2015_virtuspro_foil]sticker" "1" - "[eslkatowice2015_esl_a_foil]sticker" "1" + "[rio2022_signature_chelo_4_glitter]sticker" "1" } - "crate_sticker_pack_eslkatowice2015_01" + "rio2022_contents_signature0_fl1t_4" { - "crate_sticker_pack_eslkatowice2015_01_mythical" "1" - "crate_sticker_pack_eslkatowice2015_01_legendary" "1" + "[rio2022_signature_fl1t_4]sticker" "1" } - "crate_sticker_pack_eslkatowice2015_02_mythical" + "rio2022_contents_signature1_fl1t_4" { - "[eslkatowice2015_3dmax_holo]sticker" "1" - "[eslkatowice2015_cloud9_holo]sticker" "1" - "[eslkatowice2015_counterlogic_holo]sticker" "1" - "[eslkatowice2015_flipsid3_holo]sticker" "1" - "[eslkatowice2015_keyd_holo]sticker" "1" - "[eslkatowice2015_lgb_holo]sticker" "1" - "[eslkatowice2015_titan_holo]sticker" "1" - "[eslkatowice2015_voxeminor_holo]sticker" "1" + "[rio2022_signature_fl1t_4_glitter]sticker" "1" } - "crate_sticker_pack_eslkatowice2015_02_legendary" + "rio2022_contents_signature0_n0rb3r7_4" { - "[eslkatowice2015_3dmax_foil]sticker" "1" - "[eslkatowice2015_cloud9_foil]sticker" "1" - "[eslkatowice2015_counterlogic_foil]sticker" "1" - "[eslkatowice2015_flipsid3_foil]sticker" "1" - "[eslkatowice2015_keyd_foil]sticker" "1" - "[eslkatowice2015_lgb_foil]sticker" "1" - "[eslkatowice2015_titan_foil]sticker" "1" - "[eslkatowice2015_voxeminor_foil]sticker" "1" - "[eslkatowice2015_esl_a_foil]sticker" "1" + "[rio2022_signature_n0rb3r7_4]sticker" "1" } - "crate_sticker_pack_eslkatowice2015_02" + "rio2022_contents_signature1_n0rb3r7_4" { - "crate_sticker_pack_eslkatowice2015_02_mythical" "1" - "crate_sticker_pack_eslkatowice2015_02_legendary" "1" + "[rio2022_signature_n0rb3r7_4_glitter]sticker" "1" } - "crate_sticker_pack_community01_rare" + "rio2022_contents_signature0_jame_4" { - "[comm01_backstab]sticker" "1" - "[comm01_pocket_bbq]sticker" "1" - "[comm01_bomb_doge]sticker" "1" - "[comm01_burn_them_all]sticker" "1" - "[comm01_llama_cannon]sticker" "1" - "[comm01_other_awp]sticker" "1" - "[comm01_shavemaster]sticker" "1" - "[comm01_skull]sticker" "1" - "[comm01_sneaky_beaky]sticker" "1" - "[comm01_to_b_or_not_to_b]sticker" "1" - "[comm01_death_comes]sticker" "1" + "[rio2022_signature_jame_4]sticker" "1" } - "crate_sticker_pack_community01_mythical" + "rio2022_contents_signature1_jame_4" { - "[comm01_teamwork_holo]sticker" "1" - "[comm01_rekt_holo]sticker" "1" + "[rio2022_signature_jame_4_glitter]sticker" "1" } - "crate_sticker_pack_community01_legendary" + "rio2022_contents_signature0_qikert_4" { - "[comm01_headhunter_foil]sticker" "1" - "[comm01_flammable_foil]sticker" "1" - "[comm01_new_sheriff_foil]sticker" "1" - "[comm01_swag_foil]sticker" "1" + "[rio2022_signature_qikert_4]sticker" "1" } - "crate_sticker_pack_community01" + "rio2022_contents_signature1_qikert_4" { - "crate_sticker_pack_community01_rare" "1" - "crate_sticker_pack_community01_mythical" "1" - "crate_sticker_pack_community01_legendary" "1" + "[rio2022_signature_qikert_4_glitter]sticker" "1" } - "crate_community_3" + "rio2022_contents_signature0_fame_4" { - "crate_community_3_rare" "1" - "crate_community_3_mythical" "1" - "crate_community_3_legendary" "1" - "crate_community_3_ancient" "1" - "community_case_3_unusual" "1" + "[rio2022_signature_fame_4]sticker" "1" } - "crate_sticker_pack_cologne2014_01_rare" + "rio2022_contents_signature1_fame_4" { - "[cologne2014_cloud9]sticker" "1" - "[cologne2014_fnatic]sticker" "1" - "[cologne2014_hellraisers]sticker" "1" - "[cologne2014_ninjasinpyjamas]sticker" "1" - "[cologne2014_teamdignitas]sticker" "1" - "[cologne2014_teamldlc]sticker" "1" - "[cologne2014_virtuspro]sticker" "1" + "[rio2022_signature_fame_4_glitter]sticker" "1" } - "crate_sticker_pack_cologne2014_01_mythical" + "storageunit0_rio2022_generated_contents" { - "[cologne2014_cloud9_holo]sticker" "1" - "[cologne2014_fnatic_holo]sticker" "1" - "[cologne2014_hellraisers_holo]sticker" "1" - "[cologne2014_ninjasinpyjamas_holo]sticker" "1" - "[cologne2014_teamdignitas_holo]sticker" "1" - "[cologne2014_teamldlc_holo]sticker" "1" - "[cologne2014_virtuspro_holo]sticker" "1" + "all_entries_as_additional_drops" "1" + "rio2022_contents_signature0_snappi_2" "1" + "rio2022_contents_signature0_dycha_2" "1" + "rio2022_contents_signature0_maden_2" "1" + "rio2022_contents_signature0_v4lde_2" "1" + "rio2022_contents_signature0_sunpayus_2" "1" + "rio2022_contents_signature0_karrigan_2" "1" + "rio2022_contents_signature0_rain_2" "1" + "rio2022_contents_signature0_twistzz_2" "1" + "rio2022_contents_signature0_ropz_2" "1" + "rio2022_contents_signature0_broky_2" "1" + "rio2022_contents_signature0_cadian_2" "1" + "rio2022_contents_signature0_teses_2" "1" + "rio2022_contents_signature0_sjuush_2" "1" + "rio2022_contents_signature0_jabbi_2" "1" + "rio2022_contents_signature0_stavn_2" "1" + "rio2022_contents_signature0_b1t_2" "1" + "rio2022_contents_signature0_electronic_2" "1" + "rio2022_contents_signature0_sdy_2" "1" + "rio2022_contents_signature0_perfecto_2" "1" + "rio2022_contents_signature0_s1mple_2" "1" + "rio2022_contents_signature0_es3tag_2" "1" + "rio2022_contents_signature0_aleksib_2" "1" + "rio2022_contents_signature0_rez_2" "1" + "rio2022_contents_signature0_hampus_2" "1" + "rio2022_contents_signature0_brollan_2" "1" + "rio2022_contents_signature0_slaxz_2" "1" + "rio2022_contents_signature0_launx_2" "1" + "rio2022_contents_signature0_refrezh_2" "1" + "rio2022_contents_signature0_staehr_2" "1" + "rio2022_contents_signature0_zyphon_2" "1" + "rio2022_contents_signature0_yekindar_2" "1" + "rio2022_contents_signature0_osee_2" "1" + "rio2022_contents_signature0_nitro_2" "1" + "rio2022_contents_signature0_naf_2" "1" + "rio2022_contents_signature0_elige_2" "1" + "rio2022_contents_signature0_chopper_2" "1" + "rio2022_contents_signature0_magixx_2" "1" + "rio2022_contents_signature0_patsi_2" "1" + "rio2022_contents_signature0_s1ren_2" "1" + "rio2022_contents_signature0_w0nderful_2" "1" + "rio2022_contents_signature0_nqz_1" "1" + "rio2022_contents_signature0_dav1deus_1" "1" + "rio2022_contents_signature0_max_1" "1" + "rio2022_contents_signature0_dgt_1" "1" + "rio2022_contents_signature0_buda_1" "1" + "rio2022_contents_signature0_gxx_1" "1" + "rio2022_contents_signature0_sener1_1" "1" + "rio2022_contents_signature0_juanflatroo_1" "1" + "rio2022_contents_signature0_rigon_1" "1" + "rio2022_contents_signature0_sinnopsyy_1" "1" + "rio2022_contents_signature0_faven_1" "1" + "rio2022_contents_signature0_krimbo_1" "1" + "rio2022_contents_signature0_k1to_1" "1" + "rio2022_contents_signature0_tabsen_1" "1" + "rio2022_contents_signature0_syrson_1" "1" + "rio2022_contents_signature0_sh1ro_1" "1" + "rio2022_contents_signature0_nafany_1" "1" + "rio2022_contents_signature0_ax1le_1" "1" + "rio2022_contents_signature0_interz_1" "1" + "rio2022_contents_signature0_hobbit_1" "1" + "rio2022_contents_signature0_autimatic_1" "1" + "rio2022_contents_signature0_nealan_1" "1" + "rio2022_contents_signature0_brehze_1" "1" + "rio2022_contents_signature0_hext_1" "1" + "rio2022_contents_signature0_cerq_1" "1" + "rio2022_contents_signature0_frozen_1" "1" + "rio2022_contents_signature0_dexter_1" "1" + "rio2022_contents_signature0_jdc_1" "1" + "rio2022_contents_signature0_torzsi_1" "1" + "rio2022_contents_signature0_xertion_1" "1" + "rio2022_contents_signature0_nexa_1" "1" + "rio2022_contents_signature0_neofrag_1" "1" + "rio2022_contents_signature0_flamez_1" "1" + "rio2022_contents_signature0_degster_1" "1" + "rio2022_contents_signature0_f1ku_1" "1" + "rio2022_contents_signature0_dupreeh_1" "1" + "rio2022_contents_signature0_magisk_1" "1" + "rio2022_contents_signature0_apex_1" "1" + "rio2022_contents_signature0_spinx_1" "1" + "rio2022_contents_signature0_zywoo_1" "1" + "rio2022_contents_signature0_taco_4" "1" + "rio2022_contents_signature0_coldzera_4" "1" + "rio2022_contents_signature0_try_4" "1" + "rio2022_contents_signature0_latto_4" "1" + "rio2022_contents_signature0_dumau_4" "1" + "rio2022_contents_signature0_krimz_4" "1" + "rio2022_contents_signature0_mezii_4" "1" + "rio2022_contents_signature0_fashr_4" "1" + "rio2022_contents_signature0_roej_4" "1" + "rio2022_contents_signature0_nicoodoz_4" "1" + "rio2022_contents_signature0_kscerato_4" "1" + "rio2022_contents_signature0_yuurih_4" "1" + "rio2022_contents_signature0_drop_4" "1" + "rio2022_contents_signature0_saffee_4" "1" + "rio2022_contents_signature0_art_4" "1" + "rio2022_contents_signature0_acor_4" "1" + "rio2022_contents_signature0_im_4" "1" + "rio2022_contents_signature0_siuhy_4" "1" + "rio2022_contents_signature0_keoz_4" "1" + "rio2022_contents_signature0_isak_4" "1" + "rio2022_contents_signature0_ins_4" "1" + "rio2022_contents_signature0_vexite_4" "1" + "rio2022_contents_signature0_sico_4" "1" + "rio2022_contents_signature0_liazz_4" "1" + "rio2022_contents_signature0_alistair_4" "1" + "rio2022_contents_signature0_sk0r_4" "1" + "rio2022_contents_signature0_techno4k_4" "1" + "rio2022_contents_signature0_kabal_4" "1" + "rio2022_contents_signature0_blitz_4" "1" + "rio2022_contents_signature0_annihilation_4" "1" + "rio2022_contents_signature0_fallen_4" "1" + "rio2022_contents_signature0_fer_4" "1" + "rio2022_contents_signature0_boltz_4" "1" + "rio2022_contents_signature0_vini_4" "1" + "rio2022_contents_signature0_chelo_4" "1" + "rio2022_contents_signature0_fl1t_4" "1" + "rio2022_contents_signature0_n0rb3r7_4" "1" + "rio2022_contents_signature0_jame_4" "1" + "rio2022_contents_signature0_qikert_4" "1" + "rio2022_contents_signature0_fame_4" "1" + "rio2022_contents_team0_ence" "1" + "rio2022_contents_team0_faze" "1" + "rio2022_contents_team0_hero" "1" + "rio2022_contents_team0_navi" "1" + "rio2022_contents_team0_nip" "1" + "rio2022_contents_team0_spr" "1" + "rio2022_contents_team0_liq" "1" + "rio2022_contents_team0_spir" "1" + "rio2022_contents_team0_nine" "1" + "rio2022_contents_team0_bne" "1" + "rio2022_contents_team0_big" "1" + "rio2022_contents_team0_c9" "1" + "rio2022_contents_team0_evl" "1" + "rio2022_contents_team0_mouz" "1" + "rio2022_contents_team0_og" "1" + "rio2022_contents_team0_vita" "1" + "rio2022_contents_team0_zzn" "1" + "rio2022_contents_team0_fntc" "1" + "rio2022_contents_team0_furi" "1" + "rio2022_contents_team0_gl" "1" + "rio2022_contents_team0_gray" "1" + "rio2022_contents_team0_ihc" "1" + "rio2022_contents_team0_imp" "1" + "rio2022_contents_team0_out" "1" + "rio2022_contents_team0_iem" "1" + } + "storageunit1_rio2022_generated_contents" + { + "all_entries_as_additional_drops" "1" + "rio2022_contents_signature1_snappi_2" "1" + "rio2022_contents_signature1_dycha_2" "1" + "rio2022_contents_signature1_maden_2" "1" + "rio2022_contents_signature1_v4lde_2" "1" + "rio2022_contents_signature1_sunpayus_2" "1" + "rio2022_contents_signature1_karrigan_2" "1" + "rio2022_contents_signature1_rain_2" "1" + "rio2022_contents_signature1_twistzz_2" "1" + "rio2022_contents_signature1_ropz_2" "1" + "rio2022_contents_signature1_broky_2" "1" + "rio2022_contents_signature1_cadian_2" "1" + "rio2022_contents_signature1_teses_2" "1" + "rio2022_contents_signature1_sjuush_2" "1" + "rio2022_contents_signature1_jabbi_2" "1" + "rio2022_contents_signature1_stavn_2" "1" + "rio2022_contents_signature1_b1t_2" "1" + "rio2022_contents_signature1_electronic_2" "1" + "rio2022_contents_signature1_sdy_2" "1" + "rio2022_contents_signature1_perfecto_2" "1" + "rio2022_contents_signature1_s1mple_2" "1" + "rio2022_contents_signature1_es3tag_2" "1" + "rio2022_contents_signature1_aleksib_2" "1" + "rio2022_contents_signature1_rez_2" "1" + "rio2022_contents_signature1_hampus_2" "1" + "rio2022_contents_signature1_brollan_2" "1" + "rio2022_contents_signature1_slaxz_2" "1" + "rio2022_contents_signature1_launx_2" "1" + "rio2022_contents_signature1_refrezh_2" "1" + "rio2022_contents_signature1_staehr_2" "1" + "rio2022_contents_signature1_zyphon_2" "1" + "rio2022_contents_signature1_yekindar_2" "1" + "rio2022_contents_signature1_osee_2" "1" + "rio2022_contents_signature1_nitro_2" "1" + "rio2022_contents_signature1_naf_2" "1" + "rio2022_contents_signature1_elige_2" "1" + "rio2022_contents_signature1_chopper_2" "1" + "rio2022_contents_signature1_magixx_2" "1" + "rio2022_contents_signature1_patsi_2" "1" + "rio2022_contents_signature1_s1ren_2" "1" + "rio2022_contents_signature1_w0nderful_2" "1" + "rio2022_contents_signature1_nqz_1" "1" + "rio2022_contents_signature1_dav1deus_1" "1" + "rio2022_contents_signature1_max_1" "1" + "rio2022_contents_signature1_dgt_1" "1" + "rio2022_contents_signature1_buda_1" "1" + "rio2022_contents_signature1_gxx_1" "1" + "rio2022_contents_signature1_sener1_1" "1" + "rio2022_contents_signature1_juanflatroo_1" "1" + "rio2022_contents_signature1_rigon_1" "1" + "rio2022_contents_signature1_sinnopsyy_1" "1" + "rio2022_contents_signature1_faven_1" "1" + "rio2022_contents_signature1_krimbo_1" "1" + "rio2022_contents_signature1_k1to_1" "1" + "rio2022_contents_signature1_tabsen_1" "1" + "rio2022_contents_signature1_syrson_1" "1" + "rio2022_contents_signature1_sh1ro_1" "1" + "rio2022_contents_signature1_nafany_1" "1" + "rio2022_contents_signature1_ax1le_1" "1" + "rio2022_contents_signature1_interz_1" "1" + "rio2022_contents_signature1_hobbit_1" "1" + "rio2022_contents_signature1_autimatic_1" "1" + "rio2022_contents_signature1_nealan_1" "1" + "rio2022_contents_signature1_brehze_1" "1" + "rio2022_contents_signature1_hext_1" "1" + "rio2022_contents_signature1_cerq_1" "1" + "rio2022_contents_signature1_frozen_1" "1" + "rio2022_contents_signature1_dexter_1" "1" + "rio2022_contents_signature1_jdc_1" "1" + "rio2022_contents_signature1_torzsi_1" "1" + "rio2022_contents_signature1_xertion_1" "1" + "rio2022_contents_signature1_nexa_1" "1" + "rio2022_contents_signature1_neofrag_1" "1" + "rio2022_contents_signature1_flamez_1" "1" + "rio2022_contents_signature1_degster_1" "1" + "rio2022_contents_signature1_f1ku_1" "1" + "rio2022_contents_signature1_dupreeh_1" "1" + "rio2022_contents_signature1_magisk_1" "1" + "rio2022_contents_signature1_apex_1" "1" + "rio2022_contents_signature1_spinx_1" "1" + "rio2022_contents_signature1_zywoo_1" "1" + "rio2022_contents_signature1_taco_4" "1" + "rio2022_contents_signature1_coldzera_4" "1" + "rio2022_contents_signature1_try_4" "1" + "rio2022_contents_signature1_latto_4" "1" + "rio2022_contents_signature1_dumau_4" "1" + "rio2022_contents_signature1_krimz_4" "1" + "rio2022_contents_signature1_mezii_4" "1" + "rio2022_contents_signature1_fashr_4" "1" + "rio2022_contents_signature1_roej_4" "1" + "rio2022_contents_signature1_nicoodoz_4" "1" + "rio2022_contents_signature1_kscerato_4" "1" + "rio2022_contents_signature1_yuurih_4" "1" + "rio2022_contents_signature1_drop_4" "1" + "rio2022_contents_signature1_saffee_4" "1" + "rio2022_contents_signature1_art_4" "1" + "rio2022_contents_signature1_acor_4" "1" + "rio2022_contents_signature1_im_4" "1" + "rio2022_contents_signature1_siuhy_4" "1" + "rio2022_contents_signature1_keoz_4" "1" + "rio2022_contents_signature1_isak_4" "1" + "rio2022_contents_signature1_ins_4" "1" + "rio2022_contents_signature1_vexite_4" "1" + "rio2022_contents_signature1_sico_4" "1" + "rio2022_contents_signature1_liazz_4" "1" + "rio2022_contents_signature1_alistair_4" "1" + "rio2022_contents_signature1_sk0r_4" "1" + "rio2022_contents_signature1_techno4k_4" "1" + "rio2022_contents_signature1_kabal_4" "1" + "rio2022_contents_signature1_blitz_4" "1" + "rio2022_contents_signature1_annihilation_4" "1" + "rio2022_contents_signature1_fallen_4" "1" + "rio2022_contents_signature1_fer_4" "1" + "rio2022_contents_signature1_boltz_4" "1" + "rio2022_contents_signature1_vini_4" "1" + "rio2022_contents_signature1_chelo_4" "1" + "rio2022_contents_signature1_fl1t_4" "1" + "rio2022_contents_signature1_n0rb3r7_4" "1" + "rio2022_contents_signature1_jame_4" "1" + "rio2022_contents_signature1_qikert_4" "1" + "rio2022_contents_signature1_fame_4" "1" + "rio2022_contents_team1_ence" "1" + "rio2022_contents_team1_faze" "1" + "rio2022_contents_team1_hero" "1" + "rio2022_contents_team1_navi" "1" + "rio2022_contents_team1_nip" "1" + "rio2022_contents_team1_spr" "1" + "rio2022_contents_team1_liq" "1" + "rio2022_contents_team1_spir" "1" + "rio2022_contents_team1_nine" "1" + "rio2022_contents_team1_bne" "1" + "rio2022_contents_team1_big" "1" + "rio2022_contents_team1_c9" "1" + "rio2022_contents_team1_evl" "1" + "rio2022_contents_team1_mouz" "1" + "rio2022_contents_team1_og" "1" + "rio2022_contents_team1_vita" "1" + "rio2022_contents_team1_zzn" "1" + "rio2022_contents_team1_fntc" "1" + "rio2022_contents_team1_furi" "1" + "rio2022_contents_team1_gl" "1" + "rio2022_contents_team1_gray" "1" + "rio2022_contents_team1_ihc" "1" + "rio2022_contents_team1_imp" "1" + "rio2022_contents_team1_out" "1" + "rio2022_contents_team1_iem" "1" + } + "storageunit0_rio2022_self_opening_purchase" + { + "casket" "1" + } + "storageunit1_rio2022_self_opening_purchase" + { + "casket" "1" + } + "crate_rio2022_promo_de_inferno" + { + "set_inferno_2" "1" + } + "crate_rio2022_promo_de_mirage" + { + "set_mirage_2021" "1" + } + "crate_rio2022_promo_de_dust2" + { + "set_dust_2_2021" "1" + } + "crate_rio2022_promo_de_overpass" + { + "set_overpass" "1" } - "crate_sticker_pack_cologne2014_01_legendary" + "crate_rio2022_promo_de_ancient" { - "[cologne2014_esl_a]sticker" "1" + "set_op10_ancient" "1" } - "crate_sticker_pack_cologne2014_01" + "crate_rio2022_promo_de_nuke" { - "crate_sticker_pack_cologne2014_01_rare" "1" - "crate_sticker_pack_cologne2014_01_mythical" "1" - "crate_sticker_pack_cologne2014_01_legendary" "1" + "set_nuke_2" "1" } - "crate_sticker_pack_cologne2014_02_rare" + "crate_rio2022_promo_de_vertigo" { - "[cologne2014_copenhagenwolves]sticker" "1" - "[cologne2014_datteam]sticker" "1" - "[cologne2014_epsilonesports]sticker" "1" - "[cologne2014_ibuypower]sticker" "1" - "[cologne2014_londonconspiracy]sticker" "1" - "[cologne2014_navi]sticker" "1" - "[cologne2014_titan]sticker" "1" - "[cologne2014_voxeminor]sticker" "1" - "[cologne2014_wolf]sticker" "1" + "set_vertigo_2021" "1" } - "crate_sticker_pack_cologne2014_02_mythical" + } + "items" + { + "4850" { - "[cologne2014_copenhagenwolves_holo]sticker" "1" - "[cologne2014_datteam_holo]sticker" "1" - "[cologne2014_epsilonesports_holo]sticker" "1" - "[cologne2014_ibuypower_holo]sticker" "1" - "[cologne2014_londonconspiracy_holo]sticker" "1" - "[cologne2014_navi_holo]sticker" "1" - "[cologne2014_titan_holo]sticker" "1" - "[cologne2014_voxeminor_holo]sticker" "1" - "[cologne2014_wolf_holo]sticker" "1" + "item_name" "#CSGO_TournamentPass_rio2022" + "name" "tournament_pass_rio2022" + "item_description" "#CSGO_TournamentPass_rio2022_Desc" + "image_inventory" "econ/status_icons/iem_pickem_2022_pass" + "prefab" "rio2022_tournament_pass_prefab rio2022_tournament_steamtv_items" } - "crate_sticker_pack_cologne2014_02_legendary" + "4855" { - "[cologne2014_esl_b]sticker" "1" + "item_name" "#CSGO_TournamentPass_rio2022_pack" + "name" "tournament_pass_rio2022_pack" + "item_description" "#CSGO_TournamentPass_rio2022_pack_Desc" + "image_inventory" "econ/status_icons/iem_pickem_2022_pass_pack" + "prefab" "rio2022_tournament_pass_prefab rio2022_tournament_steamtv_items" } - "crate_sticker_pack_cologne2014_02" + "4856" { - "crate_sticker_pack_cologne2014_02_rare" "1" - "crate_sticker_pack_cologne2014_02_mythical" "1" - "crate_sticker_pack_cologne2014_02_legendary" "1" + "item_name" "#CSGO_TournamentPass_rio2022_charge" + "name" "tournament_pass_rio2022_charge" + "item_description" "#CSGO_TournamentPass_rio2022_charge_Desc" + "image_inventory" "econ/status_icons/iem_pickem_2022_pass_charge" + "prefab" "rio2022_tournament_pass_prefab" + "attributes" + { + "cannot trade" "1" + } } - "crate_esl14_promo_de_dust2" + "4851" { - "set_dust_2" "1" + "name" "tournament_journal_rio2022" + "item_name" "#CSGO_TournamentJournal_rio2022" + "prefab" "rio2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/iem_pickem_2022_bronze" + "attributes" + { + "upgrade level" "0" + "upgrade threshold" "3" + "pedestal display model" "models/inventory_items/iem_pickem_2022_bronze.mdl" + } } - "crate_esl14_promo_de_inferno" + "4852" { - "set_inferno" "1" + "name" "tournament_journal_rio2022_silver" + "item_name" "#CSGO_TournamentJournal_rio2022_Silver" + "prefab" "rio2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/iem_pickem_2022_silver" + "attributes" + { + "upgrade level" "1" + "upgrade threshold" "6" + "pedestal display model" "models/inventory_items/iem_pickem_2022_silver.mdl" + } } - "crate_esl14_promo_de_mirage" + "4853" { - "set_mirage" "1" + "name" "tournament_journal_rio2022_gold" + "item_name" "#CSGO_TournamentJournal_rio2022_Gold" + "prefab" "rio2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/iem_pickem_2022_gold" + "attributes" + { + "upgrade level" "2" + "upgrade threshold" "9" + "pedestal display model" "models/inventory_items/iem_pickem_2022_gold.mdl" + } } - "crate_esl14_promo_de_nuke" + "4854" { - "set_nuke" "1" + "name" "tournament_journal_rio2022_crystal" + "item_name" "#CSGO_TournamentJournal_rio2022_Crystal" + "prefab" "rio2022_tournament_journal_prefab" + "image_inventory" "econ/status_icons/iem_pickem_2022_crystal" + "attributes" + { + "upgrade level" "3" + "pedestal display model" "models/inventory_items/iem_pickem_2022_crystal.mdl" + } } - "crate_esl14_promo_de_cache" + "4857" { - "set_cache" "1" + "item_name" "#CSGO_crate_sticker_pack_rio2022_legends" + "name" "crate_sticker_pack_rio2022_legends" + "item_description" "#CSGO_crate_sticker_pack_rio2022_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rio2022_legends" + "prefab" "rio2022_sticker_capsule_prefab rio2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "359" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_rio2022_legends_collection" + "tag_text" "#CSGO_crate_sticker_pack_rio2022_legends_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "crate_esl14_promo_de_cbble" + "4858" { - "set_cobblestone" "1" + "item_name" "#CSGO_crate_sticker_pack_rio2022_challengers" + "name" "crate_sticker_pack_rio2022_challengers" + "item_description" "#CSGO_crate_sticker_pack_rio2022_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rio2022_challengers" + "prefab" "rio2022_sticker_capsule_prefab rio2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "360" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_rio2022_challengers_collection" + "tag_text" "#CSGO_crate_sticker_pack_rio2022_challengers_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "crate_esl14_promo_de_overpass" + "4859" { - "set_overpass" "1" + "item_name" "#CSGO_crate_sticker_pack_rio2022_contenders" + "name" "crate_sticker_pack_rio2022_contenders" + "item_description" "#CSGO_crate_sticker_pack_rio2022_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rio2022_contenders" + "prefab" "rio2022_sticker_capsule_prefab rio2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "361" + } + } + "tags" + { + "StickerCapsule" + { + "tag_value" "crate_sticker_pack_rio2022_contenders_collection" + "tag_text" "#CSGO_crate_sticker_pack_rio2022_contenders_tag" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" + } + } } - "crate_dhw14_promo_de_dust2" + "4867" { - "set_dust_2" "1" + "item_name" "#CSGO_crate_signature_pack_rio2022_group_legends" + "name" "crate_signature_pack_rio2022_group_legends" + "item_description" "#CSGO_crate_signature_pack_rio2022_group_legends_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rio2022_group_legends" + "prefab" "rio2022_signature_capsule_prefab rio2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "369" + } + } } - "crate_dhw14_promo_de_inferno" + "4868" { - "set_inferno" "1" + "item_name" "#CSGO_crate_signature_pack_rio2022_group_challengers" + "name" "crate_signature_pack_rio2022_group_challengers" + "item_description" "#CSGO_crate_signature_pack_rio2022_group_challengers_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rio2022_group_challengers" + "prefab" "rio2022_signature_capsule_prefab rio2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "370" + } + } } - "crate_dhw14_promo_de_mirage" + "4869" { - "set_mirage" "1" + "item_name" "#CSGO_crate_signature_pack_rio2022_group_contenders" + "name" "crate_signature_pack_rio2022_group_contenders" + "item_description" "#CSGO_crate_signature_pack_rio2022_group_contenders_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rio2022_group_contenders" + "prefab" "rio2022_signature_capsule_prefab rio2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "371" + } + } } - "crate_dhw14_promo_de_nuke" + "4870" { - "set_nuke" "1" + "item_name" "#CSGO_crate_signature_pack_rio2022_group_champions" + "name" "crate_signature_pack_rio2022_group_champions" + "item_description" "#CSGO_crate_signature_pack_rio2022_group_champions_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_rio2022_group_champions" + "prefab" "rio2022_signature_capsule_prefab rio2022_sellable_item_with_payment_rules" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "372" + } + } } - "crate_dhw14_promo_de_cache" + "4871" { - "set_cache" "1" + "name" "storageunit0_rio2022" + "item_name" "#CSGO_storageunit0_rio2022" + "item_description" "#CSGO_storageunit0_rio2022_desc" + "image_inventory" "econ/tools/casket_rio2022_0" + "loot_list_name" "storageunit0_rio2022_generated_contents" + "prefab" "weapon_case_base rio2022_sellable_item_with_payment_rules" + "item_type" "self_opening_purchase" + "attributes" + { + "cannot trade" "1" + "tournament event id" "20" + } } - "crate_dhw14_promo_de_cbble" + "4872" { - "set_cobblestone" "1" + "name" "storageunit1_rio2022" + "item_name" "#CSGO_storageunit1_rio2022" + "item_description" "#CSGO_storageunit1_rio2022_desc" + "image_inventory" "econ/tools/casket_rio2022_1" + "loot_list_name" "storageunit1_rio2022_generated_contents" + "prefab" "weapon_case_base rio2022_sellable_item_with_payment_rules" + "item_type" "self_opening_purchase" + "attributes" + { + "cannot trade" "1" + "tournament event id" "20" + } } - "crate_dhw14_promo_de_overpass" + "4860" { - "set_overpass" "1" + "item_name" "#CSGO_crate_rio2022_promo_de_inferno" + "name" "crate_rio2022_promo_de_inferno" + "image_inventory" "econ/weapon_cases/crate_rio2022_promo_de_inferno" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "362" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_inferno_2" + "tag_text" "#CSGO_set_inferno_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "crate_eslkatowice2015_promo_de_dust2" + "4861" { - "set_dust_2" "1" + "item_name" "#CSGO_crate_rio2022_promo_de_mirage" + "name" "crate_rio2022_promo_de_mirage" + "image_inventory" "econ/weapon_cases/crate_rio2022_promo_de_mirage" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "363" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_mirage_2021" + "tag_text" "#CSGO_set_mirage_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "crate_eslkatowice2015_promo_de_inferno" + "4862" { - "set_inferno" "1" + "item_name" "#CSGO_crate_rio2022_promo_de_dust2" + "name" "crate_rio2022_promo_de_dust2" + "image_inventory" "econ/weapon_cases/crate_rio2022_promo_de_dust2" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "364" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_dust_2_2021" + "tag_text" "#CSGO_set_dust_2_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "crate_eslkatowice2015_promo_de_mirage" + "4863" { - "set_mirage" "1" + "item_name" "#CSGO_crate_rio2022_promo_de_overpass" + "name" "crate_rio2022_promo_de_overpass" + "image_inventory" "econ/weapon_cases/crate_rio2022_promo_de_overpass" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "365" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_overpass" + "tag_text" "#CSGO_set_overpass" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "crate_eslkatowice2015_promo_de_nuke" + "4864" { - "set_nuke" "1" + "item_name" "#CSGO_crate_rio2022_promo_de_ancient" + "name" "crate_rio2022_promo_de_ancient" + "image_inventory" "econ/weapon_cases/crate_rio2022_promo_de_ancient" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "366" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_op10_ancient" + "tag_text" "#CSGO_set_op10_ancient" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "crate_eslkatowice2015_promo_de_cache" + "4865" { - "set_cache" "1" + "item_name" "#CSGO_crate_rio2022_promo_de_nuke" + "name" "crate_rio2022_promo_de_nuke" + "image_inventory" "econ/weapon_cases/crate_rio2022_promo_de_nuke" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "367" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_nuke_2" + "tag_text" "#CSGO_set_nuke_2" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "crate_eslkatowice2015_promo_de_cbble" + "4866" { - "set_cobblestone" "1" + "item_name" "#CSGO_crate_rio2022_promo_de_vertigo" + "name" "crate_rio2022_promo_de_vertigo" + "image_inventory" "econ/weapon_cases/crate_rio2022_promo_de_vertigo" + "prefab" "weapon_case_souvenirpkg" + "attributes" + { + "set supply crate series" + { + "attribute_class" "supply_crate_series" + "value" "368" + } + "tournament event id" + { + "attribute_class" "tournament_event_id" + "value" "20" + } + } + "tags" + { + "ItemSet" + { + "tag_value" "set_vertigo_2021" + "tag_text" "#CSGO_set_vertigo_2021" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" + } + } } - "crate_eslkatowice2015_promo_de_overpass" + } + "sticker_kits" + { + "5961" { - "set_overpass" "1" + "name" "rio2022_team_ence" + "item_name" "#StickerKit_rio2022_team_ence" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ence" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "84" } - "quest_reward_crate_vanguard" + "5962" { - "crate_operation_vanguard" "1" + "name" "rio2022_team_ence_glitter" + "item_name" "#StickerKit_rio2022_team_ence_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ence_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "84" } - "dhw2014_fnatic_rare" + "5963" { - "[dhw2014_fnatic]sticker" "1" + "name" "rio2022_team_ence_holo" + "item_name" "#StickerKit_rio2022_team_ence_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ence_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "84" } - "dhw2014_cloud9_rare" + "5964" { - "[dhw2014_cloud9]sticker" "1" + "name" "rio2022_team_ence_gold" + "item_name" "#StickerKit_rio2022_team_ence_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ence_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "84" } - "dhw2014_virtuspro_rare" + "5965" { - "[dhw2014_virtuspro]sticker" "1" + "name" "rio2022_team_faze" + "item_name" "#StickerKit_rio2022_team_faze" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/faze" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "61" } - "dhw2014_ninjasinpyjamas_rare" + "5966" { - "[dhw2014_ninjasinpyjamas]sticker" "1" + "name" "rio2022_team_faze_glitter" + "item_name" "#StickerKit_rio2022_team_faze_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/faze_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "61" } - "dhw2014_navi_rare" + "5967" { - "[dhw2014_navi]sticker" "1" + "name" "rio2022_team_faze_holo" + "item_name" "#StickerKit_rio2022_team_faze_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/faze_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "61" } - "dhw2014_dignitas_rare" + "5968" { - "[dhw2014_dignitas]sticker" "1" + "name" "rio2022_team_faze_gold" + "item_name" "#StickerKit_rio2022_team_faze_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/faze_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "61" } - "dhw2014_bravadogaming_rare" + "5969" { - "[dhw2014_bravadogaming]sticker" "1" + "name" "rio2022_team_hero" + "item_name" "#StickerKit_rio2022_team_hero" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/hero" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "95" } - "dhw2014_escgaming_rare" + "5970" { - "[dhw2014_escgaming]sticker" "1" + "name" "rio2022_team_hero_glitter" + "item_name" "#StickerKit_rio2022_team_hero_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/hero_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "95" } - "dhw2014_hellraisers_rare" + "5971" { - "[dhw2014_hellraisers]sticker" "1" + "name" "rio2022_team_hero_holo" + "item_name" "#StickerKit_rio2022_team_hero_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/hero_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "95" } - "dhw2014_ibuypower_rare" + "5972" { - "[dhw2014_ibuypower]sticker" "1" + "name" "rio2022_team_hero_gold" + "item_name" "#StickerKit_rio2022_team_hero_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/hero_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "95" } - "dhw2014_pentasports_rare" + "5973" { - "[dhw2014_pentasports]sticker" "1" + "name" "rio2022_team_navi" + "item_name" "#StickerKit_rio2022_team_navi" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/navi" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "12" } - "dhw2014_planetkeydynamics_rare" + "5974" { - "[dhw2014_planetkeydynamics]sticker" "1" + "name" "rio2022_team_navi_glitter" + "item_name" "#StickerKit_rio2022_team_navi_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/navi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "12" } - "dhw2014_teamldlc_rare" + "5975" { - "[dhw2014_teamldlc]sticker" "1" + "name" "rio2022_team_navi_holo" + "item_name" "#StickerKit_rio2022_team_navi_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/navi_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "12" } - "dhw2014_myxmg_rare" + "5976" { - "[dhw2014_myxmg]sticker" "1" + "name" "rio2022_team_navi_gold" + "item_name" "#StickerKit_rio2022_team_navi_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/navi_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "12" } - "dhw2014_dhw_rare" + "5977" { - "[dhw2014_dhw]sticker" "1" + "name" "rio2022_team_nip" + "item_name" "#StickerKit_rio2022_team_nip" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nip" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "1" } - "dhw2014_3dmax_rare" + "5978" { - "[dhw2014_3dmax]sticker" "1" + "name" "rio2022_team_nip_glitter" + "item_name" "#StickerKit_rio2022_team_nip_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nip_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "1" } - "dhw2014_copenhagenwolves_rare" + "5979" { - "[dhw2014_copenhagenwolves]sticker" "1" + "name" "rio2022_team_nip_holo" + "item_name" "#StickerKit_rio2022_team_nip_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nip_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "1" } - "dhw2014_datteam_rare" + "5980" { - "[dhw2014_datteam]sticker" "1" + "name" "rio2022_team_nip_gold" + "item_name" "#StickerKit_rio2022_team_nip_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nip_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "1" } - "dhw2014_londonconspiracy_rare" + "5981" { - "[dhw2014_londonconspiracy]sticker" "1" + "name" "rio2022_team_spr" + "item_name" "#StickerKit_rio2022_team_spr" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spr" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "72" } - "dhw2014_mousesports_rare" + "5982" { - "[dhw2014_mousesports]sticker" "1" + "name" "rio2022_team_spr_glitter" + "item_name" "#StickerKit_rio2022_team_spr_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spr_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "72" } - "dhw2014_flipsid3_rare" + "5983" { - "[dhw2014_flipsid3]sticker" "1" + "name" "rio2022_team_spr_holo" + "item_name" "#StickerKit_rio2022_team_spr_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spr_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "72" } - "eslkatowice2015_3dmax_rare" + "5984" { - "[eslkatowice2015_3dmax]sticker" "1" + "name" "rio2022_team_spr_gold" + "item_name" "#StickerKit_rio2022_team_spr_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spr_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "72" } - "eslkatowice2015_cloud9_rare" + "5985" { - "[eslkatowice2015_cloud9]sticker" "1" + "name" "rio2022_team_liq" + "item_name" "#StickerKit_rio2022_team_liq" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/liq" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "48" } - "eslkatowice2015_counterlogic_rare" + "5986" { - "[eslkatowice2015_counterlogic]sticker" "1" + "name" "rio2022_team_liq_glitter" + "item_name" "#StickerKit_rio2022_team_liq_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/liq_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "48" } - "eslkatowice2015_flipsid3_rare" + "5987" { - "[eslkatowice2015_flipsid3]sticker" "1" + "name" "rio2022_team_liq_holo" + "item_name" "#StickerKit_rio2022_team_liq_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/liq_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "48" } - "eslkatowice2015_fnatic_rare" + "5988" { - "[eslkatowice2015_fnatic]sticker" "1" + "name" "rio2022_team_liq_gold" + "item_name" "#StickerKit_rio2022_team_liq_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/liq_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "48" } - "eslkatowice2015_hellraisers_rare" + "5989" { - "[eslkatowice2015_hellraisers]sticker" "1" + "name" "rio2022_team_spir" + "item_name" "#StickerKit_rio2022_team_spir" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spir" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "81" } - "eslkatowice2015_keyd_rare" + "5990" { - "[eslkatowice2015_keyd]sticker" "1" + "name" "rio2022_team_spir_glitter" + "item_name" "#StickerKit_rio2022_team_spir_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spir_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "81" } - "eslkatowice2015_lgb_rare" + "5991" { - "[eslkatowice2015_lgb]sticker" "1" + "name" "rio2022_team_spir_holo" + "item_name" "#StickerKit_rio2022_team_spir_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spir_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "81" } - "eslkatowice2015_navi_rare" + "5992" { - "[eslkatowice2015_navi]sticker" "1" + "name" "rio2022_team_spir_gold" + "item_name" "#StickerKit_rio2022_team_spir_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/spir_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "81" } - "eslkatowice2015_ninjasinpyjamas_rare" + "5993" { - "[eslkatowice2015_ninjasinpyjamas]sticker" "1" + "name" "rio2022_team_nine" + "item_name" "#StickerKit_rio2022_team_nine" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nine" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "112" } - "eslkatowice2015_pentasports_rare" + "5994" { - "[eslkatowice2015_pentasports]sticker" "1" + "name" "rio2022_team_nine_glitter" + "item_name" "#StickerKit_rio2022_team_nine_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nine_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "112" } - "eslkatowice2015_teamenvyus_rare" + "5995" { - "[eslkatowice2015_teamenvyus]sticker" "1" + "name" "rio2022_team_nine_holo" + "item_name" "#StickerKit_rio2022_team_nine_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nine_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "112" } - "eslkatowice2015_teamsolomid_rare" + "5996" { - "[eslkatowice2015_teamsolomid]sticker" "1" + "name" "rio2022_team_nine_gold" + "item_name" "#StickerKit_rio2022_team_nine_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/nine_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "112" } - "eslkatowice2015_titan_rare" + "5997" { - "[eslkatowice2015_titan]sticker" "1" + "name" "rio2022_team_bne" + "item_name" "#StickerKit_rio2022_team_bne" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/bne" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "114" } - "eslkatowice2015_virtuspro_rare" + "5998" { - "[eslkatowice2015_virtuspro]sticker" "1" + "name" "rio2022_team_bne_glitter" + "item_name" "#StickerKit_rio2022_team_bne_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/bne_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "114" } - "eslkatowice2015_voxeminor_rare" + "5999" { - "[eslkatowice2015_voxeminor]sticker" "1" + "name" "rio2022_team_bne_holo" + "item_name" "#StickerKit_rio2022_team_bne_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/bne_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "114" } - "eslkatowice2015_esl_a_rare" + "6000" { - "[eslkatowice2015_esl_a]sticker" "1" + "name" "rio2022_team_bne_gold" + "item_name" "#StickerKit_rio2022_team_bne_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/bne_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "114" } - "eslcologne2015_rare_fnatic" + "6001" { - "[eslcologne2015_team_fnatic]sticker" "1" + "name" "rio2022_team_big" + "item_name" "#StickerKit_rio2022_team_big" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/big" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "69" } - "eslcologne2015_rare_virtuspro" + "6002" { - "[eslcologne2015_team_virtuspro]sticker" "1" + "name" "rio2022_team_big_glitter" + "item_name" "#StickerKit_rio2022_team_big_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/big_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "69" } - "eslcologne2015_rare_mousesports" + "6003" { - "[eslcologne2015_team_mousesports]sticker" "1" + "name" "rio2022_team_big_holo" + "item_name" "#StickerKit_rio2022_team_big_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/big_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "69" } - "eslcologne2015_rare_navi" + "6004" { - "[eslcologne2015_team_navi]sticker" "1" + "name" "rio2022_team_big_gold" + "item_name" "#StickerKit_rio2022_team_big_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/big_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "69" } - "eslcologne2015_rare_renegades" + "6005" { - "[eslcologne2015_team_renegades]sticker" "1" + "name" "rio2022_team_c9" + "item_name" "#StickerKit_rio2022_team_c9" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/c9" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "33" } - "eslcologne2015_rare_kinguin" + "6006" { - "[eslcologne2015_team_kinguin]sticker" "1" + "name" "rio2022_team_c9_glitter" + "item_name" "#StickerKit_rio2022_team_c9_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/c9_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "33" } - "eslcologne2015_rare_ebettle" + "6007" { - "[eslcologne2015_team_ebettle]sticker" "1" + "name" "rio2022_team_c9_holo" + "item_name" "#StickerKit_rio2022_team_c9_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/c9_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "33" } - "eslcologne2015_rare_cloud9" + "6008" { - "[eslcologne2015_team_cloud9]sticker" "1" + "name" "rio2022_team_c9_gold" + "item_name" "#StickerKit_rio2022_team_c9_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/c9_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "33" } - "eslcologne2015_rare_ninjasinpyjamas" + "6009" { - "[eslcologne2015_team_ninjasinpyjamas]sticker" "1" + "name" "rio2022_team_evl" + "item_name" "#StickerKit_rio2022_team_evl" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/evl" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "98" } - "eslcologne2015_rare_envyus" + "6010" { - "[eslcologne2015_team_envyus]sticker" "1" + "name" "rio2022_team_evl_glitter" + "item_name" "#StickerKit_rio2022_team_evl_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/evl_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "98" } - "eslcologne2015_rare_luminositygaming" + "6011" { - "[eslcologne2015_team_luminositygaming]sticker" "1" + "name" "rio2022_team_evl_holo" + "item_name" "#StickerKit_rio2022_team_evl_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/evl_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "98" } - "eslcologne2015_rare_solomid" + "6012" { - "[eslcologne2015_team_solomid]sticker" "1" + "name" "rio2022_team_evl_gold" + "item_name" "#StickerKit_rio2022_team_evl_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/evl_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "98" } - "eslcologne2015_rare_teamimmunity" + "6013" { - "[eslcologne2015_team_teamimmunity]sticker" "1" + "name" "rio2022_team_mouz" + "item_name" "#StickerKit_rio2022_team_mouz" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/mouz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "106" } - "eslcologne2015_rare_flipside" + "6014" { - "[eslcologne2015_team_flipside]sticker" "1" + "name" "rio2022_team_mouz_glitter" + "item_name" "#StickerKit_rio2022_team_mouz_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/mouz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "106" } - "eslcologne2015_rare_titan" + "6015" { - "[eslcologne2015_team_titan]sticker" "1" + "name" "rio2022_team_mouz_holo" + "item_name" "#StickerKit_rio2022_team_mouz_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/mouz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "106" } - "eslcologne2015_rare_clg" + "6016" { - "[eslcologne2015_team_clg]sticker" "1" + "name" "rio2022_team_mouz_gold" + "item_name" "#StickerKit_rio2022_team_mouz_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/mouz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "106" } - "eslcologne2015_rare_esl" + "6017" { - "[eslcologne2015_team_esl]sticker" "1" + "name" "rio2022_team_og" + "item_name" "#StickerKit_rio2022_team_og" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/og" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "96" } - "crate_sticker_pack_eslcologne2015_legends_rare" + "6018" { - "[eslcologne2015_team_fnatic]sticker" "1" - "[eslcologne2015_team_virtuspro]sticker" "1" - "[eslcologne2015_team_mousesports]sticker" "1" - "[eslcologne2015_team_navi]sticker" "1" - "[eslcologne2015_team_ninjasinpyjamas]sticker" "1" - "[eslcologne2015_team_envyus]sticker" "1" - "[eslcologne2015_team_luminositygaming]sticker" "1" - "[eslcologne2015_team_solomid]sticker" "1" - "[eslcologne2015_team_esl]sticker" "1" + "name" "rio2022_team_og_glitter" + "item_name" "#StickerKit_rio2022_team_og_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/og_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "96" } - "crate_sticker_pack_eslcologne2015_legends_legendary" + "6019" { - "[eslcologne2015_team_fnatic_foil]sticker" "1" - "[eslcologne2015_team_virtuspro_foil]sticker" "1" - "[eslcologne2015_team_mousesports_foil]sticker" "1" - "[eslcologne2015_team_navi_foil]sticker" "1" - "[eslcologne2015_team_ninjasinpyjamas_foil]sticker" "1" - "[eslcologne2015_team_envyus_foil]sticker" "1" - "[eslcologne2015_team_luminositygaming_foil]sticker" "1" - "[eslcologne2015_team_solomid_foil]sticker" "1" - "[eslcologne2015_team_esl_foil]sticker" "1" + "name" "rio2022_team_og_holo" + "item_name" "#StickerKit_rio2022_team_og_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/og_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "96" } - "crate_sticker_pack_eslcologne2015_legends" + "6020" { - "crate_sticker_pack_eslcologne2015_legends_legendary" "1" + "name" "rio2022_team_og_gold" + "item_name" "#StickerKit_rio2022_team_og_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/og_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "96" } - "crate_sticker_pack_eslcologne2015_challengers_rare" + "6021" { - "[eslcologne2015_team_renegades]sticker" "1" - "[eslcologne2015_team_kinguin]sticker" "1" - "[eslcologne2015_team_ebettle]sticker" "1" - "[eslcologne2015_team_cloud9]sticker" "1" - "[eslcologne2015_team_teamimmunity]sticker" "1" - "[eslcologne2015_team_flipside]sticker" "1" - "[eslcologne2015_team_titan]sticker" "1" - "[eslcologne2015_team_clg]sticker" "1" + "name" "rio2022_team_vita" + "item_name" "#StickerKit_rio2022_team_vita" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/vita" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "89" } - "crate_sticker_pack_eslcologne2015_challengers_legendary" + "6022" { - "[eslcologne2015_team_renegades_foil]sticker" "1" - "[eslcologne2015_team_kinguin_foil]sticker" "1" - "[eslcologne2015_team_ebettle_foil]sticker" "1" - "[eslcologne2015_team_cloud9_foil]sticker" "1" - "[eslcologne2015_team_teamimmunity_foil]sticker" "1" - "[eslcologne2015_team_flipside_foil]sticker" "1" - "[eslcologne2015_team_titan_foil]sticker" "1" - "[eslcologne2015_team_clg_foil]sticker" "1" - "[eslcologne2015_team_esl_foil]sticker" "1" + "name" "rio2022_team_vita_glitter" + "item_name" "#StickerKit_rio2022_team_vita_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/vita_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "89" } - "crate_sticker_pack_eslcologne2015_challengers" + "6023" { - "crate_sticker_pack_eslcologne2015_challengers_legendary" "1" + "name" "rio2022_team_vita_holo" + "item_name" "#StickerKit_rio2022_team_vita_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/vita_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "89" } - "eslcologne2015_signatures_fnatic" + "6024" { - "[eslcologne2015_signature_pronax]sticker" "1" - "[eslcologne2015_signature_flusha]sticker" "1" - "[eslcologne2015_signature_jw]sticker" "1" - "[eslcologne2015_signature_krimz]sticker" "1" - "[eslcologne2015_signature_olofmeister]sticker" "1" + "name" "rio2022_team_vita_gold" + "item_name" "#StickerKit_rio2022_team_vita_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/vita_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "89" } - "eslcologne2015_signatures_luminositygaming" + "6025" { - "[eslcologne2015_signature_fallen]sticker" "1" - "[eslcologne2015_signature_steel]sticker" "1" - "[eslcologne2015_signature_fer]sticker" "1" - "[eslcologne2015_signature_boltz]sticker" "1" - "[eslcologne2015_signature_coldzera]sticker" "1" + "name" "rio2022_team_zzn" + "item_name" "#StickerKit_rio2022_team_zzn" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/zzn" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "116" } - "eslcologne2015_signatures_navi" + "6026" { - "[eslcologne2015_signature_guardian]sticker" "1" - "[eslcologne2015_signature_zeus]sticker" "1" - "[eslcologne2015_signature_seized]sticker" "1" - "[eslcologne2015_signature_edward]sticker" "1" - "[eslcologne2015_signature_flamie]sticker" "1" + "name" "rio2022_team_zzn_glitter" + "item_name" "#StickerKit_rio2022_team_zzn_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/zzn_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "116" } - "eslcologne2015_signatures_ninjasinpyjamas" + "6027" { - "[eslcologne2015_signature_xizt]sticker" "1" - "[eslcologne2015_signature_forest]sticker" "1" - "[eslcologne2015_signature_getright]sticker" "1" - "[eslcologne2015_signature_friberg]sticker" "1" - "[eslcologne2015_signature_allu]sticker" "1" + "name" "rio2022_team_zzn_holo" + "item_name" "#StickerKit_rio2022_team_zzn_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/zzn_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "116" } - "eslcologne2015_signatures_envyus" + "6028" { - "[eslcologne2015_signature_kennys]sticker" "1" - "[eslcologne2015_signature_kioshima]sticker" "1" - "[eslcologne2015_signature_happy]sticker" "1" - "[eslcologne2015_signature_apex]sticker" "1" - "[eslcologne2015_signature_nbk]sticker" "1" + "name" "rio2022_team_zzn_gold" + "item_name" "#StickerKit_rio2022_team_zzn_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/zzn_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "116" } - "eslcologne2015_signatures_titan" + "6029" { - "[eslcologne2015_signature_maniac]sticker" "1" - "[eslcologne2015_signature_ex6tenz]sticker" "1" - "[eslcologne2015_signature_shox]sticker" "1" - "[eslcologne2015_signature_smithzz]sticker" "1" - "[eslcologne2015_signature_rpk]sticker" "1" + "name" "rio2022_team_fntc" + "item_name" "#StickerKit_rio2022_team_fntc" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/fntc" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "6" } - "eslcologne2015_signatures_solomid" + "6030" { - "[eslcologne2015_signature_karrigan]sticker" "1" - "[eslcologne2015_signature_device]sticker" "1" - "[eslcologne2015_signature_dupreeh]sticker" "1" - "[eslcologne2015_signature_xyp9x]sticker" "1" - "[eslcologne2015_signature_cajunb]sticker" "1" + "name" "rio2022_team_fntc_glitter" + "item_name" "#StickerKit_rio2022_team_fntc_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/fntc_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "6" } - "eslcologne2015_signatures_virtuspro" + "6031" { - "[eslcologne2015_signature_neo]sticker" "1" - "[eslcologne2015_signature_pasha]sticker" "1" - "[eslcologne2015_signature_taz]sticker" "1" - "[eslcologne2015_signature_snax]sticker" "1" - "[eslcologne2015_signature_byali]sticker" "1" + "name" "rio2022_team_fntc_holo" + "item_name" "#StickerKit_rio2022_team_fntc_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/fntc_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "6" } - "eslcologne2015_signatures_mousesports" + "6032" { - "[eslcologne2015_signature_chrisj]sticker" "1" - "[eslcologne2015_signature_gobb]sticker" "1" - "[eslcologne2015_signature_denis]sticker" "1" - "[eslcologne2015_signature_nex]sticker" "1" - "[eslcologne2015_signature_spiidi]sticker" "1" + "name" "rio2022_team_fntc_gold" + "item_name" "#StickerKit_rio2022_team_fntc_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/fntc_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "6" } - "eslcologne2015_signatures_renegades" + "6033" { - "[eslcologne2015_signature_azr]sticker" "1" - "[eslcologne2015_signature_havoc]sticker" "1" - "[eslcologne2015_signature_jks]sticker" "1" - "[eslcologne2015_signature_spunj]sticker" "1" - "[eslcologne2015_signature_yam]sticker" "1" + "name" "rio2022_team_furi" + "item_name" "#StickerKit_rio2022_team_furi" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/furi" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "85" } - "eslcologne2015_signatures_teamimmunity" + "6034" { - "[eslcologne2015_signature_ustilo]sticker" "1" - "[eslcologne2015_signature_rickeh]sticker" "1" - "[eslcologne2015_signature_emagine]sticker" "1" - "[eslcologne2015_signature_snyper]sticker" "1" - "[eslcologne2015_signature_james]sticker" "1" + "name" "rio2022_team_furi_glitter" + "item_name" "#StickerKit_rio2022_team_furi_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/furi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "85" } - "eslcologne2015_signatures_ebettle" + "6035" { - "[eslcologne2015_signature_rallen]sticker" "1" - "[eslcologne2015_signature_hyper]sticker" "1" - "[eslcologne2015_signature_peet]sticker" "1" - "[eslcologne2015_signature_furlan]sticker" "1" - "[eslcologne2015_signature_gruby]sticker" "1" + "name" "rio2022_team_furi_holo" + "item_name" "#StickerKit_rio2022_team_furi_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/furi_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "85" } - "eslcologne2015_signatures_kinguin" + "6036" { - "[eslcologne2015_signature_dennis]sticker" "1" - "[eslcologne2015_signature_scream]sticker" "1" - "[eslcologne2015_signature_rain]sticker" "1" - "[eslcologne2015_signature_maikelele]sticker" "1" - "[eslcologne2015_signature_fox]sticker" "1" + "name" "rio2022_team_furi_gold" + "item_name" "#StickerKit_rio2022_team_furi_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/furi_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "85" } - "eslcologne2015_signatures_flipside" + "6037" { - "[eslcologne2015_signature_markeloff]sticker" "1" - "[eslcologne2015_signature_b1ad3]sticker" "1" - "[eslcologne2015_signature_bondik]sticker" "1" - "[eslcologne2015_signature_worldedit]sticker" "1" - "[eslcologne2015_signature_davcost]sticker" "1" + "name" "rio2022_team_gl" + "item_name" "#StickerKit_rio2022_team_gl" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gl" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "115" } - "eslcologne2015_signatures_clg" + "6038" { - "[eslcologne2015_signature_hazed]sticker" "1" - "[eslcologne2015_signature_fns]sticker" "1" - "[eslcologne2015_signature_jdm64]sticker" "1" - "[eslcologne2015_signature_reltuc]sticker" "1" - "[eslcologne2015_signature_tarik]sticker" "1" + "name" "rio2022_team_gl_glitter" + "item_name" "#StickerKit_rio2022_team_gl_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gl_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "115" } - "eslcologne2015_signatures_cloud9" + "6039" { - "[eslcologne2015_signature_nothing]sticker" "1" - "[eslcologne2015_signature_sgares]sticker" "1" - "[eslcologne2015_signature_shroud]sticker" "1" - "[eslcologne2015_signature_freakazoid]sticker" "1" - "[eslcologne2015_signature_skadoodle]sticker" "1" + "name" "rio2022_team_gl_holo" + "item_name" "#StickerKit_rio2022_team_gl_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gl_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "115" } - "crate_signature_pack_eslcologne2015_group_1_rare" + "6040" { - "[eslcologne2015_signature_xizt]sticker" "1" - "[eslcologne2015_signature_forest]sticker" "1" - "[eslcologne2015_signature_getright]sticker" "1" - "[eslcologne2015_signature_friberg]sticker" "1" - "[eslcologne2015_signature_allu]sticker" "1" - "[eslcologne2015_signature_karrigan]sticker" "1" - "[eslcologne2015_signature_device]sticker" "1" - "[eslcologne2015_signature_dupreeh]sticker" "1" - "[eslcologne2015_signature_xyp9x]sticker" "1" - "[eslcologne2015_signature_cajunb]sticker" "1" - "[eslcologne2015_signature_azr]sticker" "1" - "[eslcologne2015_signature_havoc]sticker" "1" - "[eslcologne2015_signature_jks]sticker" "1" - "[eslcologne2015_signature_spunj]sticker" "1" - "[eslcologne2015_signature_yam]sticker" "1" - "[eslcologne2015_signature_hazed]sticker" "1" - "[eslcologne2015_signature_fns]sticker" "1" - "[eslcologne2015_signature_jdm64]sticker" "1" - "[eslcologne2015_signature_reltuc]sticker" "1" - "[eslcologne2015_signature_tarik]sticker" "1" + "name" "rio2022_team_gl_gold" + "item_name" "#StickerKit_rio2022_team_gl_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gl_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "115" } - "crate_signature_pack_eslcologne2015_group_1_legendary" + "6041" { - "[eslcologne2015_signature_xizt_foil]sticker" "1" - "[eslcologne2015_signature_forest_foil]sticker" "1" - "[eslcologne2015_signature_getright_foil]sticker" "1" - "[eslcologne2015_signature_friberg_foil]sticker" "1" - "[eslcologne2015_signature_allu_foil]sticker" "1" - "[eslcologne2015_signature_karrigan_foil]sticker" "1" - "[eslcologne2015_signature_device_foil]sticker" "1" - "[eslcologne2015_signature_dupreeh_foil]sticker" "1" - "[eslcologne2015_signature_xyp9x_foil]sticker" "1" - "[eslcologne2015_signature_cajunb_foil]sticker" "1" - "[eslcologne2015_signature_azr_foil]sticker" "1" - "[eslcologne2015_signature_havoc_foil]sticker" "1" - "[eslcologne2015_signature_jks_foil]sticker" "1" - "[eslcologne2015_signature_spunj_foil]sticker" "1" - "[eslcologne2015_signature_yam_foil]sticker" "1" - "[eslcologne2015_signature_hazed_foil]sticker" "1" - "[eslcologne2015_signature_fns_foil]sticker" "1" - "[eslcologne2015_signature_jdm64_foil]sticker" "1" - "[eslcologne2015_signature_reltuc_foil]sticker" "1" - "[eslcologne2015_signature_tarik_foil]sticker" "1" + "name" "rio2022_team_gray" + "item_name" "#StickerKit_rio2022_team_gray" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gray" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "86" } - "crate_signature_pack_eslcologne2015_group_2_rare" + "6042" { - "[eslcologne2015_signature_fallen]sticker" "1" - "[eslcologne2015_signature_steel]sticker" "1" - "[eslcologne2015_signature_fer]sticker" "1" - "[eslcologne2015_signature_boltz]sticker" "1" - "[eslcologne2015_signature_coldzera]sticker" "1" - "[eslcologne2015_signature_kennys]sticker" "1" - "[eslcologne2015_signature_kioshima]sticker" "1" - "[eslcologne2015_signature_happy]sticker" "1" - "[eslcologne2015_signature_apex]sticker" "1" - "[eslcologne2015_signature_nbk]sticker" "1" - "[eslcologne2015_signature_dennis]sticker" "1" - "[eslcologne2015_signature_scream]sticker" "1" - "[eslcologne2015_signature_rain]sticker" "1" - "[eslcologne2015_signature_maikelele]sticker" "1" - "[eslcologne2015_signature_fox]sticker" "1" - "[eslcologne2015_signature_markeloff]sticker" "1" - "[eslcologne2015_signature_b1ad3]sticker" "1" - "[eslcologne2015_signature_bondik]sticker" "1" - "[eslcologne2015_signature_worldedit]sticker" "1" - "[eslcologne2015_signature_davcost]sticker" "1" + "name" "rio2022_team_gray_glitter" + "item_name" "#StickerKit_rio2022_team_gray_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gray_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "86" } - "crate_signature_pack_eslcologne2015_group_2_legendary" + "6043" { - "[eslcologne2015_signature_fallen_foil]sticker" "1" - "[eslcologne2015_signature_steel_foil]sticker" "1" - "[eslcologne2015_signature_fer_foil]sticker" "1" - "[eslcologne2015_signature_boltz_foil]sticker" "1" - "[eslcologne2015_signature_coldzera_foil]sticker" "1" - "[eslcologne2015_signature_kennys_foil]sticker" "1" - "[eslcologne2015_signature_kioshima_foil]sticker" "1" - "[eslcologne2015_signature_happy_foil]sticker" "1" - "[eslcologne2015_signature_apex_foil]sticker" "1" - "[eslcologne2015_signature_nbk_foil]sticker" "1" - "[eslcologne2015_signature_dennis_foil]sticker" "1" - "[eslcologne2015_signature_scream_foil]sticker" "1" - "[eslcologne2015_signature_rain_foil]sticker" "1" - "[eslcologne2015_signature_maikelele_foil]sticker" "1" - "[eslcologne2015_signature_fox_foil]sticker" "1" - "[eslcologne2015_signature_markeloff_foil]sticker" "1" - "[eslcologne2015_signature_b1ad3_foil]sticker" "1" - "[eslcologne2015_signature_bondik_foil]sticker" "1" - "[eslcologne2015_signature_worldedit_foil]sticker" "1" - "[eslcologne2015_signature_davcost_foil]sticker" "1" + "name" "rio2022_team_gray_holo" + "item_name" "#StickerKit_rio2022_team_gray_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gray_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "86" } - "crate_signature_pack_eslcologne2015_group_3_rare" + "6044" { - "[eslcologne2015_signature_pronax]sticker" "1" - "[eslcologne2015_signature_flusha]sticker" "1" - "[eslcologne2015_signature_jw]sticker" "1" - "[eslcologne2015_signature_krimz]sticker" "1" - "[eslcologne2015_signature_olofmeister]sticker" "1" - "[eslcologne2015_signature_guardian]sticker" "1" - "[eslcologne2015_signature_zeus]sticker" "1" - "[eslcologne2015_signature_seized]sticker" "1" - "[eslcologne2015_signature_edward]sticker" "1" - "[eslcologne2015_signature_flamie]sticker" "1" - "[eslcologne2015_signature_maniac]sticker" "1" - "[eslcologne2015_signature_ex6tenz]sticker" "1" - "[eslcologne2015_signature_shox]sticker" "1" - "[eslcologne2015_signature_smithzz]sticker" "1" - "[eslcologne2015_signature_rpk]sticker" "1" - "[eslcologne2015_signature_rallen]sticker" "1" - "[eslcologne2015_signature_hyper]sticker" "1" - "[eslcologne2015_signature_peet]sticker" "1" - "[eslcologne2015_signature_furlan]sticker" "1" - "[eslcologne2015_signature_gruby]sticker" "1" + "name" "rio2022_team_gray_gold" + "item_name" "#StickerKit_rio2022_team_gray_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/gray_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "86" } - "crate_signature_pack_eslcologne2015_group_3_legendary" + "6045" { - "[eslcologne2015_signature_pronax_foil]sticker" "1" - "[eslcologne2015_signature_flusha_foil]sticker" "1" - "[eslcologne2015_signature_jw_foil]sticker" "1" - "[eslcologne2015_signature_krimz_foil]sticker" "1" - "[eslcologne2015_signature_olofmeister_foil]sticker" "1" - "[eslcologne2015_signature_guardian_foil]sticker" "1" - "[eslcologne2015_signature_zeus_foil]sticker" "1" - "[eslcologne2015_signature_seized_foil]sticker" "1" - "[eslcologne2015_signature_edward_foil]sticker" "1" - "[eslcologne2015_signature_flamie_foil]sticker" "1" - "[eslcologne2015_signature_maniac_foil]sticker" "1" - "[eslcologne2015_signature_ex6tenz_foil]sticker" "1" - "[eslcologne2015_signature_shox_foil]sticker" "1" - "[eslcologne2015_signature_smithzz_foil]sticker" "1" - "[eslcologne2015_signature_rpk_foil]sticker" "1" - "[eslcologne2015_signature_rallen_foil]sticker" "1" - "[eslcologne2015_signature_hyper_foil]sticker" "1" - "[eslcologne2015_signature_peet_foil]sticker" "1" - "[eslcologne2015_signature_furlan_foil]sticker" "1" - "[eslcologne2015_signature_gruby_foil]sticker" "1" + "name" "rio2022_team_ihc" + "item_name" "#StickerKit_rio2022_team_ihc" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ihc" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "108" } - "crate_signature_pack_eslcologne2015_group_4_rare" + "6046" { - "[eslcologne2015_signature_neo]sticker" "1" - "[eslcologne2015_signature_pasha]sticker" "1" - "[eslcologne2015_signature_taz]sticker" "1" - "[eslcologne2015_signature_snax]sticker" "1" - "[eslcologne2015_signature_byali]sticker" "1" - "[eslcologne2015_signature_chrisj]sticker" "1" - "[eslcologne2015_signature_gobb]sticker" "1" - "[eslcologne2015_signature_denis]sticker" "1" - "[eslcologne2015_signature_nex]sticker" "1" - "[eslcologne2015_signature_spiidi]sticker" "1" - "[eslcologne2015_signature_ustilo]sticker" "1" - "[eslcologne2015_signature_rickeh]sticker" "1" - "[eslcologne2015_signature_emagine]sticker" "1" - "[eslcologne2015_signature_snyper]sticker" "1" - "[eslcologne2015_signature_james]sticker" "1" - "[eslcologne2015_signature_nothing]sticker" "1" - "[eslcologne2015_signature_sgares]sticker" "1" - "[eslcologne2015_signature_shroud]sticker" "1" - "[eslcologne2015_signature_freakazoid]sticker" "1" - "[eslcologne2015_signature_skadoodle]sticker" "1" + "name" "rio2022_team_ihc_glitter" + "item_name" "#StickerKit_rio2022_team_ihc_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ihc_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "108" } - "crate_signature_pack_eslcologne2015_group_4_legendary" + "6047" { - "[eslcologne2015_signature_neo_foil]sticker" "1" - "[eslcologne2015_signature_pasha_foil]sticker" "1" - "[eslcologne2015_signature_taz_foil]sticker" "1" - "[eslcologne2015_signature_snax_foil]sticker" "1" - "[eslcologne2015_signature_byali_foil]sticker" "1" - "[eslcologne2015_signature_chrisj_foil]sticker" "1" - "[eslcologne2015_signature_gobb_foil]sticker" "1" - "[eslcologne2015_signature_denis_foil]sticker" "1" - "[eslcologne2015_signature_nex_foil]sticker" "1" - "[eslcologne2015_signature_spiidi_foil]sticker" "1" - "[eslcologne2015_signature_ustilo_foil]sticker" "1" - "[eslcologne2015_signature_rickeh_foil]sticker" "1" - "[eslcologne2015_signature_emagine_foil]sticker" "1" - "[eslcologne2015_signature_snyper_foil]sticker" "1" - "[eslcologne2015_signature_james_foil]sticker" "1" - "[eslcologne2015_signature_nothing_foil]sticker" "1" - "[eslcologne2015_signature_sgares_foil]sticker" "1" - "[eslcologne2015_signature_shroud_foil]sticker" "1" - "[eslcologne2015_signature_freakazoid_foil]sticker" "1" - "[eslcologne2015_signature_skadoodle_foil]sticker" "1" + "name" "rio2022_team_ihc_holo" + "item_name" "#StickerKit_rio2022_team_ihc_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ihc_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "108" } - "crate_eslcologne2015_promo_de_dust2" + "6048" { - "set_dust_2" "1" + "name" "rio2022_team_ihc_gold" + "item_name" "#StickerKit_rio2022_team_ihc_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/ihc_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "108" } - "crate_eslcologne2015_promo_de_mirage" + "6049" { - "set_mirage" "1" + "name" "rio2022_team_imp" + "item_name" "#StickerKit_rio2022_team_imp" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/imp" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "113" } - "crate_eslcologne2015_promo_de_inferno" + "6050" { - "set_inferno" "1" + "name" "rio2022_team_imp_glitter" + "item_name" "#StickerKit_rio2022_team_imp_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/imp_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "113" } - "crate_eslcologne2015_promo_de_cbble" + "6051" { - "set_cobblestone" "1" + "name" "rio2022_team_imp_holo" + "item_name" "#StickerKit_rio2022_team_imp_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/imp_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "113" } - "crate_eslcologne2015_promo_de_overpass" + "6052" { - "set_overpass" "1" + "name" "rio2022_team_imp_gold" + "item_name" "#StickerKit_rio2022_team_imp_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/imp_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "113" } - "crate_eslcologne2015_promo_de_cache" + "6053" { - "set_cache" "1" + "name" "rio2022_team_out" + "item_name" "#StickerKit_rio2022_team_out" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/out" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" } - "crate_eslcologne2015_promo_de_train" + "6054" { - "set_train" "1" + "name" "rio2022_team_out_glitter" + "item_name" "#StickerKit_rio2022_team_out_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/out_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" } - "cluj2015_rare_nip" + "6055" { - "[cluj2015_team_nip]sticker" "1" + "name" "rio2022_team_out_holo" + "item_name" "#StickerKit_rio2022_team_out_holo" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/out_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" } - "cluj2015_rare_dig" + "6056" { - "[cluj2015_team_dig]sticker" "1" + "name" "rio2022_team_out_gold" + "item_name" "#StickerKit_rio2022_team_out_gold" + "description_string" "#EventItemDesc_rio2022_sticker_team" + "sticker_material" "rio2022/out_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" } - "cluj2015_rare_clg" + "6057" { - "[cluj2015_team_clg]sticker" "1" + "name" "rio2022_team_iem" + "item_name" "#StickerKit_rio2022_team_iem" + "description_string" "#EventItemDesc_rio2022_sticker_org" + "sticker_material" "rio2022/iem" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "0" } - "cluj2015_rare_vex" + "6058" { - "[cluj2015_team_vex]sticker" "1" + "name" "rio2022_team_iem_glitter" + "item_name" "#StickerKit_rio2022_team_iem_glitter" + "description_string" "#EventItemDesc_rio2022_sticker_org" + "sticker_material" "rio2022/iem_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "0" } - "cluj2015_rare_flip" + "6059" { - "[cluj2015_team_flip]sticker" "1" + "name" "rio2022_team_iem_holo" + "item_name" "#StickerKit_rio2022_team_iem_holo" + "description_string" "#EventItemDesc_rio2022_sticker_org" + "sticker_material" "rio2022/iem_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "0" } - "cluj2015_rare_liq" + "6060" { - "[cluj2015_team_liq]sticker" "1" + "name" "rio2022_team_iem_gold" + "item_name" "#StickerKit_rio2022_team_iem_gold" + "description_string" "#EventItemDesc_rio2022_sticker_org" + "sticker_material" "rio2022/iem_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "0" } - "cluj2015_rare_mss" + "6061" { - "[cluj2015_team_mss]sticker" "1" + "name" "rio2022_team_ence_graffiti" + "item_name" "#StickerKit_rio2022_team_ence" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/ence_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "84" } - "cluj2015_rare_navi" + "6062" { - "[cluj2015_team_navi]sticker" "1" + "name" "rio2022_team_faze_graffiti" + "item_name" "#StickerKit_rio2022_team_faze" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/faze_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "61" } - "cluj2015_rare_vp" + "6063" { - "[cluj2015_team_vp]sticker" "1" + "name" "rio2022_team_hero_graffiti" + "item_name" "#StickerKit_rio2022_team_hero" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/hero_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "95" } - "cluj2015_rare_c9" + "6064" { - "[cluj2015_team_c9]sticker" "1" + "name" "rio2022_team_navi_graffiti" + "item_name" "#StickerKit_rio2022_team_navi" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/navi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "12" } - "cluj2015_rare_g2" + "6065" { - "[cluj2015_team_g2]sticker" "1" + "name" "rio2022_team_nip_graffiti" + "item_name" "#StickerKit_rio2022_team_nip" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/nip_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "1" } - "cluj2015_rare_tit" + "6066" { - "[cluj2015_team_tit]sticker" "1" + "name" "rio2022_team_spr_graffiti" + "item_name" "#StickerKit_rio2022_team_spr" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/spr_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "72" } - "cluj2015_rare_tsolo" + "6067" { - "[cluj2015_team_tsolo]sticker" "1" + "name" "rio2022_team_liq_graffiti" + "item_name" "#StickerKit_rio2022_team_liq" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/liq_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "48" } - "cluj2015_rare_nv" + "6068" { - "[cluj2015_team_nv]sticker" "1" + "name" "rio2022_team_spir_graffiti" + "item_name" "#StickerKit_rio2022_team_spir" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/spir_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "81" } - "cluj2015_rare_fntc" + "6069" { - "[cluj2015_team_fntc]sticker" "1" + "name" "rio2022_team_nine_graffiti" + "item_name" "#StickerKit_rio2022_team_nine" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/nine_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "112" } - "cluj2015_rare_lumi" + "6070" { - "[cluj2015_team_lumi]sticker" "1" + "name" "rio2022_team_bne_graffiti" + "item_name" "#StickerKit_rio2022_team_bne" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/bne_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "114" } - "cluj2015_rare_dhc" + "6071" { - "[cluj2015_team_dhc]sticker" "1" + "name" "rio2022_team_big_graffiti" + "item_name" "#StickerKit_rio2022_team_big" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/big_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "69" } - "crate_sticker_pack_cluj2015_legends_rare" + "6072" { - "[cluj2015_team_nip]sticker" "1" - "[cluj2015_team_navi]sticker" "1" - "[cluj2015_team_vp]sticker" "1" - "[cluj2015_team_g2]sticker" "1" - "[cluj2015_team_tsolo]sticker" "1" - "[cluj2015_team_nv]sticker" "1" - "[cluj2015_team_fntc]sticker" "1" - "[cluj2015_team_lumi]sticker" "1" - "[cluj2015_team_dhc]sticker" "1" + "name" "rio2022_team_c9_graffiti" + "item_name" "#StickerKit_rio2022_team_c9" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/c9_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "33" } - "crate_sticker_pack_cluj2015_legends_legendary" + "6073" { - "[cluj2015_team_nip_foil]sticker" "1" - "[cluj2015_team_navi_foil]sticker" "1" - "[cluj2015_team_vp_foil]sticker" "1" - "[cluj2015_team_g2_foil]sticker" "1" - "[cluj2015_team_tsolo_foil]sticker" "1" - "[cluj2015_team_nv_foil]sticker" "1" - "[cluj2015_team_fntc_foil]sticker" "1" - "[cluj2015_team_lumi_foil]sticker" "1" - "[cluj2015_team_dhc_foil]sticker" "1" + "name" "rio2022_team_evl_graffiti" + "item_name" "#StickerKit_rio2022_team_evl" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/evl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "98" } - "crate_sticker_pack_cluj2015_legends" + "6074" { - "crate_sticker_pack_cluj2015_legends_legendary" "1" + "name" "rio2022_team_mouz_graffiti" + "item_name" "#StickerKit_rio2022_team_mouz" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/mouz_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "106" } - "crate_sticker_pack_cluj2015_challengers_rare" + "6075" { - "[cluj2015_team_dig]sticker" "1" - "[cluj2015_team_clg]sticker" "1" - "[cluj2015_team_vex]sticker" "1" - "[cluj2015_team_flip]sticker" "1" - "[cluj2015_team_liq]sticker" "1" - "[cluj2015_team_mss]sticker" "1" - "[cluj2015_team_c9]sticker" "1" - "[cluj2015_team_tit]sticker" "1" + "name" "rio2022_team_og_graffiti" + "item_name" "#StickerKit_rio2022_team_og" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/og_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "96" } - "crate_sticker_pack_cluj2015_challengers_legendary" + "6076" { - "[cluj2015_team_dig_foil]sticker" "1" - "[cluj2015_team_clg_foil]sticker" "1" - "[cluj2015_team_vex_foil]sticker" "1" - "[cluj2015_team_flip_foil]sticker" "1" - "[cluj2015_team_liq_foil]sticker" "1" - "[cluj2015_team_mss_foil]sticker" "1" - "[cluj2015_team_c9_foil]sticker" "1" - "[cluj2015_team_tit_foil]sticker" "1" - "[cluj2015_team_dhc_foil]sticker" "1" + "name" "rio2022_team_vita_graffiti" + "item_name" "#StickerKit_rio2022_team_vita" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/vita_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "89" } - "crate_sticker_pack_cluj2015_challengers" + "6077" { - "crate_sticker_pack_cluj2015_challengers_legendary" "1" + "name" "rio2022_team_zzn_graffiti" + "item_name" "#StickerKit_rio2022_team_zzn" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/zzn_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "116" } - "cluj2015_signatures_nip" + "6078" { - "[cluj2015_signature_allu]sticker" "1" - "[cluj2015_signature_forest]sticker" "1" - "[cluj2015_signature_friberg]sticker" "1" - "[cluj2015_signature_getright]sticker" "1" - "[cluj2015_signature_xizt]sticker" "1" + "name" "rio2022_team_fntc_graffiti" + "item_name" "#StickerKit_rio2022_team_fntc" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/fntc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "6" } - "cluj2015_signatures_dig" + "6079" { - "[cluj2015_signature_aizy]sticker" "1" - "[cluj2015_signature_kjaerbye]sticker" "1" - "[cluj2015_signature_msl]sticker" "1" - "[cluj2015_signature_pimp]sticker" "1" - "[cluj2015_signature_tenzki]sticker" "1" + "name" "rio2022_team_furi_graffiti" + "item_name" "#StickerKit_rio2022_team_furi" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/furi_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "85" } - "cluj2015_signatures_clg" + "6080" { - "[cluj2015_signature_reltuc]sticker" "1" - "[cluj2015_signature_fns]sticker" "1" - "[cluj2015_signature_hazed]sticker" "1" - "[cluj2015_signature_jdm64]sticker" "1" - "[cluj2015_signature_tarik]sticker" "1" + "name" "rio2022_team_gl_graffiti" + "item_name" "#StickerKit_rio2022_team_gl" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/gl_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "115" } - "cluj2015_signatures_vex" + "6081" { - "[cluj2015_signature_furlan]sticker" "1" - "[cluj2015_signature_gruby]sticker" "1" - "[cluj2015_signature_hyper]sticker" "1" - "[cluj2015_signature_peet]sticker" "1" - "[cluj2015_signature_rallen]sticker" "1" + "name" "rio2022_team_gray_graffiti" + "item_name" "#StickerKit_rio2022_team_gray" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/gray_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "86" } - "cluj2015_signatures_flip" + "6082" { - "[cluj2015_signature_b1ad3]sticker" "1" - "[cluj2015_signature_bondik]sticker" "1" - "[cluj2015_signature_davcost]sticker" "1" - "[cluj2015_signature_markeloff]sticker" "1" - "[cluj2015_signature_worldedit]sticker" "1" + "name" "rio2022_team_ihc_graffiti" + "item_name" "#StickerKit_rio2022_team_ihc" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/ihc_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "108" } - "cluj2015_signatures_liq" + "6083" { - "[cluj2015_signature_adren]sticker" "1" - "[cluj2015_signature_elige]sticker" "1" - "[cluj2015_signature_fugly]sticker" "1" - "[cluj2015_signature_hiko]sticker" "1" - "[cluj2015_signature_nitro]sticker" "1" + "name" "rio2022_team_imp_graffiti" + "item_name" "#StickerKit_rio2022_team_imp" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/imp_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "113" } - "cluj2015_signatures_mss" + "6084" { - "[cluj2015_signature_chrisj]sticker" "1" - "[cluj2015_signature_denis]sticker" "1" - "[cluj2015_signature_gobb]sticker" "1" - "[cluj2015_signature_nex]sticker" "1" - "[cluj2015_signature_niko]sticker" "1" + "name" "rio2022_team_out_graffiti" + "item_name" "#StickerKit_rio2022_team_out" + "description_string" "#EventItemDesc_rio2022_graffiti_team" + "sticker_material" "rio2022/out_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" } - "cluj2015_signatures_navi" + "6085" { - "[cluj2015_signature_edward]sticker" "1" - "[cluj2015_signature_flamie]sticker" "1" - "[cluj2015_signature_guardian]sticker" "1" - "[cluj2015_signature_seized]sticker" "1" - "[cluj2015_signature_zeus]sticker" "1" + "name" "rio2022_team_iem_graffiti" + "item_name" "#StickerKit_rio2022_team_iem" + "description_string" "#EventItemDesc_rio2022_graffiti_org" + "sticker_material" "rio2022/iem_graffiti" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "0" } - "cluj2015_signatures_vp" + "6086" { - "[cluj2015_signature_byali]sticker" "1" - "[cluj2015_signature_neo]sticker" "1" - "[cluj2015_signature_pasha]sticker" "1" - "[cluj2015_signature_snax]sticker" "1" - "[cluj2015_signature_taz]sticker" "1" + "name" "rio2022_signature_snappi_2" + "item_name" "#StickerKit_rio2022_signature_snappi" + "description_string" "#StickerKit_desc_rio2022_signature_snappi" + "sticker_material" "rio2022/sig_snappi" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "29157337" } - "cluj2015_signatures_c9" + "6087" { - "[cluj2015_signature_freakazoid]sticker" "1" - "[cluj2015_signature_sgares]sticker" "1" - "[cluj2015_signature_shroud]sticker" "1" - "[cluj2015_signature_skadoodle]sticker" "1" - "[cluj2015_signature_nothing]sticker" "1" + "name" "rio2022_signature_snappi_2_glitter" + "item_name" "#StickerKit_rio2022_signature_snappi_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_snappi_glitter" + "sticker_material" "rio2022/sig_snappi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "29157337" } - "cluj2015_signatures_g2" + "6088" { - "[cluj2015_signature_dennis]sticker" "1" - "[cluj2015_signature_fox]sticker" "1" - "[cluj2015_signature_maikelele]sticker" "1" - "[cluj2015_signature_rain]sticker" "1" - "[cluj2015_signature_jkaem]sticker" "1" + "name" "rio2022_signature_snappi_2_holo" + "item_name" "#StickerKit_rio2022_signature_snappi_holo" + "description_string" "#StickerKit_desc_rio2022_signature_snappi_holo" + "sticker_material" "rio2022/sig_snappi_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "29157337" } - "cluj2015_signatures_tit" + "6089" { - "[cluj2015_signature_ex6tenz]sticker" "1" - "[cluj2015_signature_rpk]sticker" "1" - "[cluj2015_signature_scream]sticker" "1" - "[cluj2015_signature_shox]sticker" "1" - "[cluj2015_signature_smithzz]sticker" "1" + "name" "rio2022_signature_snappi_2_gold" + "item_name" "#StickerKit_rio2022_signature_snappi_gold" + "description_string" "#StickerKit_desc_rio2022_signature_snappi_gold" + "sticker_material" "rio2022/sig_snappi_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "29157337" } - "cluj2015_signatures_tsolo" + "6090" { - "[cluj2015_signature_cajunb]sticker" "1" - "[cluj2015_signature_device]sticker" "1" - "[cluj2015_signature_dupreeh]sticker" "1" - "[cluj2015_signature_karrigan]sticker" "1" - "[cluj2015_signature_xyp9x]sticker" "1" + "name" "rio2022_signature_dycha_2" + "item_name" "#StickerKit_rio2022_signature_dycha" + "description_string" "#StickerKit_desc_rio2022_signature_dycha" + "sticker_material" "rio2022/sig_dycha" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "81151265" } - "cluj2015_signatures_nv" + "6091" { - "[cluj2015_signature_apex]sticker" "1" - "[cluj2015_signature_happy]sticker" "1" - "[cluj2015_signature_kioshima]sticker" "1" - "[cluj2015_signature_kennys]sticker" "1" - "[cluj2015_signature_nbk]sticker" "1" + "name" "rio2022_signature_dycha_2_glitter" + "item_name" "#StickerKit_rio2022_signature_dycha_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_dycha_glitter" + "sticker_material" "rio2022/sig_dycha_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "81151265" } - "cluj2015_signatures_fntc" + "6092" { - "[cluj2015_signature_flusha]sticker" "1" - "[cluj2015_signature_jw]sticker" "1" - "[cluj2015_signature_krimz]sticker" "1" - "[cluj2015_signature_olofmeister]sticker" "1" - "[cluj2015_signature_pronax]sticker" "1" + "name" "rio2022_signature_dycha_2_holo" + "item_name" "#StickerKit_rio2022_signature_dycha_holo" + "description_string" "#StickerKit_desc_rio2022_signature_dycha_holo" + "sticker_material" "rio2022/sig_dycha_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "81151265" } - "cluj2015_signatures_lumi" + "6093" { - "[cluj2015_signature_boltz]sticker" "1" - "[cluj2015_signature_coldzera]sticker" "1" - "[cluj2015_signature_fallen]sticker" "1" - "[cluj2015_signature_fer]sticker" "1" - "[cluj2015_signature_steel]sticker" "1" + "name" "rio2022_signature_dycha_2_gold" + "item_name" "#StickerKit_rio2022_signature_dycha_gold" + "description_string" "#StickerKit_desc_rio2022_signature_dycha_gold" + "sticker_material" "rio2022/sig_dycha_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "81151265" + } + "6094" + { + "name" "rio2022_signature_maden_2" + "item_name" "#StickerKit_rio2022_signature_maden" + "description_string" "#StickerKit_desc_rio2022_signature_maden" + "sticker_material" "rio2022/sig_maden" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "crate_signature_pack_cluj2015_group_1_rare" + "6095" { - "[cluj2015_signature_aizy]sticker" "1" - "[cluj2015_signature_kjaerbye]sticker" "1" - "[cluj2015_signature_msl]sticker" "1" - "[cluj2015_signature_pimp]sticker" "1" - "[cluj2015_signature_tenzki]sticker" "1" - "[cluj2015_signature_reltuc]sticker" "1" - "[cluj2015_signature_fns]sticker" "1" - "[cluj2015_signature_hazed]sticker" "1" - "[cluj2015_signature_jdm64]sticker" "1" - "[cluj2015_signature_tarik]sticker" "1" - "[cluj2015_signature_furlan]sticker" "1" - "[cluj2015_signature_gruby]sticker" "1" - "[cluj2015_signature_hyper]sticker" "1" - "[cluj2015_signature_peet]sticker" "1" - "[cluj2015_signature_rallen]sticker" "1" - "[cluj2015_signature_b1ad3]sticker" "1" - "[cluj2015_signature_bondik]sticker" "1" - "[cluj2015_signature_davcost]sticker" "1" - "[cluj2015_signature_markeloff]sticker" "1" - "[cluj2015_signature_worldedit]sticker" "1" - "[cluj2015_signature_adren]sticker" "1" - "[cluj2015_signature_elige]sticker" "1" - "[cluj2015_signature_fugly]sticker" "1" - "[cluj2015_signature_hiko]sticker" "1" - "[cluj2015_signature_nitro]sticker" "1" - "[cluj2015_signature_chrisj]sticker" "1" - "[cluj2015_signature_denis]sticker" "1" - "[cluj2015_signature_gobb]sticker" "1" - "[cluj2015_signature_nex]sticker" "1" - "[cluj2015_signature_niko]sticker" "1" - "[cluj2015_signature_freakazoid]sticker" "1" - "[cluj2015_signature_sgares]sticker" "1" - "[cluj2015_signature_shroud]sticker" "1" - "[cluj2015_signature_skadoodle]sticker" "1" - "[cluj2015_signature_nothing]sticker" "1" - "[cluj2015_signature_ex6tenz]sticker" "1" - "[cluj2015_signature_rpk]sticker" "1" - "[cluj2015_signature_scream]sticker" "1" - "[cluj2015_signature_shox]sticker" "1" - "[cluj2015_signature_smithzz]sticker" "1" + "name" "rio2022_signature_maden_2_glitter" + "item_name" "#StickerKit_rio2022_signature_maden_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_maden_glitter" + "sticker_material" "rio2022/sig_maden_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "crate_signature_pack_cluj2015_group_1_legendary" + "6096" { - "[cluj2015_signature_aizy_foil]sticker" "1" - "[cluj2015_signature_kjaerbye_foil]sticker" "1" - "[cluj2015_signature_msl_foil]sticker" "1" - "[cluj2015_signature_pimp_foil]sticker" "1" - "[cluj2015_signature_tenzki_foil]sticker" "1" - "[cluj2015_signature_reltuc_foil]sticker" "1" - "[cluj2015_signature_fns_foil]sticker" "1" - "[cluj2015_signature_hazed_foil]sticker" "1" - "[cluj2015_signature_jdm64_foil]sticker" "1" - "[cluj2015_signature_tarik_foil]sticker" "1" - "[cluj2015_signature_furlan_foil]sticker" "1" - "[cluj2015_signature_gruby_foil]sticker" "1" - "[cluj2015_signature_hyper_foil]sticker" "1" - "[cluj2015_signature_peet_foil]sticker" "1" - "[cluj2015_signature_rallen_foil]sticker" "1" - "[cluj2015_signature_b1ad3_foil]sticker" "1" - "[cluj2015_signature_bondik_foil]sticker" "1" - "[cluj2015_signature_davcost_foil]sticker" "1" - "[cluj2015_signature_markeloff_foil]sticker" "1" - "[cluj2015_signature_worldedit_foil]sticker" "1" - "[cluj2015_signature_adren_foil]sticker" "1" - "[cluj2015_signature_elige_foil]sticker" "1" - "[cluj2015_signature_fugly_foil]sticker" "1" - "[cluj2015_signature_hiko_foil]sticker" "1" - "[cluj2015_signature_nitro_foil]sticker" "1" - "[cluj2015_signature_chrisj_foil]sticker" "1" - "[cluj2015_signature_denis_foil]sticker" "1" - "[cluj2015_signature_gobb_foil]sticker" "1" - "[cluj2015_signature_nex_foil]sticker" "1" - "[cluj2015_signature_niko_foil]sticker" "1" - "[cluj2015_signature_freakazoid_foil]sticker" "1" - "[cluj2015_signature_sgares_foil]sticker" "1" - "[cluj2015_signature_shroud_foil]sticker" "1" - "[cluj2015_signature_skadoodle_foil]sticker" "1" - "[cluj2015_signature_nothing_foil]sticker" "1" - "[cluj2015_signature_ex6tenz_foil]sticker" "1" - "[cluj2015_signature_rpk_foil]sticker" "1" - "[cluj2015_signature_scream_foil]sticker" "1" - "[cluj2015_signature_shox_foil]sticker" "1" - "[cluj2015_signature_smithzz_foil]sticker" "1" + "name" "rio2022_signature_maden_2_holo" + "item_name" "#StickerKit_rio2022_signature_maden_holo" + "description_string" "#StickerKit_desc_rio2022_signature_maden_holo" + "sticker_material" "rio2022/sig_maden_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "crate_signature_pack_cluj2015_group_2_rare" + "6097" { - "[cluj2015_signature_allu]sticker" "1" - "[cluj2015_signature_forest]sticker" "1" - "[cluj2015_signature_friberg]sticker" "1" - "[cluj2015_signature_getright]sticker" "1" - "[cluj2015_signature_xizt]sticker" "1" - "[cluj2015_signature_edward]sticker" "1" - "[cluj2015_signature_flamie]sticker" "1" - "[cluj2015_signature_guardian]sticker" "1" - "[cluj2015_signature_seized]sticker" "1" - "[cluj2015_signature_zeus]sticker" "1" - "[cluj2015_signature_byali]sticker" "1" - "[cluj2015_signature_neo]sticker" "1" - "[cluj2015_signature_pasha]sticker" "1" - "[cluj2015_signature_snax]sticker" "1" - "[cluj2015_signature_taz]sticker" "1" - "[cluj2015_signature_dennis]sticker" "1" - "[cluj2015_signature_fox]sticker" "1" - "[cluj2015_signature_maikelele]sticker" "1" - "[cluj2015_signature_rain]sticker" "1" - "[cluj2015_signature_jkaem]sticker" "1" - "[cluj2015_signature_cajunb]sticker" "1" - "[cluj2015_signature_device]sticker" "1" - "[cluj2015_signature_dupreeh]sticker" "1" - "[cluj2015_signature_karrigan]sticker" "1" - "[cluj2015_signature_xyp9x]sticker" "1" - "[cluj2015_signature_apex]sticker" "1" - "[cluj2015_signature_happy]sticker" "1" - "[cluj2015_signature_kioshima]sticker" "1" - "[cluj2015_signature_kennys]sticker" "1" - "[cluj2015_signature_nbk]sticker" "1" - "[cluj2015_signature_flusha]sticker" "1" - "[cluj2015_signature_jw]sticker" "1" - "[cluj2015_signature_krimz]sticker" "1" - "[cluj2015_signature_olofmeister]sticker" "1" - "[cluj2015_signature_pronax]sticker" "1" - "[cluj2015_signature_boltz]sticker" "1" - "[cluj2015_signature_coldzera]sticker" "1" - "[cluj2015_signature_fallen]sticker" "1" - "[cluj2015_signature_fer]sticker" "1" - "[cluj2015_signature_steel]sticker" "1" + "name" "rio2022_signature_maden_2_gold" + "item_name" "#StickerKit_rio2022_signature_maden_gold" + "description_string" "#StickerKit_desc_rio2022_signature_maden_gold" + "sticker_material" "rio2022/sig_maden_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "205186299" } - "crate_signature_pack_cluj2015_group_2_legendary" + "6098" { - "[cluj2015_signature_allu_foil]sticker" "1" - "[cluj2015_signature_forest_foil]sticker" "1" - "[cluj2015_signature_friberg_foil]sticker" "1" - "[cluj2015_signature_getright_foil]sticker" "1" - "[cluj2015_signature_xizt_foil]sticker" "1" - "[cluj2015_signature_edward_foil]sticker" "1" - "[cluj2015_signature_flamie_foil]sticker" "1" - "[cluj2015_signature_guardian_foil]sticker" "1" - "[cluj2015_signature_seized_foil]sticker" "1" - "[cluj2015_signature_zeus_foil]sticker" "1" - "[cluj2015_signature_byali_foil]sticker" "1" - "[cluj2015_signature_neo_foil]sticker" "1" - "[cluj2015_signature_pasha_foil]sticker" "1" - "[cluj2015_signature_snax_foil]sticker" "1" - "[cluj2015_signature_taz_foil]sticker" "1" - "[cluj2015_signature_dennis_foil]sticker" "1" - "[cluj2015_signature_fox_foil]sticker" "1" - "[cluj2015_signature_maikelele_foil]sticker" "1" - "[cluj2015_signature_rain_foil]sticker" "1" - "[cluj2015_signature_jkaem_foil]sticker" "1" - "[cluj2015_signature_cajunb_foil]sticker" "1" - "[cluj2015_signature_device_foil]sticker" "1" - "[cluj2015_signature_dupreeh_foil]sticker" "1" - "[cluj2015_signature_karrigan_foil]sticker" "1" - "[cluj2015_signature_xyp9x_foil]sticker" "1" - "[cluj2015_signature_apex_foil]sticker" "1" - "[cluj2015_signature_happy_foil]sticker" "1" - "[cluj2015_signature_kioshima_foil]sticker" "1" - "[cluj2015_signature_kennys_foil]sticker" "1" - "[cluj2015_signature_nbk_foil]sticker" "1" - "[cluj2015_signature_flusha_foil]sticker" "1" - "[cluj2015_signature_jw_foil]sticker" "1" - "[cluj2015_signature_krimz_foil]sticker" "1" - "[cluj2015_signature_olofmeister_foil]sticker" "1" - "[cluj2015_signature_pronax_foil]sticker" "1" - "[cluj2015_signature_boltz_foil]sticker" "1" - "[cluj2015_signature_coldzera_foil]sticker" "1" - "[cluj2015_signature_fallen_foil]sticker" "1" - "[cluj2015_signature_fer_foil]sticker" "1" - "[cluj2015_signature_steel_foil]sticker" "1" + "name" "rio2022_signature_v4lde_2" + "item_name" "#StickerKit_rio2022_signature_v4lde" + "description_string" "#StickerKit_desc_rio2022_signature_v4lde" + "sticker_material" "rio2022/sig_v4lde" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "154664140" } - "crate_cluj2015_promo_de_dust2" + "6099" { - "set_dust_2" "1" + "name" "rio2022_signature_v4lde_2_glitter" + "item_name" "#StickerKit_rio2022_signature_v4lde_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_v4lde_glitter" + "sticker_material" "rio2022/sig_v4lde_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "154664140" } - "crate_cluj2015_promo_de_mirage" + "6100" { - "set_mirage" "1" + "name" "rio2022_signature_v4lde_2_holo" + "item_name" "#StickerKit_rio2022_signature_v4lde_holo" + "description_string" "#StickerKit_desc_rio2022_signature_v4lde_holo" + "sticker_material" "rio2022/sig_v4lde_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "154664140" } - "crate_cluj2015_promo_de_inferno" + "6101" { - "set_inferno" "1" + "name" "rio2022_signature_v4lde_2_gold" + "item_name" "#StickerKit_rio2022_signature_v4lde_gold" + "description_string" "#StickerKit_desc_rio2022_signature_v4lde_gold" + "sticker_material" "rio2022/sig_v4lde_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "154664140" } - "crate_cluj2015_promo_de_cbble" + "6102" { - "set_cobblestone" "1" + "name" "rio2022_signature_sunpayus_2" + "item_name" "#StickerKit_rio2022_signature_sunpayus" + "description_string" "#StickerKit_desc_rio2022_signature_sunpayus" + "sticker_material" "rio2022/sig_sunpayus" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "349573813" } - "crate_cluj2015_promo_de_overpass" + "6103" { - "set_overpass" "1" + "name" "rio2022_signature_sunpayus_2_glitter" + "item_name" "#StickerKit_rio2022_signature_sunpayus_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sunpayus_glitter" + "sticker_material" "rio2022/sig_sunpayus_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "349573813" } - "crate_cluj2015_promo_de_cache" + "6104" { - "set_cache" "1" + "name" "rio2022_signature_sunpayus_2_holo" + "item_name" "#StickerKit_rio2022_signature_sunpayus_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sunpayus_holo" + "sticker_material" "rio2022/sig_sunpayus_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "349573813" } - "crate_cluj2015_promo_de_train" + "6105" { - "set_train" "1" + "name" "rio2022_signature_sunpayus_2_gold" + "item_name" "#StickerKit_rio2022_signature_sunpayus_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sunpayus_gold" + "sticker_material" "rio2022/sig_sunpayus_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "84" + "tournament_player_id" "349573813" } - "coupon loot list - bossyburger" + "6106" { - "public_list_contents" "1" - "[bossyburger]sticker" "1" + "name" "rio2022_signature_karrigan_2" + "item_name" "#StickerKit_rio2022_signature_karrigan" + "description_string" "#StickerKit_desc_rio2022_signature_karrigan" + "sticker_material" "rio2022/sig_karrigan" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "29164525" } - "coupon loot list - catcall" + "6107" { - "public_list_contents" "1" - "[catcall]sticker" "1" + "name" "rio2022_signature_karrigan_2_glitter" + "item_name" "#StickerKit_rio2022_signature_karrigan_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_karrigan_glitter" + "sticker_material" "rio2022/sig_karrigan_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "29164525" } - "coupon loot list - chickenstrike" + "6108" { - "public_list_contents" "1" - "[chickenstrike]sticker" "1" + "name" "rio2022_signature_karrigan_2_holo" + "item_name" "#StickerKit_rio2022_signature_karrigan_holo" + "description_string" "#StickerKit_desc_rio2022_signature_karrigan_holo" + "sticker_material" "rio2022/sig_karrigan_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "29164525" } - "coupon loot list - ctbanana" + "6109" { - "public_list_contents" "1" - "[ctbanana]sticker" "1" + "name" "rio2022_signature_karrigan_2_gold" + "item_name" "#StickerKit_rio2022_signature_karrigan_gold" + "description_string" "#StickerKit_desc_rio2022_signature_karrigan_gold" + "sticker_material" "rio2022/sig_karrigan_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "29164525" } - "coupon loot list - dontworryimpro" + "6110" { - "public_list_contents" "1" - "[dontworryimpro]sticker" "1" + "name" "rio2022_signature_rain_2" + "item_name" "#StickerKit_rio2022_signature_rain" + "description_string" "#StickerKit_desc_rio2022_signature_rain" + "sticker_material" "rio2022/sig_rain" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "coupon loot list - fightlikeagirl" + "6111" { - "public_list_contents" "1" - "[fightlikeagirl]sticker" "1" + "name" "rio2022_signature_rain_2_glitter" + "item_name" "#StickerKit_rio2022_signature_rain_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_rain_glitter" + "sticker_material" "rio2022/sig_rain_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "coupon loot list - handmadeflash" + "6112" { - "public_list_contents" "1" - "[handmadeflash]sticker" "1" + "name" "rio2022_signature_rain_2_holo" + "item_name" "#StickerKit_rio2022_signature_rain_holo" + "description_string" "#StickerKit_desc_rio2022_signature_rain_holo" + "sticker_material" "rio2022/sig_rain_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "coupon loot list - kawaiikiller" + "6113" { - "public_list_contents" "1" - "[kawaiikiller]sticker" "1" + "name" "rio2022_signature_rain_2_gold" + "item_name" "#StickerKit_rio2022_signature_rain_gold" + "description_string" "#StickerKit_desc_rio2022_signature_rain_gold" + "sticker_material" "rio2022/sig_rain_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "37085479" } - "coupon loot list - neluthebear" + "6114" { - "public_list_contents" "1" - "[neluthebear]sticker" "1" + "name" "rio2022_signature_twistzz_2" + "item_name" "#StickerKit_rio2022_signature_twistzz" + "description_string" "#StickerKit_desc_rio2022_signature_twistzz" + "sticker_material" "rio2022/sig_twistzz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "55989477" } - "coupon loot list - oneshotonekill" + "6115" { - "public_list_contents" "1" - "[oneshotonekill]sticker" "1" + "name" "rio2022_signature_twistzz_2_glitter" + "item_name" "#StickerKit_rio2022_signature_twistzz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_twistzz_glitter" + "sticker_material" "rio2022/sig_twistzz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "55989477" } - "coupon loot list - shootingstar" + "6116" { - "public_list_contents" "1" - "[shootingstar]sticker" "1" + "name" "rio2022_signature_twistzz_2_holo" + "item_name" "#StickerKit_rio2022_signature_twistzz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_twistzz_holo" + "sticker_material" "rio2022/sig_twistzz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "55989477" } - "coupon loot list - warpenguin" + "6117" { - "public_list_contents" "1" - "[warpenguin]sticker" "1" + "name" "rio2022_signature_twistzz_2_gold" + "item_name" "#StickerKit_rio2022_signature_twistzz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_twistzz_gold" + "sticker_material" "rio2022/sig_twistzz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "55989477" } - "coupon loot list - windywalking" + "6118" { - "public_list_contents" "1" - "[windywalking]sticker" "1" + "name" "rio2022_signature_ropz_2" + "item_name" "#StickerKit_rio2022_signature_ropz" + "description_string" "#StickerKit_desc_rio2022_signature_ropz" + "sticker_material" "rio2022/sig_ropz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "coupon loot list - blitzkrieg" + "6119" { - "public_list_contents" "1" - "[blitzkrieg]sticker" "1" + "name" "rio2022_signature_ropz_2_glitter" + "item_name" "#StickerKit_rio2022_signature_ropz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_ropz_glitter" + "sticker_material" "rio2022/sig_ropz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "coupon loot list - pigeonmaster" + "6120" { - "public_list_contents" "1" - "[pigeonmaster]sticker" "1" + "name" "rio2022_signature_ropz_2_holo" + "item_name" "#StickerKit_rio2022_signature_ropz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_ropz_holo" + "sticker_material" "rio2022/sig_ropz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "coupon loot list - terrorized" + "6121" { - "public_list_contents" "1" - "[terrorized]sticker" "1" + "name" "rio2022_signature_ropz_2_gold" + "item_name" "#StickerKit_rio2022_signature_ropz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_ropz_gold" + "sticker_material" "rio2022/sig_ropz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "31006590" } - "coupon loot list - tilldeathdouspart" + "6122" { - "public_list_contents" "1" - "[tilldeathdouspart]sticker" "1" + "name" "rio2022_signature_broky_2" + "item_name" "#StickerKit_rio2022_signature_broky" + "description_string" "#StickerKit_desc_rio2022_signature_broky" + "sticker_material" "rio2022/sig_broky" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "coupon loot list - stayfrosty" + "6123" { - "public_list_contents" "1" - "[stayfrosty]sticker" "1" + "name" "rio2022_signature_broky_2_glitter" + "item_name" "#StickerKit_rio2022_signature_broky_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_broky_glitter" + "sticker_material" "rio2022/sig_broky_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "coupon loot list - toncat" + "6124" { - "public_list_contents" "1" - "[toncat]sticker" "1" + "name" "rio2022_signature_broky_2_holo" + "item_name" "#StickerKit_rio2022_signature_broky_holo" + "description_string" "#StickerKit_desc_rio2022_signature_broky_holo" + "sticker_material" "rio2022/sig_broky_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "coupon loot list - danielsadowski_01" + "6125" { - "public_list_contents" "1" - "[danielsadowski_01]musickit" "1" + "name" "rio2022_signature_broky_2_gold" + "item_name" "#StickerKit_rio2022_signature_broky_gold" + "description_string" "#StickerKit_desc_rio2022_signature_broky_gold" + "sticker_material" "rio2022/sig_broky_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "61" + "tournament_player_id" "241354762" } - "coupon loot list - noisia_01" + "6126" { - "public_list_contents" "1" - "[noisia_01]musickit" "1" + "name" "rio2022_signature_cadian_2" + "item_name" "#StickerKit_rio2022_signature_cadian" + "description_string" "#StickerKit_desc_rio2022_signature_cadian" + "sticker_material" "rio2022/sig_cadian" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "coupon loot list - robertallaire_01" + "6127" { - "public_list_contents" "1" - "[robertallaire_01]musickit" "1" + "name" "rio2022_signature_cadian_2_glitter" + "item_name" "#StickerKit_rio2022_signature_cadian_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_cadian_glitter" + "sticker_material" "rio2022/sig_cadian_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "coupon loot list - seanmurray_01" + "6128" { - "public_list_contents" "1" - "[seanmurray_01]musickit" "1" + "name" "rio2022_signature_cadian_2_holo" + "item_name" "#StickerKit_rio2022_signature_cadian_holo" + "description_string" "#StickerKit_desc_rio2022_signature_cadian_holo" + "sticker_material" "rio2022/sig_cadian_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "coupon loot list - feedme_01" + "6129" { - "public_list_contents" "1" - "[feedme_01]musickit" "1" + "name" "rio2022_signature_cadian_2_gold" + "item_name" "#StickerKit_rio2022_signature_cadian_gold" + "description_string" "#StickerKit_desc_rio2022_signature_cadian_gold" + "sticker_material" "rio2022/sig_cadian_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "43849788" } - "coupon loot list - dren_01" + "6130" { - "public_list_contents" "1" - "[dren_01]musickit" "1" + "name" "rio2022_signature_teses_2" + "item_name" "#StickerKit_rio2022_signature_teses" + "description_string" "#StickerKit_desc_rio2022_signature_teses" + "sticker_material" "rio2022/sig_teses" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "coupon loot list - austinwintory_01" + "6131" { - "public_list_contents" "1" - "[austinwintory_01]musickit" "1" + "name" "rio2022_signature_teses_2_glitter" + "item_name" "#StickerKit_rio2022_signature_teses_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_teses_glitter" + "sticker_material" "rio2022/sig_teses_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "coupon loot list - sasha_01" + "6132" { - "public_list_contents" "1" - "[sasha_01]musickit" "1" + "name" "rio2022_signature_teses_2_holo" + "item_name" "#StickerKit_rio2022_signature_teses_holo" + "description_string" "#StickerKit_desc_rio2022_signature_teses_holo" + "sticker_material" "rio2022/sig_teses_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "coupon loot list - skog_01" + "6133" { - "public_list_contents" "1" - "[skog_01]musickit" "1" + "name" "rio2022_signature_teses_2_gold" + "item_name" "#StickerKit_rio2022_signature_teses_gold" + "description_string" "#StickerKit_desc_rio2022_signature_teses_gold" + "sticker_material" "rio2022/sig_teses_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "36412550" } - "coupon loot list - doomed" + "6134" { - "public_list_contents" "1" - "[doomed]sticker" "1" + "name" "rio2022_signature_sjuush_2" + "item_name" "#StickerKit_rio2022_signature_sjuush" + "description_string" "#StickerKit_desc_rio2022_signature_sjuush" + "sticker_material" "rio2022/sig_sjuush" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "coupon loot list - queenofpain" + "6135" { - "public_list_contents" "1" - "[queenofpain]sticker" "1" + "name" "rio2022_signature_sjuush_2_glitter" + "item_name" "#StickerKit_rio2022_signature_sjuush_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sjuush_glitter" + "sticker_material" "rio2022/sig_sjuush_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "coupon loot list - trickorthreat" + "6136" { - "public_list_contents" "1" - "[trickorthreat]sticker" "1" + "name" "rio2022_signature_sjuush_2_holo" + "item_name" "#StickerKit_rio2022_signature_sjuush_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sjuush_holo" + "sticker_material" "rio2022/sig_sjuush_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "coupon loot list - trickortreat" + "6137" { - "public_list_contents" "1" - "[trickortreat]sticker" "1" + "name" "rio2022_signature_sjuush_2_gold" + "item_name" "#StickerKit_rio2022_signature_sjuush_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sjuush_gold" + "sticker_material" "rio2022/sig_sjuush_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "200443857" } - "coupon loot list - witch" + "6138" { - "public_list_contents" "1" - "[witch]sticker" "1" + "name" "rio2022_signature_jabbi_2" + "item_name" "#StickerKit_rio2022_signature_jabbi" + "description_string" "#StickerKit_desc_rio2022_signature_jabbi" + "sticker_material" "rio2022/sig_jabbi" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "160291620" } - "coupon loot list - zombielover" + "6139" { - "public_list_contents" "1" - "[zombielover]sticker" "1" + "name" "rio2022_signature_jabbi_2_glitter" + "item_name" "#StickerKit_rio2022_signature_jabbi_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_jabbi_glitter" + "sticker_material" "rio2022/sig_jabbi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "160291620" } - "coupon loot list - blood_broiler" + "6140" { - "public_list_contents" "1" - "[blood_broiler]sticker" "1" + "name" "rio2022_signature_jabbi_2_holo" + "item_name" "#StickerKit_rio2022_signature_jabbi_holo" + "description_string" "#StickerKit_desc_rio2022_signature_jabbi_holo" + "sticker_material" "rio2022/sig_jabbi_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "160291620" } - "coupon loot list - dinked" + "6141" { - "public_list_contents" "1" - "[dinked]sticker" "1" + "name" "rio2022_signature_jabbi_2_gold" + "item_name" "#StickerKit_rio2022_signature_jabbi_gold" + "description_string" "#StickerKit_desc_rio2022_signature_jabbi_gold" + "sticker_material" "rio2022/sig_jabbi_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "160291620" } - "coupon loot list - drugwarveteran" + "6142" { - "public_list_contents" "1" - "[drugwarveteran]sticker" "1" + "name" "rio2022_signature_stavn_2" + "item_name" "#StickerKit_rio2022_signature_stavn" + "description_string" "#StickerKit_desc_rio2022_signature_stavn" + "sticker_material" "rio2022/sig_stavn" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "coupon loot list - hohoho" + "6143" { - "public_list_contents" "1" - "[hohoho]sticker" "1" + "name" "rio2022_signature_stavn_2_glitter" + "item_name" "#StickerKit_rio2022_signature_stavn_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_stavn_glitter" + "sticker_material" "rio2022/sig_stavn_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "coupon loot list - massivepear" + "6144" { - "public_list_contents" "1" - "[massivepear]sticker" "1" + "name" "rio2022_signature_stavn_2_holo" + "item_name" "#StickerKit_rio2022_signature_stavn_holo" + "description_string" "#StickerKit_desc_rio2022_signature_stavn_holo" + "sticker_material" "rio2022/sig_stavn_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "coupon loot list - mylittlefriend" + "6145" { - "public_list_contents" "1" - "[mylittlefriend]sticker" "1" + "name" "rio2022_signature_stavn_2_gold" + "item_name" "#StickerKit_rio2022_signature_stavn_gold" + "description_string" "#StickerKit_desc_rio2022_signature_stavn_gold" + "sticker_material" "rio2022/sig_stavn_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "95" + "tournament_player_id" "62099910" } - "coupon loot list - pandamonium" + "6146" { - "public_list_contents" "1" - "[pandamonium]sticker" "1" + "name" "rio2022_signature_b1t_2" + "item_name" "#StickerKit_rio2022_signature_b1t" + "description_string" "#StickerKit_desc_rio2022_signature_b1t" + "sticker_material" "rio2022/sig_b1t" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "coupon loot list - pieceofcake" + "6147" { - "public_list_contents" "1" - "[pieceofcake]sticker" "1" + "name" "rio2022_signature_b1t_2_glitter" + "item_name" "#StickerKit_rio2022_signature_b1t_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_b1t_glitter" + "sticker_material" "rio2022/sig_b1t_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "coupon loot list - saschicken" + "6148" { - "public_list_contents" "1" - "[saschicken]sticker" "1" + "name" "rio2022_signature_b1t_2_holo" + "item_name" "#StickerKit_rio2022_signature_b1t_holo" + "description_string" "#StickerKit_desc_rio2022_signature_b1t_holo" + "sticker_material" "rio2022/sig_b1t_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "coupon loot list - thuglife" + "6149" { - "public_list_contents" "1" - "[thuglife]sticker" "1" + "name" "rio2022_signature_b1t_2_gold" + "item_name" "#StickerKit_rio2022_signature_b1t_gold" + "description_string" "#StickerKit_desc_rio2022_signature_b1t_gold" + "sticker_material" "rio2022/sig_b1t_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "286341748" } - "coupon loot list - trekt" + "6150" { - "public_list_contents" "1" - "[trekt]sticker" "1" + "name" "rio2022_signature_electronic_2" + "item_name" "#StickerKit_rio2022_signature_electronic" + "description_string" "#StickerKit_desc_rio2022_signature_electronic" + "sticker_material" "rio2022/sig_electronic" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "coupon loot list - warowl" + "6151" { - "public_list_contents" "1" - "[warowl]sticker" "1" + "name" "rio2022_signature_electronic_2_glitter" + "item_name" "#StickerKit_rio2022_signature_electronic_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_electronic_glitter" + "sticker_material" "rio2022/sig_electronic_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "coupon loot list - workforfood" + "6152" { - "public_list_contents" "1" - "[workforfood]sticker" "1" + "name" "rio2022_signature_electronic_2_holo" + "item_name" "#StickerKit_rio2022_signature_electronic_holo" + "description_string" "#StickerKit_desc_rio2022_signature_electronic_holo" + "sticker_material" "rio2022/sig_electronic_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "coupon loot list - phoenix_foil" + "6153" { - "public_list_contents" "1" - "[phoenix_foil]sticker" "1" + "name" "rio2022_signature_electronic_2_gold" + "item_name" "#StickerKit_rio2022_signature_electronic_gold" + "description_string" "#StickerKit_desc_rio2022_signature_electronic_gold" + "sticker_material" "rio2022/sig_electronic_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "83779379" } - "coupon loot list - bombsquad_foil" + "6154" { - "public_list_contents" "1" - "[bombsquad_foil]sticker" "1" + "name" "rio2022_signature_sdy_2" + "item_name" "#StickerKit_rio2022_signature_sdy" + "description_string" "#StickerKit_desc_rio2022_signature_sdy" + "sticker_material" "rio2022/sig_sdy" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "80311472" } - "coupon loot list - midnightriders_01" + "6155" { - "public_list_contents" "1" - "[midnightriders_01]musickit" "1" + "name" "rio2022_signature_sdy_2_glitter" + "item_name" "#StickerKit_rio2022_signature_sdy_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sdy_glitter" + "sticker_material" "rio2022/sig_sdy_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "80311472" } - "coupon loot list - danielsadowski_02" + "6156" { - "public_list_contents" "1" - "[danielsadowski_02]musickit" "1" + "name" "rio2022_signature_sdy_2_holo" + "item_name" "#StickerKit_rio2022_signature_sdy_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sdy_holo" + "sticker_material" "rio2022/sig_sdy_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "80311472" } - "coupon loot list - hotlinemiami_01" + "6157" { - "public_list_contents" "1" - "[hotlinemiami_01]musickit" "1" + "name" "rio2022_signature_sdy_2_gold" + "item_name" "#StickerKit_rio2022_signature_sdy_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sdy_gold" + "sticker_material" "rio2022/sig_sdy_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "80311472" } - "coupon loot list - mattlange_01" + "6158" { - "public_list_contents" "1" - "[mattlange_01]musickit" "1" + "name" "rio2022_signature_perfecto_2" + "item_name" "#StickerKit_rio2022_signature_perfecto" + "description_string" "#StickerKit_desc_rio2022_signature_perfecto" + "sticker_material" "rio2022/sig_perfecto" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "coupon loot list - mateomessina_01" + "6159" { - "public_list_contents" "1" - "[mateomessina_01]musickit" "1" + "name" "rio2022_signature_perfecto_2_glitter" + "item_name" "#StickerKit_rio2022_signature_perfecto_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_perfecto_glitter" + "sticker_material" "rio2022/sig_perfecto_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "coupon loot list - damjanmravunac_01" + "6160" { - "public_list_contents" "1" - "[damjanmravunac_01]musickit" "1" + "name" "rio2022_signature_perfecto_2_holo" + "item_name" "#StickerKit_rio2022_signature_perfecto_holo" + "description_string" "#StickerKit_desc_rio2022_signature_perfecto_holo" + "sticker_material" "rio2022/sig_perfecto_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "coupon loot list - flickshot" + "6161" { - "public_list_contents" "1" - "[flickshot]sticker" "1" + "name" "rio2022_signature_perfecto_2_gold" + "item_name" "#StickerKit_rio2022_signature_perfecto_gold" + "description_string" "#StickerKit_desc_rio2022_signature_perfecto_gold" + "sticker_material" "rio2022/sig_perfecto_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "160954758" } - "coupon loot list - headshot_guarantee" + "6162" { - "public_list_contents" "1" - "[headshot_guarantee]sticker" "1" + "name" "rio2022_signature_s1mple_2" + "item_name" "#StickerKit_rio2022_signature_s1mple" + "description_string" "#StickerKit_desc_rio2022_signature_s1mple" + "sticker_material" "rio2022/sig_s1mple" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "coupon loot list - eco_rush" + "6163" { - "public_list_contents" "1" - "[eco_rush]sticker" "1" + "name" "rio2022_signature_s1mple_2_glitter" + "item_name" "#StickerKit_rio2022_signature_s1mple_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_s1mple_glitter" + "sticker_material" "rio2022/sig_s1mple_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "coupon loot list - just_trolling" + "6164" { - "public_list_contents" "1" - "[just_trolling]sticker" "1" + "name" "rio2022_signature_s1mple_2_holo" + "item_name" "#StickerKit_rio2022_signature_s1mple_holo" + "description_string" "#StickerKit_desc_rio2022_signature_s1mple_holo" + "sticker_material" "rio2022/sig_s1mple_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "coupon loot list - firestarter_holo" + "6165" { - "public_list_contents" "1" - "[firestarter_holo]sticker" "1" + "name" "rio2022_signature_s1mple_2_gold" + "item_name" "#StickerKit_rio2022_signature_s1mple_gold" + "description_string" "#StickerKit_desc_rio2022_signature_s1mple_gold" + "sticker_material" "rio2022/sig_s1mple_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "12" + "tournament_player_id" "73936547" } - "coupon loot list - lucky_cat_foil" + "6166" { - "public_list_contents" "1" - "[lucky_cat_foil]sticker" "1" + "name" "rio2022_signature_es3tag_2" + "item_name" "#StickerKit_rio2022_signature_es3tag" + "description_string" "#StickerKit_desc_rio2022_signature_es3tag" + "sticker_material" "rio2022/sig_es3tag" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "1859646" } - "coupon loot list - robot_head" + "6167" { - "public_list_contents" "1" - "[robot_head]sticker" "1" + "name" "rio2022_signature_es3tag_2_glitter" + "item_name" "#StickerKit_rio2022_signature_es3tag_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_es3tag_glitter" + "sticker_material" "rio2022/sig_es3tag_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "1859646" } - "coupon loot list - witchcraft" + "6168" { - "public_list_contents" "1" - "[witchcraft]sticker" "1" + "name" "rio2022_signature_es3tag_2_holo" + "item_name" "#StickerKit_rio2022_signature_es3tag_holo" + "description_string" "#StickerKit_desc_rio2022_signature_es3tag_holo" + "sticker_material" "rio2022/sig_es3tag_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "1859646" } - "coupon loot list - wanna_fight" + "6169" { - "public_list_contents" "1" - "[wanna_fight]sticker" "1" + "name" "rio2022_signature_es3tag_2_gold" + "item_name" "#StickerKit_rio2022_signature_es3tag_gold" + "description_string" "#StickerKit_desc_rio2022_signature_es3tag_gold" + "sticker_material" "rio2022/sig_es3tag_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "1859646" } - "coupon loot list - hostage_rescue" + "6170" { - "public_list_contents" "1" - "[hostage_rescue]sticker" "1" + "name" "rio2022_signature_aleksib_2" + "item_name" "#StickerKit_rio2022_signature_aleksib" + "description_string" "#StickerKit_desc_rio2022_signature_aleksib" + "sticker_material" "rio2022/sig_aleksib" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "52977598" } - "coupon loot list - hamster_hawk" + "6171" { - "public_list_contents" "1" - "[hamster_hawk]sticker" "1" + "name" "rio2022_signature_aleksib_2_glitter" + "item_name" "#StickerKit_rio2022_signature_aleksib_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_aleksib_glitter" + "sticker_material" "rio2022/sig_aleksib_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "52977598" } - "coupon loot list - headless_chicken" + "6172" { - "public_list_contents" "1" - "[headless_chicken]sticker" "1" + "name" "rio2022_signature_aleksib_2_holo" + "item_name" "#StickerKit_rio2022_signature_aleksib_holo" + "description_string" "#StickerKit_desc_rio2022_signature_aleksib_holo" + "sticker_material" "rio2022/sig_aleksib_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "52977598" } - "coupon loot list - proxy_01" + "6173" { - "public_list_contents" "1" - "[proxy_01]musickit" "1" + "name" "rio2022_signature_aleksib_2_gold" + "item_name" "#StickerKit_rio2022_signature_aleksib_gold" + "description_string" "#StickerKit_desc_rio2022_signature_aleksib_gold" + "sticker_material" "rio2022/sig_aleksib_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "52977598" } - "coupon loot list - kitheory_01" + "6174" { - "public_list_contents" "1" - "[kitheory_01]musickit" "1" + "name" "rio2022_signature_rez_2" + "item_name" "#StickerKit_rio2022_signature_rez" + "description_string" "#StickerKit_desc_rio2022_signature_rez" + "sticker_material" "rio2022/sig_rez" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "coupon loot list - troelsfolmann_01" + "6175" { - "public_list_contents" "1" - "[troelsfolmann_01]musickit" "1" + "name" "rio2022_signature_rez_2_glitter" + "item_name" "#StickerKit_rio2022_signature_rez_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_rez_glitter" + "sticker_material" "rio2022/sig_rez_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "73906687" + } + "6176" + { + "name" "rio2022_signature_rez_2_holo" + "item_name" "#StickerKit_rio2022_signature_rez_holo" + "description_string" "#StickerKit_desc_rio2022_signature_rez_holo" + "sticker_material" "rio2022/sig_rez_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "coupon loot list - kellybailey_01" + "6177" { - "public_list_contents" "1" - "[kellybailey_01]musickit" "1" + "name" "rio2022_signature_rez_2_gold" + "item_name" "#StickerKit_rio2022_signature_rez_gold" + "description_string" "#StickerKit_desc_rio2022_signature_rez_gold" + "sticker_material" "rio2022/sig_rez_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "73906687" } - "coupon loot list - skog_02" + "6178" { - "public_list_contents" "1" - "[skog_02]musickit" "1" + "name" "rio2022_signature_hampus_2" + "item_name" "#StickerKit_rio2022_signature_hampus" + "description_string" "#StickerKit_desc_rio2022_signature_hampus" + "sticker_material" "rio2022/sig_hampus" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "coupon loot list - enfu_sticker_capsule" + "6179" { - "public_list_contents" "1" - "crate_sticker_pack_enfu_capsule" "1" + "name" "rio2022_signature_hampus_2_glitter" + "item_name" "#StickerKit_rio2022_signature_hampus_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_hampus_glitter" + "sticker_material" "rio2022/sig_hampus_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "coupon loot list - awp_country" + "6180" { - "public_list_contents" "1" - "[awp_country]sticker" "1" + "name" "rio2022_signature_hampus_2_holo" + "item_name" "#StickerKit_rio2022_signature_hampus_holo" + "description_string" "#StickerKit_desc_rio2022_signature_hampus_holo" + "sticker_material" "rio2022/sig_hampus_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "coupon loot list - chi_bomb" + "6181" { - "public_list_contents" "1" - "[chi_bomb]sticker" "1" + "name" "rio2022_signature_hampus_2_gold" + "item_name" "#StickerKit_rio2022_signature_hampus_gold" + "description_string" "#StickerKit_desc_rio2022_signature_hampus_gold" + "sticker_material" "rio2022/sig_hampus_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "126680222" } - "coupon loot list - fox" + "6182" { - "public_list_contents" "1" - "[fox]sticker" "1" + "name" "rio2022_signature_brollan_2" + "item_name" "#StickerKit_rio2022_signature_brollan" + "description_string" "#StickerKit_desc_rio2022_signature_brollan" + "sticker_material" "rio2022/sig_brollan" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "coupon loot list - knifeclub" + "6183" { - "public_list_contents" "1" - "[knifeclub]sticker" "1" + "name" "rio2022_signature_brollan_2_glitter" + "item_name" "#StickerKit_rio2022_signature_brollan_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_brollan_glitter" + "sticker_material" "rio2022/sig_brollan_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "coupon loot list - cs_on_the_mind" + "6184" { - "public_list_contents" "1" - "[cs_on_the_mind]sticker" "1" + "name" "rio2022_signature_brollan_2_holo" + "item_name" "#StickerKit_rio2022_signature_brollan_holo" + "description_string" "#StickerKit_desc_rio2022_signature_brollan_holo" + "sticker_material" "rio2022/sig_brollan_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "coupon loot list - ninja_defuse" + "6185" { - "public_list_contents" "1" - "[ninja_defuse]sticker" "1" + "name" "rio2022_signature_brollan_2_gold" + "item_name" "#StickerKit_rio2022_signature_brollan_gold" + "description_string" "#StickerKit_desc_rio2022_signature_brollan_gold" + "sticker_material" "rio2022/sig_brollan_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "1" + "tournament_player_id" "178562747" } - "coupon loot list - pros_dont_fake" + "6186" { - "public_list_contents" "1" - "[pros_dont_fake]sticker" "1" + "name" "rio2022_signature_slaxz_2" + "item_name" "#StickerKit_rio2022_signature_slaxz" + "description_string" "#StickerKit_desc_rio2022_signature_slaxz" + "sticker_material" "rio2022/sig_slaxz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104087441" } - "coupon loot list - kawaiikiller_t" + "6187" { - "public_list_contents" "1" - "[kawaiikiller_t]sticker" "1" + "name" "rio2022_signature_slaxz_2_glitter" + "item_name" "#StickerKit_rio2022_signature_slaxz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_slaxz_glitter" + "sticker_material" "rio2022/sig_slaxz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104087441" } - "coupon loot list - baackstabber" + "6188" { - "public_list_contents" "1" - "[baackstabber]sticker" "1" + "name" "rio2022_signature_slaxz_2_holo" + "item_name" "#StickerKit_rio2022_signature_slaxz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_slaxz_holo" + "sticker_material" "rio2022/sig_slaxz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104087441" } - "coupon loot list - delicious_tears" + "6189" { - "public_list_contents" "1" - "[delicious_tears]sticker" "1" + "name" "rio2022_signature_slaxz_2_gold" + "item_name" "#StickerKit_rio2022_signature_slaxz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_slaxz_gold" + "sticker_material" "rio2022/sig_slaxz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104087441" } - "coupon loot list - danielsadowski_03" + "6190" { - "public_list_contents" "1" - "[danielsadowski_03]musickit" "1" + "name" "rio2022_signature_launx_2" + "item_name" "#StickerKit_rio2022_signature_launx" + "description_string" "#StickerKit_desc_rio2022_signature_launx" + "sticker_material" "rio2022/sig_launx" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "1012530125" } - "coupon loot list - awolnation_01" + "6191" { - "public_list_contents" "1" - "[awolnation_01]musickit" "1" + "name" "rio2022_signature_launx_2_glitter" + "item_name" "#StickerKit_rio2022_signature_launx_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_launx_glitter" + "sticker_material" "rio2022/sig_launx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "1012530125" } - "coupon loot list - mordfustang_01" + "6192" { - "public_list_contents" "1" - "[mordfustang_01]musickit" "1" + "name" "rio2022_signature_launx_2_holo" + "item_name" "#StickerKit_rio2022_signature_launx_holo" + "description_string" "#StickerKit_desc_rio2022_signature_launx_holo" + "sticker_material" "rio2022/sig_launx_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "1012530125" } - "coupon loot list - michaelbross_01" + "6193" { - "public_list_contents" "1" - "[michaelbross_01]musickit" "1" + "name" "rio2022_signature_launx_2_gold" + "item_name" "#StickerKit_rio2022_signature_launx_gold" + "description_string" "#StickerKit_desc_rio2022_signature_launx_gold" + "sticker_material" "rio2022/sig_launx_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "1012530125" } - "coupon loot list - ianhultquist_01" + "6194" { - "public_list_contents" "1" - "[ianhultquist_01]musickit" "1" + "name" "rio2022_signature_refrezh_2" + "item_name" "#StickerKit_rio2022_signature_refrezh" + "description_string" "#StickerKit_desc_rio2022_signature_refrezh" + "sticker_material" "rio2022/sig_refrezh" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104598470" } - "coupon loot list - newbeatfund_01" + "6195" { - "public_list_contents" "1" - "[newbeatfund_01]musickit" "1" + "name" "rio2022_signature_refrezh_2_glitter" + "item_name" "#StickerKit_rio2022_signature_refrezh_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_refrezh_glitter" + "sticker_material" "rio2022/sig_refrezh_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104598470" } - "coupon loot list - beartooth_01" + "6196" { - "public_list_contents" "1" - "[beartooth_01]musickit" "1" + "name" "rio2022_signature_refrezh_2_holo" + "item_name" "#StickerKit_rio2022_signature_refrezh_holo" + "description_string" "#StickerKit_desc_rio2022_signature_refrezh_holo" + "sticker_material" "rio2022/sig_refrezh_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104598470" } - "coupon loot list - lenniemoore_01" + "6197" { - "public_list_contents" "1" - "[lenniemoore_01]musickit" "1" + "name" "rio2022_signature_refrezh_2_gold" + "item_name" "#StickerKit_rio2022_signature_refrezh_gold" + "description_string" "#StickerKit_desc_rio2022_signature_refrezh_gold" + "sticker_material" "rio2022/sig_refrezh_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "104598470" } - "coupon loot list - darude_01" + "6198" { - "public_list_contents" "1" - "[darude_01]musickit" "1" + "name" "rio2022_signature_staehr_2" + "item_name" "#StickerKit_rio2022_signature_staehr" + "description_string" "#StickerKit_desc_rio2022_signature_staehr" + "sticker_material" "rio2022/sig_staehr" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "44842089" } - "coupon loot list - proxy_01_stattrak" + "6199" { - "public_list_contents" "1" - "[proxy_01]musickit" "1" + "name" "rio2022_signature_staehr_2_glitter" + "item_name" "#StickerKit_rio2022_signature_staehr_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_staehr_glitter" + "sticker_material" "rio2022/sig_staehr_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "44842089" } - "coupon loot list - kitheory_01_stattrak" + "6200" { - "public_list_contents" "1" - "[kitheory_01]musickit" "1" + "name" "rio2022_signature_staehr_2_holo" + "item_name" "#StickerKit_rio2022_signature_staehr_holo" + "description_string" "#StickerKit_desc_rio2022_signature_staehr_holo" + "sticker_material" "rio2022/sig_staehr_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "44842089" } - "coupon loot list - troelsfolmann_01_stattrak" + "6201" { - "public_list_contents" "1" - "[troelsfolmann_01]musickit" "1" + "name" "rio2022_signature_staehr_2_gold" + "item_name" "#StickerKit_rio2022_signature_staehr_gold" + "description_string" "#StickerKit_desc_rio2022_signature_staehr_gold" + "sticker_material" "rio2022/sig_staehr_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "44842089" } - "coupon loot list - kellybailey_01_stattrak" + "6202" { - "public_list_contents" "1" - "[kellybailey_01]musickit" "1" + "name" "rio2022_signature_zyphon_2" + "item_name" "#StickerKit_rio2022_signature_zyphon" + "description_string" "#StickerKit_desc_rio2022_signature_zyphon" + "sticker_material" "rio2022/sig_zyphon" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "198111516" } - "coupon loot list - skog_02_stattrak" + "6203" { - "public_list_contents" "1" - "[skog_02]musickit" "1" + "name" "rio2022_signature_zyphon_2_glitter" + "item_name" "#StickerKit_rio2022_signature_zyphon_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_zyphon_glitter" + "sticker_material" "rio2022/sig_zyphon_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "198111516" } - "coupon loot list - danielsadowski_03_stattrak" + "6204" { - "public_list_contents" "1" - "[danielsadowski_03]musickit" "1" + "name" "rio2022_signature_zyphon_2_holo" + "item_name" "#StickerKit_rio2022_signature_zyphon_holo" + "description_string" "#StickerKit_desc_rio2022_signature_zyphon_holo" + "sticker_material" "rio2022/sig_zyphon_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "198111516" } - "coupon loot list - awolnation_01_stattrak" + "6205" { - "public_list_contents" "1" - "[awolnation_01]musickit" "1" + "name" "rio2022_signature_zyphon_2_gold" + "item_name" "#StickerKit_rio2022_signature_zyphon_gold" + "description_string" "#StickerKit_desc_rio2022_signature_zyphon_gold" + "sticker_material" "rio2022/sig_zyphon_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "72" + "tournament_player_id" "198111516" } - "coupon loot list - mordfustang_01_stattrak" + "6206" { - "public_list_contents" "1" - "[mordfustang_01]musickit" "1" + "name" "rio2022_signature_yekindar_2" + "item_name" "#StickerKit_rio2022_signature_yekindar" + "description_string" "#StickerKit_desc_rio2022_signature_yekindar" + "sticker_material" "rio2022/sig_yekindar" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "174136197" } - "coupon loot list - michaelbross_01_stattrak" + "6207" { - "public_list_contents" "1" - "[michaelbross_01]musickit" "1" + "name" "rio2022_signature_yekindar_2_glitter" + "item_name" "#StickerKit_rio2022_signature_yekindar_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_yekindar_glitter" + "sticker_material" "rio2022/sig_yekindar_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "174136197" } - "coupon loot list - ianhultquist_01_stattrak" + "6208" { - "public_list_contents" "1" - "[ianhultquist_01]musickit" "1" + "name" "rio2022_signature_yekindar_2_holo" + "item_name" "#StickerKit_rio2022_signature_yekindar_holo" + "description_string" "#StickerKit_desc_rio2022_signature_yekindar_holo" + "sticker_material" "rio2022/sig_yekindar_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "174136197" } - "coupon loot list - newbeatfund_01_stattrak" + "6209" { - "public_list_contents" "1" - "[newbeatfund_01]musickit" "1" + "name" "rio2022_signature_yekindar_2_gold" + "item_name" "#StickerKit_rio2022_signature_yekindar_gold" + "description_string" "#StickerKit_desc_rio2022_signature_yekindar_gold" + "sticker_material" "rio2022/sig_yekindar_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "174136197" } - "coupon loot list - beartooth_01_stattrak" + "6210" { - "public_list_contents" "1" - "[beartooth_01]musickit" "1" + "name" "rio2022_signature_osee_2" + "item_name" "#StickerKit_rio2022_signature_osee" + "description_string" "#StickerKit_desc_rio2022_signature_osee" + "sticker_material" "rio2022/sig_osee" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "87206806" } - "coupon loot list - lenniemoore_01_stattrak" + "6211" { - "public_list_contents" "1" - "[lenniemoore_01]musickit" "1" + "name" "rio2022_signature_osee_2_glitter" + "item_name" "#StickerKit_rio2022_signature_osee_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_osee_glitter" + "sticker_material" "rio2022/sig_osee_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "87206806" } - "coupon loot list - darude_01_stattrak" + "6212" { - "public_list_contents" "1" - "[darude_01]musickit" "1" + "name" "rio2022_signature_osee_2_holo" + "item_name" "#StickerKit_rio2022_signature_osee_holo" + "description_string" "#StickerKit_desc_rio2022_signature_osee_holo" + "sticker_material" "rio2022/sig_osee_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "87206806" } - "coupon loot list - danielsadowski_01_stattrak" + "6213" { - "public_list_contents" "1" - "[danielsadowski_01]musickit" "1" + "name" "rio2022_signature_osee_2_gold" + "item_name" "#StickerKit_rio2022_signature_osee_gold" + "description_string" "#StickerKit_desc_rio2022_signature_osee_gold" + "sticker_material" "rio2022/sig_osee_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "87206806" } - "coupon loot list - noisia_01_stattrak" + "6214" { - "public_list_contents" "1" - "[noisia_01]musickit" "1" + "name" "rio2022_signature_nitro_2" + "item_name" "#StickerKit_rio2022_signature_nitro" + "description_string" "#StickerKit_desc_rio2022_signature_nitro" + "sticker_material" "rio2022/sig_nitro" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "35624002" } - "coupon loot list - robertallaire_01_stattrak" + "6215" { - "public_list_contents" "1" - "[robertallaire_01]musickit" "1" + "name" "rio2022_signature_nitro_2_glitter" + "item_name" "#StickerKit_rio2022_signature_nitro_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_nitro_glitter" + "sticker_material" "rio2022/sig_nitro_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "35624002" } - "coupon loot list - seanmurray_01_stattrak" + "6216" { - "public_list_contents" "1" - "[seanmurray_01]musickit" "1" + "name" "rio2022_signature_nitro_2_holo" + "item_name" "#StickerKit_rio2022_signature_nitro_holo" + "description_string" "#StickerKit_desc_rio2022_signature_nitro_holo" + "sticker_material" "rio2022/sig_nitro_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "35624002" } - "coupon loot list - feedme_01_stattrak" + "6217" { - "public_list_contents" "1" - "[feedme_01]musickit" "1" + "name" "rio2022_signature_nitro_2_gold" + "item_name" "#StickerKit_rio2022_signature_nitro_gold" + "description_string" "#StickerKit_desc_rio2022_signature_nitro_gold" + "sticker_material" "rio2022/sig_nitro_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "35624002" } - "coupon loot list - dren_01_stattrak" + "6218" { - "public_list_contents" "1" - "[dren_01]musickit" "1" + "name" "rio2022_signature_naf_2" + "item_name" "#StickerKit_rio2022_signature_naf" + "description_string" "#StickerKit_desc_rio2022_signature_naf" + "sticker_material" "rio2022/sig_naf" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "40885967" } - "coupon loot list - austinwintory_01_stattrak" + "6219" { - "public_list_contents" "1" - "[austinwintory_01]musickit" "1" + "name" "rio2022_signature_naf_2_glitter" + "item_name" "#StickerKit_rio2022_signature_naf_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_naf_glitter" + "sticker_material" "rio2022/sig_naf_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "40885967" } - "coupon loot list - sasha_01_stattrak" + "6220" { - "public_list_contents" "1" - "[sasha_01]musickit" "1" + "name" "rio2022_signature_naf_2_holo" + "item_name" "#StickerKit_rio2022_signature_naf_holo" + "description_string" "#StickerKit_desc_rio2022_signature_naf_holo" + "sticker_material" "rio2022/sig_naf_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "40885967" } - "coupon loot list - skog_01_stattrak" + "6221" { - "public_list_contents" "1" - "[skog_01]musickit" "1" + "name" "rio2022_signature_naf_2_gold" + "item_name" "#StickerKit_rio2022_signature_naf_gold" + "description_string" "#StickerKit_desc_rio2022_signature_naf_gold" + "sticker_material" "rio2022/sig_naf_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "40885967" } - "coupon loot list - midnightriders_01_stattrak" + "6222" { - "public_list_contents" "1" - "[midnightriders_01]musickit" "1" + "name" "rio2022_signature_elige_2" + "item_name" "#StickerKit_rio2022_signature_elige" + "description_string" "#StickerKit_desc_rio2022_signature_elige" + "sticker_material" "rio2022/sig_elige" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "106428011" } - "coupon loot list - danielsadowski_02_stattrak" + "6223" { - "public_list_contents" "1" - "[danielsadowski_02]musickit" "1" + "name" "rio2022_signature_elige_2_glitter" + "item_name" "#StickerKit_rio2022_signature_elige_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_elige_glitter" + "sticker_material" "rio2022/sig_elige_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "106428011" } - "coupon loot list - hotlinemiami_01_stattrak" + "6224" { - "public_list_contents" "1" - "[hotlinemiami_01]musickit" "1" + "name" "rio2022_signature_elige_2_holo" + "item_name" "#StickerKit_rio2022_signature_elige_holo" + "description_string" "#StickerKit_desc_rio2022_signature_elige_holo" + "sticker_material" "rio2022/sig_elige_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "106428011" } - "coupon loot list - mattlange_01_stattrak" + "6225" { - "public_list_contents" "1" - "[mattlange_01]musickit" "1" + "name" "rio2022_signature_elige_2_gold" + "item_name" "#StickerKit_rio2022_signature_elige_gold" + "description_string" "#StickerKit_desc_rio2022_signature_elige_gold" + "sticker_material" "rio2022/sig_elige_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "48" + "tournament_player_id" "106428011" } - "coupon loot list - mateomessina_01_stattrak" + "6226" { - "public_list_contents" "1" - "[mateomessina_01]musickit" "1" + "name" "rio2022_signature_chopper_2" + "item_name" "#StickerKit_rio2022_signature_chopper" + "description_string" "#StickerKit_desc_rio2022_signature_chopper" + "sticker_material" "rio2022/sig_chopper" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "coupon loot list - damjanmravunac_01_stattrak" + "6227" { - "public_list_contents" "1" - "[damjanmravunac_01]musickit" "1" + "name" "rio2022_signature_chopper_2_glitter" + "item_name" "#StickerKit_rio2022_signature_chopper_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_chopper_glitter" + "sticker_material" "rio2022/sig_chopper_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "coupon loot list - pinups_sticker_capsule" + "6228" { - "public_list_contents" "1" - "crate_sticker_pack_pinups_capsule" "1" + "name" "rio2022_signature_chopper_2_holo" + "item_name" "#StickerKit_rio2022_signature_chopper_holo" + "description_string" "#StickerKit_desc_rio2022_signature_chopper_holo" + "sticker_material" "rio2022/sig_chopper_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "coupon loot list - slid3_sticker_capsule" + "6229" { - "public_list_contents" "1" - "crate_sticker_pack_slid3_capsule" "1" + "name" "rio2022_signature_chopper_2_gold" + "item_name" "#StickerKit_rio2022_signature_chopper_gold" + "description_string" "#StickerKit_desc_rio2022_signature_chopper_gold" + "sticker_material" "rio2022/sig_chopper_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "85633136" } - "coupon loot list - team_roles_sticker_capsule" + "6230" { - "public_list_contents" "1" - "crate_sticker_pack_team_roles_capsule" "1" + "name" "rio2022_signature_magixx_2" + "item_name" "#StickerKit_rio2022_signature_magixx" + "description_string" "#StickerKit_desc_rio2022_signature_magixx" + "sticker_material" "rio2022/sig_magixx" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - } - "revolving_loot_lists" - { - "1" "crate_valve_1" - "2" "crate_esports_2013" - "3" "crate_operation_ii" - "4" "crate_valve_2" - "5" "crate_esports_2013_winter" - "6" "crate_dhw13_promo" - "7" "crate_community_1" - "8" "giftpkg_2013_winter" - "9" "crate_sticker_pack01" - "10" "crate_valve_3" - "11" "crate_community_2" - "12" "crate_sticker_pack02" - "13" "crate_ems14_promo" - "14" "crate_sticker_pack_kat2014_01" - "15" "crate_sticker_pack_kat2014_02" - "16" "crate_sticker_pack_community01" - "17" "crate_community_3" - "18" "crate_community_4" - "19" "crate_esports_2014_summer" - "20" "crate_sticker_pack_cologne2014_01" - "21" "crate_sticker_pack_cologne2014_02" - "22" "crate_esl14_promo_de_dust2" - "23" "crate_esl14_promo_de_inferno" - "24" "crate_esl14_promo_de_mirage" - "25" "crate_esl14_promo_de_nuke" - "26" "crate_esl14_promo_de_cache" - "27" "crate_esl14_promo_de_cbble" - "28" "crate_esl14_promo_de_overpass" - "29" "crate_community_5" - "30" "crate_sticker_pack_dhw2014_01" - "31" "crate_dhw14_promo_de_dust2" - "32" "crate_dhw14_promo_de_inferno" - "33" "crate_dhw14_promo_de_mirage" - "34" "crate_dhw14_promo_de_nuke" - "35" "crate_dhw14_promo_de_cache" - "36" "crate_dhw14_promo_de_cbble" - "37" "crate_dhw14_promo_de_overpass" - "38" "crate_community_6" - "39" "crate_eslkatowice2015_promo_de_dust2" - "40" "crate_eslkatowice2015_promo_de_inferno" - "41" "crate_eslkatowice2015_promo_de_mirage" - "42" "crate_eslkatowice2015_promo_de_nuke" - "43" "crate_eslkatowice2015_promo_de_cache" - "44" "crate_eslkatowice2015_promo_de_cbble" - "45" "crate_eslkatowice2015_promo_de_overpass" - "46" "crate_sticker_pack_eslkatowice2015_01" - "47" "crate_sticker_pack_eslkatowice2015_02" - "48" "crate_community_7" - "49" "crate_sticker_pack_enfu_capsule_lootlist" - "50" "crate_community_8" - "51" "crate_sticker_pack_eslcologne2015_legends" - "52" "crate_sticker_pack_eslcologne2015_challengers" - "53" "crate_signature_pack_eslcologne2015_group_1_legendary" - "54" "crate_signature_pack_eslcologne2015_group_2_legendary" - "55" "crate_signature_pack_eslcologne2015_group_3_legendary" - "56" "crate_signature_pack_eslcologne2015_group_4_legendary" - "57" "eslcologne2015_signatures_fnatic" - "58" "eslcologne2015_signatures_luminositygaming" - "59" "eslcologne2015_signatures_navi" - "60" "eslcologne2015_signatures_ninjasinpyjamas" - "61" "eslcologne2015_signatures_envyus" - "62" "eslcologne2015_signatures_titan" - "63" "eslcologne2015_signatures_solomid" - "64" "eslcologne2015_signatures_virtuspro" - "65" "eslcologne2015_signatures_mousesports" - "66" "eslcologne2015_signatures_renegades" - "67" "eslcologne2015_signatures_teamimmunity" - "68" "eslcologne2015_signatures_ebettle" - "69" "eslcologne2015_signatures_kinguin" - "70" "eslcologne2015_signatures_flipside" - "71" "eslcologne2015_signatures_clg" - "72" "eslcologne2015_signatures_cloud9" - "73" "crate_eslcologne2015_promo_de_dust2" - "74" "crate_eslcologne2015_promo_de_mirage" - "75" "crate_eslcologne2015_promo_de_inferno" - "76" "crate_eslcologne2015_promo_de_cbble" - "77" "crate_eslcologne2015_promo_de_overpass" - "78" "crate_eslcologne2015_promo_de_cache" - "79" "crate_eslcologne2015_promo_de_train" - "80" "crate_community_9" - "81" "crate_sticker_pack_cluj2015_legends" - "82" "crate_sticker_pack_cluj2015_challengers" - "83" "crate_signature_pack_cluj2015_group_1_legendary" - "84" "crate_signature_pack_cluj2015_group_2_legendary" - "85" "cluj2015_signatures_nip" - "86" "cluj2015_signatures_dig" - "87" "cluj2015_signatures_clg" - "88" "cluj2015_signatures_vex" - "89" "cluj2015_signatures_flip" - "90" "cluj2015_signatures_liq" - "91" "cluj2015_signatures_mss" - "92" "cluj2015_signatures_navi" - "93" "cluj2015_signatures_vp" - "94" "cluj2015_signatures_c9" - "95" "cluj2015_signatures_g2" - "96" "cluj2015_signatures_tit" - "97" "cluj2015_signatures_tsolo" - "98" "cluj2015_signatures_nv" - "99" "cluj2015_signatures_fntc" - "100" "cluj2015_signatures_lumi" - "101" "crate_cluj2015_promo_de_dust2" - "102" "crate_cluj2015_promo_de_mirage" - "103" "crate_cluj2015_promo_de_inferno" - "104" "crate_cluj2015_promo_de_cbble" - "105" "crate_cluj2015_promo_de_overpass" - "106" "crate_cluj2015_promo_de_cache" - "107" "crate_cluj2015_promo_de_train" - "108" "crate_sticker_pack_pinups_capsule_lootlist" - "109" "crate_sticker_pack_slid3_capsule_lootlist" - "110" "crate_sticker_pack_team_roles_capsule_lootlist" - "111" "crate_community_10" - } - "quest_reward_loot_lists" - { - "1" "set_dust" - "2" "set_aztec" - "3" "set_vertigo" - "4" "set_inferno" - "5" "set_militia" - "6" "set_nuke" - "8" "set_office" - "9" "set_assault" - "13" "set_bravo_ii" - "15" "set_dust_2" - "16" "set_train" - "17" "set_mirage" - "18" "set_italy" - "19" "set_lake" - "20" "set_safehouse" - "24" "set_bank" - "26" "set_overpass" - "28" "set_cobblestone" - "29" "set_baggage" - "31" "set_cache" - "39" "set_gods_and_monsters" - "40" "set_chopshop" - "41" "set_kimono" - } - "item_levels" - { - "KillEaterRank" + "6231" { - "0" - { - "score" "2" - } - "1" - { - "score" "4" - } - "2" - { - "score" "6" - } - "3" - { - "score" "8" - } - "4" - { - "score" "10" - } - "5" - { - "score" "12" - } - "6" - { - "score" "14" - } - "7" - { - "score" "16" - } - "8" - { - "score" "18" - } - "9" - { - "score" "20" - } - "10" - { - "score" "22" - } - "11" - { - "score" "24" - } - "12" - { - "score" "26" - } + "name" "rio2022_signature_magixx_2_glitter" + "item_name" "#StickerKit_rio2022_signature_magixx_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_magixx_glitter" + "sticker_material" "rio2022/sig_magixx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - } - "kill_eater_score_types" - { - "0" + "6232" { - "type_name" "Kills" - "model_attribute" "stattrak model" + "name" "rio2022_signature_magixx_2_holo" + "item_name" "#StickerKit_rio2022_signature_magixx_holo" + "description_string" "#StickerKit_desc_rio2022_signature_magixx_holo" + "sticker_material" "rio2022/sig_magixx_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - "1" + "6233" { - "type_name" "OCMVPs" + "name" "rio2022_signature_magixx_2_gold" + "item_name" "#StickerKit_rio2022_signature_magixx_gold" + "description_string" "#StickerKit_desc_rio2022_signature_magixx_gold" + "sticker_material" "rio2022/sig_magixx_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "868554" } - } - "music_definitions" - { - "1" + "6234" { - "name" "valve_csgo_01" - "loc_name" "#musickit_valve_csgo_01" - "loc_description" "#musickit_valve_csgo_01_desc" - "image_inventory" "econ/music_kits/valve_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_valve_01.mdl" + "name" "rio2022_signature_patsi_2" + "item_name" "#StickerKit_rio2022_signature_patsi" + "description_string" "#StickerKit_desc_rio2022_signature_patsi" + "sticker_material" "rio2022/sig_patsi" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "2" + "6235" { - "name" "valve_csgo_02" - "loc_name" "#musickit_valve_csgo_02" - "loc_description" "#musickit_valve_csgo_02_desc" - "image_tooltip" "tooltip_image_01" - "image_inventory" "econ/music_kits/valve_02" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_valve_02.mdl" + "name" "rio2022_signature_patsi_2_glitter" + "item_name" "#StickerKit_rio2022_signature_patsi_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_patsi_glitter" + "sticker_material" "rio2022/sig_patsi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "3" + "6236" { - "name" "danielsadowski_01" - "loc_name" "#musickit_danielsadowski_01" - "loc_description" "#musickit_danielsadowski_01_desc" - "image_inventory" "econ/music_kits/danielsadowski_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_danielsadowski_01.mdl" + "name" "rio2022_signature_patsi_2_holo" + "item_name" "#StickerKit_rio2022_signature_patsi_holo" + "description_string" "#StickerKit_desc_rio2022_signature_patsi_holo" + "sticker_material" "rio2022/sig_patsi_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "4" + "6237" { - "name" "noisia_01" - "loc_name" "#musickit_noisia_01" - "loc_description" "#musickit_noisia_01_desc" - "image_inventory" "econ/music_kits/noisia_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_noisia_01.mdl" + "name" "rio2022_signature_patsi_2_gold" + "item_name" "#StickerKit_rio2022_signature_patsi_gold" + "description_string" "#StickerKit_desc_rio2022_signature_patsi_gold" + "sticker_material" "rio2022/sig_patsi_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "328275073" } - "5" + "6238" { - "name" "robertallaire_01" - "loc_name" "#musickit_robertallaire_01" - "loc_description" "#musickit_robertallaire_01_desc" - "image_inventory" "econ/music_kits/robertallaire_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_robertallaire_01.mdl" + "name" "rio2022_signature_s1ren_2" + "item_name" "#StickerKit_rio2022_signature_s1ren" + "description_string" "#StickerKit_desc_rio2022_signature_s1ren" + "sticker_material" "rio2022/sig_s1ren" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "6" + "6239" { - "name" "seanmurray_01" - "loc_name" "#musickit_seanmurray_01" - "loc_description" "#musickit_seanmurray_01_desc" - "image_inventory" "econ/music_kits/seanmurray_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_seanmurray_01.mdl" + "name" "rio2022_signature_s1ren_2_glitter" + "item_name" "#StickerKit_rio2022_signature_s1ren_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_s1ren_glitter" + "sticker_material" "rio2022/sig_s1ren_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "7" + "6240" { - "name" "feedme_01" - "loc_name" "#musickit_feedme_01" - "loc_description" "#musickit_feedme_01_desc" - "image_inventory" "econ/music_kits/feedme_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_feedme_01.mdl" + "name" "rio2022_signature_s1ren_2_holo" + "item_name" "#StickerKit_rio2022_signature_s1ren_holo" + "description_string" "#StickerKit_desc_rio2022_signature_s1ren_holo" + "sticker_material" "rio2022/sig_s1ren_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "8" + "6241" { - "name" "dren_01" - "loc_name" "#musickit_dren_01" - "loc_description" "#musickit_dren_01_desc" - "image_inventory" "econ/music_kits/dren_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_dren_01.mdl" + "name" "rio2022_signature_s1ren_2_gold" + "item_name" "#StickerKit_rio2022_signature_s1ren_gold" + "description_string" "#StickerKit_desc_rio2022_signature_s1ren_gold" + "sticker_material" "rio2022/sig_s1ren_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "207519341" } - "9" + "6242" { - "name" "austinwintory_01" - "loc_name" "#musickit_austinwintory_01" - "loc_description" "#musickit_austinwintory_01_desc" - "image_inventory" "econ/music_kits/austinwintory_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_austinwintory_01.mdl" + "name" "rio2022_signature_w0nderful_2" + "item_name" "#StickerKit_rio2022_signature_w0nderful" + "description_string" "#StickerKit_desc_rio2022_signature_w0nderful" + "sticker_material" "rio2022/sig_w0nderful" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "1102803112" } - "10" + "6243" { - "name" "sasha_01" - "loc_name" "#musickit_sasha_01" - "loc_description" "#musickit_sasha_01_desc" - "image_inventory" "econ/music_kits/sasha_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_sasha_01.mdl" + "name" "rio2022_signature_w0nderful_2_glitter" + "item_name" "#StickerKit_rio2022_signature_w0nderful_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_w0nderful_glitter" + "sticker_material" "rio2022/sig_w0nderful_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "1102803112" } - "11" + "6244" { - "name" "skog_01" - "loc_name" "#musickit_skog_01" - "loc_description" "#musickit_skog_01_desc" - "image_inventory" "econ/music_kits/skog_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_skog_01.mdl" + "name" "rio2022_signature_w0nderful_2_holo" + "item_name" "#StickerKit_rio2022_signature_w0nderful_holo" + "description_string" "#StickerKit_desc_rio2022_signature_w0nderful_holo" + "sticker_material" "rio2022/sig_w0nderful_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "1102803112" } - "12" + "6245" { - "name" "midnightriders_01" - "loc_name" "#musickit_midnightriders_01" - "loc_description" "#musickit_midnightriders_01_desc" - "image_inventory" "econ/music_kits/midnightriders_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_midnight_riders_01.mdl" + "name" "rio2022_signature_w0nderful_2_gold" + "item_name" "#StickerKit_rio2022_signature_w0nderful_gold" + "description_string" "#StickerKit_desc_rio2022_signature_w0nderful_gold" + "sticker_material" "rio2022/sig_w0nderful_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "81" + "tournament_player_id" "1102803112" } - "13" + "6246" { - "name" "mattlange_01" - "loc_name" "#musickit_mattlange_01" - "loc_description" "#musickit_mattlange_01_desc" - "image_inventory" "econ/music_kits/mattlange_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_mattlange_01.mdl" + "name" "rio2022_signature_nqz_1" + "item_name" "#StickerKit_rio2022_signature_nqz" + "description_string" "#StickerKit_desc_rio2022_signature_nqz" + "sticker_material" "rio2022/sig_nqz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "390076777" } - "14" + "6247" { - "name" "mateomessina_01" - "loc_name" "#musickit_mateomessina_01" - "loc_description" "#musickit_mateomessina_01_desc" - "image_inventory" "econ/music_kits/mateomessina_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_mateomessina_01.mdl" + "name" "rio2022_signature_nqz_1_glitter" + "item_name" "#StickerKit_rio2022_signature_nqz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_nqz_glitter" + "sticker_material" "rio2022/sig_nqz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "390076777" } - "15" + "6248" { - "name" "hotlinemiami_01" - "loc_name" "#musickit_hotlinemiami_01" - "loc_description" "#musickit_hotlinemiami_01_desc" - "image_inventory" "econ/music_kits/hotlinemiami_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_hotlinemiami_01.mdl" + "name" "rio2022_signature_nqz_1_holo" + "item_name" "#StickerKit_rio2022_signature_nqz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_nqz_holo" + "sticker_material" "rio2022/sig_nqz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "390076777" } - "16" + "6249" { - "name" "danielsadowski_02" - "loc_name" "#musickit_danielsadowski_02" - "loc_description" "#musickit_danielsadowski_02_desc" - "image_inventory" "econ/music_kits/danielsadowski_02" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_danielsadowski_02.mdl" + "name" "rio2022_signature_nqz_1_gold" + "item_name" "#StickerKit_rio2022_signature_nqz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_nqz_gold" + "sticker_material" "rio2022/sig_nqz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "390076777" } - "17" + "6250" { - "name" "damjanmravunac_01" - "loc_name" "#musickit_damjanmravunac_01" - "loc_description" "#musickit_damjanmravunac_01_desc" - "image_inventory" "econ/music_kits/damjanmravunac_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_damjanmravunac_01.mdl" + "name" "rio2022_signature_dav1deus_1" + "item_name" "#StickerKit_rio2022_signature_dav1deus" + "description_string" "#StickerKit_desc_rio2022_signature_dav1deus" + "sticker_material" "rio2022/sig_dav1deus" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "160225583" } - "18" + "6251" { - "name" "proxy_01" - "loc_name" "#musickit_proxy_01" - "loc_description" "#musickit_proxy_01_desc" - "image_inventory" "econ/music_kits/proxy_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_proxy_01.mdl" + "name" "rio2022_signature_dav1deus_1_glitter" + "item_name" "#StickerKit_rio2022_signature_dav1deus_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_dav1deus_glitter" + "sticker_material" "rio2022/sig_dav1deus_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "160225583" } - "19" + "6252" { - "name" "kitheory_01" - "loc_name" "#musickit_kitheory_01" - "loc_description" "#musickit_kitheory_01_desc" - "image_inventory" "econ/music_kits/kitheory_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_kitheory_01.mdl" + "name" "rio2022_signature_dav1deus_1_holo" + "item_name" "#StickerKit_rio2022_signature_dav1deus_holo" + "description_string" "#StickerKit_desc_rio2022_signature_dav1deus_holo" + "sticker_material" "rio2022/sig_dav1deus_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "160225583" } - "20" + "6253" { - "name" "troelsfolmann_01" - "loc_name" "#musickit_troelsfolmann_01" - "loc_description" "#musickit_troelsfolmann_01_desc" - "image_inventory" "econ/music_kits/troelsfolmann_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_troelsfolmann_01.mdl" + "name" "rio2022_signature_dav1deus_1_gold" + "item_name" "#StickerKit_rio2022_signature_dav1deus_gold" + "description_string" "#StickerKit_desc_rio2022_signature_dav1deus_gold" + "sticker_material" "rio2022/sig_dav1deus_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "160225583" } - "21" + "6254" { - "name" "kellybailey_01" - "loc_name" "#musickit_kellybailey_01" - "loc_description" "#musickit_kellybailey_01_desc" - "image_inventory" "econ/music_kits/kellybailey_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_kellybailey_01.mdl" + "name" "rio2022_signature_max_1" + "item_name" "#StickerKit_rio2022_signature_max" + "description_string" "#StickerKit_desc_rio2022_signature_max" + "sticker_material" "rio2022/sig_max" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "282684656" } - "22" + "6255" { - "name" "skog_02" - "loc_name" "#musickit_skog_02" - "loc_description" "#musickit_skog_02_desc" - "image_inventory" "econ/music_kits/skog_02" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_skog_02.mdl" + "name" "rio2022_signature_max_1_glitter" + "item_name" "#StickerKit_rio2022_signature_max_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_max_glitter" + "sticker_material" "rio2022/sig_max_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "282684656" } - "23" + "6256" { - "name" "danielsadowski_03" - "loc_name" "#musickit_danielsadowski_03" - "loc_description" "#musickit_danielsadowski_03_desc" - "image_inventory" "econ/music_kits/danielsadowski_03" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_danielsadowski_03.mdl" + "name" "rio2022_signature_max_1_holo" + "item_name" "#StickerKit_rio2022_signature_max_holo" + "description_string" "#StickerKit_desc_rio2022_signature_max_holo" + "sticker_material" "rio2022/sig_max_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "282684656" } - "24" + "6257" { - "name" "awolnation_01" - "loc_name" "#musickit_awolnation_01" - "loc_description" "#musickit_awolnation_01_desc" - "image_inventory" "econ/music_kits/awolnation_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_awolnation_01.mdl" + "name" "rio2022_signature_max_1_gold" + "item_name" "#StickerKit_rio2022_signature_max_gold" + "description_string" "#StickerKit_desc_rio2022_signature_max_gold" + "sticker_material" "rio2022/sig_max_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "282684656" } - "25" + "6258" { - "name" "mordfustang_01" - "loc_name" "#musickit_mordfustang_01" - "loc_description" "#musickit_mordfustang_01_desc" - "image_inventory" "econ/music_kits/mordfustang_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_mordfustang_01.mdl" + "name" "rio2022_signature_dgt_1" + "item_name" "#StickerKit_rio2022_signature_dgt" + "description_string" "#StickerKit_desc_rio2022_signature_dgt" + "sticker_material" "rio2022/sig_dgt" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "256625848" } - "26" + "6259" { - "name" "michaelbross_01" - "loc_name" "#musickit_michaelbross_01" - "loc_description" "#musickit_michaelbross_01_desc" - "image_inventory" "econ/music_kits/michaelbross_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_michaelbross_01.mdl" + "name" "rio2022_signature_dgt_1_glitter" + "item_name" "#StickerKit_rio2022_signature_dgt_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_dgt_glitter" + "sticker_material" "rio2022/sig_dgt_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "256625848" } - "27" + "6260" { - "name" "ianhultquist_01" - "loc_name" "#musickit_ianhultquist_01" - "loc_description" "#musickit_ianhultquist_01_desc" - "image_inventory" "econ/music_kits/ianhultquist_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_ianhultquist_01.mdl" + "name" "rio2022_signature_dgt_1_holo" + "item_name" "#StickerKit_rio2022_signature_dgt_holo" + "description_string" "#StickerKit_desc_rio2022_signature_dgt_holo" + "sticker_material" "rio2022/sig_dgt_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "256625848" } - "28" + "6261" { - "name" "newbeatfund_01" - "loc_name" "#musickit_newbeatfund_01" - "loc_description" "#musickit_newbeatfund_01_desc" - "image_inventory" "econ/music_kits/newbeatfund_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_newbeatfund_01.mdl" + "name" "rio2022_signature_dgt_1_gold" + "item_name" "#StickerKit_rio2022_signature_dgt_gold" + "description_string" "#StickerKit_desc_rio2022_signature_dgt_gold" + "sticker_material" "rio2022/sig_dgt_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "256625848" } - "29" + "6262" { - "name" "beartooth_01" - "loc_name" "#musickit_beartooth_01" - "loc_description" "#musickit_beartooth_01_desc" - "image_inventory" "econ/music_kits/beartooth_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_beartooth_01.mdl" + "name" "rio2022_signature_buda_1" + "item_name" "#StickerKit_rio2022_signature_buda" + "description_string" "#StickerKit_desc_rio2022_signature_buda" + "sticker_material" "rio2022/sig_buda" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "239077622" } - "30" + "6263" { - "name" "lenniemoore_01" - "loc_name" "#musickit_lenniemoore_01" - "loc_description" "#musickit_lenniemoore_01_desc" - "image_inventory" "econ/music_kits/lenniemoore_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_lenniemoore_01.mdl" + "name" "rio2022_signature_buda_1_glitter" + "item_name" "#StickerKit_rio2022_signature_buda_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_buda_glitter" + "sticker_material" "rio2022/sig_buda_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "239077622" } - "31" + "6264" { - "name" "darude_01" - "loc_name" "#musickit_darude_01" - "loc_description" "#musickit_darude_01_desc" - "image_inventory" "econ/music_kits/darude_01" - "pedestal_display_model" "models/inventory_items/music_kits/music_kit_darude_01.mdl" + "name" "rio2022_signature_buda_1_holo" + "item_name" "#StickerKit_rio2022_signature_buda_holo" + "description_string" "#StickerKit_desc_rio2022_signature_buda_holo" + "sticker_material" "rio2022/sig_buda_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "239077622" } - } - "quest_definitions" - { - "11" + "6265" { - "name" "Casual Kills: SMG" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "casual" - "expression" "%weapon_smg% && %act_kill_human%" + "name" "rio2022_signature_buda_1_gold" + "item_name" "#StickerKit_rio2022_signature_buda_gold" + "description_string" "#StickerKit_desc_rio2022_signature_buda_gold" + "sticker_material" "rio2022/sig_buda_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "112" + "tournament_player_id" "239077622" } - "12" + "6266" { - "name" "Casual Kills: Secondary" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "casual" - "expression" " %weapon_secondary% && %act_kill_human% " + "name" "rio2022_signature_gxx_1" + "item_name" "#StickerKit_rio2022_signature_gxx" + "description_string" "#StickerKit_desc_rio2022_signature_gxx" + "sticker_material" "rio2022/sig_gxx" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "13" + "6267" { - "name" "Casual Kills: Heavy" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "casual" - "expression" " %weapon_heavy% && %act_kill_human% " + "name" "rio2022_signature_gxx_1_glitter" + "item_name" "#StickerKit_rio2022_signature_gxx_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_gxx_glitter" + "sticker_material" "rio2022/sig_gxx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "14" + "6268" { - "name" "Casual Kills: Knife" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_single_desc" - "gamemode" "casual" - "expression" " %weapon_melee% && %act_kill_human% " + "name" "rio2022_signature_gxx_1_holo" + "item_name" "#StickerKit_rio2022_signature_gxx_holo" + "description_string" "#StickerKit_desc_rio2022_signature_gxx_holo" + "sticker_material" "rio2022/sig_gxx_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "15" + "6269" { - "name" "Casual Kills: Rifle" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "casual" - "expression" " %weapon_rifle% && %act_kill_human% " + "name" "rio2022_signature_gxx_1_gold" + "item_name" "#StickerKit_rio2022_signature_gxx_gold" + "description_string" "#StickerKit_desc_rio2022_signature_gxx_gold" + "sticker_material" "rio2022/sig_gxx_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "274569724" } - "16" + "6270" { - "name" "Win Competitive Dust" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_dust" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_sener1_1" + "item_name" "#StickerKit_rio2022_signature_sener1" + "description_string" "#StickerKit_desc_rio2022_signature_sener1" + "sticker_material" "rio2022/sig_sener1" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "192112459" } - "17" + "6271" { - "name" "Win Competitive Dust2" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_dust2" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_sener1_1_glitter" + "item_name" "#StickerKit_rio2022_signature_sener1_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sener1_glitter" + "sticker_material" "rio2022/sig_sener1_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "192112459" } - "18" + "6272" { - "name" "Win Competitive Train" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_train" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_sener1_1_holo" + "item_name" "#StickerKit_rio2022_signature_sener1_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sener1_holo" + "sticker_material" "rio2022/sig_sener1_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "192112459" } - "19" + "6273" { - "name" "Win Competitive Inferno" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_inferno" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_sener1_1_gold" + "item_name" "#StickerKit_rio2022_signature_sener1_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sener1_gold" + "sticker_material" "rio2022/sig_sener1_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "192112459" } - "20" + "6274" { - "name" "Win Competitive Nuke" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_nuke" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_juanflatroo_1" + "item_name" "#StickerKit_rio2022_signature_juanflatroo" + "description_string" "#StickerKit_desc_rio2022_signature_juanflatroo" + "sticker_material" "rio2022/sig_juanflatroo" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "21" + "6275" { - "name" "Win Competitive Italy" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_italy" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_juanflatroo_1_glitter" + "item_name" "#StickerKit_rio2022_signature_juanflatroo_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_juanflatroo_glitter" + "sticker_material" "rio2022/sig_juanflatroo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "22" + "6276" { - "name" "Win Competitive Office" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_office" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_juanflatroo_1_holo" + "item_name" "#StickerKit_rio2022_signature_juanflatroo_holo" + "description_string" "#StickerKit_desc_rio2022_signature_juanflatroo_holo" + "sticker_material" "rio2022/sig_juanflatroo_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "23" + "6277" { - "name" "Win Competitive Aztec" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_aztec" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_juanflatroo_1_gold" + "item_name" "#StickerKit_rio2022_signature_juanflatroo_gold" + "description_string" "#StickerKit_desc_rio2022_signature_juanflatroo_gold" + "sticker_material" "rio2022/sig_juanflatroo_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "135528227" } - "24" + "6278" { - "name" "Win Competitive Vertigo" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_vertigo" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_rigon_1" + "item_name" "#StickerKit_rio2022_signature_rigon" + "description_string" "#StickerKit_desc_rio2022_signature_rigon" + "sticker_material" "rio2022/sig_rigon" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "25" + "6279" { - "name" "Win Competitive Militia" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_militia" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_rigon_1_glitter" + "item_name" "#StickerKit_rio2022_signature_rigon_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_rigon_glitter" + "sticker_material" "rio2022/sig_rigon_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "26" + "6280" { - "name" "Win Competitive Mirage" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_mirage" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_rigon_1_holo" + "item_name" "#StickerKit_rio2022_signature_rigon_holo" + "description_string" "#StickerKit_desc_rio2022_signature_rigon_holo" + "sticker_material" "rio2022/sig_rigon_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "27" + "6281" { - "name" "Win Competitive Overpass" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_overpass" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_rigon_1_gold" + "item_name" "#StickerKit_rio2022_signature_rigon_gold" + "description_string" "#StickerKit_desc_rio2022_signature_rigon_gold" + "sticker_material" "rio2022/sig_rigon_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "212571293" } - "28" + "6282" { - "name" "Win Competitive Cobblestone" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_cbble" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_sinnopsyy_1" + "item_name" "#StickerKit_rio2022_signature_sinnopsyy" + "description_string" "#StickerKit_desc_rio2022_signature_sinnopsyy" + "sticker_material" "rio2022/sig_sinnopsyy" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "32" + "6283" { - "name" "Deathmatch Kills: AK47" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_ak47% && %act_kill_human% " + "name" "rio2022_signature_sinnopsyy_1_glitter" + "item_name" "#StickerKit_rio2022_signature_sinnopsyy_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sinnopsyy_glitter" + "sticker_material" "rio2022/sig_sinnopsyy_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "33" + "6284" { - "name" "Deathmatch Kills: AUG" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_aug% && %act_kill_human% " + "name" "rio2022_signature_sinnopsyy_1_holo" + "item_name" "#StickerKit_rio2022_signature_sinnopsyy_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sinnopsyy_holo" + "sticker_material" "rio2022/sig_sinnopsyy_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "34" + "6285" { - "name" "Deathmatch Kills: AWP" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_awp% && %act_kill_human% " + "name" "rio2022_signature_sinnopsyy_1_gold" + "item_name" "#StickerKit_rio2022_signature_sinnopsyy_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sinnopsyy_gold" + "sticker_material" "rio2022/sig_sinnopsyy_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "114" + "tournament_player_id" "205062167" } - "35" + "6286" { - "name" "Deathmatch Kills: Desert Eagle" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_deagle% && %act_kill_human% " + "name" "rio2022_signature_faven_1" + "item_name" "#StickerKit_rio2022_signature_faven" + "description_string" "#StickerKit_desc_rio2022_signature_faven" + "sticker_material" "rio2022/sig_faven" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "36" + "6287" { - "name" "Deathmatch Kills: Dual Berettas" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_elite% && %act_kill_human% " + "name" "rio2022_signature_faven_1_glitter" + "item_name" "#StickerKit_rio2022_signature_faven_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_faven_glitter" + "sticker_material" "rio2022/sig_faven_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "37" + "6288" { - "name" "Deathmatch Kills: FAMAS" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_famas% && %act_kill_human% " + "name" "rio2022_signature_faven_1_holo" + "item_name" "#StickerKit_rio2022_signature_faven_holo" + "description_string" "#StickerKit_desc_rio2022_signature_faven_holo" + "sticker_material" "rio2022/sig_faven_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "38" + "6289" { - "name" "Deathmatch Kills: Five-seveN" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_fiveseven% && %act_kill_human% " + "name" "rio2022_signature_faven_1_gold" + "item_name" "#StickerKit_rio2022_signature_faven_gold" + "description_string" "#StickerKit_desc_rio2022_signature_faven_gold" + "sticker_material" "rio2022/sig_faven_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "157930364" } - "39" + "6290" { - "name" "Deathmatch Kills: G3SG1" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_g3sg1% && %act_kill_human% " + "name" "rio2022_signature_krimbo_1" + "item_name" "#StickerKit_rio2022_signature_krimbo" + "description_string" "#StickerKit_desc_rio2022_signature_krimbo" + "sticker_material" "rio2022/sig_krimbo" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "210365363" } - "40" + "6291" { - "name" "Deathmatch Kills: Galil AR" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_galilar% && %act_kill_human% " + "name" "rio2022_signature_krimbo_1_glitter" + "item_name" "#StickerKit_rio2022_signature_krimbo_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_krimbo_glitter" + "sticker_material" "rio2022/sig_krimbo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "210365363" } - "41" + "6292" { - "name" "Deathmatch Kills: Glock-18" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_glock% && %act_kill_human% " + "name" "rio2022_signature_krimbo_1_holo" + "item_name" "#StickerKit_rio2022_signature_krimbo_holo" + "description_string" "#StickerKit_desc_rio2022_signature_krimbo_holo" + "sticker_material" "rio2022/sig_krimbo_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "210365363" } - "42" + "6293" { - "name" "Deathmatch Kills: Knife" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_melee% && %act_kill_human% " + "name" "rio2022_signature_krimbo_1_gold" + "item_name" "#StickerKit_rio2022_signature_krimbo_gold" + "description_string" "#StickerKit_desc_rio2022_signature_krimbo_gold" + "sticker_material" "rio2022/sig_krimbo_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "210365363" } - "43" + "6294" { - "name" "Deathmatch Kills: M249" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_m249% && %act_kill_human% " + "name" "rio2022_signature_k1to_1" + "item_name" "#StickerKit_rio2022_signature_k1to" + "description_string" "#StickerKit_desc_rio2022_signature_k1to" + "sticker_material" "rio2022/sig_k1to" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "222196859" } - "44" + "6295" { - "name" "Deathmatch Kills: M4A4" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_m4a1% && %act_kill_human% " + "name" "rio2022_signature_k1to_1_glitter" + "item_name" "#StickerKit_rio2022_signature_k1to_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_k1to_glitter" + "sticker_material" "rio2022/sig_k1to_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "222196859" } - "45" + "6296" { - "name" "Deathmatch Kills: M4A1-S" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_m4a1_silencer% && %act_kill_human% " + "name" "rio2022_signature_k1to_1_holo" + "item_name" "#StickerKit_rio2022_signature_k1to_holo" + "description_string" "#StickerKit_desc_rio2022_signature_k1to_holo" + "sticker_material" "rio2022/sig_k1to_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "222196859" } - "46" + "6297" { - "name" "Deathmatch Kills: MAC-10" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_mac10% && %act_kill_human% " + "name" "rio2022_signature_k1to_1_gold" + "item_name" "#StickerKit_rio2022_signature_k1to_gold" + "description_string" "#StickerKit_desc_rio2022_signature_k1to_gold" + "sticker_material" "rio2022/sig_k1to_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "222196859" } - "47" + "6298" { - "name" "Deathmatch Kills: P90" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_p90% && %act_kill_human% " + "name" "rio2022_signature_tabsen_1" + "item_name" "#StickerKit_rio2022_signature_tabsen" + "description_string" "#StickerKit_desc_rio2022_signature_tabsen" + "sticker_material" "rio2022/sig_tabsen" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "48" + "6299" { - "name" "Deathmatch Kills: UMP-45" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_ump45% && %act_kill_human% " + "name" "rio2022_signature_tabsen_1_glitter" + "item_name" "#StickerKit_rio2022_signature_tabsen_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_tabsen_glitter" + "sticker_material" "rio2022/sig_tabsen_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "49" + "6300" { - "name" "Deathmatch Kills: XM1014" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_xm1014% && %act_kill_human% " + "name" "rio2022_signature_tabsen_1_holo" + "item_name" "#StickerKit_rio2022_signature_tabsen_holo" + "description_string" "#StickerKit_desc_rio2022_signature_tabsen_holo" + "sticker_material" "rio2022/sig_tabsen_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "50" + "6301" { - "name" "Deathmatch Kills: PP-Bizon" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_bizon% && %act_kill_human% " + "name" "rio2022_signature_tabsen_1_gold" + "item_name" "#StickerKit_rio2022_signature_tabsen_gold" + "description_string" "#StickerKit_desc_rio2022_signature_tabsen_gold" + "sticker_material" "rio2022/sig_tabsen_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "1225952" } - "51" + "6302" { - "name" "Deathmatch Kills: MAG-7" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_mag7% && %act_kill_human% " + "name" "rio2022_signature_syrson_1" + "item_name" "#StickerKit_rio2022_signature_syrson" + "description_string" "#StickerKit_desc_rio2022_signature_syrson" + "sticker_material" "rio2022/sig_syrson" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "52" + "6303" { - "name" "Deathmatch Kills: Negev" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_negev% && %act_kill_human% " + "name" "rio2022_signature_syrson_1_glitter" + "item_name" "#StickerKit_rio2022_signature_syrson_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_syrson_glitter" + "sticker_material" "rio2022/sig_syrson_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "53" + "6304" { - "name" "Deathmatch Kills: Sawed-Off" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_sawedoff% && %act_kill_human% " + "name" "rio2022_signature_syrson_1_holo" + "item_name" "#StickerKit_rio2022_signature_syrson_holo" + "description_string" "#StickerKit_desc_rio2022_signature_syrson_holo" + "sticker_material" "rio2022/sig_syrson_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "54" + "6305" { - "name" "Deathmatch Kills: Tec-9" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_tec9% && %act_kill_human% " + "name" "rio2022_signature_syrson_1_gold" + "item_name" "#StickerKit_rio2022_signature_syrson_gold" + "description_string" "#StickerKit_desc_rio2022_signature_syrson_gold" + "sticker_material" "rio2022/sig_syrson_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "69" + "tournament_player_id" "19857269" } - "55" + "6306" { - "name" "Deathmatch Kills: Zeus x27" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_taser% && %act_kill_human% " + "name" "rio2022_signature_sh1ro_1" + "item_name" "#StickerKit_rio2022_signature_sh1ro" + "description_string" "#StickerKit_desc_rio2022_signature_sh1ro" + "sticker_material" "rio2022/sig_sh1ro" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "56" + "6307" { - "name" "Deathmatch Kills: P2000" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_hkp2000% && %act_kill_human% " + "name" "rio2022_signature_sh1ro_1_glitter" + "item_name" "#StickerKit_rio2022_signature_sh1ro_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sh1ro_glitter" + "sticker_material" "rio2022/sig_sh1ro_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "57" + "6308" { - "name" "Deathmatch Kills: MP7" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_mp7% && %act_kill_human% " + "name" "rio2022_signature_sh1ro_1_holo" + "item_name" "#StickerKit_rio2022_signature_sh1ro_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sh1ro_holo" + "sticker_material" "rio2022/sig_sh1ro_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "58" + "6309" { - "name" "Deathmatch Kills: MP9" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_mp9% && %act_kill_human% " + "name" "rio2022_signature_sh1ro_1_gold" + "item_name" "#StickerKit_rio2022_signature_sh1ro_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sh1ro_gold" + "sticker_material" "rio2022/sig_sh1ro_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "121219047" } - "59" + "6310" { - "name" "Deathmatch Kills: Nova" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_nova% && %act_kill_human% " + "name" "rio2022_signature_nafany_1" + "item_name" "#StickerKit_rio2022_signature_nafany" + "description_string" "#StickerKit_desc_rio2022_signature_nafany" + "sticker_material" "rio2022/sig_nafany" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "60" + "6311" { - "name" "Deathmatch Kills: P250" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_p250% && %act_kill_human% " + "name" "rio2022_signature_nafany_1_glitter" + "item_name" "#StickerKit_rio2022_signature_nafany_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_nafany_glitter" + "sticker_material" "rio2022/sig_nafany_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "61" + "6312" { - "name" "Deathmatch Kills: CZ75-Auto" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_cz75a% && %act_kill_human% " + "name" "rio2022_signature_nafany_1_holo" + "item_name" "#StickerKit_rio2022_signature_nafany_holo" + "description_string" "#StickerKit_desc_rio2022_signature_nafany_holo" + "sticker_material" "rio2022/sig_nafany_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "62" + "6313" { - "name" "Deathmatch Kills: SCAR-20" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_scar20% && %act_kill_human% " + "name" "rio2022_signature_nafany_1_gold" + "item_name" "#StickerKit_rio2022_signature_nafany_gold" + "description_string" "#StickerKit_desc_rio2022_signature_nafany_gold" + "sticker_material" "rio2022/sig_nafany_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "99448400" } - "63" + "6314" { - "name" "Deathmatch Kills: SG 553" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_sg556% && %act_kill_human% " + "name" "rio2022_signature_ax1le_1" + "item_name" "#StickerKit_rio2022_signature_ax1le" + "description_string" "#StickerKit_desc_rio2022_signature_ax1le" + "sticker_material" "rio2022/sig_ax1le" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "64" + "6315" { - "name" "Deathmatch Kills: SSG08" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_ssg08% && %act_kill_human% " + "name" "rio2022_signature_ax1le_1_glitter" + "item_name" "#StickerKit_rio2022_signature_ax1le_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_ax1le_glitter" + "sticker_material" "rio2022/sig_ax1le_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "65" + "6316" { - "name" "Deathmatch Kills: USP-S" - "loc_name" "#Quest_Weapon_Mode" - "loc_description" "#Quest_Weapon_Mode_desc" - "gamemode" "deathmatch" - "expression" " %weapon_usp_silencer% && %act_kill_human% " + "name" "rio2022_signature_ax1le_1_holo" + "item_name" "#StickerKit_rio2022_signature_ax1le_holo" + "description_string" "#StickerKit_desc_rio2022_signature_ax1le_holo" + "sticker_material" "rio2022/sig_ax1le_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "66" + "6317" { - "name" "Casual Active Kills" - "loc_name" "#Quest_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %act_kill_human% " + "name" "rio2022_signature_ax1le_1_gold" + "item_name" "#StickerKit_rio2022_signature_ax1le_gold" + "description_string" "#StickerKit_desc_rio2022_signature_ax1le_gold" + "sticker_material" "rio2022/sig_ax1le_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "85167576" } - "67" + "6318" { - "name" "Casual Reserves Kills" - "loc_name" "#Quest_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" - "gamemode" "casual" - "mapgroup" "mg_reserves" - "expression" " %act_kill_human% " + "name" "rio2022_signature_interz_1" + "item_name" "#StickerKit_rio2022_signature_interz" + "description_string" "#StickerKit_desc_rio2022_signature_interz" + "sticker_material" "rio2022/sig_interz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "68" + "6319" { - "name" "Casual Operation Kills" - "loc_name" "#Quest_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" - "gamemode" "casual" - "mapgroup" "mg_op_breakout" - "expression" " %act_kill_human% " + "name" "rio2022_signature_interz_1_glitter" + "item_name" "#StickerKit_rio2022_signature_interz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_interz_glitter" + "sticker_material" "rio2022/sig_interz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "69" + "6320" { - "name" "Demolition Kills" - "loc_name" "#Quest_Kills_Mode" - "loc_description" "#Quest_Kills_Mode_desc" - "gamemode" "gungametrbomb" - "expression" " %act_kill_human% " + "name" "rio2022_signature_interz_1_holo" + "item_name" "#StickerKit_rio2022_signature_interz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_interz_holo" + "sticker_material" "rio2022/sig_interz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "70" + "6321" { - "name" "ArmsRace Kills" - "loc_name" "#Quest_Kills_Mode" - "loc_description" "#Quest_Kills_Mode_desc" - "gamemode" "gungameprogressive" - "expression" " %act_kill_human% " + "name" "rio2022_signature_interz_1_gold" + "item_name" "#StickerKit_rio2022_signature_interz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_interz_gold" + "sticker_material" "rio2022/sig_interz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "247808592" } - "71" + "6322" { - "name" "Deathmatch Kills" - "loc_name" "#Quest_Kills_Mode" - "loc_description" "#Quest_Kills_Mode_desc" - "gamemode" "deathmatch" - "expression" " %act_kill_human% " + "name" "rio2022_signature_hobbit_1" + "item_name" "#StickerKit_rio2022_signature_hobbit" + "description_string" "#StickerKit_desc_rio2022_signature_hobbit" + "sticker_material" "rio2022/sig_hobbit" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "68027030" } - "73" + "6323" { - "name" "Win Competitive Assault" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_assault" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_hobbit_1_glitter" + "item_name" "#StickerKit_rio2022_signature_hobbit_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_hobbit_glitter" + "sticker_material" "rio2022/sig_hobbit_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "68027030" } - "74" + "6324" { - "name" "Win Competitive Cache" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_cache" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_hobbit_1_holo" + "item_name" "#StickerKit_rio2022_signature_hobbit_holo" + "description_string" "#StickerKit_desc_rio2022_signature_hobbit_holo" + "sticker_material" "rio2022/sig_hobbit_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "68027030" } - "75" + "6325" { - "name" "Win Competitive Castle" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_castle" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_hobbit_1_gold" + "item_name" "#StickerKit_rio2022_signature_hobbit_gold" + "description_string" "#StickerKit_desc_rio2022_signature_hobbit_gold" + "sticker_material" "rio2022/sig_hobbit_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "33" + "tournament_player_id" "68027030" } - "76" + "6326" { - "name" "Win Competitive Overgrown" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_overgrown" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_autimatic_1" + "item_name" "#StickerKit_rio2022_signature_autimatic" + "description_string" "#StickerKit_desc_rio2022_signature_autimatic" + "sticker_material" "rio2022/sig_autimatic" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94605121" } - "77" + "6327" { - "name" "Win Competitive Black Gold" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_blackgold" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_autimatic_1_glitter" + "item_name" "#StickerKit_rio2022_signature_autimatic_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_autimatic_glitter" + "sticker_material" "rio2022/sig_autimatic_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94605121" } - "78" + "6328" { - "name" "Win Competitive Rush" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_rush" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_autimatic_1_holo" + "item_name" "#StickerKit_rio2022_signature_autimatic_holo" + "description_string" "#StickerKit_desc_rio2022_signature_autimatic_holo" + "sticker_material" "rio2022/sig_autimatic_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94605121" } - "79" + "6329" { - "name" "Win Competitive Mist" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_mist" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_autimatic_1_gold" + "item_name" "#StickerKit_rio2022_signature_autimatic_gold" + "description_string" "#StickerKit_desc_rio2022_signature_autimatic_gold" + "sticker_material" "rio2022/sig_autimatic_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94605121" } - "80" + "6330" { - "name" "Win Competitive Insertion" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_insertion" - "expression" " ( %act_win_match% == 1.0 ) " + "name" "rio2022_signature_nealan_1" + "item_name" "#StickerKit_rio2022_signature_nealan" + "description_string" "#StickerKit_desc_rio2022_signature_nealan" + "sticker_material" "rio2022/sig_nealan" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "93777050" } - "81" + "6331" { - "name" "Win Rounds Competitive Dust" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_dust" - "expression" " %act_win_round% " + "name" "rio2022_signature_nealan_1_glitter" + "item_name" "#StickerKit_rio2022_signature_nealan_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_nealan_glitter" + "sticker_material" "rio2022/sig_nealan_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "93777050" } - "82" + "6332" { - "name" "Win Rounds Competitive Dust2" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_dust2" - "expression" " %act_win_round% " + "name" "rio2022_signature_nealan_1_holo" + "item_name" "#StickerKit_rio2022_signature_nealan_holo" + "description_string" "#StickerKit_desc_rio2022_signature_nealan_holo" + "sticker_material" "rio2022/sig_nealan_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "93777050" } - "83" + "6333" { - "name" "Win Rounds Competitive Train" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_train" - "expression" " %act_win_round% " + "name" "rio2022_signature_nealan_1_gold" + "item_name" "#StickerKit_rio2022_signature_nealan_gold" + "description_string" "#StickerKit_desc_rio2022_signature_nealan_gold" + "sticker_material" "rio2022/sig_nealan_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "93777050" } - "84" + "6334" { - "name" "Win Rounds Competitive Inferno" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_inferno" - "expression" " %act_win_round% " + "name" "rio2022_signature_brehze_1" + "item_name" "#StickerKit_rio2022_signature_brehze" + "description_string" "#StickerKit_desc_rio2022_signature_brehze" + "sticker_material" "rio2022/sig_brehze" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94595411" } - "85" + "6335" { - "name" "Win Rounds Competitive Nuke" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_nuke" - "expression" " %act_win_round% " + "name" "rio2022_signature_brehze_1_glitter" + "item_name" "#StickerKit_rio2022_signature_brehze_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_brehze_glitter" + "sticker_material" "rio2022/sig_brehze_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94595411" } - "86" + "6336" { - "name" "Win Rounds Competitive Italy" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_italy" - "expression" " %act_win_round% " + "name" "rio2022_signature_brehze_1_holo" + "item_name" "#StickerKit_rio2022_signature_brehze_holo" + "description_string" "#StickerKit_desc_rio2022_signature_brehze_holo" + "sticker_material" "rio2022/sig_brehze_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94595411" } - "87" + "6337" { - "name" "Win Rounds Competitive Office" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_office" - "expression" " %act_win_round% " + "name" "rio2022_signature_brehze_1_gold" + "item_name" "#StickerKit_rio2022_signature_brehze_gold" + "description_string" "#StickerKit_desc_rio2022_signature_brehze_gold" + "sticker_material" "rio2022/sig_brehze_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "94595411" } - "88" + "6338" { - "name" "Win Rounds Competitive Aztec" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_aztec" - "expression" " %act_win_round% " + "name" "rio2022_signature_hext_1" + "item_name" "#StickerKit_rio2022_signature_hext" + "description_string" "#StickerKit_desc_rio2022_signature_hext" + "sticker_material" "rio2022/sig_hext" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "250668735" } - "89" + "6339" { - "name" "Win Rounds Competitive Vertigo" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_vertigo" - "expression" " %act_win_round% " + "name" "rio2022_signature_hext_1_glitter" + "item_name" "#StickerKit_rio2022_signature_hext_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_hext_glitter" + "sticker_material" "rio2022/sig_hext_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "250668735" } - "90" + "6340" { - "name" "Win Rounds Competitive Militia" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_militia" - "expression" " %act_win_round% " + "name" "rio2022_signature_hext_1_holo" + "item_name" "#StickerKit_rio2022_signature_hext_holo" + "description_string" "#StickerKit_desc_rio2022_signature_hext_holo" + "sticker_material" "rio2022/sig_hext_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "250668735" } - "91" + "6341" { - "name" "Win Rounds Competitive Mirage" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_mirage" - "expression" " %act_win_round% " + "name" "rio2022_signature_hext_1_gold" + "item_name" "#StickerKit_rio2022_signature_hext_gold" + "description_string" "#StickerKit_desc_rio2022_signature_hext_gold" + "sticker_material" "rio2022/sig_hext_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "250668735" } - "92" + "6342" { - "name" "Win Rounds Competitive Overpass" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_overpass" - "expression" " %act_win_round% " + "name" "rio2022_signature_cerq_1" + "item_name" "#StickerKit_rio2022_signature_cerq" + "description_string" "#StickerKit_desc_rio2022_signature_cerq" + "sticker_material" "rio2022/sig_cerq" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "196088155" } - "93" + "6343" { - "name" "Win Rounds Competitive Cobblestone" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_cbble" - "expression" " %act_win_round% " + "name" "rio2022_signature_cerq_1_glitter" + "item_name" "#StickerKit_rio2022_signature_cerq_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_cerq_glitter" + "sticker_material" "rio2022/sig_cerq_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "196088155" } - "94" + "6344" { - "name" "Win Rounds Competitive Cache" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_cache" - "expression" " %act_win_round% " + "name" "rio2022_signature_cerq_1_holo" + "item_name" "#StickerKit_rio2022_signature_cerq_holo" + "description_string" "#StickerKit_desc_rio2022_signature_cerq_holo" + "sticker_material" "rio2022/sig_cerq_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "196088155" } - "95" + "6345" { - "name" "Win Rounds Competitive Assault" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_assault" - "expression" " %act_win_round% " + "name" "rio2022_signature_cerq_1_gold" + "item_name" "#StickerKit_rio2022_signature_cerq_gold" + "description_string" "#StickerKit_desc_rio2022_signature_cerq_gold" + "sticker_material" "rio2022/sig_cerq_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "98" + "tournament_player_id" "196088155" } - "96" + "6346" { - "name" "Win Rounds Competitive Castle" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_castle" - "expression" " %act_win_round% " + "name" "rio2022_signature_frozen_1" + "item_name" "#StickerKit_rio2022_signature_frozen" + "description_string" "#StickerKit_desc_rio2022_signature_frozen" + "sticker_material" "rio2022/sig_frozen" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "108157034" } - "97" + "6347" { - "name" "Win Rounds Competitive Overgrown" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_overgrown" - "expression" " %act_win_round% " + "name" "rio2022_signature_frozen_1_glitter" + "item_name" "#StickerKit_rio2022_signature_frozen_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_frozen_glitter" + "sticker_material" "rio2022/sig_frozen_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "108157034" } - "98" + "6348" { - "name" "Win Rounds Competitive Black Gold" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_blackgold" - "expression" " %act_win_round% " + "name" "rio2022_signature_frozen_1_holo" + "item_name" "#StickerKit_rio2022_signature_frozen_holo" + "description_string" "#StickerKit_desc_rio2022_signature_frozen_holo" + "sticker_material" "rio2022/sig_frozen_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "108157034" } - "99" + "6349" { - "name" "Win Rounds Competitive Rush" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_rush" - "expression" " %act_win_round% " + "name" "rio2022_signature_frozen_1_gold" + "item_name" "#StickerKit_rio2022_signature_frozen_gold" + "description_string" "#StickerKit_desc_rio2022_signature_frozen_gold" + "sticker_material" "rio2022/sig_frozen_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "108157034" } - "100" + "6350" { - "name" "Win Rounds Competitive Mist" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_de_mist" - "expression" " %act_win_round% " + "name" "rio2022_signature_dexter_1" + "item_name" "#StickerKit_rio2022_signature_dexter" + "description_string" "#StickerKit_desc_rio2022_signature_dexter" + "sticker_material" "rio2022/sig_dexter" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "101535513" } - "101" + "6351" { - "name" "Win Rounds Competitive Insertion" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "gamemode" "competitive" - "mapgroup" "mg_cs_insertion" - "expression" " %act_win_round% " + "name" "rio2022_signature_dexter_1_glitter" + "item_name" "#StickerKit_rio2022_signature_dexter_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_dexter_glitter" + "sticker_material" "rio2022/sig_dexter_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "101535513" } - "102" + "6352" { - "name" "Deathmatch Active Duty Chicken Kills" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "expression" " %act_kill_chicken% " - "points" "20" - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Chicken_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" - "quest_icon" "chicken" + "name" "rio2022_signature_dexter_1_holo" + "item_name" "#StickerKit_rio2022_signature_dexter_holo" + "description_string" "#StickerKit_desc_rio2022_signature_dexter_holo" + "sticker_material" "rio2022/sig_dexter_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "101535513" } - "104" + "6353" { - "name" "Casual Overpass Mag7 Kills" - "gamemode" "casual" - "map" "de_overpass" - "mapgroup" "mg_active" - "expression" " %weapon_mag7% && %act_kill_human% " - "points" "10" - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" + "name" "rio2022_signature_dexter_1_gold" + "item_name" "#StickerKit_rio2022_signature_dexter_gold" + "description_string" "#StickerKit_desc_rio2022_signature_dexter_gold" + "sticker_material" "rio2022/sig_dexter_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "101535513" } - "105" + "6354" { - "name" "AR_Baggage Kills" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" - "points" "10" - "gamemode" "gungameprogressive" - "map" "ar_baggage" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "difficulty" "1" - "quest_reward" "set_baggage" + "name" "rio2022_signature_jdc_1" + "item_name" "#StickerKit_rio2022_signature_jdc" + "description_string" "#StickerKit_desc_rio2022_signature_jdc" + "sticker_material" "rio2022/sig_jdc" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "118505645" } - "106" + "6355" { - "name" "Casual Italy Tec9 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "10" - "gamemode" "casual" - "map" "cs_italy" - "mapgroup" "mg_reserves" - "expression" " %weapon_tec9% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "set_italy" + "name" "rio2022_signature_jdc_1_glitter" + "item_name" "#StickerKit_rio2022_signature_jdc_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_jdc_glitter" + "sticker_material" "rio2022/sig_jdc_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "118505645" } - "107" + "6356" { - "name" "Deathmatch Inferno Deagle Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "20" - "gamemode" "deathmatch" - "map" "de_inferno" - "mapgroup" "mg_active" - "expression" " %weapon_deagle% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_jdc_1_holo" + "item_name" "#StickerKit_rio2022_signature_jdc_holo" + "description_string" "#StickerKit_desc_rio2022_signature_jdc_holo" + "sticker_material" "rio2022/sig_jdc_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "118505645" } - "108" + "6357" { - "name" "Casual Nuke Kills" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" - "points" "30" - "gamemode" "casual" - "map" "de_nuke" - "mapgroup" "mg_active" - "expression" " %act_kill_human% " - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_jdc_1_gold" + "item_name" "#StickerKit_rio2022_signature_jdc_gold" + "description_string" "#StickerKit_desc_rio2022_signature_jdc_gold" + "sticker_material" "rio2022/sig_jdc_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "118505645" } - "109" + "6358" { - "name" "Casual Inferno Kills" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" - "points" "30" - "gamemode" "casual" - "map" "de_inferno" - "mapgroup" "mg_active" - "expression" " %act_kill_human% " - "quest_reward" "quest_reward_crate_vanguard" - "difficulty" "1" - "operational_points" "1" + "name" "rio2022_signature_torzsi_1" + "item_name" "#StickerKit_rio2022_signature_torzsi" + "description_string" "#StickerKit_desc_rio2022_signature_torzsi" + "sticker_material" "rio2022/sig_torzsi" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "395473484" } - "110" + "6359" { - "name" "ArmsRace 20 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" + "name" "rio2022_signature_torzsi_1_glitter" + "item_name" "#StickerKit_rio2022_signature_torzsi_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_torzsi_glitter" + "sticker_material" "rio2022/sig_torzsi_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "395473484" } - "111" + "6360" { - "name" "Win 8 Rounds Competitive Cobblestone" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "8" - "gamemode" "competitive" - "mapgroup" "mg_de_cbble" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "set_cobblestone" + "name" "rio2022_signature_torzsi_1_holo" + "item_name" "#StickerKit_rio2022_signature_torzsi_holo" + "description_string" "#StickerKit_desc_rio2022_signature_torzsi_holo" + "sticker_material" "rio2022/sig_torzsi_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "395473484" } - "112" + "6361" { - "name" "Win 8 Rounds Competitive Cache" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "8" - "gamemode" "competitive" - "mapgroup" "mg_de_cache" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "set_cache" + "name" "rio2022_signature_torzsi_1_gold" + "item_name" "#StickerKit_rio2022_signature_torzsi_gold" + "description_string" "#StickerKit_desc_rio2022_signature_torzsi_gold" + "sticker_material" "rio2022/sig_torzsi_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "395473484" } - "113" + "6362" { - "name" "Win 8 Rounds Competitive Nuke" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "8" - "gamemode" "competitive" - "mapgroup" "mg_de_nuke" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "set_nuke" + "name" "rio2022_signature_xertion_1" + "item_name" "#StickerKit_rio2022_signature_xertion" + "description_string" "#StickerKit_desc_rio2022_signature_xertion" + "sticker_material" "rio2022/sig_xertion" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "232908406" } - "114" + "6363" { - "name" "Win 16 Rounds Competitive Inferno" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_inferno" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_xertion_1_glitter" + "item_name" "#StickerKit_rio2022_signature_xertion_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_xertion_glitter" + "sticker_material" "rio2022/sig_xertion_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "232908406" } - "115" + "6364" { - "name" "Win 16 Rounds Competitive Overpass" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_overpass" - "expression" " %act_win_round% " - "quest_reward" "quest_reward_crate_vanguard" - "difficulty" "2" - "operational_points" "2" + "name" "rio2022_signature_xertion_1_holo" + "item_name" "#StickerKit_rio2022_signature_xertion_holo" + "description_string" "#StickerKit_desc_rio2022_signature_xertion_holo" + "sticker_material" "rio2022/sig_xertion_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "232908406" } - "116" + "6365" { - "name" "Win 16 Rounds Competitive Cobblestone" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_cbble" - "expression" " %act_win_round% " - "difficulty" "3" - "quest_reward" "set_cobblestone" + "name" "rio2022_signature_xertion_1_gold" + "item_name" "#StickerKit_rio2022_signature_xertion_gold" + "description_string" "#StickerKit_desc_rio2022_signature_xertion_gold" + "sticker_material" "rio2022/sig_xertion_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "106" + "tournament_player_id" "232908406" } - "117" + "6366" { - "name" "Win 16 Rounds Competitive Overpass" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_overpass" - "expression" " %act_win_round% " - "difficulty" "3" - "quest_reward" "set_overpass" + "name" "rio2022_signature_nexa_1" + "item_name" "#StickerKit_rio2022_signature_nexa" + "description_string" "#StickerKit_desc_rio2022_signature_nexa" + "sticker_material" "rio2022/sig_nexa" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "39559694" + } + "6367" + { + "name" "rio2022_signature_nexa_1_glitter" + "item_name" "#StickerKit_rio2022_signature_nexa_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_nexa_glitter" + "sticker_material" "rio2022/sig_nexa_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "39559694" + } + "6368" + { + "name" "rio2022_signature_nexa_1_holo" + "item_name" "#StickerKit_rio2022_signature_nexa_holo" + "description_string" "#StickerKit_desc_rio2022_signature_nexa_holo" + "sticker_material" "rio2022/sig_nexa_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "39559694" } - "118" + "6369" { - "name" "Win 16 Rounds Competitive Cache" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_cache" - "expression" " %act_win_round% " - "difficulty" "3" - "quest_reward" "set_cache" + "name" "rio2022_signature_nexa_1_gold" + "item_name" "#StickerKit_rio2022_signature_nexa_gold" + "description_string" "#StickerKit_desc_rio2022_signature_nexa_gold" + "sticker_material" "rio2022/sig_nexa_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "39559694" } - "119" + "6370" { - "name" "Win Competitive Inferno Twice" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "points" "2" - "gamemode" "competitive" - "mapgroup" "mg_de_inferno" - "expression" " %act_win_match% " - "difficulty" "3" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_neofrag_1" + "item_name" "#StickerKit_rio2022_signature_neofrag" + "description_string" "#StickerKit_desc_rio2022_signature_neofrag" + "sticker_material" "rio2022/sig_neofrag" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "255168957" } - "120" + "6371" { - "name" "Win Competitive Nuke Twice" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "points" "2" - "gamemode" "competitive" - "mapgroup" "mg_de_nuke" - "expression" " %act_win_match% " - "quest_reward" "quest_reward_crate_vanguard" - "difficulty" "3" - "operational_points" "3" + "name" "rio2022_signature_neofrag_1_glitter" + "item_name" "#StickerKit_rio2022_signature_neofrag_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_neofrag_glitter" + "sticker_material" "rio2022/sig_neofrag_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "255168957" } - "121" + "6372" { - "name" "ArmsRace 10 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "10" - "quest_reward" "set_overpass" - "loc_name" "#Quest_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" - "difficulty" "1" + "name" "rio2022_signature_neofrag_1_holo" + "item_name" "#StickerKit_rio2022_signature_neofrag_holo" + "description_string" "#StickerKit_desc_rio2022_signature_neofrag_holo" + "sticker_material" "rio2022/sig_neofrag_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "255168957" } - "122" + "6373" { - "name" "ArmsRace 20 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "set_baggage" - "loc_name" "#Quest_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" + "name" "rio2022_signature_neofrag_1_gold" + "item_name" "#StickerKit_rio2022_signature_neofrag_gold" + "description_string" "#StickerKit_desc_rio2022_signature_neofrag_gold" + "sticker_material" "rio2022/sig_neofrag_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "255168957" } - "123" + "6374" { - "name" "ArmsRace 40 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "40" - "difficulty" "3" - "quest_reward" "set_lake" - "loc_name" "#Quest_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" + "name" "rio2022_signature_flamez_1" + "item_name" "#StickerKit_rio2022_signature_flamez" + "description_string" "#StickerKit_desc_rio2022_signature_flamez" + "sticker_material" "rio2022/sig_flamez" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "18569432" } - "201" + "6375" { - "name" "Deathmatch Vanguard Bonus Points 100" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op05" - "expression" " %act_dm_bonus_points% " - "points" "100" - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_DMBonusPoints_Mapgroup" - "loc_description" "#Quest_DMBonusPoints_Mapgroup_desc" + "name" "rio2022_signature_flamez_1_glitter" + "item_name" "#StickerKit_rio2022_signature_flamez_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_flamez_glitter" + "sticker_material" "rio2022/sig_flamez_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "18569432" } - "203" + "6376" { - "name" "Deathmatch Vanguard Chicken Kills" - "loc_name" "#Quest_Chicken_Kills_Mapgroup" - "loc_description" "#Quest_Kills_Mapgroup_desc" - "quest_icon" "chicken" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op05" - "expression" " %act_kill_chicken% " - "points" "20" - "difficulty" "1" - "xp_reward" "100" + "name" "rio2022_signature_flamez_1_holo" + "item_name" "#StickerKit_rio2022_signature_flamez_holo" + "description_string" "#StickerKit_desc_rio2022_signature_flamez_holo" + "sticker_material" "rio2022/sig_flamez_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "18569432" } - "204" + "6377" { - "name" "Deathmatch Vanguard Sawedoff Kills" - "loc_name" "#Quest_Weapon_Mapgroup" - "loc_description" "#Quest_Weapon_Mapgroup_desc" - "points" "20" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op05" - "expression" " %weapon_sawedoff% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_flamez_1_gold" + "item_name" "#StickerKit_rio2022_signature_flamez_gold" + "description_string" "#StickerKit_desc_rio2022_signature_flamez_gold" + "sticker_material" "rio2022/sig_flamez_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "18569432" } - "205" + "6378" { - "name" "Casual Vanguard 10 M4A4 Kills" - "loc_name" "#Quest_Weapon_Mapgroup" - "loc_description" "#Quest_Weapon_Mapgroup_desc" - "points" "10" - "gamemode" "casual" - "mapgroup" "mg_op_op05" - "expression" " %weapon_m4a1% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "set_aztec" + "name" "rio2022_signature_degster_1" + "item_name" "#StickerKit_rio2022_signature_degster" + "description_string" "#StickerKit_desc_rio2022_signature_degster" + "sticker_material" "rio2022/sig_degster" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "839074394" } - "206" + "6379" { - "name" "Deathmatch Vanguard 20 P90 Kills" - "loc_name" "#Quest_Weapon_Mapgroup" - "loc_description" "#Quest_Weapon_Mapgroup_desc" - "points" "20" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op05" - "expression" " %weapon_p90% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "set_italy" + "name" "rio2022_signature_degster_1_glitter" + "item_name" "#StickerKit_rio2022_signature_degster_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_degster_glitter" + "sticker_material" "rio2022/sig_degster_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "839074394" } - "207" + "6380" { - "name" "Casual Facade 30 Kills" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" - "points" "30" - "gamemode" "casual" - "map" "de_facade" - "mapgroup" "mg_op_op05" - "expression" " %act_kill_human% " - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_degster_1_holo" + "item_name" "#StickerKit_rio2022_signature_degster_holo" + "description_string" "#StickerKit_desc_rio2022_signature_degster_holo" + "sticker_material" "rio2022/sig_degster_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "839074394" } - "208" + "6381" { - "name" "Casual Season 30 Kills" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" - "points" "30" - "gamemode" "casual" - "map" "de_season" - "mapgroup" "mg_op_op05" - "expression" " %act_kill_human% " - "difficulty" "1" - "operational_points" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_degster_1_gold" + "item_name" "#StickerKit_rio2022_signature_degster_gold" + "description_string" "#StickerKit_desc_rio2022_signature_degster_gold" + "sticker_material" "rio2022/sig_degster_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "839074394" } - "209" + "6382" { - "name" "Win 8 Rounds Competitive Workout" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "8" - "gamemode" "competitive" - "mapgroup" "mg_cs_workout" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "set_nuke" + "name" "rio2022_signature_f1ku_1" + "item_name" "#StickerKit_rio2022_signature_f1ku" + "description_string" "#StickerKit_desc_rio2022_signature_f1ku" + "sticker_material" "rio2022/sig_f1ku" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "292168772" } - "210" + "6383" { - "name" "Win 8 Rounds Competitive Marquis" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "8" - "gamemode" "competitive" - "mapgroup" "mg_de_marquis" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_f1ku_1_glitter" + "item_name" "#StickerKit_rio2022_signature_f1ku_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_f1ku_glitter" + "sticker_material" "rio2022/sig_f1ku_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "292168772" } - "211" + "6384" { - "name" "Win 8 Rounds Competitive Season" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "8" - "gamemode" "competitive" - "mapgroup" "mg_de_season" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "set_nuke" + "name" "rio2022_signature_f1ku_1_holo" + "item_name" "#StickerKit_rio2022_signature_f1ku_holo" + "description_string" "#StickerKit_desc_rio2022_signature_f1ku_holo" + "sticker_material" "rio2022/sig_f1ku_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "292168772" } - "212" + "6385" { - "name" "Win 8 Rounds Competitive Facade" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "8" - "gamemode" "competitive" - "mapgroup" "mg_de_facade" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "set_militia" + "name" "rio2022_signature_f1ku_1_gold" + "item_name" "#StickerKit_rio2022_signature_f1ku_gold" + "description_string" "#StickerKit_desc_rio2022_signature_f1ku_gold" + "sticker_material" "rio2022/sig_f1ku_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "96" + "tournament_player_id" "292168772" } - "213" + "6386" { - "name" "Win 16 Rounds Competitive Backalley" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_cs_backalley" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_dupreeh_1" + "item_name" "#StickerKit_rio2022_signature_dupreeh" + "description_string" "#StickerKit_desc_rio2022_signature_dupreeh" + "sticker_material" "rio2022/sig_dupreeh" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "214" + "6387" { - "name" "Win 16 Rounds Competitive Bazaar" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_bazaar" - "expression" " %act_win_round% " - "difficulty" "2" - "operational_points" "2" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_dupreeh_1_glitter" + "item_name" "#StickerKit_rio2022_signature_dupreeh_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_dupreeh_glitter" + "sticker_material" "rio2022/sig_dupreeh_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "215" + "6388" { - "name" "Win 16 Rounds Competitive Season" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_season" - "expression" " %act_win_round% " - "difficulty" "3" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_dupreeh_1_holo" + "item_name" "#StickerKit_rio2022_signature_dupreeh_holo" + "description_string" "#StickerKit_desc_rio2022_signature_dupreeh_holo" + "sticker_material" "rio2022/sig_dupreeh_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "216" + "6389" { - "name" "Win 16 Rounds Competitive Backalley" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_cs_backalley" - "expression" " %act_win_round% " - "difficulty" "3" - "quest_reward" "set_train" + "name" "rio2022_signature_dupreeh_1_gold" + "item_name" "#StickerKit_rio2022_signature_dupreeh_gold" + "description_string" "#StickerKit_desc_rio2022_signature_dupreeh_gold" + "sticker_material" "rio2022/sig_dupreeh_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "44589228" } - "217" + "6390" { - "name" "Win 16 Rounds Competitive Marquis" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_marquis" - "expression" " %act_win_round% " - "difficulty" "3" - "quest_reward" "set_dust" + "name" "rio2022_signature_magisk_1" + "item_name" "#StickerKit_rio2022_signature_magisk" + "description_string" "#StickerKit_desc_rio2022_signature_magisk" + "sticker_material" "rio2022/sig_magisk" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "218" + "6391" { - "name" "Win Competitive Facade Twice" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "points" "2" - "gamemode" "competitive" - "mapgroup" "mg_de_facade" - "expression" " %act_win_match% " - "difficulty" "3" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_magisk_1_glitter" + "item_name" "#StickerKit_rio2022_signature_magisk_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_magisk_glitter" + "sticker_material" "rio2022/sig_magisk_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "219" + "6392" { - "name" "Win Competitive Bazaar Twice" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "points" "2" - "gamemode" "competitive" - "mapgroup" "mg_de_bazaar" - "expression" " %act_win_match% " - "operational_points" "3" - "difficulty" "3" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_magisk_1_holo" + "item_name" "#StickerKit_rio2022_signature_magisk_holo" + "description_string" "#StickerKit_desc_rio2022_signature_magisk_holo" + "sticker_material" "rio2022/sig_magisk_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "220" + "6393" { - "name" "ArmsRace Safehouse 10 Kills" - "gamemode" "gungameprogressive" - "map" "de_safehouse" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "10" - "quest_reward" "set_militia" - "difficulty" "1" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_magisk_1_gold" + "item_name" "#StickerKit_rio2022_signature_magisk_gold" + "description_string" "#StickerKit_desc_rio2022_signature_magisk_gold" + "sticker_material" "rio2022/sig_magisk_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "23690923" } - "221" + "6394" { - "name" "ArmsRace StMarc 20 Kills" - "gamemode" "gungameprogressive" - "map" "de_stmarc" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "set_nuke" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_apex_1" + "item_name" "#StickerKit_rio2022_signature_apex" + "description_string" "#StickerKit_desc_rio2022_signature_apex" + "sticker_material" "rio2022/sig_apex" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "222" + "6395" { - "name" "ArmsRace Lake 40 Kills" - "gamemode" "gungameprogressive" - "map" "de_lake" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "40" - "difficulty" "3" - "quest_reward" "set_bank" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_apex_1_glitter" + "item_name" "#StickerKit_rio2022_signature_apex_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_apex_glitter" + "sticker_material" "rio2022/sig_apex_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "301" + "6396" { - "name" "Deathmatch Dust2 Bonus Points 100" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_dust2" - "expression" " %act_dm_bonus_points% " - "points" "100" - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_DMBonusPoints_Map" - "loc_description" "#Quest_DMBonusPoints_Map_desc" + "name" "rio2022_signature_apex_1_holo" + "item_name" "#StickerKit_rio2022_signature_apex_holo" + "description_string" "#StickerKit_desc_rio2022_signature_apex_holo" + "sticker_material" "rio2022/sig_apex_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "302" + "6397" { - "name" "Demolition ShortDust 20 Kills" - "gamemode" "gungametrbomb" - "mapgroup" "mg_demolition" - "map" "de_shortdust" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "set_dust" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_apex_1_gold" + "item_name" "#StickerKit_rio2022_signature_apex_gold" + "description_string" "#StickerKit_desc_rio2022_signature_apex_gold" + "sticker_material" "rio2022/sig_apex_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "29478439" } - "303" + "6398" { - "name" "Casual Mirage 10 P90 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "10" - "gamemode" "casual" - "map" "de_mirage" - "mapgroup" "mg_active" - "expression" " %weapon_p90% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_spinx_1" + "item_name" "#StickerKit_rio2022_signature_spinx" + "description_string" "#StickerKit_desc_rio2022_signature_spinx" + "sticker_material" "rio2022/sig_spinx" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "103070679" } - "304" + "6399" { - "name" "Deathmatch Mirage 20 fiveseven Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "20" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_mirage" - "expression" " %weapon_fiveseven% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "set_mirage" + "name" "rio2022_signature_spinx_1_glitter" + "item_name" "#StickerKit_rio2022_signature_spinx_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_spinx_glitter" + "sticker_material" "rio2022/sig_spinx_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "103070679" } - "305" + "6400" { - "name" "Casual Dust2 10 UMP Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "10" - "gamemode" "casual" - "map" "de_dust2" - "mapgroup" "mg_active" - "expression" " %weapon_ump45% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_spinx_1_holo" + "item_name" "#StickerKit_rio2022_signature_spinx_holo" + "description_string" "#StickerKit_desc_rio2022_signature_spinx_holo" + "sticker_material" "rio2022/sig_spinx_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "103070679" } - "306" + "6401" { - "name" "Casual Dust2 10 Nova Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "10" - "gamemode" "casual" - "map" "de_dust2" - "mapgroup" "mg_active" - "expression" " %weapon_nova% && %act_kill_human% " - "difficulty" "1" - "quest_reward" "set_dust" + "name" "rio2022_signature_spinx_1_gold" + "item_name" "#StickerKit_rio2022_signature_spinx_gold" + "description_string" "#StickerKit_desc_rio2022_signature_spinx_gold" + "sticker_material" "rio2022/sig_spinx_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "103070679" } - "307" + "6402" { - "name" "Casual Mirage 30 Kills" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" - "points" "30" - "gamemode" "casual" - "map" "de_mirage" - "mapgroup" "mg_active" - "expression" " %act_kill_human% " - "difficulty" "1" - "quest_reward" "set_mirage" + "name" "rio2022_signature_zywoo_1" + "item_name" "#StickerKit_rio2022_signature_zywoo" + "description_string" "#StickerKit_desc_rio2022_signature_zywoo" + "sticker_material" "rio2022/sig_zywoo" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "308" + "6403" { - "name" "Casual Dust2 30 Kills" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" - "points" "30" - "gamemode" "casual" - "mapgroup" "mg_active" - "map" "de_dust2" - "expression" " %act_kill_human% " - "difficulty" "1" - "operational_points" "1" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_zywoo_1_glitter" + "item_name" "#StickerKit_rio2022_signature_zywoo_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_zywoo_glitter" + "sticker_material" "rio2022/sig_zywoo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "309" + "6404" { - "name" "Deathmatch Mirage 30 tec9 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "30" - "gamemode" "deathmatch" - "map" "de_mirage" - "mapgroup" "mg_active" - "expression" " %weapon_tec9% && %act_kill_human% " - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_zywoo_1_holo" + "item_name" "#StickerKit_rio2022_signature_zywoo_holo" + "description_string" "#StickerKit_desc_rio2022_signature_zywoo_holo" + "sticker_material" "rio2022/sig_zywoo_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "310" + "6405" { - "name" "Deathmatch Mirage 30 AWP Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "30" - "gamemode" "deathmatch" - "map" "de_mirage" - "mapgroup" "mg_active" - "expression" " %weapon_awp% && %act_kill_human% " - "difficulty" "2" - "quest_reward" "set_mirage" + "name" "rio2022_signature_zywoo_1_gold" + "item_name" "#StickerKit_rio2022_signature_zywoo_gold" + "description_string" "#StickerKit_desc_rio2022_signature_zywoo_gold" + "sticker_material" "rio2022/sig_zywoo_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "89" + "tournament_player_id" "153400465" } - "311" + "6406" { - "name" "Win 16 Rounds Competitive Mirage" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_mirage" - "expression" " %act_win_round% " - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_taco_4" + "item_name" "#StickerKit_rio2022_signature_taco" + "description_string" "#StickerKit_desc_rio2022_signature_taco" + "sticker_material" "rio2022/sig_taco" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "52876568" } - "312" + "6407" { - "name" "Deathmatch Dust2 SSG08 20 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "20" - "gamemode" "deathmatch" - "map" "de_dust2" - "mapgroup" "mg_active" - "expression" " %weapon_ssg08% && %act_kill_human% " - "difficulty" "2" - "quest_reward" "set_dust_2" + "name" "rio2022_signature_taco_4_glitter" + "item_name" "#StickerKit_rio2022_signature_taco_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_taco_glitter" + "sticker_material" "rio2022/sig_taco_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "52876568" } - "313" + "6408" { - "name" "Deathmatch Dust2 AK47 30 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "30" - "gamemode" "deathmatch" - "map" "de_dust2" - "mapgroup" "mg_active" - "expression" " %weapon_ak47% && %act_kill_human% " - "difficulty" "2" - "quest_reward" "set_dust_2" + "name" "rio2022_signature_taco_4_holo" + "item_name" "#StickerKit_rio2022_signature_taco_holo" + "description_string" "#StickerKit_desc_rio2022_signature_taco_holo" + "sticker_material" "rio2022/sig_taco_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "52876568" } - "314" + "6409" { - "name" "Win 16 Rounds Competitive Dust2" - "loc_name" "#Quest_Win_Rounds_Map" - "loc_description" "#Quest_Win_Rounds_Map_desc" - "points" "16" - "gamemode" "competitive" - "mapgroup" "mg_de_dust2" - "expression" " %act_win_round% " - "difficulty" "2" - "operational_points" "2" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_taco_4_gold" + "item_name" "#StickerKit_rio2022_signature_taco_gold" + "description_string" "#StickerKit_desc_rio2022_signature_taco_gold" + "sticker_material" "rio2022/sig_taco_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "52876568" } - "315" + "6410" { - "name" "Deathmatch Mirage SSG08 75 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "75" - "gamemode" "deathmatch" - "map" "de_mirage" - "mapgroup" "mg_active" - "expression" " %weapon_ssg08% && %act_kill_human% " - "difficulty" "3" - "quest_reward" "set_mirage" + "name" "rio2022_signature_coldzera_4" + "item_name" "#StickerKit_rio2022_signature_coldzera" + "description_string" "#StickerKit_desc_rio2022_signature_coldzera" + "sticker_material" "rio2022/sig_coldzera" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "79720871" } - "316" + "6411" { - "name" "Deathmatch Mirage Famas 100 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "100" - "gamemode" "deathmatch" - "map" "de_mirage" - "mapgroup" "mg_active" - "expression" " %weapon_famas% && %act_kill_human% " - "difficulty" "3" - "quest_reward" "set_mirage" + "name" "rio2022_signature_coldzera_4_glitter" + "item_name" "#StickerKit_rio2022_signature_coldzera_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_coldzera_glitter" + "sticker_material" "rio2022/sig_coldzera_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "79720871" + } + "6412" + { + "name" "rio2022_signature_coldzera_4_holo" + "item_name" "#StickerKit_rio2022_signature_coldzera_holo" + "description_string" "#StickerKit_desc_rio2022_signature_coldzera_holo" + "sticker_material" "rio2022/sig_coldzera_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "79720871" } - "317" + "6413" { - "name" "Win Competitive Mirage Twice" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "points" "2" - "gamemode" "competitive" - "mapgroup" "mg_de_mirage" - "expression" " %act_win_match% " - "difficulty" "3" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_coldzera_4_gold" + "item_name" "#StickerKit_rio2022_signature_coldzera_gold" + "description_string" "#StickerKit_desc_rio2022_signature_coldzera_gold" + "sticker_material" "rio2022/sig_coldzera_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "79720871" } - "318" + "6414" { - "name" "Deathmatch Dust2 Galil 100 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "100" - "gamemode" "deathmatch" - "map" "de_dust2" - "mapgroup" "mg_active" - "expression" " %weapon_galilar% && %act_kill_human% " - "difficulty" "3" - "quest_reward" "set_dust_2" + "name" "rio2022_signature_try_4" + "item_name" "#StickerKit_rio2022_signature_try" + "description_string" "#StickerKit_desc_rio2022_signature_try" + "sticker_material" "rio2022/sig_try" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "404852560" } - "319" + "6415" { - "name" "Deathmatch Dust2 Deagle 75 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "75" - "gamemode" "deathmatch" - "map" "de_dust2" - "mapgroup" "mg_active" - "expression" " %weapon_deagle% && %act_kill_human% " - "difficulty" "3" - "quest_reward" "set_dust_2" + "name" "rio2022_signature_try_4_glitter" + "item_name" "#StickerKit_rio2022_signature_try_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_try_glitter" + "sticker_material" "rio2022/sig_try_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "404852560" } - "320" + "6416" { - "name" "Deathmatch Dust2 AK47 100 Kills" - "loc_name" "#Quest_Weapon_Map" - "loc_description" "#Quest_Weapon_Map_desc" - "points" "100" - "gamemode" "deathmatch" - "map" "de_dust2" - "mapgroup" "mg_active" - "expression" " %weapon_ak47% && %act_kill_human% " - "difficulty" "3" - "quest_reward" "set_dust" + "name" "rio2022_signature_try_4_holo" + "item_name" "#StickerKit_rio2022_signature_try_holo" + "description_string" "#StickerKit_desc_rio2022_signature_try_holo" + "sticker_material" "rio2022/sig_try_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "404852560" } - "321" + "6417" { - "name" "Win Competitive Dust2 Twice" - "loc_name" "#Quest_Win_a_Mapgroup" - "loc_description" "#Quest_Win_a_Mapgroup_desc" - "points" "2" - "gamemode" "competitive" - "mapgroup" "mg_de_dust2" - "expression" " %act_win_match% " - "difficulty" "3" - "operational_points" "3" - "quest_reward" "quest_reward_crate_vanguard" + "name" "rio2022_signature_try_4_gold" + "item_name" "#StickerKit_rio2022_signature_try_gold" + "description_string" "#StickerKit_desc_rio2022_signature_try_gold" + "sticker_material" "rio2022/sig_try_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "404852560" } - "401" + "6418" { - "name" "ArmsRace Shoots 20 Kills" - "gamemode" "gungameprogressive" - "map" "ar_shoots" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_latto_4" + "item_name" "#StickerKit_rio2022_signature_latto" + "description_string" "#StickerKit_desc_rio2022_signature_latto" + "sticker_material" "rio2022/sig_latto" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "889754458" } - "402" + "6419" { - "name" "ArmsRace Safehouse 10 Kills" - "gamemode" "gungameprogressive" - "map" "de_safehouse" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "10" - "difficulty" "1" - "quest_reward" "set_safehouse" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_latto_4_glitter" + "item_name" "#StickerKit_rio2022_signature_latto_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_latto_glitter" + "sticker_material" "rio2022/sig_latto_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "889754458" } - "403" + "6420" { - "name" "Demolition 10 Kills" - "gamemode" "gungametrbomb" - "mapgroup" "mg_demolition" - "expression" " %act_kill_human% " - "points" "10" - "difficulty" "1" - "quest_reward" "set_aztec" - "loc_name" "#Quest_Kills_Mode" - "loc_description" "#Quest_Kills_Mode_desc" + "name" "rio2022_signature_latto_4_holo" + "item_name" "#StickerKit_rio2022_signature_latto_holo" + "description_string" "#StickerKit_desc_rio2022_signature_latto_holo" + "sticker_material" "rio2022/sig_latto_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "889754458" } - "404" + "6421" { - "name" "ArmsRace Monastery 10 Kills" - "gamemode" "gungameprogressive" - "map" "ar_monastery" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "10" - "difficulty" "1" - "quest_reward" "set_lake" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_latto_4_gold" + "item_name" "#StickerKit_rio2022_signature_latto_gold" + "description_string" "#StickerKit_desc_rio2022_signature_latto_gold" + "sticker_material" "rio2022/sig_latto_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "889754458" } - "405" + "6422" { - "name" "Deathmatch Nuke Bonus Points 50" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_nuke" - "expression" " %act_dm_bonus_points% " - "points" "50" - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_DMBonusPoints_Map" - "loc_description" "#Quest_DMBonusPoints_Map_desc" + "name" "rio2022_signature_dumau_4" + "item_name" "#StickerKit_rio2022_signature_dumau" + "description_string" "#StickerKit_desc_rio2022_signature_dumau" + "sticker_material" "rio2022/sig_dumau" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "234059589" } - "406" + "6423" { - "name" "ArmsRace StMarc 10 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_stmarc" - "expression" " %act_kill_human% " - "points" "10" - "difficulty" "1" - "quest_reward" "set_train" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_dumau_4_glitter" + "item_name" "#StickerKit_rio2022_signature_dumau_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_dumau_glitter" + "sticker_material" "rio2022/sig_dumau_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "234059589" } - "407" + "6424" { - "name" "ArmsRace Safehouse 20 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_safehouse" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "1" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_dumau_4_holo" + "item_name" "#StickerKit_rio2022_signature_dumau_holo" + "description_string" "#StickerKit_desc_rio2022_signature_dumau_holo" + "sticker_material" "rio2022/sig_dumau_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "234059589" } - "408" + "6425" { - "name" "ArmsRace Lake 20 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_lake" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "1" - "operational_points" "1" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_dumau_4_gold" + "item_name" "#StickerKit_rio2022_signature_dumau_gold" + "description_string" "#StickerKit_desc_rio2022_signature_dumau_gold" + "sticker_material" "rio2022/sig_dumau_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "116" + "tournament_player_id" "234059589" } - "409" + "6426" { - "name" "Demolition ShortDust 20 Kills" - "gamemode" "gungametrbomb" - "mapgroup" "mg_demolition" - "map" "de_shortdust" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "set_dust" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_krimz_4" + "item_name" "#StickerKit_rio2022_signature_krimz" + "description_string" "#StickerKit_desc_rio2022_signature_krimz" + "sticker_material" "rio2022/sig_krimz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "71385856" } - "410" + "6427" { - "name" "Deathmatch Inferno Bonus Points 100" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_inferno" - "expression" " %act_dm_bonus_points% " - "points" "100" - "difficulty" "2" - "quest_reward" "set_inferno" - "loc_name" "#Quest_DMBonusPoints_Map" - "loc_description" "#Quest_DMBonusPoints_Map_desc" + "name" "rio2022_signature_krimz_4_glitter" + "item_name" "#StickerKit_rio2022_signature_krimz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_krimz_glitter" + "sticker_material" "rio2022/sig_krimz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "71385856" } - "411" + "6428" { - "name" "Demolition 20 Kills" - "gamemode" "gungametrbomb" - "mapgroup" "mg_demolition" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "set_vertigo" - "loc_name" "#Quest_Kills_Mode" - "loc_description" "#Quest_Kills_Mode_desc" + "name" "rio2022_signature_krimz_4_holo" + "item_name" "#StickerKit_rio2022_signature_krimz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_krimz_holo" + "sticker_material" "rio2022/sig_krimz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "71385856" } - "412" + "6429" { - "name" "Deathmatch Nuke Bonus Points 100" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_nuke" - "expression" " %act_dm_bonus_points% " - "points" "100" - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_DMBonusPoints_Map" - "loc_description" "#Quest_DMBonusPoints_Map_desc" + "name" "rio2022_signature_krimz_4_gold" + "item_name" "#StickerKit_rio2022_signature_krimz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_krimz_gold" + "sticker_material" "rio2022/sig_krimz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "71385856" } - "413" + "6430" { - "name" "ArmsRace St Marc 20 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_stmarc" - "expression" " %act_kill_human% " - "points" "20" - "difficulty" "2" - "quest_reward" "set_italy" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_mezii_4" + "item_name" "#StickerKit_rio2022_signature_mezii" + "description_string" "#StickerKit_desc_rio2022_signature_mezii" + "sticker_material" "rio2022/sig_mezii" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "12874964" } - "414" + "6431" { - "name" "ArmsRace Safehouse 40 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_safehouse" - "expression" " %act_kill_human% " - "points" "40" - "difficulty" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_mezii_4_glitter" + "item_name" "#StickerKit_rio2022_signature_mezii_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_mezii_glitter" + "sticker_material" "rio2022/sig_mezii_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "12874964" } - "415" + "6432" { - "name" "ArmsRace Lake 40 Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_lake" - "expression" " %act_kill_human% " - "points" "40" - "difficulty" "2" - "operational_points" "2" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_mezii_4_holo" + "item_name" "#StickerKit_rio2022_signature_mezii_holo" + "description_string" "#StickerKit_desc_rio2022_signature_mezii_holo" + "sticker_material" "rio2022/sig_mezii_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "12874964" } - "416" + "6433" { - "name" "Deathmatch Inferno Bonus Points 200" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_inferno" - "expression" " %act_dm_bonus_points% " - "points" "200" - "difficulty" "3" - "quest_reward" "set_inferno" - "loc_name" "#Quest_DMBonusPoints_Map" - "loc_description" "#Quest_DMBonusPoints_Map_desc" + "name" "rio2022_signature_mezii_4_gold" + "item_name" "#StickerKit_rio2022_signature_mezii_gold" + "description_string" "#StickerKit_desc_rio2022_signature_mezii_gold" + "sticker_material" "rio2022/sig_mezii_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "12874964" } - "417" + "6434" { - "name" "Demolition 40 Kills" - "gamemode" "gungametrbomb" - "mapgroup" "mg_demolition" - "expression" " %act_kill_human% " - "points" "40" - "difficulty" "3" - "quest_reward" "set_overpass" - "loc_name" "#Quest_Kills_Mode" - "loc_description" "#Quest_Kills_Mode_desc" + "name" "rio2022_signature_fashr_4" + "item_name" "#StickerKit_rio2022_signature_fashr" + "description_string" "#StickerKit_desc_rio2022_signature_fashr" + "sticker_material" "rio2022/sig_fashr" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "3238867" } - "418" + "6435" { - "name" "Deathmatch Nuke Bonus Points 200" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_nuke" - "expression" " %act_dm_bonus_points% " - "points" "200" - "difficulty" "3" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_DMBonusPoints_Map" - "loc_description" "#Quest_DMBonusPoints_Map_desc" + "name" "rio2022_signature_fashr_4_glitter" + "item_name" "#StickerKit_rio2022_signature_fashr_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_fashr_glitter" + "sticker_material" "rio2022/sig_fashr_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "3238867" } - "419" + "6436" { - "name" "ArmsRace St Marc 40 Kills" - "gamemode" "gungameprogressive" - "map" "de_stmarc" - "mapgroup" "mg_armsrace" - "expression" " %act_kill_human% " - "points" "40" - "difficulty" "3" - "quest_reward" "set_italy" - "loc_name" "#Quest_Kills_Map" - "loc_description" "#Quest_Kills_Map_desc" + "name" "rio2022_signature_fashr_4_holo" + "item_name" "#StickerKit_rio2022_signature_fashr_holo" + "description_string" "#StickerKit_desc_rio2022_signature_fashr_holo" + "sticker_material" "rio2022/sig_fashr_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "3238867" } - "420" + "6437" { - "name" "Win ArmsRace Safehouse" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_safehouse" - "expression" " %act_win_match% " - "points" "1" - "difficulty" "3" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Win_a_Map" - "loc_description" "#Quest_Win_a_Map_desc" + "name" "rio2022_signature_fashr_4_gold" + "item_name" "#StickerKit_rio2022_signature_fashr_gold" + "description_string" "#StickerKit_desc_rio2022_signature_fashr_gold" + "sticker_material" "rio2022/sig_fashr_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "3238867" } - "421" + "6438" { - "name" "Win ArmsRace Lake" - "gamemode" "gungameprogressive" - "map" "de_lake" - "mapgroup" "mg_armsrace" - "expression" " %act_win_match% " - "points" "1" - "difficulty" "3" - "operational_points" "3" - "quest_reward" "quest_reward_crate_vanguard" - "loc_name" "#Quest_Win_a_Map" - "loc_description" "#Quest_Win_a_Map_desc" + "name" "rio2022_signature_roej_4" + "item_name" "#StickerKit_rio2022_signature_roej" + "description_string" "#StickerKit_desc_rio2022_signature_roej" + "sticker_material" "rio2022/sig_roej" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "30968963" } - "501" + "6439" { - "name" "Deathmatch Op6 p250 kills" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op06" - "expression" " %act_kill_human% && %weapon_p250% " - "expr_bonus" " %act_kill_human% && %weapon_p250% && %cond_headshot% " - "points" "30" - "xp_bonus_percent" "200" - "difficulty" "2" - "loc_name" "Op_bloodhound_501" - "loc_description" "#Quest_Weapon_Mapgroup_desc" - "loc_bonus" "#quest_bonus_headshot" + "name" "rio2022_signature_roej_4_glitter" + "item_name" "#StickerKit_rio2022_signature_roej_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_roej_glitter" + "sticker_material" "rio2022/sig_roej_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "30968963" } - "502" + "6440" { - "name" "Casual Reserve 10 Awp kills w/set_lake" - "gamemode" "casual" - "mapgroup" "mg_reserves" - "expression" " %act_kill_human% && %weapon_awp% " - "expr_bonus" " %act_kill_human% && %weapon_awp% && %set_lake% " - "points" "10" - "xp_bonus_percent" "100" - "difficulty" "1" - "loc_name" "Op_bloodhound_502" - "loc_description" "#Quest_Weapon_Mapgroup_desc" - "loc_bonus" "#quest_bonus_set_lake" + "name" "rio2022_signature_roej_4_holo" + "item_name" "#StickerKit_rio2022_signature_roej_holo" + "description_string" "#StickerKit_desc_rio2022_signature_roej_holo" + "sticker_material" "rio2022/sig_roej_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "30968963" } - "503" + "6441" { - "name" "Casual Active Duty SSG08 Damage: 1500" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %weapon_ssg08% ? %act_damage% : 0 " - "expr_bonus" " ( %map_de_train% && %weapon_ssg08% ) ? %act_damage% : 0 " - "points" "1500" - "xp_bonus_percent" "50" - "difficulty" "1" - "loc_name" "Op_bloodhound_503" - "loc_description" "#Quest_WeaponDamage_Mapgroup_desc" - "loc_bonus" "#quest_bonus_de_train" + "name" "rio2022_signature_roej_4_gold" + "item_name" "#StickerKit_rio2022_signature_roej_gold" + "description_string" "#StickerKit_desc_rio2022_signature_roej_gold" + "sticker_material" "rio2022/sig_roej_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "30968963" } - "504" + "6442" { - "name" "Deathmatch Zoo Kills" - "points" "40" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op06" - "map" "de_zoo" - "expression" " %weapon_aug% && %act_kill_human% " - "expr_bonus" " %weapon_aug% && %act_kill_human% && %cond_zoomed% " - "xp_bonus_percent" "100" - "difficulty" "1" - "loc_name" "Op_bloodhound_504" - "loc_description" "#Quest_Weapon_Map_desc" - "loc_bonus" "#quest_bonus_zoomed" + "name" "rio2022_signature_nicoodoz_4" + "item_name" "#StickerKit_rio2022_signature_nicoodoz" + "description_string" "#StickerKit_desc_rio2022_signature_nicoodoz" + "sticker_material" "rio2022/sig_nicoodoz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "112851399" } - "505" + "6443" { - "name" "Demolition 20 kills" - "gamemode" "gungametrbomb" - "mapgroup" "mg_demolition" - "expression" " %act_kill_human% " - "expr_bonus" " %act_kill_human% && %set_lake% " - "points" "20" - "operational_points" "1" - "xp_bonus_percent" "100" - "difficulty" "1" - "loc_name" "Op_bloodhound_505" - "loc_description" "#Quest_Kills_Mode_desc" - "loc_bonus" "#quest_bonus_set_lake" + "name" "rio2022_signature_nicoodoz_4_glitter" + "item_name" "#StickerKit_rio2022_signature_nicoodoz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_nicoodoz_glitter" + "sticker_material" "rio2022/sig_nicoodoz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "112851399" } - "506" + "6444" { - "name" "Deathmatch SSG08 Op6 kills 40" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op06" - "expression" " %weapon_ssg08% && ( %act_kill_human% || %act_kill_chicken% ) " - "expr_bonus" " %weapon_ssg08% && %act_kill_chicken% " - "points" "50" - "xp_bonus_percent" "50" - "difficulty" "2" - "loc_name" "Op_bloodhound_506" - "loc_description" "#Quest_Weapon_Mapgroup_desc" - "loc_bonus" "#quest_bonus_chickens" - "string_tokens" - { - "optional_target" "#quest_target_human_or_chicken" - } + "name" "rio2022_signature_nicoodoz_4_holo" + "item_name" "#StickerKit_rio2022_signature_nicoodoz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_nicoodoz_holo" + "sticker_material" "rio2022/sig_nicoodoz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "112851399" } - "507" + "6445" { - "name" "Deathmatch Mirage AWP kills 40" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_mirage" - "expression" " %weapon_awp% && %act_kill_human% " - "expr_bonus" " %weapon_awp% && %act_kill_human% && ( %cond_killstreak% >= 3 ) " - "points" "40" - "xp_bonus_percent" "200" - "difficulty" "2" - "loc_name" "Op_bloodhound_507" - "loc_description" "#Quest_Weapon_Map_desc" - "loc_bonus" "#quest_bonus_killstreak_3" + "name" "rio2022_signature_nicoodoz_4_gold" + "item_name" "#StickerKit_rio2022_signature_nicoodoz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_nicoodoz_gold" + "sticker_material" "rio2022/sig_nicoodoz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "6" + "tournament_player_id" "112851399" } - "508" + "6446" { - "name" "Deathmatch Dust2 Deagle kills 40" - "gamemode" "deathmatch" - "mapgroup" "mg_active" - "map" "de_dust2" - "expression" " %weapon_deagle% && %act_kill_human% " - "expr_bonus" " %weapon_deagle% && %act_kill_human% && %set_community_7% " - "points" "60" - "xp_bonus_percent" "100" - "difficulty" "2" - "loc_name" "Op_bloodhound_508" - "loc_description" "#Quest_Weapon_Map_desc" - "loc_bonus" "#quest_bonus_set_community_7" + "name" "rio2022_signature_kscerato_4" + "item_name" "#StickerKit_rio2022_signature_kscerato" + "description_string" "#StickerKit_desc_rio2022_signature_kscerato" + "sticker_material" "rio2022/sig_kscerato" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "509" + "6447" { - "name" "Casual Active CZ or Enemy Weapons 20" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %act_kill_human% && ( %weapon_cz75a% || %cond_borrowed_gun_enemy% ) " - "expr_bonus" " %act_kill_human% && %cond_borrowed_gun_enemy% " - "points" "20" - "operational_points" "2" - "xp_bonus_percent" "100" - "difficulty" "2" - "loc_name" "Op_bloodhound_509" - "loc_description" "#Quest_Weapon_Mapgroup_desc" - "loc_bonus" "#quest_bonus_borrowed_gun_enemy" - "quest_icon" "cz75a" - "string_tokens" - { - "weapon" "#quest_weapon_CZ75a_or_enemy_weapon" - } + "name" "rio2022_signature_kscerato_4_glitter" + "item_name" "#StickerKit_rio2022_signature_kscerato_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_kscerato_glitter" + "sticker_material" "rio2022/sig_kscerato_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "510" + "6448" { - "name" "Graduation: Casual Active Awp Kills First 3 bullets" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %act_kill_human% && %weapon_awp% && ( %cond_bullet_since_spawn% <= 3 ) " - "expr_bonus" " %act_kill_human% && %weapon_awp% && ( %cond_bullet_since_spawn% <= 1 ) " - "points" "15" - "xp_bonus_percent" "200" - "difficulty" "2" - "loc_name" "Op_bloodhound_510" - "loc_description" "#Quest_Weapon_Within_3_Mapgroup_desc" - "loc_bonus" "#quest_bonus_bulletcount_1" + "name" "rio2022_signature_kscerato_4_holo" + "item_name" "#StickerKit_rio2022_signature_kscerato_holo" + "description_string" "#StickerKit_desc_rio2022_signature_kscerato_holo" + "sticker_material" "rio2022/sig_kscerato_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "511" + "6449" { - "name" "VIP - mg_op_op06" - "gamemode" "casual" - "mapgroup" "mg_reserves" - "map" "cs_militia" - "expression" " ( %act_kill_target% ) && ( %cond_victim_team_terrorist% ) && ( %cond_team_ct% ) " - "points" "1" - "target_team" "2" - "difficulty" "2" - "loc_name" "Op_bloodhound_511" - "loc_description" "#Quest_Assassination_desc" - "quest_icon" "assassin" - "string_tokens" - { - "target" "#quest_target_sergei" - "victim team" "#CSGOEcon_SelectTerrorist" - } + "name" "rio2022_signature_kscerato_4_gold" + "item_name" "#StickerKit_rio2022_signature_kscerato_gold" + "description_string" "#StickerKit_desc_rio2022_signature_kscerato_gold" + "sticker_material" "rio2022/sig_kscerato_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "98234764" } - "512" + "6450" { - "name" "Arms Race St. Marc 15 kills ( set_italy )" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_stmarc" - "expression" " %act_kill_human% " - "expr_bonus" " %act_kill_human% && %set_italy% " - "points" "20" - "xp_bonus_percent" "100" - "difficulty" "1" - "loc_name" "Op_bloodhound_512" - "loc_description" "#Quest_Kills_Map_desc" - "loc_bonus" "#quest_bonus_set_italy" + "name" "rio2022_signature_yuurih_4" + "item_name" "#StickerKit_rio2022_signature_yuurih" + "description_string" "#StickerKit_desc_rio2022_signature_yuurih" + "sticker_material" "rio2022/sig_yuurih" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "204704832" + } + "6451" + { + "name" "rio2022_signature_yuurih_4_glitter" + "item_name" "#StickerKit_rio2022_signature_yuurih_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_yuurih_glitter" + "sticker_material" "rio2022/sig_yuurih_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "513" + "6452" { - "name" "Competitive Season win 6 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_season" - "expression" " %act_win_round% " - "points" "8" - "difficulty" "1" - "loc_name" "Op_bloodhound_513" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_yuurih_4_holo" + "item_name" "#StickerKit_rio2022_signature_yuurih_holo" + "description_string" "#StickerKit_desc_rio2022_signature_yuurih_holo" + "sticker_material" "rio2022/sig_yuurih_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "514" + "6453" { - "name" "Competitive Cobblestone win 8 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_cbble" - "expression" " %act_win_round% " - "points" "8" - "difficulty" "1" - "loc_name" "Op_bloodhound_514" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_yuurih_4_gold" + "item_name" "#StickerKit_rio2022_signature_yuurih_gold" + "description_string" "#StickerKit_desc_rio2022_signature_yuurih_gold" + "sticker_material" "rio2022/sig_yuurih_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "204704832" } - "515" + "6454" { - "name" "Casual Rails AWP Kills 10" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "map" "de_rails" - "expression" " %act_kill_human% && %weapon_awp% " - "expr_bonus" " %act_kill_human% && %weapon_awp% && %cond_headshot% " - "points" "10" - "xp_bonus_percent" "200" - "difficulty" "1" - "loc_name" "Op_bloodhound_515" - "loc_description" "#Quest_Weapon_Map_desc" - "loc_bonus" "#quest_bonus_headshot" + "name" "rio2022_signature_drop_4" + "item_name" "#StickerKit_rio2022_signature_drop" + "description_string" "#StickerKit_desc_rio2022_signature_drop" + "sticker_material" "rio2022/sig_drop" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "516" + "6455" { - "name" "Competitive Mirage win 6 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_mirage" - "expression" " %act_win_round% " - "points" "8" - "difficulty" "1" - "loc_name" "Op_bloodhound_516" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_drop_4_glitter" + "item_name" "#StickerKit_rio2022_signature_drop_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_drop_glitter" + "sticker_material" "rio2022/sig_drop_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "517" + "6456" { - "name" "Pickup Hostages Reserve 10" - "gamemode" "casual" - "mapgroup" "mg_reserves" - "map" "cs_assault" - "expression" " %act_pick_up_hostage% " - "points" "10" - "operational_points" "1" - "difficulty" "1" - "loc_name" "Op_bloodhound_517" - "loc_description" "#Quest_Rescue_Map_desc" + "name" "rio2022_signature_drop_4_holo" + "item_name" "#StickerKit_rio2022_signature_drop_holo" + "description_string" "#StickerKit_desc_rio2022_signature_drop_holo" + "sticker_material" "rio2022/sig_drop_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "518" + "6457" { - "name" "Competitive Zoo win 16 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_zoo" - "expression" " %act_win_round% " - "points" "16" - "difficulty" "3" - "loc_name" "Op_bloodhound_518" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_drop_4_gold" + "item_name" "#StickerKit_rio2022_signature_drop_gold" + "description_string" "#StickerKit_desc_rio2022_signature_drop_gold" + "sticker_material" "rio2022/sig_drop_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "427790854" } - "519" + "6458" { - "name" "Competitive Mirage win 16 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_mirage" - "expression" " %act_win_round% " - "points" "16" - "difficulty" "3" - "loc_name" "Op_bloodhound_519" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_saffee_4" + "item_name" "#StickerKit_rio2022_signature_saffee" + "description_string" "#StickerKit_desc_rio2022_signature_saffee" + "sticker_material" "rio2022/sig_saffee" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "520" + "6459" { - "name" "Guardian: Kills on Mirage" - "gamemode" "cooperative" - "mapgroup" "mg_de_mirage" - "map" "de_mirage" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 3 ) " - "points" "1" - "xp_reward" "300" - "xp_bonus_percent" "40" - "difficulty" "2" - "loc_name" "Op_bloodhound_520" - "loc_description" "#Quest_Guardian_Bomb_desc" - "loc_bonus" "#quest_bonus_totalrounds_3" - "string_tokens" - { - "map" "#SFUI_Map_de_mirage" - "kills" "quest_guardian_kills_15" - "weapon" "#SFUI_WPNHUD_AWP" - "team" "#quest_team_ct" - "extradetails" "#quest_guardian_maxmoneylimit" - } + "name" "rio2022_signature_saffee_4_glitter" + "item_name" "#StickerKit_rio2022_signature_saffee_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_saffee_glitter" + "sticker_material" "rio2022/sig_saffee_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "521" + "6460" { - "name" "Arms Race Safehouse 50 kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "de_safehouse" - "expression" " %act_kill_human% " - "expr_bonus" " %act_kill_human% && %weapon_melee% " - "points" "50" - "xp_bonus_percent" "200" - "difficulty" "3" - "loc_name" "Op_bloodhound_521" - "loc_description" "#Quest_Kills_Map_desc" - "loc_bonus" "#quest_bonus_melee" + "name" "rio2022_signature_saffee_4_holo" + "item_name" "#StickerKit_rio2022_signature_saffee_holo" + "description_string" "#StickerKit_desc_rio2022_signature_saffee_holo" + "sticker_material" "rio2022/sig_saffee_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "522" + "6461" { - "name" "Competitive Train win 16 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_train" - "expression" " %act_win_round% " - "points" "16" - "difficulty" "3" - "loc_name" "Op_bloodhound_522" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_saffee_4_gold" + "item_name" "#StickerKit_rio2022_signature_saffee_gold" + "description_string" "#StickerKit_desc_rio2022_signature_saffee_gold" + "sticker_material" "rio2022/sig_saffee_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "25299957" } - "523" + "6462" { - "name" "Competitive Overpass win 32 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_overpass" - "expression" " %act_win_round% " - "points" "32" - "difficulty" "3" - "loc_name" "Op_bloodhound_523" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_art_4" + "item_name" "#StickerKit_rio2022_signature_art" + "description_string" "#StickerKit_desc_rio2022_signature_art" + "sticker_material" "rio2022/sig_art" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "524" + "6463" { - "name" "Competitive Cache 32 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_cache" - "expression" " %act_win_round% " - "points" "32" - "operational_points" "2" - "difficulty" "3" - "loc_name" "Op_bloodhound_524" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_art_4_glitter" + "item_name" "#StickerKit_rio2022_signature_art_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_art_glitter" + "sticker_material" "rio2022/sig_art_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "525" + "6464" { - "name" "VIP - mg_op_op06" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "map" "cs_agency" - "expression" " ( %act_kill_target% ) && ( %cond_victim_team_terrorist% ) && ( %cond_team_ct% )" - "points" "1" - "target_team" "2" - "difficulty" "2" - "operational_points" "3" - "loc_name" "Op_bloodhound_525" - "loc_description" "#Quest_Assassination_desc" - "quest_icon" "assassin" - "string_tokens" - { - "target" "#quest_target_turner" - "victim team" "#CSGOEcon_SelectTerrorist" - } + "name" "rio2022_signature_art_4_holo" + "item_name" "#StickerKit_rio2022_signature_art_holo" + "description_string" "#StickerKit_desc_rio2022_signature_art_holo" + "sticker_material" "rio2022/sig_art_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "526" + "6465" { - "name" "Guardian: Kills with an m4 (easy)" - "gamemode" "cooperative" - "mapgroup" "mg_de_dust" - "map" "de_dust" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 4 ) " - "points" "1" - "xp_reward" "300" - "xp_bonus_percent" "20" - "difficulty" "2" - "loc_name" "Op_bloodhound_526" - "loc_description" "#Quest_Guardian_Bomb_desc" - "loc_bonus" "#quest_bonus_totalrounds_4" - "string_tokens" - { - "map" "#SFUI_Map_de_dust" - "kills" "quest_guardian_kills_15" - "weapon" "#SFUI_WPNHUD_M4A1" - "team" "#quest_team_ct" - "extradetails" "#quest_guardian_empty" - } + "name" "rio2022_signature_art_4_gold" + "item_name" "#StickerKit_rio2022_signature_art_gold" + "description_string" "#StickerKit_desc_rio2022_signature_art_gold" + "sticker_material" "rio2022/sig_art_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "85" + "tournament_player_id" "83503844" } - "527" + "6466" { - "name" "Guardian: Kills on Dust2" - "gamemode" "cooperative" - "mapgroup" "mg_de_dust2" - "map" "de_dust2" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 3 ) " - "points" "1" - "xp_reward" "400" - "xp_bonus_percent" "50" - "difficulty" "3" - "loc_name" "Op_bloodhound_527" - "loc_description" "#Quest_Guardian_Bomb_desc" - "loc_bonus" "#quest_bonus_totalrounds_3" - "string_tokens" - { - "map" "#SFUI_Map_de_dust2" - "kills" "quest_guardian_kills_25" - "weapon" "#SFUI_WPNHUD_AK47" - "team" "#quest_team_ct" - "extradetails" "#quest_guardian_empty" - } + "name" "rio2022_signature_acor_4" + "item_name" "#StickerKit_rio2022_signature_acor" + "description_string" "#StickerKit_desc_rio2022_signature_acor" + "sticker_material" "rio2022/sig_acor" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "42677035" } - "528" + "6467" { - "name" "Guardian: Kills on Dust Holdout" - "gamemode" "cooperative" - "mapgroup" "mg_gd_crashsite" - "map" "gd_crashsite" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 3 ) " - "points" "1" - "xp_reward" "500" - "xp_bonus_percent" "50" - "difficulty" "3" - "loc_name" "Op_bloodhound_528" - "loc_description" "#Quest_Guardian_Bomb_desc" - "loc_bonus" "#quest_bonus_totalrounds_3" - "string_tokens" - { - "map" "#SFUI_Map_gd_crashsite" - "kills" "quest_guardian_kills_50" - "weapon" "#quest_weapon_any_weapon" - "team" "#quest_team_ct" - "extradetails" "#quest_guardian_cantbuy" - } + "name" "rio2022_signature_acor_4_glitter" + "item_name" "#StickerKit_rio2022_signature_acor_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_acor_glitter" + "sticker_material" "rio2022/sig_acor_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "42677035" } - "529" + "6468" { - "name" "Casual Op6 income 1,000,000" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "expression" " ( %act_income% && %cond_team_ct% ) ? %act_income% : 0 " - "points" "1000000" - "xp_reward" "600" - "difficulty" "3" - "loc_name" "Op_bloodhound_529" - "loc_description" "#Quest_Income_Mapgroup_Team_desc" - "quest_icon" "income" + "name" "rio2022_signature_acor_4_holo" + "item_name" "#StickerKit_rio2022_signature_acor_holo" + "description_string" "#StickerKit_desc_rio2022_signature_acor_holo" + "sticker_material" "rio2022/sig_acor_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "42677035" } - "530" + "6469" { - "name" "Deathmatch Op6 Chicken Kills" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op06" - "expression" " %act_kill_chicken% && %cond_team_ct% " - "expr_bonus" " %act_kill_chicken% && %cond_team_ct% && ( %cond_chicken_killstreak% >= 2 ) " - "points" "300" - "xp_reward" "600" - "xp_bonus_percent" "50" - "difficulty" "3" - "loc_name" "Op_bloodhound_530" - "loc_description" "#Quest_Kills_Mapgroup_Team_desc" - "loc_bonus" "#quest_bonus_chickenstreak_2" - "quest_icon" "chicken" - "string_tokens" - { - "optional_target" "#quest_target_chicken" - } + "name" "rio2022_signature_acor_4_gold" + "item_name" "#StickerKit_rio2022_signature_acor_gold" + "description_string" "#StickerKit_desc_rio2022_signature_acor_gold" + "sticker_material" "rio2022/sig_acor_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "42677035" } - "531" + "6470" { - "name" "Unique Weapons" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "expression" " %act_kill_human% && %cond_unique_weapon% && %cond_team_ct%" - "expr_bonus" " %act_kill_human% && %cond_unique_weapon% && %cond_team_ct% && %cond_borrowed_gun% " - "points" "100" - "xp_reward" "600" - "xp_bonus_percent" "100" - "difficulty" "3" - "loc_name" "Op_bloodhound_531" - "loc_description" "#Quest_Unique_Weapon_Mapgroup_Team_desc" - "loc_bonus" "#Quest_bonus_borrowed_gun" - "quest_icon" "mission-ct" + "name" "rio2022_signature_im_4" + "item_name" "#StickerKit_rio2022_signature_im" + "description_string" "#StickerKit_desc_rio2022_signature_im" + "sticker_material" "rio2022/sig_im" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "89984505" } - "601" + "6471" { - "name" "Deathmatch Bonus Points kills" - "gamemode" "deathmatch" - "mapgroup" "mg_op_op06" - "expression" " %act_dm_bonus_points% " - "expr_bonus" " %act_dm_bonus_points% && ( %cond_killstreak% >= 2 ) " - "points" "200" - "xp_bonus_percent" "200" - "difficulty" "2" - "loc_name" "Op_bloodhound_Valeria_Two_Sides" - "loc_description" "#Quest_DMBonusPoints_Mapgroup_desc" - "loc_bonus" "#quest_bonus_killstreak_2" + "name" "rio2022_signature_im_4_glitter" + "item_name" "#StickerKit_rio2022_signature_im_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_im_glitter" + "sticker_material" "rio2022/sig_im_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "89984505" } - "602" + "6472" { - "name" "Casual Plant Bombs" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %act_plant_bomb% " - "points" "3" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_spark" - "loc_description" "#Quest_PlantBomb_Mapgroup_desc" - "quest_icon" "bomb" + "name" "rio2022_signature_im_4_holo" + "item_name" "#StickerKit_rio2022_signature_im_holo" + "description_string" "#StickerKit_desc_rio2022_signature_im_holo" + "sticker_material" "rio2022/sig_im_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "89984505" } - "603" + "6473" { - "name" "Casual Burn Damage Active Duty" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %cond_burn% ? %act_damage% : 0 " - "expr_bonus" " ( %map_de_train% && %cond_burn% ) ? %act_damage% : 0 " - "points" "200" - "xp_bonus_percent" "50" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_Flames" - "loc_description" "#Quest_Burn_Mapgroup_desc" - "loc_bonus" "#quest_bonus_de_train" - "quest_icon" "molotov" + "name" "rio2022_signature_im_4_gold" + "item_name" "#StickerKit_rio2022_signature_im_gold" + "description_string" "#StickerKit_desc_rio2022_signature_im_gold" + "sticker_material" "rio2022/sig_im_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "89984505" } - "604" + "6474" { - "name" "DM Rails Sawed Off kills" - "points" "10" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "map" "de_rails" - "expression" " %weapon_sawedoff% && %act_kill_human% " - "expr_bonus" " %weapon_sawedoff% && %act_kill_human% && ( %cond_killstreak% >= 2 ) " - "xp_bonus_percent" "100" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_tyrants" - "loc_description" "#Quest_Weapon_Map_desc" - "loc_bonus" "#quest_bonus_killstreak_2" + "name" "rio2022_signature_siuhy_4" + "item_name" "#StickerKit_rio2022_signature_siuhy" + "description_string" "#StickerKit_desc_rio2022_signature_siuhy" + "sticker_material" "rio2022/sig_siuhy" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "190407632" } - "605" + "6475" { - "name" "Op6 Casual pistol kills" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "expression" " %act_kill_human% && %weapon_secondary%" - "expr_bonus" " %act_kill_human% && %weapon_secondary% && %set_weapons_iii% " - "points" "20" - "operational_points" "1" - "xp_bonus_percent" "100" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_booth" - "loc_description" "#Quest_Weapon_Mode_desc" - "loc_bonus" "#quest_bonus_set_weapons_iii" + "name" "rio2022_signature_siuhy_4_glitter" + "item_name" "#StickerKit_rio2022_signature_siuhy_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_siuhy_glitter" + "sticker_material" "rio2022/sig_siuhy_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "190407632" } - "606" + "6476" { - "name" "Casual Active SMG kills 30" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %act_kill_human% && %weapon_smg% && %cond_team_terrorist% " - "expr_bonus" " %act_kill_human% && %weapon_smg% && %cond_team_terrorist% && %cond_bomb_planted% " - "points" "25" - "xp_bonus_percent" "200" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_smg" - "loc_description" "#Quest_Weapon_Mapgroup_Team_desc" - "loc_bonus" "#quest_bonus_bomb_planted" - "quest_icon" "mission-t" + "name" "rio2022_signature_siuhy_4_holo" + "item_name" "#StickerKit_rio2022_signature_siuhy_holo" + "description_string" "#StickerKit_desc_rio2022_signature_siuhy_holo" + "sticker_material" "rio2022/sig_siuhy_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "190407632" } - "607" + "6477" { - "name" "Arms Race Knife Kills" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "expression" " %weapon_melee% && %act_kill_human% " - "expr_bonus" " %weapon_melee% && %act_kill_human% && %map_de_lake% " - "points" "15" - "xp_reward" "405" - "xp_bonus_percent" "100" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_knife" - "loc_description" "#Quest_Weapon_Mode_desc" - "loc_bonus" "#quest_bonus_de_lake" + "name" "rio2022_signature_siuhy_4_gold" + "item_name" "#StickerKit_rio2022_signature_siuhy_gold" + "description_string" "#StickerKit_desc_rio2022_signature_siuhy_gold" + "sticker_material" "rio2022/sig_siuhy_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "190407632" } - "608" + "6478" { - "name" "Arms Race Monastery Kills, optional arms deal 1 weapon" - "gamemode" "gungameprogressive" - "mapgroup" "mg_armsrace" - "map" "ar_monastery" - "expression" " %act_kill_human% " - "expr_bonus" " %act_kill_human% && %set_weapons_i% " - "points" "60" - "xp_bonus_percent" "150" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_open_house" - "loc_description" "#Quest_Kills_Map_desc" - "loc_bonus" "#quest_bonus_set_weapons_i" + "name" "rio2022_signature_keoz_4" + "item_name" "#StickerKit_rio2022_signature_keoz" + "description_string" "#StickerKit_desc_rio2022_signature_keoz" + "sticker_material" "rio2022/sig_keoz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "138078516" } - "609" + "6479" { - "name" "Enemy Weapon" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "expression" " %act_kill_human% && %cond_borrowed_gun_enemy% " - "expr_bonus" " %act_kill_human% && %cond_borrowed_gun_enemy% && %cond_borrowed_gun_own% " - "points" "20" - "operational_points" "2" - "xp_bonus_percent" "200" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_rebirth" - "loc_description" "Quest_Kills_Mapgroup_cond_desc" - "loc_bonus" "#quest_bonus_borrowed_gun_own" - "string_tokens" - { - "condition" "#quest_bonus_borrowed_gun_enemy" - } + "name" "rio2022_signature_keoz_4_glitter" + "item_name" "#StickerKit_rio2022_signature_keoz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_keoz_glitter" + "sticker_material" "rio2022/sig_keoz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "138078516" } - "610" + "6480" { - "name" "Kill a CT in Hostage" - "gamemode" "casual" - "mapgroup" "mg_reserves" - "expression" " %act_kill_human% && %cond_victim_team_ct% && %cond_team_terrorist% " - "expr_bonus" " %act_kill_human% && %cond_victim_team_ct% && %cond_team_terrorist% && %cond_victim_rescuing% " - "points" "40" - "xp_bonus_percent" "100" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_meet_mentor" - "loc_description" "#Quest_Kills_Mapgroup_Victim_Team_desc" - "loc_bonus" "#quest_bonus_victim_rescuing" - "quest_icon" "hostage" + "name" "rio2022_signature_keoz_4_holo" + "item_name" "#StickerKit_rio2022_signature_keoz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_keoz_holo" + "sticker_material" "rio2022/sig_keoz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "138078516" } - "611" + "6481" { - "name" "VIP - mg_op_op06" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "map" "de_log" - "expression" " %act_kill_target% && %cond_victim_team_ct% && %cond_team_terrorist% " - "expr_bonus" " %act_kill_target% && %cond_victim_team_ct% && %weapon_taser%" - "points" "1" - "target_team" "3" - "difficulty" "2" - "xp_bonus_percent" "100" - "loc_name" "Op_bloodhound_Valeria_dead_turner" - "loc_description" "#Quest_Assassination_desc" - "quest_icon" "assassin" - "loc_bonus" "#quest_bonus_taser" - "string_tokens" - { - "target" "#quest_target_jackson" - } + "name" "rio2022_signature_keoz_4_gold" + "item_name" "#StickerKit_rio2022_signature_keoz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_keoz_gold" + "sticker_material" "rio2022/sig_keoz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "138078516" } - "612" + "6482" { - "name" "Guardian: Office Kills (easy)" - "gamemode" "cooperative" - "mapgroup" "mg_cs_office" - "map" "cs_office" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 3 ) " - "points" "1" - "xp_reward" "300" - "xp_bonus_percent" "30" - "difficulty" "2" - "loc_name" "Op_bloodhound_Valeria_loyalty" - "loc_description" "#Quest_Guardian_Hostage_desc" - "loc_bonus" "#quest_bonus_totalrounds_3" - "string_tokens" - { - "map" "#SFUI_Map_cs_office" - "kills" "quest_guardian_kills_30" - "weapon" "#quest_weapon_any_weapon" - "team" "#quest_team_terrorist" - "extradetails" "#quest_guardian_empty" - } + "name" "rio2022_signature_isak_4" + "item_name" "#StickerKit_rio2022_signature_isak" + "description_string" "#StickerKit_desc_rio2022_signature_isak" + "sticker_material" "rio2022/sig_isak" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "111644637" } - "613" + "6483" { - "name" "Demolition Bomb Plants" - "gamemode" "gungametrbomb" - "mapgroup" "mg_demolition" - "expression" " %act_plant_bomb% " - "points" "5" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_resources" - "loc_description" "#Quest_PlantBomb_Mapgroup_Desc" + "name" "rio2022_signature_isak_4_glitter" + "item_name" "#StickerKit_rio2022_signature_isak_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_isak_glitter" + "sticker_material" "rio2022/sig_isak_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "111644637" } - "614" + "6484" { - "name" "Competitive Resort win 8 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_log" - "expression" " %act_win_round% " - "points" "8" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_conflict" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_isak_4_holo" + "item_name" "#StickerKit_rio2022_signature_isak_holo" + "description_string" "#StickerKit_desc_rio2022_signature_isak_holo" + "sticker_material" "rio2022/sig_isak_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "111644637" } - "615" + "6485" { - "name" "Casual reserves AWP Kills 10" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "map" "de_season" - "expression" " %act_kill_human% && %weapon_awp% " - "expr_bonus" " %act_kill_human% && %weapon_awp% && %cond_headshot% " - "points" "10" - "xp_bonus_percent" "200" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_role_turner" - "loc_description" "#Quest_Weapon_Map_desc" - "loc_bonus" "#quest_bonus_headshot" + "name" "rio2022_signature_isak_4_gold" + "item_name" "#StickerKit_rio2022_signature_isak_gold" + "description_string" "#StickerKit_desc_rio2022_signature_isak_gold" + "sticker_material" "rio2022/sig_isak_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "115" + "tournament_player_id" "111644637" } - "616" + "6486" { - "name" "Competitive train win 6 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_train" - "expression" " %act_win_round% " - "points" "8" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_message" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_ins_4" + "item_name" "#StickerKit_rio2022_signature_ins" + "description_string" "#StickerKit_desc_rio2022_signature_ins" + "sticker_material" "rio2022/sig_ins" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "26946895" } - "617" + "6487" { - "name" "Headshots" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "expression" " %act_kill_human% && %cond_headshot% " - "expr_bonus" " %act_kill_human% && %cond_headshot% && %set_community_2 " - "points" "10" - "xp_bonus_percent" "200" - "operational_points" "1" - "difficulty" "1" - "loc_name" "Op_bloodhound_Valeria_pollock_turner" - "loc_description" "#Quest_Headshots_Mapgroup_desc" - "loc_bonus" "#quest_bonus_set_community_2" + "name" "rio2022_signature_ins_4_glitter" + "item_name" "#StickerKit_rio2022_signature_ins_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_ins_glitter" + "sticker_material" "rio2022/sig_ins_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "26946895" } - "618" + "6488" { - "name" "Competitive Agency win 16 rounds" - "gamemode" "competitive" - "mapgroup" "mg_cs_agency" - "expression" " %act_win_round% " - "points" "16" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_underhill_turner" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_ins_4_holo" + "item_name" "#StickerKit_rio2022_signature_ins_holo" + "description_string" "#StickerKit_desc_rio2022_signature_ins_holo" + "sticker_material" "rio2022/sig_ins_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "26946895" + } + "6489" + { + "name" "rio2022_signature_ins_4_gold" + "item_name" "#StickerKit_rio2022_signature_ins_gold" + "description_string" "#StickerKit_desc_rio2022_signature_ins_gold" + "sticker_material" "rio2022/sig_ins_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "26946895" + } + "6490" + { + "name" "rio2022_signature_vexite_4" + "item_name" "#StickerKit_rio2022_signature_vexite" + "description_string" "#StickerKit_desc_rio2022_signature_vexite" + "sticker_material" "rio2022/sig_vexite" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "92622415" + } + "6491" + { + "name" "rio2022_signature_vexite_4_glitter" + "item_name" "#StickerKit_rio2022_signature_vexite_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_vexite_glitter" + "sticker_material" "rio2022/sig_vexite_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "92622415" + } + "6492" + { + "name" "rio2022_signature_vexite_4_holo" + "item_name" "#StickerKit_rio2022_signature_vexite_holo" + "description_string" "#StickerKit_desc_rio2022_signature_vexite_holo" + "sticker_material" "rio2022/sig_vexite_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "92622415" } - "619" + "6493" { - "name" "Competitive Dust2 win 16 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_dust2" - "expression" " %act_win_round% " - "points" "16" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_maghreb_turner" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_vexite_4_gold" + "item_name" "#StickerKit_rio2022_signature_vexite_gold" + "description_string" "#StickerKit_desc_rio2022_signature_vexite_gold" + "sticker_material" "rio2022/sig_vexite_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "92622415" } - "620" + "6494" { - "name" "Guardian: Kills on Bank" - "gamemode" "cooperative" - "mapgroup" "mg_gd_bank" - "map" "gd_bank" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 3 ) " - "points" "1" - "xp_reward" "500" - "xp_bonus_percent" "30" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_bank_turner" - "loc_description" "#Quest_Guardian_Hostage_desc" - "loc_bonus" "#quest_bonus_totalrounds_3" - "string_tokens" - { - "map" "#SFUI_Map_gd_bank" - "kills" "quest_guardian_kills_40" - "weapon" "#quest_weapon_any_weapon" - "team" "#quest_team_terrorist" - "extradetails" "#quest_guardian_maxmoneylimit" - } + "name" "rio2022_signature_sico_4" + "item_name" "#StickerKit_rio2022_signature_sico" + "description_string" "#StickerKit_desc_rio2022_signature_sico" + "sticker_material" "rio2022/sig_sico" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "39266546" } - "621" + "6495" { - "name" "Competitive Overpass win 16 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_overpass" - "expression" " %act_win_round% " - "points" "16" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_fruitless_turner" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_sico_4_glitter" + "item_name" "#StickerKit_rio2022_signature_sico_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sico_glitter" + "sticker_material" "rio2022/sig_sico_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "39266546" } - "622" + "6496" { - "name" "Competitive Train win 16 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_train" - "expression" " %act_win_round% " - "points" "16" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_fear_turner" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_sico_4_holo" + "item_name" "#StickerKit_rio2022_signature_sico_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sico_holo" + "sticker_material" "rio2022/sig_sico_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "39266546" } - "623" + "6497" { - "name" "Competitive Resort win 32 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_resort" - "expression" " %act_win_round% " - "points" "32" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_elysee_turner" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_sico_4_gold" + "item_name" "#StickerKit_rio2022_signature_sico_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sico_gold" + "sticker_material" "rio2022/sig_sico_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "39266546" } - "624" + "6498" { - "name" "Competitive Mirage 32 rounds" - "gamemode" "competitive" - "mapgroup" "mg_de_mirage" - "expression" " %act_win_round% " - "points" "32" - "operational_points" "2" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_history_turner" - "loc_description" "#Quest_Win_Rounds_Map_desc" + "name" "rio2022_signature_liazz_4" + "item_name" "#StickerKit_rio2022_signature_liazz" + "description_string" "#StickerKit_desc_rio2022_signature_liazz" + "sticker_material" "rio2022/sig_liazz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "112055988" } - "625" + "6499" { - "name" "VIP - mg_op_op06" - "gamemode" "casual" - "mapgroup" "mg_op_op06" - "map" "de_season" - "expression" " ( %act_kill_target% ) && ( %cond_victim_team_ct% ) && ( %cond_team_terrorist% ) " - "points" "1" - "target_team" "3" - "difficulty" "2" - "operational_points" "3" - "loc_name" "Op_bloodhound_Valeria_blunt_turner" - "loc_description" "#Quest_Assassination_desc" - "quest_icon" "assassin" - "string_tokens" - { - "target" "#quest_target_chapel" - } + "name" "rio2022_signature_liazz_4_glitter" + "item_name" "#StickerKit_rio2022_signature_liazz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_liazz_glitter" + "sticker_material" "rio2022/sig_liazz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "112055988" } - "626" + "6500" { - "name" "Guardian: Cobblestone" - "gamemode" "cooperative" - "mapgroup" "mg_gd_cbble" - "map" "gd_cbble" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 3 ) " - "points" "1" - "xp_reward" "400" - "xp_bonus_percent" "50" - "difficulty" "3" - "loc_name" "Op_bloodhound_Valeria_cobble_turner" - "loc_description" "#Quest_Guardian_Hostage_desc" - "loc_bonus" "#quest_bonus_totalrounds_3" - "string_tokens" - { - "map" "#SFUI_Map_gd_cbble" - "kills" "quest_guardian_kills_15" - "weapon" "#SFUI_WPNHUD_SSG08" - "team" "#quest_team_terrorist" - "extradetails" "#quest_guardian_empty" - } + "name" "rio2022_signature_liazz_4_holo" + "item_name" "#StickerKit_rio2022_signature_liazz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_liazz_holo" + "sticker_material" "rio2022/sig_liazz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "112055988" } - "627" + "6501" { - "name" "Guardian: Kills on Lake" - "gamemode" "cooperative" - "mapgroup" "mg_gd_lake" - "map" "gd_lake" - "expression" " %act_win_match% " - "expr_bonus" " %act_win_match% && ( %cond_total_rounds_played% <= 3 ) " - "points" "1" - "xp_reward" "300" - "xp_bonus_percent" "50" - "difficulty" "2" - "loc_name" "Op_bloodhound_Valeria_journalist_turner" - "loc_description" "#Quest_Guardian_Hostage_desc" - "loc_bonus" "#quest_bonus_totalrounds_3" - "string_tokens" - { - "map" "#SFUI_Map_gd_lake" - "kills" "quest_guardian_kills_15" - "weapon" "#SFUI_WPNHUD_xm1014" - "team" "#quest_team_terrorist" - "extradetails" "#quest_guardian_maxmoneylimit" - } + "name" "rio2022_signature_liazz_4_gold" + "item_name" "#StickerKit_rio2022_signature_liazz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_liazz_gold" + "sticker_material" "rio2022/sig_liazz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "112055988" } - "629" + "6502" { - "name" "Casual Active Duty Spend 1,000,000" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " ( %act_spend% && %cond_team_terrorist% ) ? %act_spend% : 0 " - "points" "1000000" - "xp_reward" "600" - "difficulty" "3" - "loc_name" "Op_bloodhound_529" - "loc_description" "#Quest_Spend_Mapgroup_Team_desc" - "quest_icon" "income" + "name" "rio2022_signature_alistair_4" + "item_name" "#StickerKit_rio2022_signature_alistair" + "description_string" "#StickerKit_desc_rio2022_signature_alistair" + "sticker_material" "rio2022/sig_alistair" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "138080982" } - "630" + "6503" { - "name" "Casual blind players" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %act_flashbang_enemy% && %cond_team_terrorist%" - "points" "50" - "xp_reward" "600" - "difficulty" "3" - "loc_name" "Op_bloodhound_530" - "loc_description" "#Quest_Flashbang_Mapgroup_Team_desc" - "quest_icon" "flashbang" + "name" "rio2022_signature_alistair_4_glitter" + "item_name" "#StickerKit_rio2022_signature_alistair_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_alistair_glitter" + "sticker_material" "rio2022/sig_alistair_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "138080982" } - "631" + "6504" { - "name" "Defend the Bomb" - "gamemode" "casual" - "mapgroup" "mg_active" - "expression" " %act_kill_human% && %cond_team_terrorist% && %cond_bomb_planted% " - "expr_bonus" " %act_kill_human% && %cond_team_terrorist% && %cond_bomb_planted% && %set_bravo_ii% " - "points" "25" - "xp_reward" "600" - "xp_bonus_percent" "50" - "difficulty" "3" - "loc_name" "Op_bloodhound_531" - "loc_description" "#Quest_Defend_Bomb_Mapgroup_desc" - "loc_bonus" "#quest_bonus_set_bravo_ii" - "quest_icon" "bomb" + "name" "rio2022_signature_alistair_4_holo" + "item_name" "#StickerKit_rio2022_signature_alistair_holo" + "description_string" "#StickerKit_desc_rio2022_signature_alistair_holo" + "sticker_material" "rio2022/sig_alistair_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "138080982" } - } - "campaign_definitions" - { - "1" + "6505" { - "loc_name" "#csgo_campaign_eurasia" - "loc_description" "#csgo_campaign_eurasia_desc" - "season_number" "4" - "2" - { - "quest_index" "102" - "->" "4" - "->" "10" - } - "4" - { - "quest_index" "104" - "->" "5" - } - "5" - { - "quest_index" "105" - "->" "6" - } - "6" - { - "quest_index" "106" - "->" "7" - } - "7" - { - "quest_index" "107" - "->" "21" - } - "8" - { - "quest_index" "108" - "->" "9" - } - "9" - { - "quest_index" "109" - } - "10" - { - "quest_index" "110" - "->" "11" - "->" "16" - } - "11" - { - "quest_index" "111" - "->" "12" - } - "12" - { - "quest_index" "112" - "->" "13" - } - "13" - { - "quest_index" "113" - "->" "22" - } - "14" - { - "quest_index" "114" - "->" "15" - } - "15" - { - "quest_index" "115" - } - "16" - { - "quest_index" "116" - "->" "17" - } - "17" - { - "quest_index" "117" - "->" "18" - } - "18" - { - "quest_index" "118" - "->" "23" - } - "19" - { - "quest_index" "119" - "->" "20" - } - "20" - { - "quest_index" "120" - } - "21" - { - "quest_index" "121" - "->" "8" - } - "22" - { - "quest_index" "122" - "->" "21" - "->" "14" - } - "23" - { - "quest_index" "123" - "->" "22" - "->" "19" - } + "name" "rio2022_signature_alistair_4_gold" + "item_name" "#StickerKit_rio2022_signature_alistair_gold" + "description_string" "#StickerKit_desc_rio2022_signature_alistair_gold" + "sticker_material" "rio2022/sig_alistair_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "86" + "tournament_player_id" "138080982" } - "2" + "6506" { - "loc_name" "#csgo_campaign_vanguard" - "loc_description" "#csgo_campaign_vanguard_desc" - "season_number" "4" - "1" - { - "quest_index" "201" - "->" "3" - "->" "9" - } - "3" - { - "quest_index" "203" - "->" "4" - } - "4" - { - "quest_index" "204" - "->" "5" - } - "5" - { - "quest_index" "205" - "->" "6" - } - "6" - { - "quest_index" "206" - "->" "20" - } - "7" - { - "quest_index" "207" - "->" "8" - } - "8" - { - "quest_index" "208" - } - "9" - { - "quest_index" "209" - "->" "10" - "->" "15" - } - "10" - { - "quest_index" "210" - "->" "11" - } - "11" - { - "quest_index" "211" - "->" "12" - } - "12" - { - "quest_index" "212" - "->" "21" - } - "13" - { - "quest_index" "213" - "->" "14" - } - "14" - { - "quest_index" "214" - } - "15" - { - "quest_index" "215" - "->" "16" - } - "16" - { - "quest_index" "216" - "->" "17" - } - "17" - { - "quest_index" "217" - "->" "22" - "->" "12" - } - "18" - { - "quest_index" "218" - "->" "19" - } - "19" - { - "quest_index" "219" - } - "20" - { - "quest_index" "220" - "->" "7" - } - "21" - { - "quest_index" "221" - "->" "7" - "->" "13" - } - "22" - { - "quest_index" "222" - "->" "18" - } + "name" "rio2022_signature_sk0r_4" + "item_name" "#StickerKit_rio2022_signature_sk0r" + "description_string" "#StickerKit_desc_rio2022_signature_sk0r" + "sticker_material" "rio2022/sig_sk0r" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "863160115" } - "3" + "6507" { - "loc_name" "#csgo_campaign_maghreb" - "loc_description" "#csgo_campaign_maghreb_desc" - "season_number" "4" - "1" - { - "quest_index" "301" - "->" "2" - } - "2" - { - "quest_index" "302" - "->" "3" - "->" "9" - } - "3" - { - "quest_index" "303" - "->" "4" - } - "4" - { - "quest_index" "304" - "->" "5" - } - "5" - { - "quest_index" "305" - "->" "6" - } - "6" - { - "quest_index" "306" - "->" "7" - } - "7" - { - "quest_index" "307" - "->" "8" - } - "8" - { - "quest_index" "308" - } - "9" - { - "quest_index" "309" - "->" "10" - "->" "15" - "->" "16" - } - "10" - { - "quest_index" "310" - "->" "11" - } - "11" - { - "quest_index" "311" - "->" "12" - } - "12" - { - "quest_index" "312" - "->" "13" - "->" "6" - } - "13" - { - "quest_index" "313" - "->" "14" - } - "14" - { - "quest_index" "314" - } - "15" - { - "quest_index" "315" - "->" "17" - } - "16" - { - "quest_index" "316" - "->" "17" - } - "17" - { - "quest_index" "317" - "->" "18" - "->" "19" - "->" "12" - } - "18" - { - "quest_index" "318" - "->" "20" - } - "19" - { - "quest_index" "319" - "->" "20" - } - "20" - { - "quest_index" "320" - "->" "21" - } - "21" - { - "quest_index" "321" - } + "name" "rio2022_signature_sk0r_4_glitter" + "item_name" "#StickerKit_rio2022_signature_sk0r_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_sk0r_glitter" + "sticker_material" "rio2022/sig_sk0r_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "863160115" + } + "6508" + { + "name" "rio2022_signature_sk0r_4_holo" + "item_name" "#StickerKit_rio2022_signature_sk0r_holo" + "description_string" "#StickerKit_desc_rio2022_signature_sk0r_holo" + "sticker_material" "rio2022/sig_sk0r_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "863160115" } - "4" + "6509" { - "loc_name" "#csgo_campaign_weapons" - "loc_description" "#csgo_campaign_weapons_desc" - "season_number" "4" - "1" - { - "quest_index" "401" - "->" "2" - "->" "9" - } - "2" - { - "quest_index" "402" - "->" "3" - } - "3" - { - "quest_index" "403" - "->" "4" - } - "4" - { - "quest_index" "404" - "->" "5" - } - "5" - { - "quest_index" "405" - "->" "6" - } - "6" - { - "quest_index" "406" - "->" "7" - } - "7" - { - "quest_index" "407" - "->" "8" - } - "8" - { - "quest_index" "408" - } - "9" - { - "quest_index" "409" - "->" "10" - "->" "16" - } - "10" - { - "quest_index" "410" - "->" "4" - "->" "11" - } - "11" - { - "quest_index" "411" - "->" "12" - } - "12" - { - "quest_index" "412" - "->" "13" - "->" "6" - } - "13" - { - "quest_index" "413" - "->" "14" - } - "14" - { - "quest_index" "414" - "->" "15" - } - "15" - { - "quest_index" "415" - } - "16" - { - "quest_index" "416" - "->" "17" - } - "17" - { - "quest_index" "417" - "->" "18" - } - "18" - { - "quest_index" "418" - "->" "19" - } - "19" - { - "quest_index" "419" - "->" "20" - "->" "14" - } - "20" - { - "quest_index" "420" - "->" "21" - } - "21" - { - "quest_index" "421" - } + "name" "rio2022_signature_sk0r_4_gold" + "item_name" "#StickerKit_rio2022_signature_sk0r_gold" + "description_string" "#StickerKit_desc_rio2022_signature_sk0r_gold" + "sticker_material" "rio2022/sig_sk0r_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "863160115" } - "5" + "6510" { - "loc_name" "#csgo_campaign_marksman" - "loc_description" "#csgo_campaign_marksman_desc" - "season_number" "5" - "1" - { - "quest_index" "501" - "->" "2" - "->" "6" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_501" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_501_radio.mp3" - } - } - "2" - { - "quest_index" "502" - "->" "3" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_502_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_502_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_502" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_502_radio.mp3" - } - } - "3" - { - "quest_index" "503" - "->" "4" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_503" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_503_radio.mp3" - } - } - "4" - { - "quest_index" "504" - "->" "5" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_504_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_504_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_504" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_504_radio.mp3" - } - } - "5" - { - "quest_index" "505" - "->" "10" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_505_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_505_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_505" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_505_radio.mp3" - } - } - "6" - { - "quest_index" "506" - "->" "7" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_506_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_506_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_506" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_506_radio.mp3" - } - } - "7" - { - "quest_index" "507" - "->" "8" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_507" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_507_radio.mp3" - } - } - "8" - { - "quest_index" "508" - "->" "9" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_508" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_508_radio.mp3" - } - } - "9" - { - "quest_index" "509" - "->" "10" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_509_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_509_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_509" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_509_radio.mp3" - } - } - "10" - { - "quest_index" "510" - "->" "11" - "->" "29" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_510" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_510_radio.mp3" - } - } - "11" - { - "quest_index" "511" - "->" "12" - "->" "18" - "->" "26" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_511" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_511_radio.mp3" - } - } - "12" - { - "quest_index" "512" - "->" "13" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_512_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_512_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_512" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_512_radio.mp3" - } - } - "13" - { - "quest_index" "513" - "->" "14" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_513_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_513_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_513" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_513_radio.mp3" - } - } - "14" - { - "quest_index" "514" - "->" "15" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_514" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_514_radio.mp3" - } - } - "15" - { - "quest_index" "515" - "->" "16" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_515" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_515_radio.mp3" - } - } - "16" - { - "quest_index" "516" - "->" "17" - "->" "21" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_516_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_516_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_516" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_516_radio.mp3" - } - } - "17" - { - "quest_index" "517" - "->" "25" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_517_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_517_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_517" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_517_radio.mp3" - } - } - "18" - { - "quest_index" "518" - "->" "19" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_518" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_518_radio.mp3" - } - } - "19" - { - "quest_index" "519" - "->" "20" - "->" "14" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_519" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_519_radio.mp3" - } - } - "20" - { - "quest_index" "520" - "->" "21" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_520_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_520_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_520" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_520_radio.mp3" - } - } - "21" - { - "quest_index" "521" - "->" "22" - "->" "27" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_521_new_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_521_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_521_new" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_521_new_radio.mp3" - } - } - "22" - { - "quest_index" "522" - "->" "23" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_521" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_521_radio.mp3" - } - } - "23" - { - "quest_index" "523" - "->" "24" - "->" "28" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_524" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_524_radio.mp3" - } - } - "24" - { - "quest_index" "524" - "->" "25" - "story_block" - { - "expression" " %525% " - "character_name" "Hennequet" - "description" "Op_Bloodhound_sebastien_525_turner" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_525_turner_radio.mp3" - } - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_525" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_525_radio.mp3" - } - } - "25" - { - "quest_index" "525" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_526" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_526_radio.mp3" - } - } - "26" - { - "quest_index" "526" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_526_new" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_526_new_radio.mp3" - } - } - "27" - { - "quest_index" "527" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_527" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_527_radio.mp3" - } - } - "28" - { - "quest_index" "528" - "story_block" - { - "character_name" "Hennequet" - "description" "Op_bloodhound_Sebastien_528" - "audio_file" "campaign/bloodhound/sebastien/op_bloodhound_sebastien_528_radio.mp3" - } - } - "29" - { - "quest_index" "529" - "->" "30" - "story_block" - { - "character_name" "Booth" - "description" "Op_bloodhound_Booth_529" - "audio_file" "campaign/bloodhound/booth/op_bloodhound_booth_529_radio.mp3" - } - } - "30" - { - "quest_index" "530" - "->" "31" - "story_block" - { - "character_name" "Booth" - "description" "Op_bloodhound_Booth_530" - "audio_file" "campaign/bloodhound/booth/op_bloodhound_booth_530_radio.mp3" - } - } - "31" - { - "quest_index" "531" - "story_block" - { - "expression" " %525% " - "character_name" "Booth" - "description" "Op_Bloodhound_booth_531_turner" - "audio_file" "campaign/bloodhound/booth/op_bloodhound_booth_531_turner_radio.mp3" - } - "story_block" - { - "character_name" "Booth" - "description" "Op_bloodhound_Booth_531" - "audio_file" "campaign/bloodhound/booth/op_bloodhound_booth_531_radio.mp3" - } - } + "name" "rio2022_signature_techno4k_4" + "item_name" "#StickerKit_rio2022_signature_techno4k" + "description_string" "#StickerKit_desc_rio2022_signature_techno4k" + "sticker_material" "rio2022/sig_techno4k" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" + } + "6511" + { + "name" "rio2022_signature_techno4k_4_glitter" + "item_name" "#StickerKit_rio2022_signature_techno4k_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_techno4k_glitter" + "sticker_material" "rio2022/sig_techno4k_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" + } + "6512" + { + "name" "rio2022_signature_techno4k_4_holo" + "item_name" "#StickerKit_rio2022_signature_techno4k_holo" + "description_string" "#StickerKit_desc_rio2022_signature_techno4k_holo" + "sticker_material" "rio2022/sig_techno4k_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" } - "6" + "6513" { - "loc_name" "#csgo_campaign_revolution" - "loc_description" "#csgo_campaign_revolution_desc" - "season_number" "5" - "1" - { - "quest_index" "601" - "->" "2" - "->" "6" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_Two_Sides_sub" - "audio_file" "campaign/bloodhound/valeria/op_bloodhound_Valeria_Two_Sides.mp3" - } - } - "2" - { - "quest_index" "602" - "->" "3" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_spark_sub" - "audio_file" "campaign/bloodhound/valeria/op_bloodhound_Valeria_spark.mp3" - } - } - "3" - { - "quest_index" "603" - "->" "4" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_Flames_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_Flames.mp3" - } - } - "4" - { - "quest_index" "604" - "->" "5" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_tyrants_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_tyrants.mp3" - } - } - "5" - { - "quest_index" "605" - "->" "10" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_booth_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_booth.mp3" - } - } - "6" - { - "quest_index" "606" - "->" "7" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_smg_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_smg.mp3" - } - } - "7" - { - "quest_index" "607" - "->" "8" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_knife_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_knife.mp3" - } - } - "8" - { - "quest_index" "608" - "->" "9" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_open_house_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_open_house.mp3" - } - } - "9" - { - "quest_index" "609" - "->" "10" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_rebirth_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_rebirth.mp3" - } - } - "10" - { - "quest_index" "610" - "->" "11" - "->" "12" - "->" "29" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_labels_turner" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_labels_turner.mp3" - } - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_meet_mentor_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_meet_mentor.mp3" - } - } - "11" - { - "quest_index" "611" - "->" "26" - "->" "18" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_dead_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_dead_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_intro" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_intro.mp3" - } - } - "12" - { - "quest_index" "612" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_loyalty_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_loyalty.mp3" - } - } - "13" - { - "quest_index" "613" - "->" "14" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_resources_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_resources.mp3" - } - } - "14" - { - "quest_index" "614" - "->" "15" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_conflict_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_conflict.mp3" - } - } - "15" - { - "quest_index" "615" - "->" "16" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_role_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_role_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_bloodhound_turner_AWP" - "audio_file" "campaign/bloodhound/turner/op_bloodhound_turner_AWP.mp3" - } - } - "16" - { - "quest_index" "616" - "->" "17" - "->" "27" - "story_block" - { - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_message_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_message.mp3" - } - } - "17" - { - "quest_index" "617" - "->" "25" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_pollock_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_pollock_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_headshot" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_headshot.mp3" - } - } - "18" - { - "quest_index" "618" - "->" "19" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_underhill_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_underhill_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_prodigy" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_prodigy.mp3" - } - } - "19" - { - "quest_index" "619" - "->" "27" - "->" "14" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_maghreb_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_maghreb_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_hero" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_hero.mp3" - } - } - "20" - { - "quest_index" "620" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_bank_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_bank_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_booth" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_booth.mp3" - } - } - "21" - { - "quest_index" "621" - "->" "22" - "->" "20" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_fruitless_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_fruitless_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_chaos" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_chaos.mp3" - } - } - "22" - { - "quest_index" "622" - "->" "23" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_fear_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_fear_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_valeria" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_valeria.mp3" - } - } - "23" - { - "quest_index" "623" - "->" "24" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_elysee_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_elysee_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_underhill" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_underhill.mp3" - } - } - "24" - { - "quest_index" "624" - "->" "25" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_history_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_history_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_shame" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_shame.mp3" - } - } - "25" - { - "quest_index" "625" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_blunt_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_blunt_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_blunt" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_blunt.mp3" - } - } - "26" - { - "quest_index" "627" - "->" "13" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_journalist_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_journalist_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_journalist" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_journalist.mp3" - } - } - "27" - { - "quest_index" "626" - "->" "21" - "story_block" - { - "expression" " %525% " - "character_name" "Valeria" - "description" "Op_bloodhound_Valeria_cobble_turner_sub" - "audio_file" "campaign/bloodhound/valeria/Op_bloodhound_Valeria_cobble_turner.mp3" - } - "story_block" - { - "character_name" "Turner" - "description" "Op_Bloodhound_Turner_cobble" - "audio_file" "campaign/bloodhound/turner/Op_Bloodhound_Turner_cobble.mp3" - } - } - "29" - { - "quest_index" "629" - "->" "30" - "story_block" - { - "character_name" "Booth" - "description" "op_bloodhound_booth_Spend_sub" - "audio_file" "campaign/bloodhound/booth/op_bloodhound_booth_spend.mp3" - } - } - "30" - { - "quest_index" "630" - "->" "31" - "story_block" - { - "character_name" "Booth" - "description" "op_bloodhound_booth_flash_sub" - "audio_file" "campaign/bloodhound/booth/op_bloodhound_booth_flash.mp3" - } - } - "31" - { - "quest_index" "631" - "story_block" - { - "character_name" "Booth" - "description" "op_bloodhound_booth_bomb_sub" - "audio_file" "campaign/bloodhound/booth/op_bloodhound_booth_bomb.mp3" - } - } + "name" "rio2022_signature_techno4k_4_gold" + "item_name" "#StickerKit_rio2022_signature_techno4k_gold" + "description_string" "#StickerKit_desc_rio2022_signature_techno4k_gold" + "sticker_material" "rio2022/sig_techno4k_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "1006074432" + } + "6514" + { + "name" "rio2022_signature_kabal_4" + "item_name" "#StickerKit_rio2022_signature_kabal" + "description_string" "#StickerKit_desc_rio2022_signature_kabal" + "sticker_material" "rio2022/sig_kabal" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "6515" + { + "name" "rio2022_signature_kabal_4_glitter" + "item_name" "#StickerKit_rio2022_signature_kabal_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_kabal_glitter" + "sticker_material" "rio2022/sig_kabal_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "6516" + { + "name" "rio2022_signature_kabal_4_holo" + "item_name" "#StickerKit_rio2022_signature_kabal_holo" + "description_string" "#StickerKit_desc_rio2022_signature_kabal_holo" + "sticker_material" "rio2022/sig_kabal_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "6517" + { + "name" "rio2022_signature_kabal_4_gold" + "item_name" "#StickerKit_rio2022_signature_kabal_gold" + "description_string" "#StickerKit_desc_rio2022_signature_kabal_gold" + "sticker_material" "rio2022/sig_kabal_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "161246388" + } + "6518" + { + "name" "rio2022_signature_blitz_4" + "item_name" "#StickerKit_rio2022_signature_blitz" + "description_string" "#StickerKit_desc_rio2022_signature_blitz" + "sticker_material" "rio2022/sig_blitz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "6519" + { + "name" "rio2022_signature_blitz_4_glitter" + "item_name" "#StickerKit_rio2022_signature_blitz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_blitz_glitter" + "sticker_material" "rio2022/sig_blitz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "6520" + { + "name" "rio2022_signature_blitz_4_holo" + "item_name" "#StickerKit_rio2022_signature_blitz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_blitz_holo" + "sticker_material" "rio2022/sig_blitz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "6521" + { + "name" "rio2022_signature_blitz_4_gold" + "item_name" "#StickerKit_rio2022_signature_blitz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_blitz_gold" + "sticker_material" "rio2022/sig_blitz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "999558360" + } + "6522" + { + "name" "rio2022_signature_annihilation_4" + "item_name" "#StickerKit_rio2022_signature_annihilation" + "description_string" "#StickerKit_desc_rio2022_signature_annihilation" + "sticker_material" "rio2022/sig_annihilation" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "315821474" + } + "6523" + { + "name" "rio2022_signature_annihilation_4_glitter" + "item_name" "#StickerKit_rio2022_signature_annihilation_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_annihilation_glitter" + "sticker_material" "rio2022/sig_annihilation_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "315821474" + } + "6524" + { + "name" "rio2022_signature_annihilation_4_holo" + "item_name" "#StickerKit_rio2022_signature_annihilation_holo" + "description_string" "#StickerKit_desc_rio2022_signature_annihilation_holo" + "sticker_material" "rio2022/sig_annihilation_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "315821474" + } + "6525" + { + "name" "rio2022_signature_annihilation_4_gold" + "item_name" "#StickerKit_rio2022_signature_annihilation_gold" + "description_string" "#StickerKit_desc_rio2022_signature_annihilation_gold" + "sticker_material" "rio2022/sig_annihilation_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "108" + "tournament_player_id" "315821474" + } + "6526" + { + "name" "rio2022_signature_fallen_4" + "item_name" "#StickerKit_rio2022_signature_fallen" + "description_string" "#StickerKit_desc_rio2022_signature_fallen" + "sticker_material" "rio2022/sig_fallen" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "424467" + } + "6527" + { + "name" "rio2022_signature_fallen_4_glitter" + "item_name" "#StickerKit_rio2022_signature_fallen_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_fallen_glitter" + "sticker_material" "rio2022/sig_fallen_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "424467" + } + "6528" + { + "name" "rio2022_signature_fallen_4_holo" + "item_name" "#StickerKit_rio2022_signature_fallen_holo" + "description_string" "#StickerKit_desc_rio2022_signature_fallen_holo" + "sticker_material" "rio2022/sig_fallen_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "424467" + } + "6529" + { + "name" "rio2022_signature_fallen_4_gold" + "item_name" "#StickerKit_rio2022_signature_fallen_gold" + "description_string" "#StickerKit_desc_rio2022_signature_fallen_gold" + "sticker_material" "rio2022/sig_fallen_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "424467" + } + "6530" + { + "name" "rio2022_signature_fer_4" + "item_name" "#StickerKit_rio2022_signature_fer" + "description_string" "#StickerKit_desc_rio2022_signature_fer" + "sticker_material" "rio2022/sig_fer" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "38921219" + } + "6531" + { + "name" "rio2022_signature_fer_4_glitter" + "item_name" "#StickerKit_rio2022_signature_fer_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_fer_glitter" + "sticker_material" "rio2022/sig_fer_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "38921219" + } + "6532" + { + "name" "rio2022_signature_fer_4_holo" + "item_name" "#StickerKit_rio2022_signature_fer_holo" + "description_string" "#StickerKit_desc_rio2022_signature_fer_holo" + "sticker_material" "rio2022/sig_fer_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "38921219" + } + "6533" + { + "name" "rio2022_signature_fer_4_gold" + "item_name" "#StickerKit_rio2022_signature_fer_gold" + "description_string" "#StickerKit_desc_rio2022_signature_fer_gold" + "sticker_material" "rio2022/sig_fer_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "38921219" + } + "6534" + { + "name" "rio2022_signature_boltz_4" + "item_name" "#StickerKit_rio2022_signature_boltz" + "description_string" "#StickerKit_desc_rio2022_signature_boltz" + "sticker_material" "rio2022/sig_boltz" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "58113672" + } + "6535" + { + "name" "rio2022_signature_boltz_4_glitter" + "item_name" "#StickerKit_rio2022_signature_boltz_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_boltz_glitter" + "sticker_material" "rio2022/sig_boltz_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "58113672" + } + "6536" + { + "name" "rio2022_signature_boltz_4_holo" + "item_name" "#StickerKit_rio2022_signature_boltz_holo" + "description_string" "#StickerKit_desc_rio2022_signature_boltz_holo" + "sticker_material" "rio2022/sig_boltz_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "58113672" + } + "6537" + { + "name" "rio2022_signature_boltz_4_gold" + "item_name" "#StickerKit_rio2022_signature_boltz_gold" + "description_string" "#StickerKit_desc_rio2022_signature_boltz_gold" + "sticker_material" "rio2022/sig_boltz_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "58113672" + } + "6538" + { + "name" "rio2022_signature_vini_4" + "item_name" "#StickerKit_rio2022_signature_vini" + "description_string" "#StickerKit_desc_rio2022_signature_vini" + "sticker_material" "rio2022/sig_vini" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "36104456" + } + "6539" + { + "name" "rio2022_signature_vini_4_glitter" + "item_name" "#StickerKit_rio2022_signature_vini_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_vini_glitter" + "sticker_material" "rio2022/sig_vini_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "36104456" + } + "6540" + { + "name" "rio2022_signature_vini_4_holo" + "item_name" "#StickerKit_rio2022_signature_vini_holo" + "description_string" "#StickerKit_desc_rio2022_signature_vini_holo" + "sticker_material" "rio2022/sig_vini_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "36104456" + } + "6541" + { + "name" "rio2022_signature_vini_4_gold" + "item_name" "#StickerKit_rio2022_signature_vini_gold" + "description_string" "#StickerKit_desc_rio2022_signature_vini_gold" + "sticker_material" "rio2022/sig_vini_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "36104456" + } + "6542" + { + "name" "rio2022_signature_chelo_4" + "item_name" "#StickerKit_rio2022_signature_chelo" + "description_string" "#StickerKit_desc_rio2022_signature_chelo" + "sticker_material" "rio2022/sig_chelo" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "107498100" + } + "6543" + { + "name" "rio2022_signature_chelo_4_glitter" + "item_name" "#StickerKit_rio2022_signature_chelo_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_chelo_glitter" + "sticker_material" "rio2022/sig_chelo_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "107498100" + } + "6544" + { + "name" "rio2022_signature_chelo_4_holo" + "item_name" "#StickerKit_rio2022_signature_chelo_holo" + "description_string" "#StickerKit_desc_rio2022_signature_chelo_holo" + "sticker_material" "rio2022/sig_chelo_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "107498100" + } + "6545" + { + "name" "rio2022_signature_chelo_4_gold" + "item_name" "#StickerKit_rio2022_signature_chelo_gold" + "description_string" "#StickerKit_desc_rio2022_signature_chelo_gold" + "sticker_material" "rio2022/sig_chelo_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "113" + "tournament_player_id" "107498100" + } + "6546" + { + "name" "rio2022_signature_fl1t_4" + "item_name" "#StickerKit_rio2022_signature_fl1t" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t" + "sticker_material" "rio2022/sig_fl1t" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6547" + { + "name" "rio2022_signature_fl1t_4_glitter" + "item_name" "#StickerKit_rio2022_signature_fl1t_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t_glitter" + "sticker_material" "rio2022/sig_fl1t_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6548" + { + "name" "rio2022_signature_fl1t_4_holo" + "item_name" "#StickerKit_rio2022_signature_fl1t_holo" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t_holo" + "sticker_material" "rio2022/sig_fl1t_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6549" + { + "name" "rio2022_signature_fl1t_4_gold" + "item_name" "#StickerKit_rio2022_signature_fl1t_gold" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t_gold" + "sticker_material" "rio2022/sig_fl1t_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6550" + { + "name" "rio2022_signature_n0rb3r7_4" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7" + "sticker_material" "rio2022/sig_n0rb3r7" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6551" + { + "name" "rio2022_signature_n0rb3r7_4_glitter" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7_glitter" + "sticker_material" "rio2022/sig_n0rb3r7_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6552" + { + "name" "rio2022_signature_n0rb3r7_4_holo" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7_holo" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7_holo" + "sticker_material" "rio2022/sig_n0rb3r7_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6553" + { + "name" "rio2022_signature_n0rb3r7_4_gold" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7_gold" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7_gold" + "sticker_material" "rio2022/sig_n0rb3r7_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6554" + { + "name" "rio2022_signature_jame_4" + "item_name" "#StickerKit_rio2022_signature_jame" + "description_string" "#StickerKit_desc_rio2022_signature_jame" + "sticker_material" "rio2022/sig_jame" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6555" + { + "name" "rio2022_signature_jame_4_glitter" + "item_name" "#StickerKit_rio2022_signature_jame_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_jame_glitter" + "sticker_material" "rio2022/sig_jame_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6556" + { + "name" "rio2022_signature_jame_4_holo" + "item_name" "#StickerKit_rio2022_signature_jame_holo" + "description_string" "#StickerKit_desc_rio2022_signature_jame_holo" + "sticker_material" "rio2022/sig_jame_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6557" + { + "name" "rio2022_signature_jame_4_gold" + "item_name" "#StickerKit_rio2022_signature_jame_gold" + "description_string" "#StickerKit_desc_rio2022_signature_jame_gold" + "sticker_material" "rio2022/sig_jame_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6558" + { + "name" "rio2022_signature_qikert_4" + "item_name" "#StickerKit_rio2022_signature_qikert" + "description_string" "#StickerKit_desc_rio2022_signature_qikert" + "sticker_material" "rio2022/sig_qikert" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6559" + { + "name" "rio2022_signature_qikert_4_glitter" + "item_name" "#StickerKit_rio2022_signature_qikert_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_qikert_glitter" + "sticker_material" "rio2022/sig_qikert_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6560" + { + "name" "rio2022_signature_qikert_4_holo" + "item_name" "#StickerKit_rio2022_signature_qikert_holo" + "description_string" "#StickerKit_desc_rio2022_signature_qikert_holo" + "sticker_material" "rio2022/sig_qikert_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6561" + { + "name" "rio2022_signature_qikert_4_gold" + "item_name" "#StickerKit_rio2022_signature_qikert_gold" + "description_string" "#StickerKit_desc_rio2022_signature_qikert_gold" + "sticker_material" "rio2022/sig_qikert_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6562" + { + "name" "rio2022_signature_fame_4" + "item_name" "#StickerKit_rio2022_signature_fame" + "description_string" "#StickerKit_desc_rio2022_signature_fame" + "sticker_material" "rio2022/sig_fame" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" + } + "6563" + { + "name" "rio2022_signature_fame_4_glitter" + "item_name" "#StickerKit_rio2022_signature_fame_glitter" + "description_string" "#StickerKit_desc_rio2022_signature_fame_glitter" + "sticker_material" "rio2022/sig_fame_glitter" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" + } + "6564" + { + "name" "rio2022_signature_fame_4_holo" + "item_name" "#StickerKit_rio2022_signature_fame_holo" + "description_string" "#StickerKit_desc_rio2022_signature_fame_holo" + "sticker_material" "rio2022/sig_fame_holo" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" + } + "6565" + { + "name" "rio2022_signature_fame_4_gold" + "item_name" "#StickerKit_rio2022_signature_fame_gold" + "description_string" "#StickerKit_desc_rio2022_signature_fame_gold" + "sticker_material" "rio2022/sig_fame_gold" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" + } + "6566" + { + "name" "rio2022_signature_fl1t_32" + "item_name" "#StickerKit_rio2022_signature_fl1t_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t_champion" + "sticker_material" "rio2022/sig_fl1t_champion" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6567" + { + "name" "rio2022_signature_fl1t_32_glitter" + "item_name" "#StickerKit_rio2022_signature_fl1t_glitter_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t_glitter_champion" + "sticker_material" "rio2022/sig_fl1t_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6568" + { + "name" "rio2022_signature_fl1t_32_holo" + "item_name" "#StickerKit_rio2022_signature_fl1t_holo_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t_holo_champion" + "sticker_material" "rio2022/sig_fl1t_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6569" + { + "name" "rio2022_signature_fl1t_32_gold" + "item_name" "#StickerKit_rio2022_signature_fl1t_gold_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fl1t_gold_champion" + "sticker_material" "rio2022/sig_fl1t_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "35551773" + } + "6570" + { + "name" "rio2022_signature_n0rb3r7_32" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7_champion" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7_champion" + "sticker_material" "rio2022/sig_n0rb3r7_champion" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6571" + { + "name" "rio2022_signature_n0rb3r7_32_glitter" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7_glitter_champion" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7_glitter_champion" + "sticker_material" "rio2022/sig_n0rb3r7_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6572" + { + "name" "rio2022_signature_n0rb3r7_32_holo" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7_holo_champion" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7_holo_champion" + "sticker_material" "rio2022/sig_n0rb3r7_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6573" + { + "name" "rio2022_signature_n0rb3r7_32_gold" + "item_name" "#StickerKit_rio2022_signature_n0rb3r7_gold_champion" + "description_string" "#StickerKit_desc_rio2022_signature_n0rb3r7_gold_champion" + "sticker_material" "rio2022/sig_n0rb3r7_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "262176776" + } + "6574" + { + "name" "rio2022_signature_jame_32" + "item_name" "#StickerKit_rio2022_signature_jame_champion" + "description_string" "#StickerKit_desc_rio2022_signature_jame_champion" + "sticker_material" "rio2022/sig_jame_champion" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6575" + { + "name" "rio2022_signature_jame_32_glitter" + "item_name" "#StickerKit_rio2022_signature_jame_glitter_champion" + "description_string" "#StickerKit_desc_rio2022_signature_jame_glitter_champion" + "sticker_material" "rio2022/sig_jame_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6576" + { + "name" "rio2022_signature_jame_32_holo" + "item_name" "#StickerKit_rio2022_signature_jame_holo_champion" + "description_string" "#StickerKit_desc_rio2022_signature_jame_holo_champion" + "sticker_material" "rio2022/sig_jame_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6577" + { + "name" "rio2022_signature_jame_32_gold" + "item_name" "#StickerKit_rio2022_signature_jame_gold_champion" + "description_string" "#StickerKit_desc_rio2022_signature_jame_gold_champion" + "sticker_material" "rio2022/sig_jame_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "75859856" + } + "6578" + { + "name" "rio2022_signature_qikert_32" + "item_name" "#StickerKit_rio2022_signature_qikert_champion" + "description_string" "#StickerKit_desc_rio2022_signature_qikert_champion" + "sticker_material" "rio2022/sig_qikert_champion" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6579" + { + "name" "rio2022_signature_qikert_32_glitter" + "item_name" "#StickerKit_rio2022_signature_qikert_glitter_champion" + "description_string" "#StickerKit_desc_rio2022_signature_qikert_glitter_champion" + "sticker_material" "rio2022/sig_qikert_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6580" + { + "name" "rio2022_signature_qikert_32_holo" + "item_name" "#StickerKit_rio2022_signature_qikert_holo_champion" + "description_string" "#StickerKit_desc_rio2022_signature_qikert_holo_champion" + "sticker_material" "rio2022/sig_qikert_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6581" + { + "name" "rio2022_signature_qikert_32_gold" + "item_name" "#StickerKit_rio2022_signature_qikert_gold_champion" + "description_string" "#StickerKit_desc_rio2022_signature_qikert_gold_champion" + "sticker_material" "rio2022/sig_qikert_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "166970562" + } + "6582" + { + "name" "rio2022_signature_fame_32" + "item_name" "#StickerKit_rio2022_signature_fame_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fame_champion" + "sticker_material" "rio2022/sig_fame_champion" + "item_rarity" "rare" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" + } + "6583" + { + "name" "rio2022_signature_fame_32_glitter" + "item_name" "#StickerKit_rio2022_signature_fame_glitter_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fame_glitter_champion" + "sticker_material" "rio2022/sig_fame_glitter_champion" + "item_rarity" "mythical" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" + } + "6584" + { + "name" "rio2022_signature_fame_32_holo" + "item_name" "#StickerKit_rio2022_signature_fame_holo_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fame_holo_champion" + "sticker_material" "rio2022/sig_fame_holo_champion" + "item_rarity" "legendary" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" + } + "6585" + { + "name" "rio2022_signature_fame_32_gold" + "item_name" "#StickerKit_rio2022_signature_fame_gold_champion" + "description_string" "#StickerKit_desc_rio2022_signature_fame_gold_champion" + "sticker_material" "rio2022/sig_fame_gold_champion" + "item_rarity" "ancient" + "tournament_event_id" "20" + "tournament_team_id" "109" + "tournament_player_id" "119848818" } } - "recipes" + "quest_definitions" { - "0" + "173" { - "name" "#RT_MP_A" - "n_A" "#RI_R1p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R1p" - "do_A" "1" - "do_B" "#RI_R2" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" - { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "common" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "unique" - "required" "1" - } - } - } - } - "output_items" - { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "uncommon" - "required" "1" - } - } - } - } - "category" "crafting" - "filter" "-3" + "name" "quest_rio2022_activate_pass" + "loc_name" "#CSGO_TournamentChallenge_rio2022_activate_pass" + "loc_description" "#CSGO_TournamentChallenge_rio2022_activate_pass" + "quest_icon" "pass" + "gamemode" "competitive" } - "1" + "174" { - "name" "#RT_MP_A" - "n_A" "#RI_R2p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R2p" - "do_A" "1" - "do_B" "#RI_R3" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" - { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "uncommon" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "unique" - "required" "1" - } - } - } - } - "output_items" - { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "rare" - "required" "1" - } - } - } - } - "category" "crafting" - "filter" "-3" + "name" "quest_rio2022_challengers_calender" + "loc_name" "#CSGO_TournamentChallenge_rio2022_challengers_calender" + "loc_description" "#CSGO_TournamentChallenge_rio2022_challengers_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "2" + "175" { - "name" "#RT_MP_A" - "n_A" "#RI_R3p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R3p" - "do_A" "1" - "do_B" "#RI_R4" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" - { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "rare" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "unique" - "required" "1" - } - } - } - } - "output_items" - { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "mythical" - "required" "1" - } - } - } - } - "category" "crafting" - "filter" "-3" + "name" "quest_rio2022_challengers_pickem" + "loc_name" "#CSGO_TournamentChallenge_rio2022_challengers_pickem" + "loc_description" "#CSGO_TournamentChallenge_rio2022_challengers_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "3" + "176" { - "name" "#RT_MP_A" - "n_A" "#RI_R4p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R4p" - "do_A" "1" - "do_B" "#RI_R5" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" - { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "mythical" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "unique" - "required" "1" - } - } - } - } - "output_items" - { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "legendary" - "required" "1" - } - } - } - } - "category" "crafting" - "filter" "-3" + "name" "quest_rio2022_legends_calender" + "loc_name" "#CSGO_TournamentChallenge_rio2022_legends_calender" + "loc_description" "#CSGO_TournamentChallenge_rio2022_legends_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "4" + "177" { - "name" "#RT_MP_A" - "n_A" "#RI_R5p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R5p" - "do_A" "1" - "do_B" "#RI_R6" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" - { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "legendary" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "unique" - "required" "1" - } - } - } - } - "output_items" - { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "ancient" - "required" "1" - } - } - } - } - "category" "crafting" - "filter" "-3" + "name" "quest_rio2022_legends_pickem" + "loc_name" "#CSGO_TournamentChallenge_rio2022_legends_pickem" + "loc_description" "#CSGO_TournamentChallenge_rio2022_legends_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" } - "10" + "178" { - "name" "#RT_MP_A" - "n_A" "#RI_R1p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R1p" - "do_A" "1" - "do_B" "#RI_R2" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" - { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "common" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "strange" - "required" "1" - } - "2" - { - "field" "*kill_eater_score_type" - "operator" "string==" - "value" "0" - "required" "1" - } - } - } - } - "output_items" - { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "uncommon" - "required" "1" - } - "1" - { - "field" "*stattrak_recipe" - "operator" "string==" - "value" "yes" - "required" "1" - } - } - } - } - "category" "crafting" - "filter" "-3" - "requires_tool" "0" + "name" "quest_rio2022_grandfinal_calender" + "loc_name" "#CSGO_TournamentChallenge_rio2022_grandfinal_calender" + "loc_description" "#CSGO_TournamentChallenge_rio2022_grandfinal_calender" + "quest_icon" "calender" + "gamemode" "competitive" } - "11" + "179" { - "name" "#RT_MP_A" - "n_A" "#RI_R2p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R2p" - "do_A" "1" - "do_B" "#RI_R3" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" - { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "uncommon" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "strange" - "required" "1" - } - "2" - { - "field" "*kill_eater_score_type" - "operator" "string==" - "value" "0" - "required" "1" - } - } - } + "name" "quest_rio2022_quarterfinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_rio2022_quarterfinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_rio2022_quarterfinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "180" + { + "name" "quest_rio2022_semifinals_pickem" + "loc_name" "#CSGO_TournamentChallenge_rio2022_semifinals_pickem" + "loc_description" "#CSGO_TournamentChallenge_rio2022_semifinals_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + "181" + { + "name" "quest_rio2022_grandfinal_pickem" + "loc_name" "#CSGO_TournamentChallenge_rio2022_grandfinal_pickem" + "loc_description" "#CSGO_TournamentChallenge_rio2022_grandfinal_pickem" + "quest_icon" "pickem" + "gamemode" "competitive" + } + } + "campaign_definitions" + { + "14" + { + "loc_name" "#CSGO_TournamentJournal_rio2022" + "loc_description" "#CSGO_TournamentJournal_rio2022_Desc" + "1" + { + "quest_index" "173" } - "output_items" + "2" { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "rare" - "required" "1" - } - "1" - { - "field" "*stattrak_recipe" - "operator" "string==" - "value" "yes" - "required" "1" - } - } - } + "quest_index" "174" } - "category" "crafting" - "filter" "-3" - "requires_tool" "0" - } - "12" - { - "name" "#RT_MP_A" - "n_A" "#RI_R3p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R3p" - "do_A" "1" - "do_B" "#RI_R4" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" + "3" { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "rare" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "strange" - "required" "1" - } - "2" - { - "field" "*kill_eater_score_type" - "operator" "string==" - "value" "0" - "required" "1" - } - } - } + "quest_index" "175" } - "output_items" + "4" { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "mythical" - "required" "1" - } - "1" - { - "field" "*stattrak_recipe" - "operator" "string==" - "value" "yes" - "required" "1" - } - } - } + "quest_index" "176" } - "category" "crafting" - "filter" "-3" - "requires_tool" "0" - } - "13" - { - "name" "#RT_MP_A" - "n_A" "#RI_R4p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R4p" - "do_A" "1" - "do_B" "#RI_R5" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" + "5" { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "mythical" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "strange" - "required" "1" - } - "2" - { - "field" "*kill_eater_score_type" - "operator" "string==" - "value" "0" - "required" "1" - } - } - } + "quest_index" "177" } - "output_items" + "6" { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "legendary" - "required" "1" - } - "1" - { - "field" "*stattrak_recipe" - "operator" "string==" - "value" "yes" - "required" "1" - } - } - } + "quest_index" "178" } - "category" "crafting" - "filter" "-3" - "requires_tool" "0" - } - "14" - { - "name" "#RT_MP_A" - "n_A" "#RI_R5p" - "desc_inputs" "#RDI_AB" - "desc_outputs" "#RDO_AB" - "di_A" "10" - "di_B" "#RI_R5p" - "do_A" "1" - "do_B" "#RI_R6" - "all_same_class" "0" - "always_known" "1" - "premium_only" "0" - "disabled" "0" - "input_items" + "7" { - "10" - { - "conditions" - { - "0" - { - "field" "*rarity" - "operator" "string==" - "value" "legendary" - "required" "1" - } - "1" - { - "field" "*quality" - "operator" "string==" - "value" "strange" - "required" "1" - } - "2" - { - "field" "*kill_eater_score_type" - "operator" "string==" - "value" "0" - "required" "1" - } - } - } + "quest_index" "179" } - "output_items" + "8" { - "item1" - { - "conditions" - { - "0" - { - "field" "*match_set_rarity" - "operator" "string==" - "value" "ancient" - "required" "1" - } - "1" - { - "field" "*stattrak_recipe" - "operator" "string==" - "value" "yes" - "required" "1" - } - } - } + "quest_index" "180" + } + "9" + { + "quest_index" "181" } - "category" "crafting" - "filter" "-3" - "requires_tool" "0" } } - "pro_players" + "sticker_kits" { - "9419182" + "1689" { - "name" "pronax" - "code" "pronax" - "dob" "1991-06-24" - "geo" "SE" - "events" - { - "7" - { - "team" "6" - "clutch_kills" "6" - "pistol_kills" "15" - "opening_kills" "20" - "sniper_kills" "1" - "KDR" "0.992000" - "enemy_kills" "131" - "deaths" "132" - "matches_played" "9" - } - "8" - { - "team" "6" - } - } + "name" "de_ancient_gold" + "item_name" "#StickerKit_de_ancient_gold" + "description_string" "#StickerKit_desc_de_ancient_gold" + "sticker_material" "tournament_assets/de_ancient_gold" + "item_rarity" "legendary" } - "31082355" + "1690" { - "name" "flusha" - "code" "flusha" - "dob" "1993-08-12" - "geo" "SE" - "events" - { - "7" - { - "team" "6" - "clutch_kills" "18" - "pistol_kills" "39" - "opening_kills" "21" - "sniper_kills" "5" - "KDR" "1.716000" - "enemy_kills" "199" - "deaths" "116" - "matches_played" "9" - } - "8" - { - "team" "6" - } - } + "name" "de_dust2_gold" + "item_name" "#StickerKit_de_dust2_gold" + "description_string" "#StickerKit_desc_de_dust2_gold" + "sticker_material" "tournament_assets/de_dust2_gold" + "item_rarity" "legendary" } - "71288472" + "1691" { - "name" "JW" - "code" "jw" - "dob" "1995-02-23" - "geo" "SE" - "events" - { - "7" - { - "team" "6" - "clutch_kills" "1" - "pistol_kills" "27" - "opening_kills" "29" - "sniper_kills" "73" - "KDR" "1.065000" - "enemy_kills" "147" - "deaths" "138" - "matches_played" "9" - } - "8" - { - "team" "6" - } - } + "name" "de_inferno_gold" + "item_name" "#StickerKit_de_inferno_gold" + "description_string" "#StickerKit_desc_de_inferno_gold" + "sticker_material" "tournament_assets/de_inferno_gold" + "item_rarity" "legendary" } - "71385856" + "1692" { - "name" "KRIMZ" - "code" "krimz" - "dob" "1994-04-25" - "geo" "SE" - "events" - { - "7" - { - "team" "6" - "clutch_kills" "13" - "pistol_kills" "19" - "opening_kills" "25" - "sniper_kills" "1" - "KDR" "1.364000" - "enemy_kills" "165" - "deaths" "121" - "matches_played" "9" - } - "8" - { - "team" "6" - } - } + "name" "de_mirage_gold" + "item_name" "#StickerKit_de_mirage_gold" + "description_string" "#StickerKit_desc_de_mirage_gold" + "sticker_material" "tournament_assets/de_mirage_gold" + "item_rarity" "legendary" } - "28361465" + "1693" { - "name" "olofmeister" - "code" "olofmeister" - "dob" "1992-01-31" - "geo" "SE" - "events" - { - "7" - { - "team" "6" - "clutch_kills" "4" - "pistol_kills" "25" - "opening_kills" "26" - "sniper_kills" "15" - "KDR" "1.387000" - "enemy_kills" "190" - "deaths" "137" - "matches_played" "9" - } - "8" - { - "team" "6" - } - } + "name" "de_nuke_gold" + "item_name" "#StickerKit_de_nuke_gold" + "description_string" "#StickerKit_desc_de_nuke_gold" + "sticker_material" "tournament_assets/de_nuke_gold" + "item_rarity" "legendary" } - "424467" + "1694" { - "name" "FalleN" - "code" "fallen" - "dob" "1991-05-30" - "geo" "BR" - "events" - { - "7" - { - "team" "57" - "clutch_kills" "10" - "pistol_kills" "7" - "opening_kills" "19" - "sniper_kills" "84" - "KDR" "1.117000" - "enemy_kills" "115" - "deaths" "103" - "matches_played" "5" - } - "8" - { - "team" "57" - } - } + "name" "de_overpass_gold" + "item_name" "#StickerKit_de_overpass_gold" + "description_string" "#StickerKit_desc_de_overpass_gold" + "sticker_material" "tournament_assets/de_overpass_gold" + "item_rarity" "legendary" } - "54512474" + "1695" { - "name" "steel" - "code" "steel" - "dob" "1992-03-08" - "geo" "BR" - "events" - { - "7" - { - "team" "57" - "clutch_kills" "5" - "pistol_kills" "13" - "opening_kills" "7" - "sniper_kills" "0" - "KDR" "0.648000" - "enemy_kills" "68" - "deaths" "105" - "matches_played" "5" - } - "8" - { - "team" "57" - } - } + "name" "de_vertigo_gold" + "item_name" "#StickerKit_de_vertigo_gold" + "description_string" "#StickerKit_desc_de_vertigo_gold" + "sticker_material" "tournament_assets/de_vertigo_gold" + "item_rarity" "legendary" } - "38921219" + } + "paint_kits" + { + "1141" { - "name" "fer" - "code" "fer" - "dob" "1991-10-30" - "geo" "BR" - "events" - { - "7" - { - "team" "57" - "clutch_kills" "5" - "pistol_kills" "28" - "opening_kills" "24" - "sniper_kills" "2" - "KDR" "1.092000" - "enemy_kills" "119" - "deaths" "109" - "matches_played" "5" - } - "8" - { - "team" "57" - } - } + "name" "cu_ak47_nightwish" + "description_string" "#PaintKit_cu_ak47_nightwish" + "description_tag" "#PaintKit_cu_ak47_nightwish_Tag" + "style" "7" + "pattern" "workshop/ak47_nightwish" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "50.000000" } - "58113672" + "1125" { - "name" "boltz" - "code" "boltz" - "dob" "1997-04-10" - "geo" "BR" - "events" - { - "7" - { - "team" "57" - "clutch_kills" "7" - "pistol_kills" "20" - "opening_kills" "11" - "sniper_kills" "0" - "KDR" "0.895000" - "enemy_kills" "94" - "deaths" "105" - "matches_played" "5" - } - "8" - { - "team" "57" - } - } + "name" "cu_bizon_spacecat" + "description_string" "#PaintKit_cu_bizon_spacecat" + "description_tag" "#PaintKit_cu_bizon_spacecat_Tag" + "style" "7" + "pattern" "workshop/bizon_spacecat" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "235" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.670000" + } + "1126" + { + "name" "cu_elites_beware" + "description_string" "#PaintKit_cu_elites_beware" + "description_tag" "#PaintKit_cu_elites_beware_Tag" + "style" "7" + "pattern" "workshop/elites_beware" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "79720871" + "1127" { - "name" "coldzera" - "code" "coldzera" - "dob" "1994-10-31" - "geo" "BR" - "events" - { - "7" - { - "team" "57" - "clutch_kills" "11" - "pistol_kills" "21" - "opening_kills" "10" - "sniper_kills" "6" - "KDR" "1.099000" - "enemy_kills" "111" - "deaths" "101" - "matches_played" "5" - } - "8" - { - "team" "57" - } - } + "name" "gs_famas_rapid_eyes" + "description_string" "#PaintKit_gs_famas_rapid_eyes" + "description_tag" "#PaintKit_gs_famas_rapid_eyes_Tag" + "style" "9" + "pattern" "workshop/famas_rapid_eyes" + "use_normal" "1" + "normal" "workshop/famas_rapid_eyes_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "207 196 196" + "color3" "163 158 158" + "pattern_scale" "1.000000" + "phongexponent" "90" + "phongintensity" "80" + "phongalbedoboost" "4" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "12065295" + "1128" { - "name" "GuardiaN" - "code" "guardian" - "dob" "1991-07-19" - "geo" "SK" - "events" - { - "7" - { - "team" "12" - "clutch_kills" "8" - "pistol_kills" "10" - "opening_kills" "20" - "sniper_kills" "44" - "KDR" "0.968000" - "enemy_kills" "91" - "deaths" "94" - "matches_played" "5" - } - "8" - { - "team" "12" - } - } + "name" "cu_fiveseven_alpha_omega" + "description_string" "#PaintKit_cu_fiveseven_alpha_omega" + "description_tag" "#PaintKit_cu_fiveseven_alpha_omega_Tag" + "style" "7" + "pattern" "workshop/fiveseven_alpha_omega" + "use_normal" "1" + "normal" "workshop/fiveseven_alpha_omega_normal" + "pattern_scale" "1.000000" + "phongexponent" "110" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "59062744" + "1129" { - "name" "Zeus" - "code" "zeus" - "dob" "1987-08-10" - "geo" "UA" - "events" - { - "7" - { - "team" "12" - "clutch_kills" "7" - "pistol_kills" "23" - "opening_kills" "9" - "sniper_kills" "0" - "KDR" "0.938000" - "enemy_kills" "90" - "deaths" "96" - "matches_played" "5" - } - "8" - { - "team" "12" - } - } + "name" "cu_g3sg1_glade" + "description_string" "#PaintKit_cu_g3sg1_glade" + "description_tag" "#PaintKit_cu_g3sg1_glade_Tag" + "style" "7" + "pattern" "workshop/g3sg1_glade" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "-15.000000" } - "3648428" + "1130" { - "name" "seized" - "code" "seized" - "dob" "1994-09-09" - "geo" "RU" - "events" - { - "7" - { - "team" "12" - "clutch_kills" "7" - "pistol_kills" "19" - "opening_kills" "15" - "sniper_kills" "1" - "KDR" "0.887000" - "enemy_kills" "86" - "deaths" "97" - "matches_played" "5" - } - "8" - { - "team" "12" - } - } + "name" "gs_m4a1s_insomnia" + "description_string" "#PaintKit_gs_m4a1s_insomnia" + "description_tag" "#PaintKit_gs_m4a1s_insomnia_Tag" + "style" "9" + "pattern" "workshop/m4a1s_insomnia" + "use_normal" "1" + "normal" "workshop/m4a1s_insomnia_normal" + "color0" "199 156 72" + "color1" "190 190 190" + "color2" "186 86 222" + "color3" "100 104 91" + "pattern_scale" "1.000000" + "phongexponent" "233" + "phongintensity" "13" + "phongalbedoboost" "3" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "23429534" + "1131" { - "name" "Edward" - "code" "edward" - "dob" "1987-12-28" - "geo" "UA" - "events" - { - "7" - { - "team" "12" - "clutch_kills" "8" - "pistol_kills" "17" - "opening_kills" "12" - "sniper_kills" "1" - "KDR" "0.870000" - "enemy_kills" "87" - "deaths" "100" - "matches_played" "5" - } - "8" - { - "team" "12" - } - } + "name" "cu_mac10_pixie" + "description_string" "#PaintKit_cu_mac10_pixie" + "description_tag" "#PaintKit_cu_mac10_pixie_Tag" + "style" "7" + "pattern" "workshop/mac10_pixie" + "use_normal" "1" + "normal" "workshop/mac10_pixie_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.900000" } - "156257548" + "1132" { - "name" "flamie" - "code" "flamie" - "dob" "1997-04-05" - "geo" "RU" - "events" - { - "7" - { - "team" "12" - "clutch_kills" "7" - "pistol_kills" "18" - "opening_kills" "12" - "sniper_kills" "1" - "KDR" "0.907000" - "enemy_kills" "97" - "deaths" "107" - "matches_played" "5" - } - "8" - { - "team" "12" - } - } + "name" "cu_mag7_predictor" + "description_string" "#PaintKit_cu_mag7_predictor" + "description_tag" "#PaintKit_cu_mag7_predictor_Tag" + "style" "7" + "pattern" "workshop/mag7_predictor" + "pattern_scale" "1.000000" + "phongexponent" "12" + "phongintensity" "2" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "26224992" + "1133" { - "name" "Xizt" - "code" "xizt" - "dob" "1991-02-22" - "geo" "SE" - "events" - { - "7" - { - "team" "1" - "clutch_kills" "5" - "pistol_kills" "16" - "opening_kills" "12" - "sniper_kills" "6" - "KDR" "0.915000" - "enemy_kills" "75" - "deaths" "82" - "matches_played" "5" - } - "8" - { - "team" "1" - } - } + "name" "cu_mp7_fear" + "description_string" "#PaintKit_cu_mp7_fear" + "description_tag" "#PaintKit_cu_mp7_fear_Tag" + "style" "7" + "pattern" "workshop/mp7_fear" + "pattern_scale" "1.000000" + "phongexponent" "32" + "phongintensity" "32" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "93724" + "1134" { - "name" "f0rest" - "code" "forest" - "dob" "1988-06-10" - "geo" "SE" - "events" - { - "7" - { - "team" "1" - "clutch_kills" "3" - "pistol_kills" "21" - "opening_kills" "14" - "sniper_kills" "7" - "KDR" "1.080000" - "enemy_kills" "95" - "deaths" "88" - "matches_played" "5" - } - "8" - { - "team" "1" - } - } + "name" "gs_mp9_starlight" + "description_string" "#PaintKit_gs_mp9_starlight" + "description_tag" "#PaintKit_gs_mp9_starlight_Tag" + "style" "9" + "pattern" "workshop/mp9_starlight" + "use_normal" "1" + "normal" "workshop/mp9_starlight_normal" + "color0" "89 89 89" + "color1" "214 214 214" + "color2" "74 58 37" + "color3" "226 151 43" + "pattern_scale" "1.000000" + "phongexponent" "240" + "phongintensity" "15" + "phongalbedoboost" "1" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.800000" } - "21771190" + "1135" { - "name" "GeT_RiGhT" - "code" "getright" - "dob" "1990-05-29" - "geo" "SE" - "events" - { - "7" - { - "team" "1" - "clutch_kills" "5" - "pistol_kills" "12" - "opening_kills" "6" - "sniper_kills" "0" - "KDR" "1.000000" - "enemy_kills" "78" - "deaths" "78" - "matches_played" "5" - } - "8" - { - "team" "1" - } - } + "name" "am_xm_zombie_offensive" + "description_string" "#PaintKit_am_xm_zombie_offensive" + "description_tag" "#PaintKit_am_xm_zombie_offensive_Tag" + "style" "5" + "pattern" "workshop/xm_zombie_offensive" + "color0" "45 36 0" + "color1" "255 53 53" + "color2" "121 172 0" + "color3" "180 184 255" + "pattern_scale" "4.000000" + "phongexponent" "32" + "phongalbedoboost" "0" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "170.000000" + "pattern_rotate_end" "190.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.500000" } - "24295201" + "1136" { - "name" "friberg" - "code" "friberg" - "dob" "1991-10-19" - "geo" "SE" - "events" - { - "7" - { - "team" "1" - "clutch_kills" "7" - "pistol_kills" "12" - "opening_kills" "8" - "sniper_kills" "0" - "KDR" "0.685000" - "enemy_kills" "61" - "deaths" "89" - "matches_played" "5" - } - "8" - { - "team" "1" - } - } + "name" "cu_usp_to_hell" + "description_string" "#PaintKit_cu_usp_to_hell" + "description_tag" "#PaintKit_cu_usp_to_hell_Tag" + "style" "7" + "pattern" "workshop/usp_to_hell" + "use_normal" "0" + "pattern_scale" "1.000000" + "phongexponent" "190" + "phongintensity" "90" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.760000" } - "1345246" + "1137" { - "name" "allu" - "code" "allu" - "dob" "1992-05-20" - "geo" "FI" - "events" - { - "7" - { - "team" "1" - "clutch_kills" "12" - "pistol_kills" "20" - "opening_kills" "13" - "sniper_kills" "38" - "KDR" "1.216000" - "enemy_kills" "90" - "deaths" "74" - "matches_played" "5" - } - "8" - { - "team" "1" - } - } + "name" "gs_mp5_kid_necronomicon" + "description_string" "#PaintKit_gs_mp5_kid_necronomicon" + "description_tag" "#PaintKit_gs_mp5_kid_necronomicon_Tag" + "style" "9" + "pattern" "workshop/mp5_kid_necronomicon" + "use_normal" "1" + "normal" "workshop/mp5_kid_necronomicon_normal" + "color0" "190 190 190" + "color1" "160 160 160" + "color2" "200 200 200" + "color3" "141 141 141" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "21" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "64640068" + "1138" { - "name" "kennyS" - "code" "kennys" - "dob" "1995-05-19" - "geo" "FR" - "events" - { - "7" - { - "team" "46" - "clutch_kills" "11" - "pistol_kills" "28" - "opening_kills" "17" - "sniper_kills" "83" - "KDR" "1.000000" - "enemy_kills" "156" - "deaths" "156" - "matches_played" "9" - } - "8" - { - "team" "46" - } - } + "name" "cu_p2k_flying_dream" + "description_string" "#PaintKit_cu_p2k_flying_dream" + "description_tag" "#PaintKit_cu_p2k_flying_dream_Tag" + "style" "7" + "pattern" "workshop/p2k_flying_dream" + "use_normal" "1" + "normal" "workshop/p2k_flying_dream_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "40517167" + "1139" { - "name" "kioShiMa" - "code" "kioshima" - "dob" "1994-07-26" - "geo" "FR" - "events" - { - "7" - { - "team" "46" - "clutch_kills" "22" - "pistol_kills" "32" - "opening_kills" "25" - "sniper_kills" "2" - "KDR" "1.013000" - "enemy_kills" "156" - "deaths" "154" - "matches_played" "9" - } - "8" - { - "team" "46" - } - } + "name" "sp_scar_chickenfight" + "description_string" "#PaintKit_sp_scar_chickenfight" + "description_tag" "#PaintKit_sp_scar_chickenfight_Tag" + "style" "3" + "pattern" "workshop/scar_chickenfight" + "color0" "16 15 15" + "color1" "165 85 95" + "color2" "179 145 102" + "color3" "137 135 173" + "pattern_scale" "1.500000" + "phongexponent" "255" + "phongintensity" "30" + "ignore_weapon_size_scale" "0" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "1.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "1.000000" + "pattern_rotate_start" "200.000000" + "pattern_rotate_end" "200.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.570000" + } + "1140" + { + "name" "cu_sawedoff_ouija" + "description_string" "#PaintKit_cu_sawedoff_ouija" + "description_tag" "#PaintKit_cu_sawedoff_ouija_Tag" + "style" "7" + "pattern" "workshop/sawedoff_ouija" + "use_normal" "1" + "normal" "workshop/sawedoff_ouija_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "10" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "17975624" + } + "items" + { + "1391" { - "name" "Happy" - "code" "happy" - "dob" "1991-11-23" - "geo" "FR" - "events" + "name" "community_30 Key" + "item_name" "#CSGO_crate_key_community_30" + "item_description" "#CSGO_crate_key_community_30_desc" + "first_sale_date" "2021-11-17" + "prefab" "valve weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_30" + "tool" { - "7" - { - "team" "46" - "clutch_kills" "14" - "pistol_kills" "37" - "opening_kills" "25" - "sniper_kills" "19" - "KDR" "1.024000" - "enemy_kills" "173" - "deaths" "169" - "matches_played" "9" - } - "8" - { - "team" "46" - } + "restriction" "crate_community_30" } } - "29478439" + "4818" { - "name" "apEX" - "code" "apex" - "dob" "1993-02-22" - "geo" "FR" - "events" + "item_name" "#CSGO_crate_community_30" + "item_description" "#CSGO_crate_community_30_desc" + "name" "crate_community_30" + "image_inventory" "econ/weapon_cases/crate_community_30" + "model_player" "models/props/crates/csgo_drop_crate_community_30.mdl" + "prefab" "weapon_case" + "associated_items" { - "7" - { - "team" "46" - "clutch_kills" "2" - "pistol_kills" "38" - "opening_kills" "30" - "sniper_kills" "0" - "KDR" "1.098000" - "enemy_kills" "190" - "deaths" "173" - "matches_played" "9" - } - "8" - { - "team" "46" - } + "1391" "1" } - } - "444845" - { - "name" "NBK-" - "code" "nbk" - "dob" "1994-06-05" - "geo" "FR" - "events" + "tool" { - "7" - { - "team" "46" - "clutch_kills" "18" - "pistol_kills" "33" - "opening_kills" "34" - "sniper_kills" "8" - "KDR" "1.045000" - "enemy_kills" "163" - "deaths" "156" - "matches_played" "9" - } - "8" - { - "team" "46" - } + "restriction" "crate_community_30" } - } - "29164525" - { - "name" "karrigan" - "code" "karrigan" - "dob" "1990-04-14" - "geo" "DK" - "events" + "attributes" { - "7" - { - "team" "58" - "clutch_kills" "7" - "pistol_kills" "24" - "opening_kills" "27" - "sniper_kills" "6" - "KDR" "1.140000" - "enemy_kills" "138" - "deaths" "121" - "matches_played" "7" - } - "8" + "set supply crate series" { - "team" "58" + "attribute_class" "supply_crate_series" + "value" "339" } } - } - "27447936" - { - "name" "device" - "code" "device" - "dob" "1995-08-09" - "geo" "DK" - "events" + "tags" { - "7" - { - "team" "58" - "clutch_kills" "16" - "pistol_kills" "40" - "opening_kills" "13" - "sniper_kills" "39" - "KDR" "1.461000" - "enemy_kills" "130" - "deaths" "89" - "matches_played" "7" - } - "8" + "ItemSet" { - "team" "58" + "tag_value" "set_community_30" + "tag_text" "#CSGO_set_community_30" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" } } } - "44589228" + } + "revolving_loot_lists" + { + "339" "crate_community_30" + } + "client_loot_lists" + { + "crate_community_30_rare" { - "name" "dupreeh" - "code" "dupreeh" - "dob" "1993-03-26" - "geo" "DK" - "events" - { - "7" - { - "team" "58" - "clutch_kills" "5" - "pistol_kills" "26" - "opening_kills" "18" - "sniper_kills" "0" - "KDR" "1.208000" - "enemy_kills" "122" - "deaths" "101" - "matches_played" "7" - } - "8" - { - "team" "58" - } - } + "[cu_fiveseven_alpha_omega]weapon_fiveseven" "1" + "[cu_mac10_pixie]weapon_mac10" "1" + "[cu_mag7_predictor]weapon_mag7" "1" + "[gs_mp5_kid_necronomicon]weapon_mp5sd" "1" + "[cu_p2k_flying_dream]weapon_hkp2000" "1" + "[sp_scar_chickenfight]weapon_scar20" "1" + "[cu_sawedoff_ouija]weapon_sawedoff" "1" } - "30416534" + "crate_community_30_mythical" { - "name" "Xyp9x" - "code" "xyp9x" - "dob" "1995-09-11" - "geo" "DK" - "events" - { - "7" - { - "team" "58" - "clutch_kills" "10" - "pistol_kills" "18" - "opening_kills" "15" - "sniper_kills" "0" - "KDR" "1.263000" - "enemy_kills" "125" - "deaths" "99" - "matches_played" "7" - } - "8" - { - "team" "58" - } - } + "[cu_bizon_spacecat]weapon_bizon" "1" + "[cu_g3sg1_glade]weapon_g3sg1" "1" + "[gs_m4a1s_insomnia]weapon_m4a1_silencer" "1" + "[am_xm_zombie_offensive]weapon_xm1014" "1" + "[cu_usp_to_hell]weapon_usp_silencer" "1" } - "18062315" + "crate_community_30_legendary" { - "name" "cajunb" - "code" "cajunb" - "dob" "1989-12-13" - "geo" "DK" - "events" - { - "7" - { - "team" "58" - "clutch_kills" "5" - "pistol_kills" "18" - "opening_kills" "15" - "sniper_kills" "17" - "KDR" "1.000000" - "enemy_kills" "101" - "deaths" "101" - "matches_played" "7" - } - "8" - { - "team" "58" - } - } + "[cu_elites_beware]weapon_elite" "1" + "[gs_famas_rapid_eyes]weapon_famas" "1" + "[cu_mp7_fear]weapon_mp7" "1" } - "460206" + "crate_community_30_ancient" { - "name" "NEO" - "code" "neo" - "dob" "1987-06-15" - "geo" "PL" - "events" - { - "7" - { - "team" "31" - "clutch_kills" "13" - "pistol_kills" "33" - "opening_kills" "13" - "sniper_kills" "32" - "KDR" "1.204000" - "enemy_kills" "118" - "deaths" "98" - "matches_played" "7" - } - "8" - { - "team" "31" - } - } + "[cu_ak47_nightwish]weapon_ak47" "1" + "[gs_mp9_starlight]weapon_mp9" "1" } - "13580090" + "crate_community_30" { - "name" "pashaBiceps" - "code" "pasha" - "dob" "1988-04-11" - "geo" "PL" - "events" - { - "7" - { - "team" "31" - "clutch_kills" "5" - "pistol_kills" "13" - "opening_kills" "21" - "sniper_kills" "1" - "KDR" "0.900000" - "enemy_kills" "108" - "deaths" "120" - "matches_played" "7" - } - "8" - { - "team" "31" - } - } + "crate_community_30_rare" "1" + "crate_community_30_mythical" "1" + "crate_community_30_legendary" "1" + "crate_community_30_ancient" "1" + "gamma2_knives2_unusual" "1" } - "234052" + } + "item_sets" + { + "set_community_30" { - "name" "TaZ" - "code" "taz" - "dob" "1986-06-06" - "geo" "PL" - "events" + "name" "#CSGO_set_community_30" + "set_description" "#CSGO_set_community_30_desc" + "is_collection" "1" + "items" { - "7" - { - "team" "31" - "clutch_kills" "8" - "pistol_kills" "28" - "opening_kills" "23" - "sniper_kills" "0" - "KDR" "1.311000" - "enemy_kills" "135" - "deaths" "103" - "matches_played" "7" - } - "8" - { - "team" "31" - } + "[cu_fiveseven_alpha_omega]weapon_fiveseven" "1" + "[cu_mac10_pixie]weapon_mac10" "1" + "[cu_mag7_predictor]weapon_mag7" "1" + "[gs_mp5_kid_necronomicon]weapon_mp5sd" "1" + "[cu_p2k_flying_dream]weapon_hkp2000" "1" + "[sp_scar_chickenfight]weapon_scar20" "1" + "[cu_sawedoff_ouija]weapon_sawedoff" "1" + "[cu_bizon_spacecat]weapon_bizon" "1" + "[cu_g3sg1_glade]weapon_g3sg1" "1" + "[gs_m4a1s_insomnia]weapon_m4a1_silencer" "1" + "[am_xm_zombie_offensive]weapon_xm1014" "1" + "[cu_usp_to_hell]weapon_usp_silencer" "1" + "[cu_elites_beware]weapon_elite" "1" + "[gs_famas_rapid_eyes]weapon_famas" "1" + "[cu_mp7_fear]weapon_mp7" "1" + "[cu_ak47_nightwish]weapon_ak47" "1" + "[gs_mp9_starlight]weapon_mp9" "1" } } - "21875845" + } + "paint_kits_rarity" + { + "cu_ak47_nightwish" "legendary" + "cu_bizon_spacecat" "mythical" + "cu_elites_beware" "legendary" + "gs_famas_rapid_eyes" "legendary" + "cu_fiveseven_alpha_omega" "rare" + "cu_g3sg1_glade" "mythical" + "gs_m4a1s_insomnia" "rare" + "cu_mac10_pixie" "rare" + "cu_mag7_predictor" "rare" + "cu_mp7_fear" "legendary" + "gs_mp9_starlight" "ancient" + "am_xm_zombie_offensive" "mythical" + "gs_mp5_kid_necronomicon" "rare" + "cu_p2k_flying_dream" "uncommon" + "sp_scar_chickenfight" "rare" + "cu_sawedoff_ouija" "rare" + "cu_usp_to_hell" "rare" + } + "sticker_kits" + { + "5249" { - "name" "Snax" - "code" "snax" - "dob" "1993-07-05" - "geo" "PL" - "events" - { - "7" - { - "team" "31" - "clutch_kills" "3" - "pistol_kills" "17" - "opening_kills" "24" - "sniper_kills" "0" - "KDR" "1.176000" - "enemy_kills" "127" - "deaths" "108" - "matches_played" "7" - } - "8" - { - "team" "31" - } - } + "name" "spring2022_b_hop_paper" + "item_name" "#StickerKit_spring2022_b_hop_paper" + "description_string" "#StickerKit_desc_spring2022_b_hop_paper" + "sticker_material" "spring2022/b_hop_paper" + "item_rarity" "rare" } - "18860354" + "5250" { - "name" "byali" - "code" "byali" - "dob" "1994-04-30" - "geo" "PL" - "events" - { - "7" - { - "team" "31" - "clutch_kills" "10" - "pistol_kills" "19" - "opening_kills" "20" - "sniper_kills" "0" - "KDR" "1.182000" - "enemy_kills" "130" - "deaths" "110" - "matches_played" "7" - } - "8" - { - "team" "31" - } - } + "name" "spring2022_flick_shot_paper" + "item_name" "#StickerKit_spring2022_flick_shot_paper" + "description_string" "#StickerKit_desc_spring2022_flick_shot_paper" + "sticker_material" "spring2022/flick_shot_paper" + "item_rarity" "rare" } - "28273376" + "5251" { - "name" "chrisJ" - "code" "chrisj" - "dob" "1990-05-25" - "geo" "NL" - "events" - { - "7" - { - "team" "29" - "clutch_kills" "6" - "pistol_kills" "10" - "opening_kills" "8" - "sniper_kills" "1" - "KDR" "0.818000" - "enemy_kills" "36" - "deaths" "44" - "matches_played" "2" - } - "8" - { - "team" "29" - } - } + "name" "spring2022_get_clucked_paper" + "item_name" "#StickerKit_spring2022_get_clucked_paper" + "description_string" "#StickerKit_desc_spring2022_get_clucked_paper" + "sticker_material" "spring2022/get_clucked_paper" + "item_rarity" "rare" } - "1162165" + "5252" { - "name" "gob b" - "code" "gobb" - "dob" "1987-07-10" - "geo" "DE" - "events" - { - "7" - { - "team" "29" - "clutch_kills" "3" - "pistol_kills" "9" - "opening_kills" "3" - "sniper_kills" "0" - "KDR" "0.833000" - "enemy_kills" "35" - "deaths" "42" - "matches_played" "2" - } - "8" - { - "team" "29" - } - } + "name" "spring2022_im_lit_paper" + "item_name" "#StickerKit_spring2022_im_lit_paper" + "description_string" "#StickerKit_desc_spring2022_im_lit_paper" + "sticker_material" "spring2022/im_lit_paper" + "item_rarity" "rare" } - "31185376" + "5253" { - "name" "denis" - "code" "denis" - "dob" "1994-08-18" - "geo" "DE" - "events" - { - "7" - { - "team" "29" - "clutch_kills" "3" - "pistol_kills" "11" - "opening_kills" "7" - "sniper_kills" "2" - "KDR" "1.154000" - "enemy_kills" "45" - "deaths" "39" - "matches_played" "2" - } - "8" - { - "team" "29" - } - } + "name" "spring2022_mischief_t_paper" + "item_name" "#StickerKit_spring2022_mischief_t_paper" + "description_string" "#StickerKit_desc_spring2022_mischief_t_paper" + "sticker_material" "spring2022/mischief_t_paper" + "item_rarity" "rare" } - "90378773" + "5254" { - "name" "nex" - "code" "nex" - "dob" "1992-06-20" - "geo" "DE" - "events" - { - "7" - { - "team" "29" - "clutch_kills" "4" - "pistol_kills" "13" - "opening_kills" "3" - "sniper_kills" "0" - "KDR" "0.927000" - "enemy_kills" "38" - "deaths" "41" - "matches_played" "2" - } - "8" - { - "team" "29" - } - } + "name" "spring2022_my_game_is_paper" + "item_name" "#StickerKit_spring2022_my_game_is_paper" + "description_string" "#StickerKit_desc_spring2022_my_game_is_paper" + "sticker_material" "spring2022/my_game_is_paper" + "item_rarity" "rare" } - "13465075" + "5255" { - "name" "Spiidi" - "code" "spiidi" - "dob" "1995-09-13" - "geo" "DE" - "events" - { - "7" - { - "team" "29" - "clutch_kills" "3" - "pistol_kills" "3" - "opening_kills" "5" - "sniper_kills" "0" - "KDR" "0.692000" - "enemy_kills" "27" - "deaths" "39" - "matches_played" "2" - } - } + "name" "spring2022_run_ct_run_paper" + "item_name" "#StickerKit_spring2022_run_ct_run_paper" + "description_string" "#StickerKit_desc_spring2022_run_ct_run_paper" + "sticker_material" "spring2022/run_ct_run_paper" + "item_rarity" "rare" } - "24832266" + "5256" { - "name" "AZR" - "code" "azr" - "dob" "1992-10-02" - "geo" "AU" - "events" - { - "7" - { - "team" "53" - "clutch_kills" "6" - "pistol_kills" "7" - "opening_kills" "10" - "sniper_kills" "0" - "KDR" "0.947000" - "enemy_kills" "54" - "deaths" "57" - "matches_played" "3" - } - } + "name" "spring2022_smoke_criminal_paper" + "item_name" "#StickerKit_spring2022_smoke_criminal_paper" + "description_string" "#StickerKit_desc_spring2022_smoke_criminal_paper" + "sticker_material" "spring2022/smoke_criminal_paper" + "item_rarity" "rare" + } + "5257" + { + "name" "spring2022_squeaky_door_paper" + "item_name" "#StickerKit_spring2022_squeaky_door_paper" + "description_string" "#StickerKit_desc_spring2022_squeaky_door_paper" + "sticker_material" "spring2022/squeaky_door_paper" + "item_rarity" "rare" + } + "5258" + { + "name" "spring2022_teamwork_paper" + "item_name" "#StickerKit_spring2022_teamwork_paper" + "description_string" "#StickerKit_desc_spring2022_teamwork_paper" + "sticker_material" "spring2022/teamwork_paper" + "item_rarity" "rare" + } + "5259" + { + "name" "spring2022_this_is_fine_t_paper" + "item_name" "#StickerKit_spring2022_this_is_fine_t_paper" + "description_string" "#StickerKit_desc_spring2022_this_is_fine_t_paper" + "sticker_material" "spring2022/this_is_fine_t_paper" + "item_rarity" "rare" + } + "5260" + { + "name" "spring2022_wallbang_paper" + "item_name" "#StickerKit_spring2022_wallbang_paper" + "description_string" "#StickerKit_desc_spring2022_wallbang_paper" + "sticker_material" "spring2022/wallbang_paper" + "item_rarity" "rare" + } + "5261" + { + "name" "spring2022_flashblack_holo" + "item_name" "#StickerKit_spring2022_flashblack_holo" + "description_string" "#StickerKit_desc_spring2022_flashblack_holo" + "sticker_material" "spring2022/flashblack_holo" + "item_rarity" "mythical" + } + "5262" + { + "name" "spring2022_infinite_diamond_holo" + "item_name" "#StickerKit_spring2022_infinite_diamond_holo" + "description_string" "#StickerKit_desc_spring2022_infinite_diamond_holo" + "sticker_material" "spring2022/infinite_diamond_holo" + "item_rarity" "mythical" + } + "5263" + { + "name" "spring2022_phx_balaclava_holo" + "item_name" "#StickerKit_spring2022_phx_balaclava_holo" + "description_string" "#StickerKit_desc_spring2022_phx_balaclava_holo" + "sticker_material" "spring2022/phx_balaclava_holo" + "item_rarity" "mythical" + } + "5264" + { + "name" "spring2022_sneaky_dept_holo" + "item_name" "#StickerKit_spring2022_sneaky_dept_holo" + "description_string" "#StickerKit_desc_spring2022_sneaky_dept_holo" + "sticker_material" "spring2022/sneaky_dept_holo" + "item_rarity" "mythical" + } + "5265" + { + "name" "spring2022_t_rush_holo" + "item_name" "#StickerKit_spring2022_t_rush_holo" + "description_string" "#StickerKit_desc_spring2022_t_rush_holo" + "sticker_material" "spring2022/t_rush_holo" + "item_rarity" "mythical" + } + "5266" + { + "name" "spring2022_v_for_victory_holo" + "item_name" "#StickerKit_spring2022_v_for_victory_holo" + "description_string" "#StickerKit_desc_spring2022_v_for_victory_holo" + "sticker_material" "spring2022/v_for_victory_holo" + "item_rarity" "mythical" } - "10025211" + "5267" { - "name" "Havoc" - "code" "havoc" - "dob" "1990-06-25" - "geo" "AU" - "events" - { - "7" - { - "team" "53" - "clutch_kills" "3" - "pistol_kills" "12" - "opening_kills" "3" - "sniper_kills" "1" - "KDR" "0.571000" - "enemy_kills" "32" - "deaths" "56" - "matches_played" "3" - } - } + "name" "spring2022_face_me_foil" + "item_name" "#StickerKit_spring2022_face_me_foil" + "description_string" "#StickerKit_desc_spring2022_face_me_foil" + "sticker_material" "spring2022/face_me_foil" + "item_rarity" "legendary" } - "16839456" + "5268" { - "name" "jks" - "code" "jks" - "dob" "1995-12-12" - "geo" "AU" - "events" - { - "7" - { - "team" "53" - "clutch_kills" "5" - "pistol_kills" "13" - "opening_kills" "6" - "sniper_kills" "1" - "KDR" "0.865000" - "enemy_kills" "45" - "deaths" "52" - "matches_played" "3" - } - } + "name" "spring2022_inferno_diorama_foil" + "item_name" "#StickerKit_spring2022_inferno_diorama_foil" + "description_string" "#StickerKit_desc_spring2022_inferno_diorama_foil" + "sticker_material" "spring2022/inferno_diorama_foil" + "item_rarity" "legendary" } - "34303888" + "5269" { - "name" "SPUNJ" - "code" "spunj" - "dob" "1989-07-24" - "geo" "AU" - "events" - { - "7" - { - "team" "53" - "clutch_kills" "5" - "pistol_kills" "9" - "opening_kills" "10" - "sniper_kills" "2" - "KDR" "1.140000" - "enemy_kills" "57" - "deaths" "50" - "matches_played" "3" - } - } + "name" "spring2022_real_mvp_foil" + "item_name" "#StickerKit_spring2022_real_mvp_foil" + "description_string" "#StickerKit_desc_spring2022_real_mvp_foil" + "sticker_material" "spring2022/real_mvp_foil" + "item_rarity" "legendary" } - "30659" + "5270" { - "name" "yam" - "code" "yam" - "dob" "1988-12-07" - "geo" "AU" - "events" + "name" "spring2022_rock_paper_scissors_foil" + "item_name" "#StickerKit_spring2022_rock_paper_scissors_foil" + "description_string" "#StickerKit_desc_spring2022_rock_paper_scissors_foil" + "sticker_material" "spring2022/rock_paper_scissors_foil" + "item_rarity" "legendary" + } + } + "items" + { + "4784" + { + "item_name" "#CSGO_crate_sticker_pack_spring2022_capsule" + "name" "crate_sticker_pack_spring2022_capsule" + "item_description" "#CSGO_crate_sticker_pack_spring2022_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_spring2022_capsule" + "first_sale_date" "2022/02/20" + "prefab" "sticker_capsule" + "attributes" { - "7" + "set supply crate series" { - "team" "53" - "clutch_kills" "3" - "pistol_kills" "5" - "opening_kills" "7" - "sniper_kills" "9" - "KDR" "0.643000" - "enemy_kills" "36" - "deaths" "56" - "matches_played" "3" + "attribute_class" "supply_crate_series" + "value" "340" } } - } - "18903255" - { - "name" "USTILO" - "code" "ustilo" - "dob" "1993-08-10" - "geo" "AU" - "events" + "tags" { - "7" + "StickerCapsule" { - "team" "54" - "clutch_kills" "0" - "pistol_kills" "13" - "opening_kills" "7" - "sniper_kills" "0" - "KDR" "1.026000" - "enemy_kills" "40" - "deaths" "39" - "matches_played" "2" + "tag_value" "crate_sticker_pack_spring2022_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_spring2022_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" } } } - "3215921" + } + "revolving_loot_lists" + { + "340" "crate_sticker_pack_spring2022_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_spring2022_capsule_rare" + { + "[spring2022_b_hop_paper]sticker" "1" + "[spring2022_flick_shot_paper]sticker" "1" + "[spring2022_get_clucked_paper]sticker" "1" + "[spring2022_im_lit_paper]sticker" "1" + "[spring2022_mischief_t_paper]sticker" "1" + "[spring2022_my_game_is_paper]sticker" "1" + "[spring2022_run_ct_run_paper]sticker" "1" + "[spring2022_smoke_criminal_paper]sticker" "1" + "[spring2022_squeaky_door_paper]sticker" "1" + "[spring2022_teamwork_paper]sticker" "1" + "[spring2022_this_is_fine_t_paper]sticker" "1" + "[spring2022_wallbang_paper]sticker" "1" + } + "crate_sticker_pack_spring2022_capsule_mythical" + { + "[spring2022_flashblack_holo]sticker" "1" + "[spring2022_infinite_diamond_holo]sticker" "1" + "[spring2022_phx_balaclava_holo]sticker" "1" + "[spring2022_sneaky_dept_holo]sticker" "1" + "[spring2022_t_rush_holo]sticker" "1" + "[spring2022_v_for_victory_holo]sticker" "1" + } + "crate_sticker_pack_spring2022_capsule_legendary" + { + "[spring2022_face_me_foil]sticker" "1" + "[spring2022_inferno_diorama_foil]sticker" "1" + "[spring2022_real_mvp_foil]sticker" "1" + "[spring2022_rock_paper_scissors_foil]sticker" "1" + } + "crate_sticker_pack_spring2022_capsule_lootlist" + { + "crate_sticker_pack_spring2022_capsule_rare" "1" + "crate_sticker_pack_spring2022_capsule_mythical" "1" + "crate_sticker_pack_spring2022_capsule_legendary" "1" + } + } + "paint_kits" + { + "1142" { - "name" "Rickeh" - "code" "rickeh" - "dob" "1991-11-22" - "geo" "AU" - "events" - { - "7" - { - "team" "54" - "clutch_kills" "2" - "pistol_kills" "6" - "opening_kills" "6" - "sniper_kills" "18" - "KDR" "1.118000" - "enemy_kills" "38" - "deaths" "34" - "matches_played" "2" - } - } + "name" "cu_usp_printstream" + "description_string" "#PaintKit_cu_usp_printstream" + "description_tag" "#PaintKit_cu_printstream_Tag" + "style" "7" + "pattern" "workshop/usp_printstream" + "use_normal" "1" + "normal" "workshop/usp_printstream_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "255" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.850000" + "pearlescent" "100.000000" } - "19633654" + "1143" { - "name" "emagine" - "code" "emagine" - "dob" "1991-04-16" - "geo" "AU" - "events" - { - "7" - { - "team" "54" - "clutch_kills" "5" - "pistol_kills" "8" - "opening_kills" "5" - "sniper_kills" "0" - "KDR" "0.750000" - "enemy_kills" "30" - "deaths" "40" - "matches_played" "2" - } - } + "name" "cu_ak47_cogthings" + "description_string" "#PaintKit_cu_ak47_cogthings" + "description_tag" "#PaintKit_cu_ak47_cogthings_Tag" + "style" "7" + "pattern" "workshop/ak47_cogthings" + "use_normal" "1" + "normal" "workshop/ak47_cogthings_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "50" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.770000" + "pearlescent" "1.000000" } - "7436549" + "1144" { - "name" "SnypeR" - "code" "snyper" - "dob" "1986-09-12" - "geo" "AU" - "events" - { - "7" - { - "team" "54" - "clutch_kills" "0" - "pistol_kills" "4" - "opening_kills" "4" - "sniper_kills" "0" - "KDR" "0.421000" - "enemy_kills" "16" - "deaths" "38" - "matches_played" "2" - } - } + "name" "cu_awp_chroma_pink" + "description_string" "#PaintKit_cu_awp_chroma_pink" + "description_tag" "#PaintKit_cu_awp_chroma_pink_Tag" + "style" "7" + "pattern" "workshop/awp_chroma_pink" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "25" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" } - "35336006" + "1145" { - "name" "James" - "code" "james" - "dob" "1994-03-22" - "geo" "AU" - "events" - { - "7" - { - "team" "54" - "clutch_kills" "0" - "pistol_kills" "3" - "opening_kills" "3" - "sniper_kills" "0" - "KDR" "0.514000" - "enemy_kills" "19" - "deaths" "37" - "matches_played" "2" - } - } + "name" "gs_revolver_purple_elite" + "description_string" "#PaintKit_gs_revolver_purple_elite" + "description_tag" "#PaintKit_gs_revolver_purple_elite_Tag" + "style" "9" + "pattern" "workshop/revolver_purple_elite" + "use_normal" "1" + "normal" "workshop/revolver_purple_elite_normal" + "color0" "129 129 129" + "color1" "179 179 179" + "color2" "143 118 175" + "color3" "104 144 105" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "10" + "phongalbedoboost" "15" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + "pearlescent" "0.500000" } - "5667261" + "1146" { - "name" "markeloff" - "code" "markeloff" - "dob" "1988-02-12" - "geo" "UA" - "events" - { - "7" - { - "team" "43" - "clutch_kills" "8" - "pistol_kills" "17" - "opening_kills" "5" - "sniper_kills" "0" - "KDR" "1.127000" - "enemy_kills" "71" - "deaths" "63" - "matches_played" "3" - } - "8" - { - "team" "43" - } - } + "name" "gs_famas_corp_meow" + "description_string" "#PaintKit_gs_famas_corp_meow" + "description_tag" "#PaintKit_gs_famas_corp_meow_Tag" + "style" "9" + "pattern" "workshop/famas_corp_meow" + "use_normal" "1" + "normal" "workshop/famas_corp_meow_normal" + "color0" "255 255 255" + "color1" "206 205 205" + "color2" "154 154 154" + "color3" "136 136 136" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "0" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "53258137" + "1147" { - "name" "B1ad3" - "code" "b1ad3" - "dob" "1986-11-11" - "geo" "UA" - "events" - { - "7" - { - "team" "43" - "clutch_kills" "11" - "pistol_kills" "12" - "opening_kills" "9" - "sniper_kills" "0" - "KDR" "1.015000" - "enemy_kills" "68" - "deaths" "67" - "matches_played" "3" - } - "8" - { - "team" "43" - } - } + "name" "cu_galil_destroyer" + "description_string" "#PaintKit_cu_galil_destroyer" + "description_tag" "#PaintKit_cu_galil_destroyer_Tag" + "style" "7" + "pattern" "workshop/galil_destroyer" + "use_normal" "1" + "normal" "workshop/galil_destroyer_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "68" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "1148" + { + "name" "cu_m249_downvote" + "description_string" "#PaintKit_cu_m249_downvote" + "description_tag" "#PaintKit_cu_m249_downvote_Tag" + "style" "7" + "pattern" "workshop/m249_downvote" + "use_normal" "1" + "normal" "workshop/m249_downvote_normal" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.650000" + } + "1149" + { + "name" "cu_m4a4_elite_tactical" + "description_string" "#PaintKit_cu_m4a4_elite_tactical" + "description_tag" "#PaintKit_cu_m4a4_elite_tactical_Tag" + "style" "7" + "pattern" "workshop/m4a4_elite_tactical" + "use_normal" "1" + "normal" "workshop/m4a4_elite_tactical_normal" + "pattern_scale" "1.000000" + "phongexponent" "200" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "1150" + { + "name" "cu_mac10_monkeyflage" + "description_string" "#PaintKit_cu_mac10_monkeyflage" + "description_tag" "#PaintKit_cu_mac10_monkeyflage_Tag" + "style" "7" + "pattern" "workshop/mac10_monkeyflage" + "use_normal" "1" + "normal" "workshop/mac10_monkeyflage_normal" + "pattern_scale" "1.000000" + "phongexponent" "155" + "phongintensity" "70" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "1151" + { + "name" "cu_sg553_cyber_dragon" + "description_string" "#PaintKit_cu_sg553_cyber_dragon" + "description_tag" "#PaintKit_cu_sg553_cyber_dragon_Tag" + "style" "7" + "pattern" "workshop/sg553_cyber_dragon" + "use_normal" "1" + "normal" "workshop/sg553_cyber_dragon_normal" + "pattern_scale" "1.000000" + "phongexponent" "175" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "1152" + { + "name" "cu_negev_clear_sky" + "description_string" "#PaintKit_cu_negev_clear_sky" + "description_tag" "#PaintKit_cu_negev_clear_sky_Tag" + "style" "7" + "pattern" "workshop/negev_clear_sky" + "use_normal" "1" + "normal" "workshop/negev_clear_sky_normal" + "pattern_scale" "1.000000" + "phongexponent" "230" + "phongintensity" "15" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "1153" + { + "name" "gs_p250_visions" + "description_string" "#PaintKit_gs_p250_visions" + "description_tag" "#PaintKit_gs_p250_visions_Tag" + "style" "9" + "pattern" "workshop/p250_visions" + "use_normal" "1" + "normal" "workshop/p250_visions_normal" + "color0" "86 86 86" + "color1" "255 255 255" + "color2" "118 122 117" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "222" + "phongintensity" "14" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "256" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "1154" + { + "name" "gs_p90_tangled" + "description_string" "#PaintKit_gs_p90_tangled" + "description_tag" "#PaintKit_gs_p90_tangled_Tag" + "style" "9" + "pattern" "workshop/p90_tangled" + "use_normal" "1" + "normal" "workshop/p90_tangled_normal" + "color0" "255 255 255 255" + "color1" "255 255 255 255" + "color2" "255 255 255 255" + "color3" "255 255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "1" + "phongalbedoboost" "60" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "0.700000" + } + "1155" + { + "name" "cu_sawedoff_kisslove" + "description_string" "#PaintKit_cu_sawedoff_kisslove" + "description_tag" "#PaintKit_cu_sawedoff_kisslove_Tag" + "style" "7" + "pattern" "workshop/sawedoff_kisslove" + "pattern_scale" "1.000000" + "phongexponent" "120" + "phongintensity" "20" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "1156" + { + "name" "cu_dual_elites_evil_flora" + "description_string" "#PaintKit_cu_dual_elites_evil_flora" + "description_tag" "#PaintKit_cu_dual_elites_evil_flora_Tag" + "style" "7" + "pattern" "workshop/dual_elites_evil_flora" + "use_normal" "1" + "normal" "workshop/dual_elites_evil_flora_normal" + "pattern_scale" "1.000000" + "phongexponent" "100" + "phongintensity" "35" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "1157" + { + "name" "gs_ump_roadblock" + "description_string" "#PaintKit_gs_ump_roadblock" + "description_tag" "#PaintKit_gs_ump_roadblock_Tag" + "style" "9" + "pattern" "workshop/ump_roadblock" + "use_normal" "1" + "normal" "workshop/ump_roadblock_normal" + "color0" "255 255 255" + "color1" "255 255 255" + "color2" "255 255 255" + "color3" "255 255 255" + "pattern_scale" "1.000000" + "phongexponent" "255" + "phongintensity" "40" + "phongalbedoboost" "40" + "view_model_exponent_override_size" "1024" + "ignore_weapon_size_scale" "1" + "only_first_material" "1" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" + } + "1158" + { + "name" "gs_glock_elite_camo" + "description_string" "#PaintKit_gs_glock_elite_camo" + "description_tag" "#PaintKit_gs_glock_elite_camo_Tag" + "style" "9" + "pattern" "workshop/glock_elite_camo" + "use_normal" "1" + "normal" "workshop/glock_elite_camo_normal" + "color0" "240 158 91" + "color1" "233 233 233" + "color2" "255 255 255" + "color3" "21 17 7" + "pattern_scale" "1.000000" + "phongexponent" "155" + "phongintensity" "15" + "phongalbedoboost" "5" + "view_model_exponent_override_size" "512" + "ignore_weapon_size_scale" "1" + "only_first_material" "0" + "pattern_offset_x_start" "0.000000" + "pattern_offset_x_end" "0.000000" + "pattern_offset_y_start" "0.000000" + "pattern_offset_y_end" "0.000000" + "pattern_rotate_start" "0.000000" + "pattern_rotate_end" "0.000000" + "wear_remap_min" "0.000000" + "wear_remap_max" "1.000000" } - "46918643" + } + "items" + { + "1392" { - "name" "bondik" - "code" "bondik" - "dob" "1993-07-02" - "geo" "UA" - "events" + "name" "community_31 Key" + "item_name" "#CSGO_crate_key_community_31" + "item_description" "#CSGO_crate_key_community_31_desc" + "first_sale_date" "2022-05-30" + "prefab" "weapon_case_key" + "image_inventory" "econ/tools/crate_key_community_31" + "tool" { - "7" - { - "team" "43" - "clutch_kills" "9" - "pistol_kills" "12" - "opening_kills" "12" - "sniper_kills" "0" - "KDR" "0.986000" - "enemy_kills" "68" - "deaths" "69" - "matches_played" "3" - } - "8" - { - "team" "43" - } + "restriction" "crate_community_31" } } - "36732188" + "4846" { - "name" "WorldEdit" - "code" "worldedit" - "dob" "1991-10-16" - "geo" "RU" - "events" + "item_name" "#CSGO_crate_community_31" + "item_description" "#CSGO_crate_community_31_desc" + "name" "crate_community_31" + "image_inventory" "econ/weapon_cases/crate_community_31" + "model_player" "models/props/crates/csgo_drop_crate_community_31.mdl" + "prefab" "weapon_case" + "associated_items" { - "7" - { - "team" "43" - "clutch_kills" "2" - "pistol_kills" "8" - "opening_kills" "3" - "sniper_kills" "0" - "KDR" "0.563000" - "enemy_kills" "36" - "deaths" "64" - "matches_played" "3" - } - "8" - { - "team" "43" - } + "1392" "1" } - } - "20273529" - { - "name" "DavCost" - "code" "davcost" - "dob" "1996-05-18" - "geo" "RU" - "events" + "tool" { - "7" - { - "team" "43" - "clutch_kills" "4" - "pistol_kills" "12" - "opening_kills" "12" - "sniper_kills" "32" - "KDR" "0.757000" - "enemy_kills" "53" - "deaths" "70" - "matches_played" "3" - } - "8" - { - "team" "43" - } + "restriction" "crate_community_31" } - } - "108076825" - { - "name" "dennis" - "code" "dennis" - "dob" "1991-07-01" - "geo" "SE" - "events" + "attributes" { - "7" - { - "team" "55" - "clutch_kills" "6" - "pistol_kills" "18" - "opening_kills" "14" - "sniper_kills" "1" - "KDR" "0.892000" - "enemy_kills" "83" - "deaths" "93" - "matches_played" "5" - } - "8" + "set supply crate series" { - "team" "59" + "attribute_class" "supply_crate_series" + "value" "355" } } - } - "28502520" - { - "name" "ScreaM" - "code" "scream" - "dob" "1993-07-02" - "geo" "BE" - "events" + "tags" { - "7" - { - "team" "55" - "clutch_kills" "6" - "pistol_kills" "20" - "opening_kills" "16" - "sniper_kills" "0" - "KDR" "1.056000" - "enemy_kills" "94" - "deaths" "89" - "matches_played" "5" - } - "8" + "ItemSet" { - "team" "27" + "tag_value" "set_community_31" + "tag_text" "#CSGO_set_community_31" + "tag_group" "ItemSet" + "tag_group_text" "#SFUI_InvTooltip_SetTag" } } + "loot_list_rare_item_footer" "#crate_community_15_unusual_lootlist" + "loot_list_rare_item_name" "#crate_community_15_unusual_itemname" } - "37085479" + } + "revolving_loot_lists" + { + "355" "crate_community_31" + } + "client_loot_lists" + { + "crate_community_31_rare" { - "name" "rain" - "code" "rain" - "dob" "1994-08-27" - "geo" "NO" - "events" - { - "7" - { - "team" "55" - "clutch_kills" "8" - "pistol_kills" "19" - "opening_kills" "17" - "sniper_kills" "1" - "KDR" "0.852000" - "enemy_kills" "75" - "deaths" "88" - "matches_played" "5" - } - "8" - { - "team" "59" - } - } + "[gs_famas_corp_meow]weapon_famas" "1" + "[cu_galil_destroyer]weapon_galilar" "1" + "[cu_m4a4_elite_tactical]weapon_m4a1" "1" + "[cu_mac10_monkeyflage]weapon_mac10" "1" + "[cu_negev_clear_sky]weapon_negev" "1" + "[gs_ump_roadblock]weapon_ump45" "1" + "[gs_glock_elite_camo]weapon_glock" "1" } - "925972" + "crate_community_31_mythical" { - "name" "Maikelele" - "code" "maikelele" - "dob" "1991-03-05" - "geo" "SE" - "events" - { - "7" - { - "team" "55" - "clutch_kills" "17" - "pistol_kills" "21" - "opening_kills" "11" - "sniper_kills" "28" - "KDR" "0.933000" - "enemy_kills" "83" - "deaths" "89" - "matches_played" "5" - } - "8" - { - "team" "59" - } - } + "[gs_revolver_purple_elite]weapon_revolver" "1" + "[cu_m249_downvote]weapon_m249" "1" + "[cu_sg553_cyber_dragon]weapon_sg556" "1" + "[gs_p90_tangled]weapon_p90" "1" + "[cu_dual_elites_evil_flora]weapon_elite" "1" } - "1939536" + "crate_community_31_legendary" { - "name" "fox" - "code" "fox" - "dob" "1986-11-15" - "geo" "PT" - "events" - { - "7" - { - "team" "55" - "clutch_kills" "7" - "pistol_kills" "10" - "opening_kills" "7" - "sniper_kills" "4" - "KDR" "0.682000" - "enemy_kills" "60" - "deaths" "88" - "matches_played" "5" - } - "8" - { - "team" "59" - } - } + "[cu_ak47_cogthings]weapon_ak47" "1" + "[gs_p250_visions]weapon_p250" "1" + "[cu_sawedoff_kisslove]weapon_sawedoff" "1" } - "31166738" + "crate_community_31_ancient" { - "name" "rallen" - "code" "rallen" - "dob" "1994-06-08" - "geo" "PL" - "events" - { - "7" - { - "team" "56" - "clutch_kills" "3" - "pistol_kills" "5" - "opening_kills" "4" - "sniper_kills" "1" - "KDR" "0.575000" - "enemy_kills" "23" - "deaths" "40" - "matches_played" "2" - } - "8" - { - "team" "47" - } - } + "[cu_usp_printstream]weapon_usp_silencer" "1" + "[cu_awp_chroma_pink]weapon_awp" "1" } - "10357481" + "crate_community_31" { - "name" "Hyper" - "code" "hyper" - "dob" "1990-01-01" - "geo" "PL" - "events" - { - "7" - { - "team" "56" - "clutch_kills" "5" - "pistol_kills" "3" - "opening_kills" "4" - "sniper_kills" "0" - "KDR" "0.892000" - "enemy_kills" "33" - "deaths" "37" - "matches_played" "2" - } - "8" - { - "team" "47" - } - } + "crate_community_31_rare" "1" + "crate_community_31_mythical" "1" + "crate_community_31_legendary" "1" + "crate_community_31_ancient" "1" + "set_glove_3_unusual" "1" } - "104340617" + } + "item_sets" + { + "set_community_31" { - "name" "peet" - "code" "peet" - "dob" "1990-11-14" - "geo" "PL" - "events" + "name" "#CSGO_set_community_31" + "set_description" "#CSGO_set_community_31_desc" + "is_collection" "1" + "items" { - "7" - { - "team" "56" - "clutch_kills" "3" - "pistol_kills" "4" - "opening_kills" "5" - "sniper_kills" "12" - "KDR" "0.795000" - "enemy_kills" "31" - "deaths" "39" - "matches_played" "2" - } - "8" - { - "team" "47" - } + "[gs_famas_corp_meow]weapon_famas" "1" + "[cu_galil_destroyer]weapon_galilar" "1" + "[cu_m4a4_elite_tactical]weapon_m4a1" "1" + "[cu_mac10_monkeyflage]weapon_mac10" "1" + "[cu_negev_clear_sky]weapon_negev" "1" + "[gs_ump_roadblock]weapon_ump45" "1" + "[gs_glock_elite_camo]weapon_glock" "1" + "[gs_revolver_purple_elite]weapon_revolver" "1" + "[cu_m249_downvote]weapon_m249" "1" + "[cu_sg553_cyber_dragon]weapon_sg556" "1" + "[gs_p90_tangled]weapon_p90" "1" + "[cu_dual_elites_evil_flora]weapon_elite" "1" + "[cu_ak47_cogthings]weapon_ak47" "1" + "[gs_p250_visions]weapon_p250" "1" + "[cu_sawedoff_kisslove]weapon_sawedoff" "1" + "[cu_usp_printstream]weapon_usp_silencer" "1" + "[cu_awp_chroma_pink]weapon_awp" "1" } } - "177495873" + } + "paint_kits_rarity" + { + "cu_usp_printstream" "legendary" + "cu_ak47_cogthings" "mythical" + "cu_awp_chroma_pink" "legendary" + "gs_revolver_purple_elite" "mythical" + "gs_famas_corp_meow" "rare" + "cu_galil_destroyer" "rare" + "cu_m249_downvote" "mythical" + "cu_m4a4_elite_tactical" "uncommon" + "cu_mac10_monkeyflage" "rare" + "cu_sg553_cyber_dragon" "mythical" + "cu_negev_clear_sky" "rare" + "gs_p250_visions" "legendary" + "gs_p90_tangled" "mythical" + "cu_sawedoff_kisslove" "legendary" + "cu_dual_elites_evil_flora" "mythical" + "gs_ump_roadblock" "rare" + "gs_glock_elite_camo" "uncommon" + } + "sticker_kits" + { + "5896" { - "name" "Furlan" - "code" "furlan" - "dob" "1994-12-29" - "geo" "PL" - "events" - { - "7" - { - "team" "56" - "clutch_kills" "3" - "pistol_kills" "4" - "opening_kills" "1" - "sniper_kills" "0" - "KDR" "0.415000" - "enemy_kills" "17" - "deaths" "41" - "matches_played" "2" - } - "8" - { - "team" "47" - } - } + "name" "csgo10_arms_race_paper" + "item_name" "#StickerKit_csgo10_arms_race_paper" + "description_string" "#StickerKit_desc_csgo10_arms_race_paper" + "sticker_material" "csgo10/arms_race_paper" + "item_rarity" "rare" } - "44752530" + "5897" { - "name" "GruBy" - "code" "gruby" - "dob" "1995-02-28" - "geo" "PL" - "events" - { - "7" - { - "team" "56" - "clutch_kills" "0" - "pistol_kills" "10" - "opening_kills" "4" - "sniper_kills" "1" - "KDR" "0.784000" - "enemy_kills" "29" - "deaths" "37" - "matches_played" "2" - } - "8" - { - "team" "47" - } - } + "name" "csgo10_b_day_paper" + "item_name" "#StickerKit_csgo10_b_day_paper" + "description_string" "#StickerKit_desc_csgo10_b_day_paper" + "sticker_material" "csgo10/b_day_paper" + "item_rarity" "rare" } - "35761" + "5898" { - "name" "Maniac" - "code" "maniac" - "dob" "1990-06-29" - "geo" "CH" - "events" - { - "7" - { - "team" "27" - "clutch_kills" "10" - "pistol_kills" "10" - "opening_kills" "3" - "sniper_kills" "0" - "KDR" "0.956000" - "enemy_kills" "43" - "deaths" "45" - "matches_played" "2" - } - } + "name" "csgo10_baby_cerberus_paper" + "item_name" "#StickerKit_csgo10_baby_cerberus_paper" + "description_string" "#StickerKit_desc_csgo10_baby_cerberus_paper" + "sticker_material" "csgo10/baby_cerberus_paper" + "item_rarity" "rare" } - "11737333" + "5899" { - "name" "Ex6TenZ" - "code" "ex6tenz" - "dob" "1990-04-30" - "geo" "BE" - "events" - { - "7" - { - "team" "27" - "clutch_kills" "3" - "pistol_kills" "8" - "opening_kills" "7" - "sniper_kills" "0" - "KDR" "0.711000" - "enemy_kills" "32" - "deaths" "45" - "matches_played" "2" - } - "8" - { - "team" "27" - } - } + "name" "csgo10_baby_fire_serpent_paper" + "item_name" "#StickerKit_csgo10_baby_fire_serpent_paper" + "description_string" "#StickerKit_desc_csgo10_baby_fire_serpent_paper" + "sticker_material" "csgo10/baby_fire_serpent_paper" + "item_rarity" "rare" } - "46654567" + "5900" { - "name" "shox" - "code" "shox" - "dob" "1992-05-27" - "geo" "FR" - "events" - { - "7" - { - "team" "27" - "clutch_kills" "5" - "pistol_kills" "9" - "opening_kills" "3" - "sniper_kills" "0" - "KDR" "1.023000" - "enemy_kills" "44" - "deaths" "43" - "matches_played" "2" - } - "8" - { - "team" "27" - } - } + "name" "csgo10_baby_howl_paper" + "item_name" "#StickerKit_csgo10_baby_howl_paper" + "description_string" "#StickerKit_desc_csgo10_baby_howl_paper" + "sticker_material" "csgo10/baby_howl_paper" + "item_rarity" "rare" + } + "5901" + { + "name" "csgo10_baby_lore_paper" + "item_name" "#StickerKit_csgo10_baby_lore_paper" + "description_string" "#StickerKit_desc_csgo10_baby_lore_paper" + "sticker_material" "csgo10/baby_lore_paper" + "item_rarity" "rare" + } + "5902" + { + "name" "csgo10_baby_medusa_paper" + "item_name" "#StickerKit_csgo10_baby_medusa_paper" + "description_string" "#StickerKit_desc_csgo10_baby_medusa_paper" + "sticker_material" "csgo10/baby_medusa_paper" + "item_rarity" "rare" + } + "5903" + { + "name" "csgo10_beaky_decade_paper" + "item_name" "#StickerKit_csgo10_beaky_decade_paper" + "description_string" "#StickerKit_desc_csgo10_beaky_decade_paper" + "sticker_material" "csgo10/beaky_decade_paper" + "item_rarity" "rare" + } + "5904" + { + "name" "csgo10_booth_paper" + "item_name" "#StickerKit_csgo10_booth_paper" + "description_string" "#StickerKit_desc_csgo10_booth_paper" + "sticker_material" "csgo10/booth_paper" + "item_rarity" "rare" + } + "5905" + { + "name" "csgo10_call_your_flashes_paper" + "item_name" "#StickerKit_csgo10_call_your_flashes_paper" + "description_string" "#StickerKit_desc_csgo10_call_your_flashes_paper" + "sticker_material" "csgo10/call_your_flashes_paper" + "item_rarity" "rare" + } + "5906" + { + "name" "csgo10_chicken_whisperer_paper" + "item_name" "#StickerKit_csgo10_chicken_whisperer_paper" + "description_string" "#StickerKit_desc_csgo10_chicken_whisperer_paper" + "sticker_material" "csgo10/chicken_whisperer_paper" + "item_rarity" "rare" + } + "5907" + { + "name" "csgo10_clicking_heads_paper" + "item_name" "#StickerKit_csgo10_clicking_heads_paper" + "description_string" "#StickerKit_desc_csgo10_clicking_heads_paper" + "sticker_material" "csgo10/clicking_heads_paper" + "item_rarity" "rare" + } + "5908" + { + "name" "csgo10_co_co_cs_paper" + "item_name" "#StickerKit_csgo10_co_co_cs_paper" + "description_string" "#StickerKit_desc_csgo10_co_co_cs_paper" + "sticker_material" "csgo10/co_co_cs_paper" + "item_rarity" "rare" + } + "5909" + { + "name" "csgo10_cs_on_the_go_paper" + "item_name" "#StickerKit_csgo10_cs_on_the_go_paper" + "description_string" "#StickerKit_desc_csgo10_cs_on_the_go_paper" + "sticker_material" "csgo10/cs_on_the_go_paper" + "item_rarity" "rare" + } + "5910" + { + "name" "csgo10_cursed_penmanship_paper" + "item_name" "#StickerKit_csgo10_cursed_penmanship_paper" + "description_string" "#StickerKit_desc_csgo10_cursed_penmanship_paper" + "sticker_material" "csgo10/cursed_penmanship_paper" + "item_rarity" "rare" + } + "5911" + { + "name" "csgo10_dragon_tale_paper" + "item_name" "#StickerKit_csgo10_dragon_tale_paper" + "description_string" "#StickerKit_desc_csgo10_dragon_tale_paper" + "sticker_material" "csgo10/dragon_tale_paper" + "item_rarity" "rare" + } + "5912" + { + "name" "csgo10_dragons_keep_paper" + "item_name" "#StickerKit_csgo10_dragons_keep_paper" + "description_string" "#StickerKit_desc_csgo10_dragons_keep_paper" + "sticker_material" "csgo10/dragons_keep_paper" + "item_rarity" "rare" + } + "5913" + { + "name" "csgo10_dreams_and_mimics_paper" + "item_name" "#StickerKit_csgo10_dreams_and_mimics_paper" + "description_string" "#StickerKit_desc_csgo10_dreams_and_mimics_paper" + "sticker_material" "csgo10/dreams_and_mimics_paper" + "item_rarity" "rare" + } + "5914" + { + "name" "csgo10_endless_cycle_paper" + "item_name" "#StickerKit_csgo10_endless_cycle_paper" + "description_string" "#StickerKit_desc_csgo10_endless_cycle_paper" + "sticker_material" "csgo10/endless_cycle_paper" + "item_rarity" "rare" + } + "5915" + { + "name" "csgo10_exo_jumper_paper" + "item_name" "#StickerKit_csgo10_exo_jumper_paper" + "description_string" "#StickerKit_desc_csgo10_exo_jumper_paper" + "sticker_material" "csgo10/exo_jumper_paper" + "item_rarity" "rare" + } + "5916" + { + "name" "csgo10_free_range_paper" + "item_name" "#StickerKit_csgo10_free_range_paper" + "description_string" "#StickerKit_desc_csgo10_free_range_paper" + "sticker_material" "csgo10/free_range_paper" + "item_rarity" "rare" + } + "5917" + { + "name" "csgo10_glhf_paper" + "item_name" "#StickerKit_csgo10_glhf_paper" + "description_string" "#StickerKit_desc_csgo10_glhf_paper" + "sticker_material" "csgo10/glhf_paper" + "item_rarity" "rare" + } + "5918" + { + "name" "csgo10_go_paper" + "item_name" "#StickerKit_csgo10_go_paper" + "description_string" "#StickerKit_desc_csgo10_go_paper" + "sticker_material" "csgo10/go_paper" + "item_rarity" "rare" + } + "5919" + { + "name" "csgo10_good_versus_evil_paper" + "item_name" "#StickerKit_csgo10_good_versus_evil_paper" + "description_string" "#StickerKit_desc_csgo10_good_versus_evil_paper" + "sticker_material" "csgo10/good_versus_evil_paper" + "item_rarity" "rare" + } + "5920" + { + "name" "csgo10_green_problem_paper" + "item_name" "#StickerKit_csgo10_green_problem_paper" + "description_string" "#StickerKit_desc_csgo10_green_problem_paper" + "sticker_material" "csgo10/green_problem_paper" + "item_rarity" "rare" + } + "5921" + { + "name" "csgo10_laser_beam_paper" + "item_name" "#StickerKit_csgo10_laser_beam_paper" + "description_string" "#StickerKit_desc_csgo10_laser_beam_paper" + "sticker_material" "csgo10/laser_beam_paper" + "item_rarity" "rare" + } + "5922" + { + "name" "csgo10_monster_paper" + "item_name" "#StickerKit_csgo10_monster_paper" + "description_string" "#StickerKit_desc_csgo10_monster_paper" + "sticker_material" "csgo10/monster_paper" + "item_rarity" "rare" + } + "5923" + { + "name" "csgo10_noble_steed_paper" + "item_name" "#StickerKit_csgo10_noble_steed_paper" + "description_string" "#StickerKit_desc_csgo10_noble_steed_paper" + "sticker_material" "csgo10/noble_steed_paper" + "item_rarity" "rare" + } + "5924" + { + "name" "csgo10_not_for_resale_paper" + "item_name" "#StickerKit_csgo10_not_for_resale_paper" + "description_string" "#StickerKit_desc_csgo10_not_for_resale_paper" + "sticker_material" "csgo10/not_for_resale_paper" + "item_rarity" "rare" + } + "5925" + { + "name" "csgo10_press_start_paper" + "item_name" "#StickerKit_csgo10_press_start_paper" + "description_string" "#StickerKit_desc_csgo10_press_start_paper" + "sticker_material" "csgo10/press_start_paper" + "item_rarity" "rare" + } + "5926" + { + "name" "csgo10_roshambo_paper" + "item_name" "#StickerKit_csgo10_roshambo_paper" + "description_string" "#StickerKit_desc_csgo10_roshambo_paper" + "sticker_material" "csgo10/roshambo_paper" + "item_rarity" "rare" + } + "5927" + { + "name" "csgo10_rush_b_csgo10_paper" + "item_name" "#StickerKit_csgo10_rush_b_csgo10_paper" + "description_string" "#StickerKit_desc_csgo10_rush_b_csgo10_paper" + "sticker_material" "csgo10/rush_b_csgo10_paper" + "item_rarity" "rare" + } + "5928" + { + "name" "csgo10_rush_more_paper" + "item_name" "#StickerKit_csgo10_rush_more_paper" + "description_string" "#StickerKit_desc_csgo10_rush_more_paper" + "sticker_material" "csgo10/rush_more_paper" + "item_rarity" "rare" + } + "5929" + { + "name" "csgo10_save_me_paper" + "item_name" "#StickerKit_csgo10_save_me_paper" + "description_string" "#StickerKit_desc_csgo10_save_me_paper" + "sticker_material" "csgo10/save_me_paper" + "item_rarity" "rare" + } + "5930" + { + "name" "csgo10_select_agent_paper" + "item_name" "#StickerKit_csgo10_select_agent_paper" + "description_string" "#StickerKit_desc_csgo10_select_agent_paper" + "sticker_material" "csgo10/select_agent_paper" + "item_rarity" "rare" + } + "5931" + { + "name" "csgo10_this_is_fine_h_paper" + "item_name" "#StickerKit_csgo10_this_is_fine_h_paper" + "description_string" "#StickerKit_desc_csgo10_this_is_fine_h_paper" + "sticker_material" "csgo10/this_is_fine_h_paper" + "item_rarity" "rare" + } + "5932" + { + "name" "csgo10_tv_on_mirage_paper" + "item_name" "#StickerKit_csgo10_tv_on_mirage_paper" + "description_string" "#StickerKit_desc_csgo10_tv_on_mirage_paper" + "sticker_material" "csgo10/tv_on_mirage_paper" + "item_rarity" "rare" + } + "5933" + { + "name" "csgo10_zeused_paper" + "item_name" "#StickerKit_csgo10_zeused_paper" + "description_string" "#StickerKit_desc_csgo10_zeused_paper" + "sticker_material" "csgo10/zeused_paper" + "item_rarity" "rare" } - "14321919" + "5934" { - "name" "SmithZz" - "code" "smithzz" - "dob" "1988-12-17" - "geo" "FR" - "events" - { - "7" - { - "team" "27" - "clutch_kills" "3" - "pistol_kills" "7" - "opening_kills" "9" - "sniper_kills" "2" - "KDR" "0.787000" - "enemy_kills" "37" - "deaths" "47" - "matches_played" "2" - } - "8" - { - "team" "27" - } - } + "name" "csgo10_ace_clutch_co_holo" + "item_name" "#StickerKit_csgo10_ace_clutch_co_holo" + "description_string" "#StickerKit_desc_csgo10_ace_clutch_co_holo" + "sticker_material" "csgo10/ace_clutch_co_holo" + "item_rarity" "mythical" } - "53985773" + "5935" { - "name" "RpK" - "code" "rpk" - "dob" "1989-08-12" - "geo" "FR" - "events" - { - "7" - { - "team" "27" - "clutch_kills" "3" - "pistol_kills" "10" - "opening_kills" "3" - "sniper_kills" "0" - "KDR" "0.723000" - "enemy_kills" "34" - "deaths" "47" - "matches_played" "2" - } - "8" - { - "team" "27" - } - } + "name" "csgo10_blue_gem_glitter" + "item_name" "#StickerKit_csgo10_blue_gem_glitter" + "description_string" "#StickerKit_desc_csgo10_blue_gem_glitter" + "sticker_material" "csgo10/blue_gem_glitter" + "item_rarity" "mythical" } - "30305781" + "5936" { - "name" "hazed" - "code" "hazed" - "dob" "1989-05-22" - "geo" "US" - "events" - { - "7" - { - "team" "49" - "clutch_kills" "1" - "pistol_kills" "5" - "opening_kills" "13" - "sniper_kills" "0" - "KDR" "0.797000" - "enemy_kills" "51" - "deaths" "64" - "matches_played" "3" - } - "8" - { - "team" "49" - } - } + "name" "csgo10_boom_glitter" + "item_name" "#StickerKit_csgo10_boom_glitter" + "description_string" "#StickerKit_desc_csgo10_boom_glitter" + "sticker_material" "csgo10/boom_glitter" + "item_rarity" "mythical" } - "17564706" + "5937" { - "name" "FNS" - "code" "fns" - "dob" "1992-03-19" - "geo" "CA" - "events" - { - "7" - { - "team" "49" - "clutch_kills" "4" - "pistol_kills" "16" - "opening_kills" "6" - "sniper_kills" "0" - "KDR" "0.844000" - "enemy_kills" "54" - "deaths" "64" - "matches_played" "3" - } - "8" - { - "team" "49" - } - } + "name" "csgo10_cbbl_holo" + "item_name" "#StickerKit_csgo10_cbbl_holo" + "description_string" "#StickerKit_desc_csgo10_cbbl_holo" + "sticker_material" "csgo10/cbbl_holo" + "item_rarity" "mythical" } - "7223652" + "5938" { - "name" "jdm64" - "code" "jdm64" - "dob" "1990-05-20" - "geo" "US" - "events" - { - "7" - { - "team" "49" - "clutch_kills" "12" - "pistol_kills" "12" - "opening_kills" "9" - "sniper_kills" "48" - "KDR" "1.140000" - "enemy_kills" "65" - "deaths" "57" - "matches_played" "3" - } - "8" - { - "team" "49" - } - } + "name" "csgo10_defuse_it_holo" + "item_name" "#StickerKit_csgo10_defuse_it_holo" + "description_string" "#StickerKit_desc_csgo10_defuse_it_holo" + "sticker_material" "csgo10/defuse_it_holo" + "item_rarity" "mythical" } - "518760" + "5939" { - "name" "reltuC" - "code" "reltuc" - "dob" "1988-11-27" - "geo" "US" - "events" - { - "7" - { - "team" "49" - "clutch_kills" "4" - "pistol_kills" "14" - "opening_kills" "11" - "sniper_kills" "0" - "KDR" "0.735000" - "enemy_kills" "50" - "deaths" "68" - "matches_played" "3" - } - "8" - { - "team" "49" - } - } + "name" "csgo10_conspiracy_club_holo" + "item_name" "#StickerKit_csgo10_conspiracy_club_holo" + "description_string" "#StickerKit_desc_csgo10_conspiracy_club_holo" + "sticker_material" "csgo10/conspiracy_club_holo" + "item_rarity" "mythical" } - "18216247" + "5940" { - "name" "tarik" - "code" "tarik" - "dob" "1996-02-18" - "geo" "US" - "events" - { - "7" - { - "team" "49" - "clutch_kills" "4" - "pistol_kills" "12" - "opening_kills" "6" - "sniper_kills" "0" - "KDR" "1.106000" - "enemy_kills" "73" - "deaths" "66" - "matches_played" "3" - } - "8" - { - "team" "49" - } - } + "name" "csgo10_get_smoked_holo" + "item_name" "#StickerKit_csgo10_get_smoked_holo" + "description_string" "#StickerKit_desc_csgo10_get_smoked_holo" + "sticker_material" "csgo10/get_smoked_holo" + "item_rarity" "mythical" } - "755286" + "5941" { - "name" "n0thing" - "code" "nothing" - "dob" "1990-10-25" - "geo" "US" - "events" - { - "7" - { - "team" "52" - "clutch_kills" "1" - "pistol_kills" "4" - "opening_kills" "2" - "sniper_kills" "0" - "KDR" "0.719000" - "enemy_kills" "41" - "deaths" "57" - "matches_played" "3" - } - "8" - { - "team" "33" - } - } + "name" "csgo10_kawaii_ct_holo" + "item_name" "#StickerKit_csgo10_kawaii_ct_holo" + "description_string" "#StickerKit_desc_csgo10_kawaii_ct_holo" + "sticker_material" "csgo10/kawaii_ct_holo" + "item_rarity" "mythical" } - "164004" + "5942" { - "name" "seang@res" - "code" "sgares" - "dob" "1988-06-10" - "geo" "US" - "events" - { - "7" - { - "team" "52" - "clutch_kills" "4" - "pistol_kills" "5" - "opening_kills" "4" - "sniper_kills" "0" - "KDR" "0.689000" - "enemy_kills" "42" - "deaths" "61" - "matches_played" "3" - } - "8" - { - "team" "33" - } - } + "name" "csgo10_kawaii_t_holo" + "item_name" "#StickerKit_csgo10_kawaii_t_holo" + "description_string" "#StickerKit_desc_csgo10_kawaii_t_holo" + "sticker_material" "csgo10/kawaii_t_holo" + "item_rarity" "mythical" } - "4515926" + "5943" { - "name" "shroud" - "code" "shroud" - "dob" "1994-06-02" - "geo" "CA" - "events" - { - "7" - { - "team" "52" - "clutch_kills" "3" - "pistol_kills" "10" - "opening_kills" "10" - "sniper_kills" "1" - "KDR" "0.909000" - "enemy_kills" "50" - "deaths" "55" - "matches_played" "3" - } - "8" - { - "team" "33" - } - } + "name" "csgo10_train_heart_holo" + "item_name" "#StickerKit_csgo10_train_heart_holo" + "description_string" "#StickerKit_desc_csgo10_train_heart_holo" + "sticker_material" "csgo10/train_heart_holo" + "item_rarity" "mythical" } - "16883071" + "5944" { - "name" "freakazoid" - "code" "freakazoid" - "dob" "1992-11-25" - "geo" "US" - "events" - { - "7" - { - "team" "52" - "clutch_kills" "3" - "pistol_kills" "10" - "opening_kills" "9" - "sniper_kills" "0" - "KDR" "0.845000" - "enemy_kills" "49" - "deaths" "58" - "matches_played" "3" - } - "8" - { - "team" "33" - } - } + "name" "csgo10_pain_train_holo" + "item_name" "#StickerKit_csgo10_pain_train_holo" + "description_string" "#StickerKit_desc_csgo10_pain_train_holo" + "sticker_material" "csgo10/pain_train_holo" + "item_rarity" "mythical" } - "21075725" + "5945" { - "name" "Skadoodle" - "code" "skadoodle" - "dob" "1993-07-21" - "geo" "US" - "events" - { - "7" - { - "team" "52" - "clutch_kills" "5" - "pistol_kills" "10" - "opening_kills" "8" - "sniper_kills" "35" - "KDR" "1.106000" - "enemy_kills" "52" - "deaths" "47" - "matches_played" "3" - } - "8" - { - "team" "33" - } - } + "name" "csgo10_vertigos_hero_holo" + "item_name" "#StickerKit_csgo10_vertigos_hero_holo" + "description_string" "#StickerKit_desc_csgo10_vertigos_hero_holo" + "sticker_material" "csgo10/vertigos_hero_holo" + "item_rarity" "mythical" } - "42442914" + "5946" { - "name" "jkaem" - "code" "jkaem" - "dob" "1994-02-27" - "geo" "NO" - "events" - { - "8" - { - "team" "59" - } - } + "name" "csgo10_zeusception_holo" + "item_name" "#StickerKit_csgo10_zeusception_holo" + "description_string" "#StickerKit_desc_csgo10_zeusception_holo" + "sticker_material" "csgo10/zeusception_holo" + "item_rarity" "mythical" } - "81417650" + "5947" { - "name" "NiKo" - "code" "niko" - "dob" "1997-02-16" - "geo" "BA" - "events" - { - "8" - { - "team" "29" - } - } + "name" "csgo10_dust_fa_foil" + "item_name" "#StickerKit_csgo10_dust_fa_foil" + "description_string" "#StickerKit_desc_csgo10_dust_fa_foil" + "sticker_material" "csgo10/dust_fa_foil" + "item_rarity" "legendary" } - "90685224" + "5948" { - "name" "aizy" - "code" "aizy" - "dob" "1996-04-06" - "geo" "DK" - "events" - { - "8" - { - "team" "24" - } - } + "name" "csgo10_in_the_fire_foil" + "item_name" "#StickerKit_csgo10_in_the_fire_foil" + "description_string" "#StickerKit_desc_csgo10_in_the_fire_foil" + "sticker_material" "csgo10/in_the_fire_foil" + "item_rarity" "legendary" } - "59614824" + "5949" { - "name" "Kjaerbye" - "code" "kjaerbye" - "dob" "1998-04-27" - "geo" "DK" - "events" - { - "8" - { - "team" "24" - } - } + "name" "csgo10_jojo_csgo_foil" + "item_name" "#StickerKit_csgo10_jojo_csgo_foil" + "description_string" "#StickerKit_desc_csgo10_jojo_csgo_foil" + "sticker_material" "csgo10/jojo_csgo_foil" + "item_rarity" "legendary" } - "24134891" + "5950" { - "name" "MSL" - "code" "msl" - "dob" "1994-12-06" - "geo" "DK" - "events" - { - "8" - { - "team" "24" - } - } + "name" "csgo10_overpass_b_foil" + "item_name" "#StickerKit_csgo10_overpass_b_foil" + "description_string" "#StickerKit_desc_csgo10_overpass_b_foil" + "sticker_material" "csgo10/overpass_b_foil" + "item_rarity" "legendary" } - "57742580" + "5951" { - "name" "Pimp" - "code" "pimp" - "dob" "1995-07-31" - "geo" "DK" - "events" - { - "8" - { - "team" "24" - } - } + "name" "csgo10_pure_malt_foil" + "item_name" "#StickerKit_csgo10_pure_malt_foil" + "description_string" "#StickerKit_desc_csgo10_pure_malt_foil" + "sticker_material" "csgo10/pure_malt_foil" + "item_rarity" "legendary" } - "37214922" + "5952" { - "name" "tenzki" - "code" "tenzki" - "dob" "1994-06-25" - "geo" "DK" - "events" - { - "8" - { - "team" "24" - } - } + "name" "csgo10_showdown_foil" + "item_name" "#StickerKit_csgo10_showdown_foil" + "description_string" "#StickerKit_desc_csgo10_showdown_foil" + "sticker_material" "csgo10/showdown_foil" + "item_rarity" "legendary" } - "1366033" + "5953" { - "name" "adreN" - "code" "adren" - "dob" "1990-04-26" - "geo" "US" - "events" - { - "8" - { - "team" "48" - } - } + "name" "csgo10_ten_years_foil" + "item_name" "#StickerKit_csgo10_ten_years_foil" + "description_string" "#StickerKit_desc_csgo10_ten_years_foil" + "sticker_material" "csgo10/ten_years_foil" + "item_rarity" "legendary" } - "106428011" + "5954" { - "name" "EliGE" - "code" "elige" - "dob" "1997-07-16" - "geo" "US" - "events" - { - "8" - { - "team" "48" - } - } + "name" "csgo10_wildfire_genie_foil" + "item_name" "#StickerKit_csgo10_wildfire_genie_foil" + "description_string" "#StickerKit_desc_csgo10_wildfire_genie_foil" + "sticker_material" "csgo10/wildfire_genie_foil" + "item_rarity" "legendary" } - "108760082" + "5955" { - "name" "FugLy" - "code" "fugly" - "dob" "1995-01-02" - "geo" "US" - "events" - { - "8" - { - "team" "48" - } - } + "name" "csgo10_freeze_lenticular" + "item_name" "#StickerKit_csgo10_freeze_lenticular" + "description_string" "#StickerKit_desc_csgo10_freeze_lenticular" + "sticker_material" "csgo10/freeze_lenticular" + "item_rarity" "ancient" } - "2791" + "5956" { - "name" "Hiko" - "code" "hiko" - "dob" "1990-03-06" - "geo" "US" - "events" + "name" "csgo10_gotv_lenticular" + "item_name" "#StickerKit_csgo10_gotv_lenticular" + "description_string" "#StickerKit_desc_csgo10_gotv_lenticular" + "sticker_material" "csgo10/gotv_lenticular" + "item_rarity" "ancient" + } + "5957" + { + "name" "csgo10_magic_rush_ball_lenticular" + "item_name" "#StickerKit_csgo10_magic_rush_ball_lenticular" + "description_string" "#StickerKit_desc_csgo10_magic_rush_ball_lenticular" + "sticker_material" "csgo10/magic_rush_ball_lenticular" + "item_rarity" "ancient" + } + "5958" + { + "name" "csgo10_music_kits_lenticular" + "item_name" "#StickerKit_csgo10_music_kits_lenticular" + "description_string" "#StickerKit_desc_csgo10_music_kits_lenticular" + "sticker_material" "csgo10/music_kits_lenticular" + "item_rarity" "ancient" + } + "5959" + { + "name" "csgo10_skin_lover_lenticular" + "item_name" "#StickerKit_csgo10_skin_lover_lenticular" + "description_string" "#StickerKit_desc_csgo10_skin_lover_lenticular" + "sticker_material" "csgo10/skin_lover_lenticular" + "item_rarity" "ancient" + } + "5960" + { + "name" "csgo10_tv_installation_lenticular" + "item_name" "#StickerKit_csgo10_tv_installation_lenticular" + "description_string" "#StickerKit_desc_csgo10_tv_installation_lenticular" + "sticker_material" "csgo10/tv_installation_lenticular" + "item_rarity" "ancient" + } + } + "items" + { + "4847" + { + "item_name" "#CSGO_crate_sticker_pack_csgo10_capsule" + "name" "crate_sticker_pack_csgo10_capsule" + "item_description" "#CSGO_crate_sticker_pack_csgo10_capsule_desc" + "image_inventory" "econ/weapon_cases/crate_sticker_pack_csgo10_capsule" + "first_sale_date" "2022/06/15" + "prefab" "sticker_capsule" + "attributes" { - "8" + "set supply crate series" { - "team" "48" + "attribute_class" "supply_crate_series" + "value" "356" } } - } - "35624002" - { - "name" "nitr0" - "code" "nitro" - "dob" "1995-08-16" - "geo" "US" - "events" + "tags" { - "8" + "StickerCapsule" { - "team" "48" + "tag_value" "crate_sticker_pack_csgo10_capsule_lootlist" + "tag_text" "#CSGO_crate_sticker_pack_csgo10_capsule" + "tag_group" "StickerCapsule" + "tag_group_text" "#SFUI_InvTooltip_StickerCapsuleTag" } } } } - "items_game_live" + "revolving_loot_lists" { - "pro_players" + "356" "crate_sticker_pack_csgo10_capsule_lootlist" + } + "client_loot_lists" + { + "crate_sticker_pack_csgo10_capsule_rare" + { + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "[csgo10_select_agent_paper]sticker" "1" + "[csgo10_arms_race_paper]sticker" "1" + "[csgo10_b_day_paper]sticker" "1" + "[csgo10_baby_cerberus_paper]sticker" "1" + "[csgo10_baby_fire_serpent_paper]sticker" "1" + "[csgo10_baby_howl_paper]sticker" "1" + "[csgo10_baby_lore_paper]sticker" "1" + "[csgo10_baby_medusa_paper]sticker" "1" + "[csgo10_beaky_decade_paper]sticker" "1" + "[csgo10_booth_paper]sticker" "1" + "[csgo10_cs_on_the_go_paper]sticker" "1" + "[csgo10_call_your_flashes_paper]sticker" "1" + "[csgo10_chicken_whisperer_paper]sticker" "1" + "[csgo10_roshambo_paper]sticker" "1" + "[csgo10_clicking_heads_paper]sticker" "1" + "[csgo10_co_co_cs_paper]sticker" "1" + "[csgo10_cursed_penmanship_paper]sticker" "1" + "[csgo10_dragons_keep_paper]sticker" "1" + "[csgo10_dragon_tale_paper]sticker" "1" + "[csgo10_dreams_and_mimics_paper]sticker" "1" + "[csgo10_endless_cycle_paper]sticker" "1" + "[csgo10_exo_jumper_paper]sticker" "1" + "[csgo10_free_range_paper]sticker" "1" + "[csgo10_go_paper]sticker" "1" + "[csgo10_glhf_paper]sticker" "1" + "[csgo10_good_versus_evil_paper]sticker" "1" + "[csgo10_green_problem_paper]sticker" "1" + "[csgo10_laser_beam_paper]sticker" "1" + "[csgo10_monster_paper]sticker" "1" + "[csgo10_noble_steed_paper]sticker" "1" + "[csgo10_not_for_resale_paper]sticker" "1" + "[csgo10_press_start_paper]sticker" "1" + "[csgo10_rush_more_paper]sticker" "1" + "[csgo10_save_me_paper]sticker" "1" + "[csgo10_rush_b_csgo10_paper]sticker" "1" + "[csgo10_this_is_fine_h_paper]sticker" "1" + "[csgo10_tv_on_mirage_paper]sticker" "1" + "[csgo10_zeused_paper]sticker" "1" + } + "crate_sticker_pack_csgo10_capsule_mythical" + { + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "[csgo10_ace_clutch_co_holo]sticker" "1" + "[csgo10_blue_gem_glitter]sticker" "1" + "[csgo10_cbbl_holo]sticker" "1" + "[csgo10_conspiracy_club_holo]sticker" "1" + "[csgo10_defuse_it_holo]sticker" "1" + "[csgo10_get_smoked_holo]sticker" "1" + "[csgo10_boom_glitter]sticker" "1" + "[csgo10_kawaii_ct_holo]sticker" "1" + "[csgo10_kawaii_t_holo]sticker" "1" + "[csgo10_train_heart_holo]sticker" "1" + "[csgo10_pain_train_holo]sticker" "1" + "[csgo10_vertigos_hero_holo]sticker" "1" + "[csgo10_zeusception_holo]sticker" "1" + } + "crate_sticker_pack_csgo10_capsule_legendary" + { + "limit_description_to_number_rnd" "1" + "limit_description_to_number_rnd" "1" + "[csgo10_jojo_csgo_foil]sticker" "1" + "[csgo10_dust_fa_foil]sticker" "1" + "[csgo10_in_the_fire_foil]sticker" "1" + "[csgo10_overpass_b_foil]sticker" "1" + "[csgo10_pure_malt_foil]sticker" "1" + "[csgo10_wildfire_genie_foil]sticker" "1" + "[csgo10_showdown_foil]sticker" "1" + "[csgo10_ten_years_foil]sticker" "1" + } + "crate_sticker_pack_csgo10_capsule_ancient" + { + "limit_description_to_number_rnd" "1" + "[csgo10_music_kits_lenticular]sticker" "1" + "[csgo10_freeze_lenticular]sticker" "1" + "[csgo10_gotv_lenticular]sticker" "1" + "[csgo10_magic_rush_ball_lenticular]sticker" "1" + "[csgo10_skin_lover_lenticular]sticker" "1" + "[csgo10_tv_installation_lenticular]sticker" "1" + } + "crate_sticker_pack_csgo10_capsule_lootlist" + { + "crate_sticker_pack_csgo10_capsule_rare" "1" + "crate_sticker_pack_csgo10_capsule_mythical" "1" + "crate_sticker_pack_csgo10_capsule_legendary" "1" + "crate_sticker_pack_csgo10_capsule_ancient" "1" + } + } + "items" + { + "30050" { - "*" - { - "events" - { - "8" - { - "clutch_kills" "0" - "pistol_kills" "0" - "opening_kills" "0" - "sniper_kills" "0" - "KDR" "1.000000" - "enemy_kills" "0" - "deaths" "0" - "matches_played" "0" - "*" - { - "clutch_kills" "0" - "pistol_kills" "0" - "opening_kills" "0" - "sniper_kills" "0" - "KDR" "1.000000" - "enemy_kills" "0" - "deaths" "0" - "matches_played" "0" - } - } - } - } + "name" "crate_key_community_30 - Item Contest Winner" + "item_name" "#CSGO_crate_key_community_30_contestwinner" + "item_description" "#CSGO_crate_key_community_30_contestwinner_Desc" + "image_inventory" "econ/tools/crate_key_community_30" + "first_sale_date" "2021-11-21" + "prefab" "weapon_case_key" } } -} \ No newline at end of file +} diff --git a/test/test-data/schema.txt b/test/test-data/schema.txt index e541e94..3c11402 100644 --- a/test/test-data/schema.txt +++ b/test/test-data/schema.txt @@ -1,21347 +1,55323 @@ -"result" { - "status" "1" - "items_game_url" "https://steamcdn-a.akamaihd.net/apps/730/scripts/items/items_game.3b976b28bea6c2d4628f34c785f10770ada961bd.txt" - "qualities" - { - "normal" "0" - "genuine" "1" - "vintage" "2" - "unusual" "3" - "unique" "4" - "community" "5" - "developer" "6" - "selfmade" "7" - "customized" "8" - "strange" "9" - "completed" "10" - "haunted" "11" - "tournament" "12" - } - "originNames" - { - "0" - { - "origin" "0" - "name" "Timed Drop" - } - "1" - { - "origin" "1" - "name" "Achievement" - } - "2" - { - "origin" "2" - "name" "Purchased" - } - "3" - { - "origin" "3" - "name" "Traded" - } - "4" - { - "origin" "4" - "name" "Crafted" - } - "5" - { - "origin" "5" - "name" "Store Promotion" - } - "6" - { - "origin" "6" - "name" "Gifted" - } - "7" - { - "origin" "7" - "name" "Support Granted" - } - "8" - { - "origin" "8" - "name" "Found in Crate" - } - "9" - { - "origin" "9" - "name" "Earned" - } - "10" - { - "origin" "10" - "name" "Third-Party Promotion" - } - "11" - { - "origin" "11" - "name" "Wrapped Gift" - } - "12" - { - "origin" "12" - "name" "Halloween Drop" - } - "13" - { - "origin" "13" - "name" "Steam Purchase" - } - "14" - { - "origin" "14" - "name" "Foreign Item" - } - "15" - { - "origin" "15" - "name" "CD Key" - } - "16" - { - "origin" "16" - "name" "Collection Reward" - } - "17" - { - "origin" "17" - "name" "Preview Item" - } - "18" - { - "origin" "18" - "name" "Steam Workshop Contribution" - } - "19" - { - "origin" "19" - "name" "Periodic Score Reward" - } - "20" - { - "origin" "20" - "name" "Recycling" - } - "21" - { - "origin" "21" - "name" "Tournament Drop" - } - "22" - { - "origin" "22" - "name" "Stock Item" - } - "23" - { - "origin" "23" - "name" "Quest Reward" - } - "24" - { - "origin" "24" - "name" "Level Up Reward" - } - } - "items" - { - "0" - { - "name" "weapon_deagle" - "defindex" "1" - "item_class" "weapon_deagle" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_DesertEagle" - "item_description" "#CSGO_Item_Desc_DesertEagle" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_deagle" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_deagle.29e8f0d7d0be5e737d4f663ee8b394b5c9e00bdd.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + "result": { + "status": 1, + "items_game_url": "https://steamcdn-a.akamaihd.net/apps/730/scripts/items/items_game.912280afab477c77741bf213c265cd94bb869d48.txt", + "qualities": { + "normal": 0, + "genuine": 1, + "vintage": 2, + "unusual": 3, + "unique": 4, + "community": 5, + "developer": 6, + "selfmade": 7, + "customized": 8, + "strange": 9, + "completed": 10, + "haunted": 11, + "tournament": 12 + }, + "originNames": [ + { + "origin": 0, + "name": "Timed Drop" + }, + { + "origin": 1, + "name": "Achievement" + }, + { + "origin": 2, + "name": "Purchased" + }, + { + "origin": 3, + "name": "Traded" + }, + { + "origin": 4, + "name": "Crafted" + }, + { + "origin": 5, + "name": "Store Promotion" + }, + { + "origin": 6, + "name": "Gifted" + }, + { + "origin": 7, + "name": "Support Granted" + }, + { + "origin": 8, + "name": "Found in Crate" + }, + { + "origin": 9, + "name": "Earned" + }, + { + "origin": 10, + "name": "Third-Party Promotion" + }, + { + "origin": 11, + "name": "Wrapped Gift" + }, + { + "origin": 12, + "name": "Halloween Drop" + }, + { + "origin": 13, + "name": "Steam Purchase" + }, + { + "origin": 14, + "name": "Foreign Item" + }, + { + "origin": 15, + "name": "CD Key" + }, + { + "origin": 16, + "name": "Collection Reward" + }, + { + "origin": 17, + "name": "Preview Item" + }, + { + "origin": 18, + "name": "Steam Workshop Contribution" + }, + { + "origin": 19, + "name": "Periodic Score Reward" + }, + { + "origin": 20, + "name": "Recycling" + }, + { + "origin": 21, + "name": "Tournament Drop" + }, + { + "origin": 22, + "name": "Stock Item" + }, + { + "origin": 23, + "name": "Quest Reward" + }, + { + "origin": 24, + "name": "Level Up Reward" + }, + { + "origin": 25, + "name": "Ad" + } + ] + , + "items": [ + { + "name": "weapon_deagle", + "defindex": 1, + "item_class": "weapon_deagle", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_DesertEagle", + "item_description": "#CSGO_Item_Desc_DesertEagle", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_deagle", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_deagle.29e8f0d7d0be5e737d4f663ee8b394b5c9e00bdd.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "1" - { - "name" "weapon_elite" - "defindex" "2" - "item_class" "weapon_elite" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_Elites" - "item_description" "#CSGO_Item_Desc_Elites" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_elite" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_elite.6563e9d274c6e799d71a7809021624f213d5e080.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_elite", + "defindex": 2, + "item_class": "weapon_elite", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_Elites", + "item_description": "#CSGO_Item_Desc_Elites", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_elite", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_elite.6563e9d274c6e799d71a7809021624f213d5e080.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "2" - { - "name" "weapon_fiveseven" - "defindex" "3" - "item_class" "weapon_fiveseven" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_FiveSeven" - "item_description" "#CSGO_Item_Desc_FiveSeven" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_fiveseven" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_fiveseven.7c33b4a78ae94a3d14e7cd0f71b295cf61717d75.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_fiveseven", + "defindex": 3, + "item_class": "weapon_fiveseven", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_FiveSeven", + "item_description": "#CSGO_Item_Desc_FiveSeven", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_fiveseven", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_fiveseven.7c33b4a78ae94a3d14e7cd0f71b295cf61717d75.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "3" - { - "name" "weapon_glock" - "defindex" "4" - "item_class" "weapon_glock" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_Glock18" - "item_description" "#CSGO_Item_Desc_Glock18" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_glock" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_glock.8430afea5349054d0923cefa7d2e7bf3950ce3d7.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_glock", + "defindex": 4, + "item_class": "weapon_glock", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_Glock18", + "item_description": "#CSGO_Item_Desc_Glock18", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_glock", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_glock.8430afea5349054d0923cefa7d2e7bf3950ce3d7.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "4" - { - "name" "weapon_ak47" - "defindex" "7" - "item_class" "weapon_ak47" - "item_type_name" "#CSGO_Type_Rifle" - "item_name" "#SFUI_WPNHUD_AK47" - "item_description" "#CSGO_Item_Desc_AK47" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_ak47" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_ak47.a320f13fea4f21d1eb3b46678d6b12e97cbd1052.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_ak47", + "defindex": 7, + "item_class": "weapon_ak47", + "item_type_name": "#CSGO_Type_Rifle", + "item_name": "#SFUI_WPNHUD_AK47", + "item_description": "#CSGO_Item_Desc_AK47", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_ak47", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_ak47.a320f13fea4f21d1eb3b46678d6b12e97cbd1052.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "5" - { - "name" "weapon_aug" - "defindex" "8" - "item_class" "weapon_aug" - "item_type_name" "#CSGO_Type_Rifle" - "item_name" "#SFUI_WPNHUD_Aug" - "item_description" "#CSGO_Item_Desc_Aug" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_aug" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_aug.6b97a75aa4c0dbb61d81efb6d5497b079b67d0da.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_aug", + "defindex": 8, + "item_class": "weapon_aug", + "item_type_name": "#CSGO_Type_Rifle", + "item_name": "#SFUI_WPNHUD_Aug", + "item_description": "#CSGO_Item_Desc_Aug", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_aug", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_aug.6b97a75aa4c0dbb61d81efb6d5497b079b67d0da.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "6" - { - "name" "weapon_awp" - "defindex" "9" - "item_class" "weapon_awp" - "item_type_name" "#CSGO_Type_SniperRifle" - "item_name" "#SFUI_WPNHUD_AWP" - "item_description" "#CSGO_Item_Desc_AWP" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_awp" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_awp.2899e1c6345ed05d62bdbe112db1b117d022e477.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_awp", + "defindex": 9, + "item_class": "weapon_awp", + "item_type_name": "#CSGO_Type_SniperRifle", + "item_name": "#SFUI_WPNHUD_AWP", + "item_description": "#CSGO_Item_Desc_AWP", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_awp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_awp.2899e1c6345ed05d62bdbe112db1b117d022e477.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "7" - { - "name" "weapon_famas" - "defindex" "10" - "item_class" "weapon_famas" - "item_type_name" "#CSGO_Type_Rifle" - "item_name" "#SFUI_WPNHUD_Famas" - "item_description" "#CSGO_Item_Desc_Famas" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_famas" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_famas.c897878873beb9e9ca4c68ef3a666869c6e78031.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_famas", + "defindex": 10, + "item_class": "weapon_famas", + "item_type_name": "#CSGO_Type_Rifle", + "item_name": "#SFUI_WPNHUD_Famas", + "item_description": "#CSGO_Item_Desc_Famas", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_famas", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_famas.c897878873beb9e9ca4c68ef3a666869c6e78031.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "8" - { - "name" "weapon_g3sg1" - "defindex" "11" - "item_class" "weapon_g3sg1" - "item_type_name" "#CSGO_Type_SniperRifle" - "item_name" "#SFUI_WPNHUD_G3SG1" - "item_description" "#CSGO_Item_Desc_G3SG1" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_g3sg1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_g3sg1.986d0e07f58c81c99aa5a47d86340f4c3d400339.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_g3sg1", + "defindex": 11, + "item_class": "weapon_g3sg1", + "item_type_name": "#CSGO_Type_SniperRifle", + "item_name": "#SFUI_WPNHUD_G3SG1", + "item_description": "#CSGO_Item_Desc_G3SG1", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_g3sg1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_g3sg1.986d0e07f58c81c99aa5a47d86340f4c3d400339.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "9" - { - "name" "weapon_galilar" - "defindex" "13" - "item_class" "weapon_galilar" - "item_type_name" "#CSGO_Type_Rifle" - "item_name" "#SFUI_WPNHUD_GalilAR" - "item_description" "#CSGO_Item_Desc_GalilAR" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_galilar" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_galilar.b84153658afdb7dc26a9854e566fde3fc42c22ef.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_galilar", + "defindex": 13, + "item_class": "weapon_galilar", + "item_type_name": "#CSGO_Type_Rifle", + "item_name": "#SFUI_WPNHUD_GalilAR", + "item_description": "#CSGO_Item_Desc_GalilAR", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_galilar", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_galilar.b84153658afdb7dc26a9854e566fde3fc42c22ef.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "10" - { - "name" "weapon_m249" - "defindex" "14" - "item_class" "weapon_m249" - "item_type_name" "#CSGO_Type_Machinegun" - "item_name" "#SFUI_WPNHUD_M249" - "item_description" "#CSGO_Item_Desc_M249" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_m249" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_m249.02d1cf8fa8c41af5a43749bf780c4c4a2e50ea8e.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_m249", + "defindex": 14, + "item_class": "weapon_m249", + "item_type_name": "#CSGO_Type_Machinegun", + "item_name": "#SFUI_WPNHUD_M249", + "item_description": "#CSGO_Item_Desc_M249", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_m249", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_m249.02d1cf8fa8c41af5a43749bf780c4c4a2e50ea8e.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "11" - { - "name" "weapon_m4a1" - "defindex" "16" - "item_class" "weapon_m4a1" - "item_type_name" "#CSGO_Type_Rifle" - "item_name" "#SFUI_WPNHUD_M4A1" - "item_description" "#CSGO_Item_Desc_M4A4" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_m4a1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_m4a1.39b3bd8d556e5cdebb79d60902442986eb9aedff.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_m4a1", + "defindex": 16, + "item_class": "weapon_m4a1", + "item_type_name": "#CSGO_Type_Rifle", + "item_name": "#SFUI_WPNHUD_M4A1", + "item_description": "#CSGO_Item_Desc_M4A4", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_m4a1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_m4a1.39b3bd8d556e5cdebb79d60902442986eb9aedff.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "12" - { - "name" "weapon_mac10" - "defindex" "17" - "item_class" "weapon_mac10" - "item_type_name" "#CSGO_Type_SMG" - "item_name" "#SFUI_WPNHUD_MAC10" - "item_description" "#CSGO_Item_Desc_Mac10" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_mac10" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mac10.41e40474aa21a9ed90d9b21dd5adf0910f766426.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_mac10", + "defindex": 17, + "item_class": "weapon_mac10", + "item_type_name": "#CSGO_Type_SMG", + "item_name": "#SFUI_WPNHUD_MAC10", + "item_description": "#CSGO_Item_Desc_Mac10", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_mac10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mac10.41e40474aa21a9ed90d9b21dd5adf0910f766426.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "13" - { - "name" "weapon_p90" - "defindex" "19" - "item_class" "weapon_p90" - "item_type_name" "#CSGO_Type_SMG" - "item_name" "#SFUI_WPNHUD_P90" - "item_description" "#CSGO_Item_Desc_P90" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_p90" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_p90.15fedd7fc90f003b8de0ded36245b438d54bc3d2.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_p90", + "defindex": 19, + "item_class": "weapon_p90", + "item_type_name": "#CSGO_Type_SMG", + "item_name": "#SFUI_WPNHUD_P90", + "item_description": "#CSGO_Item_Desc_P90", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_p90", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_p90.15fedd7fc90f003b8de0ded36245b438d54bc3d2.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "14" - { - "name" "weapon_ump45" - "defindex" "24" - "item_class" "weapon_ump45" - "item_type_name" "#CSGO_Type_SMG" - "item_name" "#SFUI_WPNHUD_UMP45" - "item_description" "#CSGO_Item_Desc_UMP45" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_ump45" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_ump45.55669e2321f28efed775be27f7e3c7e71b501520.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_zone_repulsor", + "defindex": 20, + "item_class": "weapon_zone_repulsor", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_Zone_Repulsor", + "item_description": "#CSGO_Item_Desc_Zone_Repulsor", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_shield", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_shield.b4b0ca3e42b2e043cbba823de27bc199ad650da4.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "15" - { - "name" "weapon_xm1014" - "defindex" "25" - "item_class" "weapon_xm1014" - "item_type_name" "#CSGO_Type_Shotgun" - "item_name" "#SFUI_WPNHUD_xm1014" - "item_description" "#CSGO_Item_Desc_XM1014" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_xm1014" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_xm1014.7bd7f3985d680db2fcb7cad32b07c90b758c234b.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_mp5sd", + "defindex": 23, + "item_class": "weapon_mp7", + "item_type_name": "#CSGO_Type_SMG", + "item_name": "#SFUI_WPNHUD_MP5SD", + "item_description": "#CSGO_Item_Desc_MP5SD", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_mp5sd", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mp5sd.2e92234c951819f3ae44742e96c488ef97f26c7c.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "16" - { - "name" "weapon_bizon" - "defindex" "26" - "item_class" "weapon_bizon" - "item_type_name" "#CSGO_Type_SMG" - "item_name" "#SFUI_WPNHUD_Bizon" - "item_description" "#CSGO_Item_Desc_Bizon" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_bizon" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_bizon.58523d37ee43b9a4ef42a67b65a28e5967743a56.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_ump45", + "defindex": 24, + "item_class": "weapon_ump45", + "item_type_name": "#CSGO_Type_SMG", + "item_name": "#SFUI_WPNHUD_UMP45", + "item_description": "#CSGO_Item_Desc_UMP45", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_ump45", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_ump45.55669e2321f28efed775be27f7e3c7e71b501520.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "17" - { - "name" "weapon_mag7" - "defindex" "27" - "item_class" "weapon_mag7" - "item_type_name" "#CSGO_Type_Shotgun" - "item_name" "#SFUI_WPNHUD_Mag7" - "item_description" "#CSGO_Item_Desc_Mag7" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_mag7" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mag7.5480ba05c61153309163c46e7d646d6958af9bf7.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_xm1014", + "defindex": 25, + "item_class": "weapon_xm1014", + "item_type_name": "#CSGO_Type_Shotgun", + "item_name": "#SFUI_WPNHUD_xm1014", + "item_description": "#CSGO_Item_Desc_XM1014", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_xm1014", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_xm1014.7bd7f3985d680db2fcb7cad32b07c90b758c234b.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "18" - { - "name" "weapon_negev" - "defindex" "28" - "item_class" "weapon_negev" - "item_type_name" "#CSGO_Type_Machinegun" - "item_name" "#SFUI_WPNHUD_Negev" - "item_description" "#CSGO_Item_Desc_Negev" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_negev" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_negev.1cf512eb01bd62bcae5c54feec694f418ab71d30.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_bizon", + "defindex": 26, + "item_class": "weapon_bizon", + "item_type_name": "#CSGO_Type_SMG", + "item_name": "#SFUI_WPNHUD_Bizon", + "item_description": "#CSGO_Item_Desc_Bizon", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_bizon", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_bizon.58523d37ee43b9a4ef42a67b65a28e5967743a56.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "19" - { - "name" "weapon_sawedoff" - "defindex" "29" - "item_class" "weapon_sawedoff" - "item_type_name" "#CSGO_Type_Shotgun" - "item_name" "#SFUI_WPNHUD_Sawedoff" - "item_description" "#CSGO_Item_Desc_SawedOff" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_sawedoff" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_sawedoff.4c4df9c84e1edc20488c45061ad88cfd2460c4a5.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_mag7", + "defindex": 27, + "item_class": "weapon_mag7", + "item_type_name": "#CSGO_Type_Shotgun", + "item_name": "#SFUI_WPNHUD_Mag7", + "item_description": "#CSGO_Item_Desc_Mag7", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_mag7", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mag7.5480ba05c61153309163c46e7d646d6958af9bf7.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "20" - { - "name" "weapon_tec9" - "defindex" "30" - "item_class" "weapon_tec9" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_Tec9" - "item_description" "#CSGO_Item_Desc_Tec9" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_tec9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_tec9.74538566492b4af122be9b996bdd7d08585db3c0.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_negev", + "defindex": 28, + "item_class": "weapon_negev", + "item_type_name": "#CSGO_Type_Machinegun", + "item_name": "#SFUI_WPNHUD_Negev", + "item_description": "#CSGO_Item_Desc_Negev", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_negev", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_negev.1cf512eb01bd62bcae5c54feec694f418ab71d30.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "21" - { - "name" "weapon_taser" - "defindex" "31" - "item_class" "weapon_taser" - "item_type_name" "#CSGO_Type_Equipment" - "item_name" "#SFUI_WPNHUD_Taser" - "item_description" "#CSGO_Item_Desc_Taser" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_taser" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_taser.3c80d155bf0547c377217920f2c7329c8b00d472.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - } - "22" - { - "name" "weapon_hkp2000" - "defindex" "32" - "item_class" "weapon_hkp2000" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_HKP2000" - "item_description" "#CSGO_Item_Desc_HKP2000" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_hkp2000" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_hkp2000.c2221f8c2ef3df6c2fcdafd1bea9faae01f64054.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_sawedoff", + "defindex": 29, + "item_class": "weapon_sawedoff", + "item_type_name": "#CSGO_Type_Shotgun", + "item_name": "#SFUI_WPNHUD_Sawedoff", + "item_description": "#CSGO_Item_Desc_SawedOff", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_sawedoff", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_sawedoff.4c4df9c84e1edc20488c45061ad88cfd2460c4a5.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "23" - { - "name" "weapon_mp7" - "defindex" "33" - "item_class" "weapon_mp7" - "item_type_name" "#CSGO_Type_SMG" - "item_name" "#SFUI_WPNHUD_MP7" - "item_description" "#CSGO_Item_Desc_MP7" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_mp7" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mp7.0afc09868c38a00fde50c3e4943637c714e8981e.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_tec9", + "defindex": 30, + "item_class": "weapon_tec9", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_Tec9", + "item_description": "#CSGO_Item_Desc_Tec9", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_tec9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_tec9.74538566492b4af122be9b996bdd7d08585db3c0.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "24" - { - "name" "weapon_mp9" - "defindex" "34" - "item_class" "weapon_mp9" - "item_type_name" "#CSGO_Type_SMG" - "item_name" "#SFUI_WPNHUD_MP9" - "item_description" "#CSGO_Item_Desc_MP9" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_mp9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mp9.c9103efde0845eb715cdcb67bf74bad646b1c5bc.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_taser", + "defindex": 31, + "item_class": "weapon_taser", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_Taser", + "item_description": "#CSGO_Item_Desc_Taser", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_taser", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_taser.3c80d155bf0547c377217920f2c7329c8b00d472.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "25" - { - "name" "weapon_nova" - "defindex" "35" - "item_class" "weapon_nova" - "item_type_name" "#CSGO_Type_Shotgun" - "item_name" "#SFUI_WPNHUD_Nova" - "item_description" "#CSGO_Item_Desc_Nova" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_nova" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_nova.d9063351d4233101d02def18aa7e901d02f9b4c1.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_hkp2000", + "defindex": 32, + "item_class": "weapon_hkp2000", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_HKP2000", + "item_description": "#CSGO_Item_Desc_HKP2000", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_hkp2000", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_hkp2000.c2221f8c2ef3df6c2fcdafd1bea9faae01f64054.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "26" - { - "name" "weapon_p250" - "defindex" "36" - "item_class" "weapon_p250" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_P250" - "item_description" "#CSGO_Item_Desc_P250" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_p250" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_p250.0bc9109121fb318a3bb18f6fa92692c7aa433205.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_mp7", + "defindex": 33, + "item_class": "weapon_mp7", + "item_type_name": "#CSGO_Type_SMG", + "item_name": "#SFUI_WPNHUD_MP7", + "item_description": "#CSGO_Item_Desc_MP7", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_mp7", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mp7.0afc09868c38a00fde50c3e4943637c714e8981e.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "27" - { - "name" "weapon_scar20" - "defindex" "38" - "item_class" "weapon_scar20" - "item_type_name" "#CSGO_Type_SniperRifle" - "item_name" "#SFUI_WPNHUD_SCAR20" - "item_description" "#CSGO_Item_Desc_SCAR20" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_scar20" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_scar20.1552c7b64dfe9e542a3b730edb80e21dcc6d243d.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_mp9", + "defindex": 34, + "item_class": "weapon_mp9", + "item_type_name": "#CSGO_Type_SMG", + "item_name": "#SFUI_WPNHUD_MP9", + "item_description": "#CSGO_Item_Desc_MP9", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_mp9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_mp9.c9103efde0845eb715cdcb67bf74bad646b1c5bc.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "28" - { - "name" "weapon_sg556" - "defindex" "39" - "item_class" "weapon_sg556" - "item_type_name" "#CSGO_Type_Rifle" - "item_name" "#SFUI_WPNHUD_SG556" - "item_description" "#CSGO_Item_Desc_SG553" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_sg556" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_sg556.74040869391ea2ab25777f3670a6015191a73e6c.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_nova", + "defindex": 35, + "item_class": "weapon_nova", + "item_type_name": "#CSGO_Type_Shotgun", + "item_name": "#SFUI_WPNHUD_Nova", + "item_description": "#CSGO_Item_Desc_Nova", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_nova", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_nova.d9063351d4233101d02def18aa7e901d02f9b4c1.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "29" - { - "name" "weapon_ssg08" - "defindex" "40" - "item_class" "weapon_ssg08" - "item_type_name" "#CSGO_Type_SniperRifle" - "item_name" "#SFUI_WPNHUD_SSG08" - "item_description" "#CSGO_Item_Desc_SSG08" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_ssg08" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_ssg08.271a856f50fd6ac1014334098b1a43d61bddb892.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_p250", + "defindex": 36, + "item_class": "weapon_p250", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_P250", + "item_description": "#CSGO_Item_Desc_P250", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_p250", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_p250.0bc9109121fb318a3bb18f6fa92692c7aa433205.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "30" - { - "name" "weapon_knife" - "defindex" "42" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_Knife" - "item_description" "#CSGO_Item_desc_Knife" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_knife" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife.a07b900d79ea768eae1a217a2839c5727f760396.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_shield", + "defindex": 37, + "item_class": "weapon_shield", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_Shield", + "item_description": "#CSGO_Item_Desc_Shield", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_shield", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_shield.b4b0ca3e42b2e043cbba823de27bc199ad650da4.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "31" - { - "name" "weapon_flashbang" - "defindex" "43" - "item_class" "weapon_flashbang" - "item_type_name" "#CSGO_Type_Grenade" - "item_name" "#SFUI_WPNHUD_FLASHBANG" - "item_description" "#CSGO_Item_Desc_Flashbang" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_flashbang" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_flashbang.bbde1307eeb99d78ef67c3a87a3a713023b63af2.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - } - "32" - { - "name" "weapon_hegrenade" - "defindex" "44" - "item_class" "weapon_hegrenade" - "item_type_name" "#CSGO_Type_Grenade" - "item_name" "#SFUI_WPNHUD_HE_Grenade" - "item_description" "#CSGO_Item_Desc_HE_Grenade" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_hegrenade" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_hegrenade.7b344756d5dbdda4fd2e583a227a670599889f59.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - } - "33" - { - "name" "weapon_smokegrenade" - "defindex" "45" - "item_class" "weapon_smokegrenade" - "item_type_name" "#CSGO_Type_Grenade" - "item_name" "#SFUI_WPNHUD_Smoke_Grenade" - "item_description" "#CSGO_Item_Desc_Smoke_Grenade" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_smokegrenade" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_smokegrenade.8746d3fec5a1041d61412295aee74c7d873ccacb.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - } - "34" - { - "name" "weapon_molotov" - "defindex" "46" - "item_class" "weapon_molotov" - "item_type_name" "#CSGO_Type_Grenade" - "item_name" "#SFUI_WPNHUD_MOLOTOV" - "item_description" "#CSGO_Item_Desc_Molotov" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_molotov" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_molotov.d700f0165e02bd9f2cb6bdb63bb76b4cac450b76.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - } - "35" - { - "name" "weapon_decoy" - "defindex" "47" - "item_class" "weapon_decoy" - "item_type_name" "#CSGO_Type_Grenade" - "item_name" "#SFUI_WPNHUD_DECOY" - "item_description" "#CSGO_Item_Desc_Decoy_Grenade" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_decoy" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_decoy.d09e626c3d81f1f262bbca6146407f279a24dd03.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - } - "36" - { - "name" "weapon_incgrenade" - "defindex" "48" - "item_class" "weapon_incgrenade" - "item_type_name" "#CSGO_Type_Grenade" - "item_name" "#SFUI_WPNHUD_IncGrenade" - "item_description" "#CSGO_Item_Desc_Incindiary_Grenade" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_incgrenade" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_incgrenade.94d31f4f1af7d2e695f403d9a55f2cd64f3459b2.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - } - "37" - { - "name" "weapon_c4" - "defindex" "49" - "item_class" "weapon_c4" - "item_type_name" "#CSGO_Type_C4" - "item_name" "#SFUI_WPNHUD_C4" - "item_description" "#CSGO_Item_Desc_C4" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_c4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_c4.98f6ef853be4a712c684562b2460dd3e3ace8f64.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "nameable" "1" - } - } - "38" - { - "name" "musickit_default" - "defindex" "58" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_MusicKit" - "item_name" "#CSGO_Type_MusicKit" - "item_description" "#CSGO_MusicKit_Desc" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "" - "image_url_large" "" - "capabilities" - { - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_scar20", + "defindex": 38, + "item_class": "weapon_scar20", + "item_type_name": "#CSGO_Type_SniperRifle", + "item_name": "#SFUI_WPNHUD_SCAR20", + "item_description": "#CSGO_Item_Desc_SCAR20", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_scar20", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_scar20.1552c7b64dfe9e542a3b730edb80e21dcc6d243d.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "39" - { - "name" "weapon_knife_t" - "defindex" "59" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_Knife_T" - "item_description" "#CSGO_Item_desc_Knife_T" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_t" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_t.6c6fbb53be0e00096168d04a9b3e7f2ab0938090.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_sg556", + "defindex": 39, + "item_class": "weapon_sg556", + "item_type_name": "#CSGO_Type_Rifle", + "item_name": "#SFUI_WPNHUD_SG556", + "item_description": "#CSGO_Item_Desc_SG553", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_sg556", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_sg556.74040869391ea2ab25777f3670a6015191a73e6c.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "40" - { - "name" "weapon_m4a1_silencer" - "defindex" "60" - "item_class" "weapon_m4a1" - "item_type_name" "#CSGO_Type_Rifle" - "item_name" "#SFUI_WPNHUD_M4_SILENCER" - "item_description" "#CSGO_Item_Desc_m4a1_silencer" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_m4a1_silencer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_m4a1_silencer.a8d2a028fa33eb117d6d7665303c3316169c33f7.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_ssg08", + "defindex": 40, + "item_class": "weapon_ssg08", + "item_type_name": "#CSGO_Type_SniperRifle", + "item_name": "#SFUI_WPNHUD_SSG08", + "item_description": "#CSGO_Item_Desc_SSG08", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_ssg08", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_ssg08.271a856f50fd6ac1014334098b1a43d61bddb892.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "41" - { - "name" "weapon_usp_silencer" - "defindex" "61" - "item_class" "weapon_hkp2000" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_USP_SILENCER" - "item_description" "#CSGO_Item_Desc_usp_silencer" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_usp_silencer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_usp_silencer.608e10862885084bb1cec55d87ba5e694bfd621d.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_knifegg", + "defindex": 41, + "item_class": "weapon_knifegg", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_Knife", + "item_description": "#CSGO_Item_desc_Knife", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_knife", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife.a07b900d79ea768eae1a217a2839c5727f760396.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "42" - { - "name" "Recipe Trade Up" - "defindex" "62" - "item_class" "tool" - "item_type_name" "#CSGO_Type_recipe" - "item_name" "#CSGO_Recipe_TradeUp" - "item_description" "#CSGO_Recipe_TradeUp_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crafting_contract" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crafting_contract.f730c658fc8994596609f1fdf497b48c6f5bd15f.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "recipe" - "usage_capabilities" - { - "usable_out_of_game" "1" - "recipe" "1" - } - } - "attributes" - { + ] + + }, + { + "name": "weapon_knife", + "defindex": 42, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_Knife", + "item_description": "#CSGO_Item_desc_Knife", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_knife", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife.a07b900d79ea768eae1a217a2839c5727f760396.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "43" - { - "name" "weapon_cz75a" - "defindex" "63" - "item_class" "weapon_p250" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_CZ75" - "item_description" "#CSGO_Item_Desc_cz75a" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_cz75a" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_cz75a.057939990f5f295fc5eaf8f758cdef21a7cfeb8a.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_flashbang", + "defindex": 43, + "item_class": "weapon_flashbang", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_FLASHBANG", + "item_description": "#CSGO_Item_Desc_Flashbang", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_flashbang", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_flashbang.bbde1307eeb99d78ef67c3a87a3a713023b63af2.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "44" - { - "name" "weapon_revolver" - "defindex" "64" - "item_class" "weapon_deagle" - "item_type_name" "#CSGO_Type_Pistol" - "item_name" "#SFUI_WPNHUD_REVOLVER" - "item_description" "#CSGO_Item_Desc_Revolver" - "proper_name" "0" - "item_quality" "0" - "image_inventory" "econ/weapons/base_weapons/weapon_revolver" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_revolver.a7c0ab2973cdc0bdb53ebbef960ecbae8842f719.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_sticker" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_hegrenade", + "defindex": 44, + "item_class": "weapon_hegrenade", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_HE_Grenade", + "item_description": "#CSGO_Item_Desc_HE_Grenade", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_hegrenade", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_hegrenade.7b344756d5dbdda4fd2e583a227a670599889f59.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "45" - { - "name" "weapon_bayonet" - "defindex" "500" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_KnifeBayonet" - "item_description" "#CSGO_Item_Desc_Knife_Bayonet" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_bayonet" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_bayonet.515de291204d6d896724d9fbb6856fcc6054a787.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_smokegrenade", + "defindex": 45, + "item_class": "weapon_smokegrenade", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_Smoke_Grenade", + "item_description": "#CSGO_Item_Desc_Smoke_Grenade", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_smokegrenade", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_smokegrenade.8746d3fec5a1041d61412295aee74c7d873ccacb.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "46" - { - "name" "weapon_knife_flip" - "defindex" "505" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_KnifeFlip" - "item_description" "#CSGO_Item_Desc_Knife_Flip" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_flip" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_flip.ebfc00735792b1e2947b30a321a07215dae8ceed.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_molotov", + "defindex": 46, + "item_class": "weapon_molotov", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_MOLOTOV", + "item_description": "#CSGO_Item_Desc_Molotov", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_molotov", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_molotov.d700f0165e02bd9f2cb6bdb63bb76b4cac450b76.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "47" - { - "name" "weapon_knife_gut" - "defindex" "506" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_KnifeGut" - "item_description" "#CSGO_Item_Desc_Knife_Gut" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_gut" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_gut.1d53007384970e8eaf28448312777683fd633a79.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_decoy", + "defindex": 47, + "item_class": "weapon_decoy", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_DECOY", + "item_description": "#CSGO_Item_Desc_Decoy_Grenade", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_decoy", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_decoy.d09e626c3d81f1f262bbca6146407f279a24dd03.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "48" - { - "name" "weapon_knife_karambit" - "defindex" "507" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_KnifeKaram" - "item_description" "#CSGO_Item_Desc_Knife_Karam" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_karambit" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_karambit.8b491b581a4b9c7b5298071425f2b29a39a2a12f.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_incgrenade", + "defindex": 48, + "item_class": "weapon_incgrenade", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_IncGrenade", + "item_description": "#CSGO_Item_Desc_Incindiary_Grenade", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_incgrenade", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_incgrenade.94d31f4f1af7d2e695f403d9a55f2cd64f3459b2.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "49" - { - "name" "weapon_knife_m9_bayonet" - "defindex" "508" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_KnifeM9" - "item_description" "#CSGO_Item_Desc_KnifeM9" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_m9_bayonet" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_m9_bayonet.1a55109e0c88792e5d56ea04dc1f676e44f9dec2.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_c4", + "defindex": 49, + "item_class": "weapon_c4", + "item_type_name": "#CSGO_Type_C4", + "item_name": "#SFUI_WPNHUD_C4", + "item_description": "#CSGO_Item_Desc_C4", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_c4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_c4.97fc73059ef814cd1323bdebf7fc3c2d0b3e9381.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "nameable": true + }, + "attributes": [ - } - } - "50" - { - "name" "weapon_knife_tactical" - "defindex" "509" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_KnifeTactical" - "item_description" "#CSGO_Item_Desc_KnifeTactical" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_tactical" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_tactical.7621bbad70410deb629d60ed98ef248dac525356.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "item_kevlar", + "defindex": 50, + "item_class": "item_kevlar", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_KEVLAR", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "51" - { - "name" "weapon_knife_falchion" - "defindex" "512" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_knife_falchion_advanced" - "item_description" "#CSGO_Item_Desc_knife_falchion_advanced" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_falchion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_falchion.adcc43a018fd4fe315dbdbc7960cfc52c5d63e3e.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "item_assaultsuit", + "defindex": 51, + "item_class": "item_assaultsuit", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_ASSAULTSUIT", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "52" - { - "name" "weapon_knife_butterfly" - "defindex" "515" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_Knife_Butterfly" - "item_description" "#CSGO_Item_Desc_Knife_Butterfly" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_butterfly" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_butterfly.794147e84a4e9426202d45145910cbb007797ce5.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "item_heavyassaultsuit", + "defindex": 52, + "item_class": "item_heavyassaultsuit", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_HEAVYASSAULTSUIT", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "53" - { - "name" "weapon_knife_push" - "defindex" "516" - "item_class" "weapon_knife" - "item_type_name" "#CSGO_Type_Knife" - "item_name" "#SFUI_WPNHUD_knife_push" - "item_description" "#CSGO_Item_Desc_knife_push" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapons/base_weapons/weapon_knife_push" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_push.13f409f23e653107c90711e5ab258b52b187ff6a.png" - "image_url_large" "" - "craft_class" "weapon" - "craft_material_type" "weapon" - "capabilities" - { - "paintable" "1" - "nameable" "1" - "can_stattrack_swap" "1" - } - "attributes" - { + ] + + }, + { + "name": "item_nvg", + "defindex": 54, + "item_class": "item_nvgs", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "54" - { - "name" "Five Year Service Coin" - "defindex" "874" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_FiveYearService" - "item_description" "#CSGO_CollectibleCoin_FiveYearService_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/5yearcoin" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/5yearcoin.8349aa6fa8af5018a3906bf5a0223537dce3e0bf.png" - "image_url_large" "" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "item_defuser", + "defindex": 55, + "item_class": "item_defuser", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_DEFUSER", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "55" - { - "name" "DreamHack SteelSeries 2013 CS:GO Champion" - "defindex" "875" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DH2013_Champion" - "item_description" "#CSGO_CollectibleCoin_DH2013_Champion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dreamhack_2013_champion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_champion.9d715ee847c450b81f99861199a686e2aee36be0.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_champion_large.a71dc37ea50a3c5a441922acc9b0596fa2b51a1d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "1" - } - } - } - "56" - { - "name" "DreamHack SteelSeries 2013 CS:GO Finalist" - "defindex" "876" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DH2013_Finalist" - "item_description" "#CSGO_CollectibleCoin_DH2013_Finalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dreamhack_2013_finalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_finalist.53f0c415765ea52f4302208fa60579e9094da109.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_finalist_large.dc4dced76778dfb4b7abb779b49dd07be8169bb8.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "1" - } - } - } - "57" - { - "name" "DreamHack SteelSeries 2013 CS:GO Semifinalist" - "defindex" "877" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DH2013_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_DH2013_SemiFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dreamhack_2013_semifinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_semifinalist.03f538b9b1b48220f77e78820946e1cbfdb5b5d6.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_semifinalist_large.9cabb8b8e44611b4b709c56f074a259ad2487eef.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "1" - } - } - } - "58" - { - "name" "DreamHack SteelSeries 2013 CS:GO Quarterfinalist" - "defindex" "878" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DH2013_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_DH2013_QuarterFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dreamhack_2013_quarterfinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_quarterfinalist.826029a11953955679bd1572a6520e56c1ba66f2.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_quarterfinalist_large.28b0d7ef982ef674148f77c5729be4d5221c0e49.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "1" - } - } - } - "59" - { - "name" "EMS One Katowice 2014 CS:GO Champion" - "defindex" "879" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2014_Champion" - "item_description" "#CSGO_CollectibleCoin_Kat2014_Champion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/katowice_2014_champion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_champion.796479b0c33ebd69fb00fada14b565036e304da3.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_champion_large.bf565f6085cb4a3fa366e3167f7b873090176623.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "3" - } - } - } - "60" - { - "name" "EMS One Katowice 2014 CS:GO Finalist" - "defindex" "880" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2014_Finalist" - "item_description" "#CSGO_CollectibleCoin_Kat2014_Finalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/katowice_2014_finalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_finalist.5aa55b24f3d385735476e27cbff25370bac476c0.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_finalist_large.a96fab9b692e4e55cb310682df0deb8dba8f3a89.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "3" - } - } - } - "61" - { - "name" "EMS One Katowice 2014 CS:GO Semifinalist" - "defindex" "881" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2014_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2014_SemiFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/katowice_2014_semifinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_semifinalist.3edec56e82c658ea8b94aed79b44401370775e56.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_semifinalist_large.85046d0d4b5748572859cb638c8e1f502825955d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "3" - } - } - } - "62" - { - "name" "EMS One Katowice 2014 CS:GO Quarterfinalist" - "defindex" "882" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/katowice_2014_quarterfinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_quarterfinalist.1ad440c5b1334996c339dbfe631037a86c847604.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_quarterfinalist_large.54910e582990bd76a5058312f6ae85c3a5dec30c.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "3" - } - } - } - "63" - { - "name" "ESL One Cologne 2014 CS:GO Champion" - "defindex" "883" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_Champion" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_Champion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cologne_trophy_champion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_champion.004bb719a1b12d25d0d5b17186b9b7039bd6d1c0.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_champion_large.321d0168210c645327273a0a108670a2d8f3b71d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "64" - { - "name" "ESL One Cologne 2014 CS:GO Finalist" - "defindex" "884" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_Finalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_Finalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cologne_trophy_finalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_finalist.05008add021cea21c8b8940176d78f912f62b9e6.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_finalist_large.bc5075600a1b9b6d36e3f2fc4ddea54a0154f8b6.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "65" - { - "name" "ESL One Cologne 2014 CS:GO Semifinalist" - "defindex" "885" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cologne_trophy_semifinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_semifinalist.9cadd6a2d5646653959542f98563761512370179.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_semifinalist_large.424db65bc9a21a4e837cf27d26a2f5bb55ab821e.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "66" - { - "name" "ESL One Cologne 2014 CS:GO Quarterfinalist" - "defindex" "886" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cologne_trophy_quarterfinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_quarterfinalist.c56b9a83a93155abc772b89e9d14773cf162195f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_quarterfinalist_large.fc4034c97f63afe33acc1f677535069949a7fa4d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "67" - { - "name" "ESL One Cologne 2014 Pick 'Em Challenge Bronze" - "defindex" "887" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cologne_prediction_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_bronze.29df385363fad77e59f0279fb0b0fea274539ec5.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_bronze_large.4a4cb569e6d40eac4992917e9220967953b22e06.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "68" - { - "name" "ESL One Cologne 2014 Pick 'Em Challenge Silver" - "defindex" "888" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cologne_prediction_silver" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_silver.2e372eb394e4b4a50d80603a3478263c67701735.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_silver_large.7745d453d377b1017d3f6a0818c15a854a9b5967.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "69" - { - "name" "ESL One Cologne 2014 Pick 'Em Challenge Gold" - "defindex" "889" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2014_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Cologne2014_PickEmGold_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cologne_prediction_gold" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_gold.0d12edbfa6a8ea75b14a4c55276ec482e2283ffc.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_gold_large.c5c930d92b24a36d65d4d68e474126fcce58e571.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "70" - { - "name" "DreamHack Winter 2014 CS:GO Champion" - "defindex" "890" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DHW2014_Champion" - "item_description" "#CSGO_CollectibleCoin_DHW2014_Champion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dhw_2014_champion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_champion.1e06beca89c812e4162c94cba3519c42eac4db33.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_champion_large.00b52cf3cab0182fcc466cfad2f8c560812d8a5a.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "71" - { - "name" "DreamHack Winter 2014 CS:GO Finalist" - "defindex" "891" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DHW2014_Finalist" - "item_description" "#CSGO_CollectibleCoin_DHW2014_Finalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dhw_2014_finalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_finalist.87a5068df8f33af8f5a8633326cb15ecec6dec73.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_finalist_large.5dd601bef4b79c3e1623898773cb22b12e1ff4cb.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "72" - { - "name" "DreamHack Winter 2014 CS:GO Semifinalist" - "defindex" "892" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DHW2014_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_DHW2014_SemiFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dhw_2014_semifinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_semifinalist.989c220ae4fa6c37b74793c43067538103770e6e.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_semifinalist_large.be9e9fd274a887c4a742d42aa01bfdb97b53c969.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "73" - { - "name" "DreamHack Winter 2014 CS:GO Quarterfinalist" - "defindex" "893" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dhw_2014_quarterfinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_quarterfinalist.fba4a759e6d2d65057e72463045c042120d48104.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_quarterfinalist_large.431337841f75ff3c3dd1ef980a571d204433d50d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "74" - { - "name" "DreamHack Winter 2014 Pick 'Em Challenge Bronze" - "defindex" "894" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmBronze_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dhw14_prediction_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_bronze.fc8d7e76bf8d0816bf7e0781d4d02a1c59d71040.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_bronze_large.75a3748d4a79bcbf7174e980f212670797655edd.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "75" - { - "name" "DreamHack Winter 2014 Pick 'Em Challenge Silver" - "defindex" "895" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmSilver_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dhw14_prediction_silver" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_silver.c0d45cf1aba660da0d5049d737399493439c80f4.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_silver_large.844b1c6fcc8438fb9bdadd97385912e660c58d11.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "76" - { - "name" "DreamHack Winter 2014 Pick 'Em Challenge Gold" - "defindex" "896" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_DHW2014_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_DHW2014_PickEmGold_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/dhw14_prediction_gold" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_gold.9a57885b7a0c677409735e749ce1c0a3ab773209.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_gold_large.161b3da47a840446eba78537ecbbf60563d01852.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "77" - { - "name" "ESL One Katowice 2015 CS:GO Champion" - "defindex" "897" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2015_Champion" - "item_description" "#CSGO_CollectibleCoin_Kat2015_Champion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/kat_2015_champion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_champion.a50771b582be575310cfe89844e8678ebbf328db.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_champion_large.0dd8522828b82ebf52efc6940ac7613d6b3428c1.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "78" - { - "name" "ESL One Katowice 2015 CS:GO Finalist" - "defindex" "898" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2015_Finalist" - "item_description" "#CSGO_CollectibleCoin_Kat2015_Finalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/kat_2015_finalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_finalist.444ed0ebe03bd91d09bb03fbfa5994cc15ac42d5.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_finalist_large.a4210eda1b48bc84b7fc496a8ebe3bab6dde553e.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "79" - { - "name" "ESL One Katowice 2015 CS:GO Semifinalist" - "defindex" "899" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2015_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2015_SemiFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/kat_2015_semifinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_semifinalist.d490506f29340fdda2caa79033221ce41b4a31ec.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_semifinalist_large.5d4acb38d67d95c2e395d58e91952572fabad669.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "80" - { - "name" "ESL One Katowice 2015 CS:GO Quarterfinalist" - "defindex" "900" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/kat_2015_quarterfinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_quarterfinalist.b6d3b413a5f637da87eab8750783568a49dbe5df.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_quarterfinalist_large.707a47abca3a99776574ce056643ee339b41e25d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "81" - { - "name" "ESL One Katowice 2015 Pick 'Em Challenge Bronze" - "defindex" "901" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmBronze_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/kat_2015_prediction_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_bronze.b470697e211356947032b54dbc3635acabcda661.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_bronze_large.fd59fc01cfaf3df4539a3be9d4fdd11285c7d3d8.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "82" - { - "name" "ESL One Katowice 2015 Pick 'Em Challenge Silver" - "defindex" "902" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmSilver_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/kat_2015_prediction_silver" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_silver.4f5bde707810cdf2dcc46f91772fe6bef3ba36f6.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_silver_large.b0c4e189449ae5ef22dabd95ef70cfc75593a38a.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "83" - { - "name" "ESL One Katowice 2015 Pick 'Em Challenge Gold" - "defindex" "903" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Kat2015_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Kat2015_PickEmGold_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/kat_2015_prediction_gold" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_gold.669b3692ce8a2bddc9d3a7a1e19c521dcfda6ecd.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_gold_large.b808a46457ce16622f8a8560729e7072ba1b1be3.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "84" - { - "name" "ESL One Cologne 2015 CS:GO Champion" - "defindex" "904" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_Champion" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_Champion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/col_2015_champion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_champion.9a53984e7eb98fef797d16a9703ceadd7b140de8.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_champion_large.8bc88fbd2f73f61c9a0afbb5b6221542793ada5d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "85" - { - "name" "ESL One Cologne 2015 CS:GO Finalist" - "defindex" "905" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_Finalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_Finalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/col_2015_finalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_finalist.ad27198ff449ceabafc629e2eb5f200a7e2497da.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_finalist_large.507c4440ad457da4802ebc4eccd01b854f3781ee.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "86" - { - "name" "ESL One Cologne 2015 CS:GO Semifinalist" - "defindex" "906" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/col_2015_semifinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_semifinalist.1827467b8c09d69e697e9869b61d743b33556bc1.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_semifinalist_large.5e434d8956fa32b7d597aad5d28bab52cecd8dfe.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "87" - { - "name" "ESL One Cologne 2015 CS:GO Quarterfinalist" - "defindex" "907" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/col_2015_quarterfinalist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_quarterfinalist.43289576aa03fdad7e9d881d18ad48360f045f3b.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_quarterfinalist_large.e97caa5038e0deacc8604acb1632e86115b6dcd2.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "88" - { - "name" "ESL One Cologne 2015 Pick 'Em Challenge Bronze" - "defindex" "908" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/col_2015_prediction_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_bronze.81a926141f1ac7ab84a52a1ff25bf0700a4dee25.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_bronze_large.165a82bab538997ee6a50efee9d112190b4fe323.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "89" - { - "name" "ESL One Cologne 2015 Pick 'Em Challenge Silver" - "defindex" "909" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/col_2015_prediction_silver" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_silver.c4710e514a82f6d3e43469a9bf332321462e3833.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_silver_large.59486d939b7ddc2ebef4f12d068db0040f618d92.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "90" - { - "name" "ESL One Cologne 2015 Pick 'Em Challenge Gold" - "defindex" "910" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cologne2015_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Cologne2015_PickEmGold_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/col_2015_prediction_gold" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_gold.0d7e0fca7006f233357adf793d3ee9adeabc85e9.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_gold_large.da514b1dfcc2a2f7c4ef29f96f6d9359123ba89c.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "91" - { - "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Bronze" - "defindex" "911" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cluj_2015_prediction_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_bronze.27eafa166751069a4dca5d054926738fcff0dbce.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_bronze_large.9c401113e666aa367763f42f28d5d2c116163452.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "92" - { - "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Silver" - "defindex" "912" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cluj_2015_prediction_silver" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_silver.360c71f1bc40ad0771a7dc08bb14fd9c8470ec06.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_silver_large.c284a9187aa67bd326a397e6df0663c7c3989771.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "93" - { - "name" "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Gold" - "defindex" "913" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_PickEmGold" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_PickEmGold_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cluj_2015_prediction_gold" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_gold.935300cd2954dcdb3cffa7b95992a91937561cb1.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_gold_large.77c0e08cf8b46dbb18c69ce1d33952fdcc97de3a.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "94" - { - "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Bronze" - "defindex" "914" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cluj_2015_fantasy_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_bronze.1c9370516683f558afe4b197216f502ac24e03ab.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_bronze_large.f6a6d11595950b7960c713baefe10b368d2ed940.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "95" - { - "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Silver" - "defindex" "915" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasySilver" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasySilver_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cluj_2015_fantasy_silver" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_silver.2ecaf3df2c431bc21d8b8d03436d9289f7ecb170.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_silver_large.88c70f4cb9ad5982e92d45159a461709e7d5b234.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "96" - { - "name" "DreamHack Cluj-Napoca 2015 Fantasy Team Gold" - "defindex" "916" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_FantasyGold" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_FantasyGold_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/cluj_2015_fantasy_gold" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_gold.302969eed939bc0bc6639e104a11835b29c62d6d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_gold_large.d06f6d8fab94f84d3a3288d3472664a6a3ad48fa.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "97" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Champion" - "defindex" "917" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_Champion" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_Champion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/trophy_majors" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.c9a3fae5bb67ed2328a4c4932d96924e4e51cd8d.png" - "image_url_large" "" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "98" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Finalist" - "defindex" "918" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_Finalist" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_Finalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/trophy_majors_finalists" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.c80cc1ed5939dc53fbc460f082519a45c9f47ac9.png" - "image_url_large" "" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "99" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Semifinalist" - "defindex" "919" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_SemiFinalist" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_SemiFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/trophy_majors_finalists" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.c80cc1ed5939dc53fbc460f082519a45c9f47ac9.png" - "image_url_large" "" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "100" - { - "name" "DreamHack Cluj-Napoca 2015 CS:GO Quarterfinalist" - "defindex" "920" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_CollectibleCoin_Cluj2015_QuarterFinalist" - "item_description" "#CSGO_CollectibleCoin_Cluj2015_QuarterFinalist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/trophy_majors_finalists" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.c80cc1ed5939dc53fbc460f082519a45c9f47ac9.png" - "image_url_large" "" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "101" - { - "name" "Community Season One Spring 2013" - "defindex" "1000" - "item_class" "tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonOneSpring2013" - "item_description" "#CSGO_Ticket_CommunitySeasonOneSpring2013_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/community_support_pass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass.b17a35da019f3256833ea4089c7df6c2ece80274.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_large.d1cfbac8be9e92127893ff2054647b73c76c35b3.png" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - "usable_out_of_game" "1" - } - "tool" - { - "type" "season_pass" - "use_string" "#ConsumeItem" - } - "attributes" - { + ] + + }, + { + "name": "item_cutters", + "defindex": 56, + "item_class": "item_defuser", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_CUTTERS", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "102" - { - "name" "Community Season One Spring 2013 Coin 1" - "defindex" "1001" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/community_support_pass_coin1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin1.c52c7928635e86d8f855ffaf97dff79a1739cdf7.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin1_large.bff9cd331dd659a64080d98e7705b76c024db56b.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - } - } - "103" - { - "name" "Community Season One Spring 2013 Coin 2" - "defindex" "1002" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/community_support_pass_coin2" - "min_ilevel" "2" - "max_ilevel" "2" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin2.73f8f284be9bef49104ed851f9db238feffd1492.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin2_large.bc786108abf26dbe30a13fc81d15719f495b0560.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - } - } - "104" - { - "name" "Community Season One Spring 2013 Coin 3" - "defindex" "1003" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/community_support_pass_coin3" - "min_ilevel" "3" - "max_ilevel" "3" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin3.b4d9b8e8cb1e591dcbc5cd4be97271990e501050.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin3_large.c3afe0cfbd929f85fca1a63ec1815e8336dcfe7d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - } - } - "105" - { - "name" "Map Token Museum" - "defindex" "1004" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenMuseum" - "item_description" "#CSGO_Collectible_MapTokenMuseum_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_museum" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_museum.19b18ee64caec03d8b6e24989b3cf4c456c78cc3.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_museum_large.7e979cc2871851550a473bd37a46d7b6c200b7ad.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_healthshot", + "defindex": 57, + "item_class": "weapon_healthshot", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_Healthshot", + "item_description": "#SFUI_WPNHUD_Healthshot", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_healthshot", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_healthshot.0f12f3adaf050df14c9f261714852d8e04956639.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "106" - { - "name" "Map Token Downtown" - "defindex" "1005" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenDowntown" - "item_description" "#CSGO_Collectible_MapTokenDowntown_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_downtown" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_downtown.af8f4d7a6335ddcc4ecf1ff362e9932e9e348a66.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_downtown_large.50a8ae9bd92cce414e04a250292111db671fa00d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "musickit_default", + "defindex": 58, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_MusicKit", + "item_name": "#CSGO_Type_MusicKit", + "item_description": "#CSGO_MusicKit_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "107" - { - "name" "Map Token Thunder" - "defindex" "1006" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenThunder" - "item_description" "#CSGO_Collectible_MapTokenThunder_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_thunder" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_thunder.df4841912515e3ea5cdb5c5aa3574a713e1cdc1f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_thunder_large.9a2001c80a3fbf6d46f153c0563047002bd1f2fd.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_t", + "defindex": 59, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_Knife_T", + "item_description": "#CSGO_Item_desc_Knife_T", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_t", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_t.3d6c8a849655a3ff51633c7dd575646ed9ac020d.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "108" - { - "name" "Map Token Favela" - "defindex" "1007" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenFavela" - "item_description" "#CSGO_Collectible_MapTokenFavela_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_favela" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_favela.87c12ee09f70a181e8a1af3df1e0ff6d8febfdbe.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_favela_large.338a662380c3ecfbb1382a395a3bb08a383225ae.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_m4a1_silencer", + "defindex": 60, + "item_class": "weapon_m4a1", + "item_type_name": "#CSGO_Type_Rifle", + "item_name": "#SFUI_WPNHUD_M4_SILENCER", + "item_description": "#CSGO_Item_Desc_m4a1_silencer", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_m4a1_silencer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_m4a1_silencer.a8d2a028fa33eb117d6d7665303c3316169c33f7.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "109" - { - "name" "Map Token Motel" - "defindex" "1008" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenMotel" - "item_description" "#CSGO_Collectible_MapTokenMotel_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_motel" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_motel.6ddc95f4d4246e3538ea66ab1afbebdef51db86b.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_motel_large.0e9f82978876c2c69d3164f5e7db1aeaac85dd04.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_usp_silencer", + "defindex": 61, + "item_class": "weapon_hkp2000", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_USP_SILENCER", + "item_description": "#CSGO_Item_Desc_usp_silencer", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_usp_silencer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_usp_silencer.608e10862885084bb1cec55d87ba5e694bfd621d.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "110" - { - "name" "Map Token Seaside" - "defindex" "1009" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenSeaside" - "item_description" "#CSGO_Collectible_MapTokenSeaside_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_seaside" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_seaside.6e33fcee9c611dad2b119c16cfa9cfd52854c4e5.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_seaside_large.43eca57040d443e997d3f7260c20f2613a70c6a6.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "Recipe Trade Up", + "defindex": 62, + "item_class": "tool", + "item_type_name": "#CSGO_Type_recipe", + "item_name": "#CSGO_Recipe_TradeUp", + "item_description": "#CSGO_Recipe_TradeUp_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crafting_contract", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crafting_contract.f730c658fc8994596609f1fdf497b48c6f5bd15f.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "recipe", + "usage_capabilities": { + "usable_out_of_game": true, + "recipe": true + } + }, + "attributes": [ - } - } - "111" - { - "name" "Map Token Library" - "defindex" "1010" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenLibrary" - "item_description" "#CSGO_Collectible_MapTokenLibrary_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_library" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_library.c27bb561fe98926e3f879389daf62aa84967fbc8.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_library_large.a1158f9a819a7c3a3466670c95cfacd3dc92ce61.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_cz75a", + "defindex": 63, + "item_class": "weapon_p250", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_CZ75", + "item_description": "#CSGO_Item_Desc_cz75a", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_cz75a", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_cz75a.057939990f5f295fc5eaf8f758cdef21a7cfeb8a.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "112" - { - "name" "Community Season Two Autumn 2013" - "defindex" "1012" - "item_class" "tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonTwoAutumn2013" - "item_description" "#CSGO_Ticket_CommunitySeasonTwoAutumn2013_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_bravo_pass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_pass.d8cb196619345c8b5883f515bdb46c5b3de4e995.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - "usable_out_of_game" "1" - } - "tool" - { - "type" "season_pass" - "use_string" "#ConsumeItem" - } - "attributes" - { + ] + + }, + { + "name": "weapon_revolver", + "defindex": 64, + "item_class": "weapon_deagle", + "item_type_name": "#CSGO_Type_Pistol", + "item_name": "#SFUI_WPNHUD_REVOLVER", + "item_description": "#CSGO_Item_Desc_Revolver", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_revolver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_revolver.a7c0ab2973cdc0bdb53ebbef960ecbae8842f719.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_sticker": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "113" - { - "name" "Community Season Two Autumn 2013 Coin 1" - "defindex" "1013" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_bravo_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_bronze.fbc76a430e41a45125959f7445b1efa270ab46c2.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_bronze_large.2542494a3a070356b8ba5f11dc0e38c95e1e624f.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "match wins" - "class" "match_wins" - "value" "0" - } - "2" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "3" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "4" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "5" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "6" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "7" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "8" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "9" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - } - } - "114" - { - "name" "Community Season Two Autumn 2013 Coin 2" - "defindex" "1014" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_bravo_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_silver.b2c3e4f7335165fef148847c8fd86cf1bdc1f573.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_silver_large.3f176a6b2c91c8b91747afc432c755c0b7e6fca7.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "match wins" - "class" "match_wins" - "value" "0" - } - "2" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "3" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "4" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "5" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "6" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "7" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "8" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "9" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - } - } - "115" - { - "name" "Community Season Two Autumn 2013 Coin 3" - "defindex" "1015" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_bravo_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_gold.365a7644f1f889a7a710805585b26fe9766248a1.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_gold_large.d6be46887a064db399a7155c3e88ae321e2d3eba.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "match wins" - "class" "match_wins" - "value" "0" - } - "2" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "3" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "4" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "5" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "6" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "7" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "8" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "9" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - } - } - "116" - { - "name" "Map Token Agency" - "defindex" "1016" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenAgency" - "item_description" "#CSGO_Collectible_MapTokenAgency_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_agency" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_agency.0d6b5e9d05ffb0f8e450eb82d7a78d8a47c1064f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_agency_large.1759793368db27d5c0230c4b3b185aa6d2f4a2b6.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_tagrenade", + "defindex": 68, + "item_class": "weapon_tagrenade", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_TAGrenade", + "item_description": "#SFUI_WPNHUD_TAGrenade", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_tagrenade", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_tagrenade.cedfbe74bfa1942c338bfadd0ef6695382005edc.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "117" - { - "name" "Map Token Ali" - "defindex" "1017" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenAli" - "item_description" "#CSGO_Collectible_MapTokenAli_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_ali" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ali.b851b1a64874bbc20bedcd6bd13746f2c61a0d2f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ali_large.7fc60a735cc50aad8744f15ee8e5d262deb4206a.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_fists", + "defindex": 69, + "item_class": "weapon_fists", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_Fists", + "item_description": "#SFUI_WPNHUD_Fists", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_fists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_fists.9936f59e2a2fcafd2e3c5e487689650a99e24958.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "118" - { - "name" "Map Token Cache" - "defindex" "1018" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenCache" - "item_description" "#CSGO_Collectible_MapTokenCache_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_cache" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_cache.11640014eb64dec8f5ee580add610fb195f8ac72.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_cache_large.96803d4f8de5436ec54679d83a90032bee4cf481.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_breachcharge", + "defindex": 70, + "item_class": "weapon_breachcharge", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_BreachCharge", + "item_description": "#SFUI_WPNHUD_BreachCharge", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_breachcharge", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_breachcharge.36b5490a7bd604860cb5e9a84e0a1a468f091cb8.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "119" - { - "name" "Map Token Chinatown" - "defindex" "1019" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenChinatown" - "item_description" "#CSGO_Collectible_MapTokenChinatown_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_chinatown" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chinatown.f5f7a7f0834016df6ef5a1cc603e746fbfecfa20.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chinatown_large.9a03b6f7a60fed7e2bc7277cbf5930a07d2e6ffa.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_tablet", + "defindex": 72, + "item_class": "weapon_tablet", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_Tablet", + "item_description": "#SFUI_WPNHUD_Tablet", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_tablet", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_tablet.60569e19bff7aa888441a56465d9c6745ef1e7ef.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "120" - { - "name" "Map Token Gwalior" - "defindex" "1020" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenGwalior" - "item_description" "#CSGO_Collectible_MapTokenGwalior_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_gwalior" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_gwalior.c595fe8abca95bd1866a91d9f339353f1f0eb490.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_gwalior_large.cc5d1f9ef72272f366c2ea487b423c9fa8f87582.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_melee", + "defindex": 74, + "item_class": "weapon_melee", + "item_type_name": "#CSGO_Type_Melee", + "item_name": "#SFUI_WPNHUD_Knife", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "121" - { - "name" "Map Token Ruins" - "defindex" "1021" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenRuins" - "item_description" "#CSGO_Collectible_MapTokenRuins_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_ruins" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ruins.56bd126e6e4e3ff15fd12fab6df459339adcb774.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ruins_large.3b619b3214cec42345e3fc86775eaf9590968307.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_axe", + "defindex": 75, + "item_class": "weapon_melee", + "item_type_name": "#CSGO_Type_Melee", + "item_name": "#SFUI_WPNHUD_Axe", + "item_description": "#CSGO_Item_desc_Axe", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_axe", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_axe.c248eaf74dff58fd34f6db4c82a0fde25c11602f.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "122" - { - "name" "Map Token Siege" - "defindex" "1022" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenSiege" - "item_description" "#CSGO_Collectible_MapTokenSiege_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_siege" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_siege.dd1bd3688b5caa4ec580cc6a2080e135b3ee8dd8.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_siege_large.d5febba68d951a56955e6b2a4ba785077abb2dd5.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_hammer", + "defindex": 76, + "item_class": "weapon_melee", + "item_type_name": "#CSGO_Type_Melee", + "item_name": "#SFUI_WPNHUD_Hammer", + "item_description": "#CSGO_Item_desc_Hammer", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_hammer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_hammer.dfe56581ab0da7ee0620df42cc86d2bc4f0b6454.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "123" - { - "name" "Community Season Three Spring 2014" - "defindex" "1023" - "item_class" "tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonThreeSpring2014" - "item_description" "#CSGO_Ticket_CommunitySeasonThreeSpring2014_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_phoenix_pass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_pass.ef3b4180e52d2d4a4cbb9fbe2df440b1ee8f0dca.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - "usable_out_of_game" "1" - } - "tool" - { - "type" "season_pass" - "use_string" "#ConsumeItem" - } - "attributes" - { + ] + + }, + { + "name": "weapon_spanner", + "defindex": 78, + "item_class": "weapon_melee", + "item_type_name": "#CSGO_Type_Melee", + "item_name": "#SFUI_WPNHUD_Spanner", + "item_description": "#CSGO_Item_desc_Spanner", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_spanner", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_spanner.5ee5de5470d1f74c8a63ed151d18027024db2620.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "124" - { - "name" "Community Season Three Spring 2014 Coin 1" - "defindex" "1024" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_phoenix_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_bronze.b95d670bb428fa933b93e903feeb338728e1cd8d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_bronze_large.a370356824b271e2691ec6495e91e66e89567ceb.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "match wins" - "class" "match_wins" - "value" "0" - } - "2" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "3" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "4" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "5" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "6" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "7" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "8" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "9" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - } - } - "125" - { - "name" "Community Season Three Spring 2014 Coin 2" - "defindex" "1025" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_phoenix_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_silver.b5c4fb2070286c6c3682345dcdbf17dadd16e1af.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_silver_large.0340dbf0af85f9f4c4bf36b3c605c273d9f80a26.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "match wins" - "class" "match_wins" - "value" "0" - } - "2" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "3" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "4" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "5" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "6" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "7" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "8" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "9" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - } - } - "126" - { - "name" "Community Season Three Spring 2014 Coin 3" - "defindex" "1026" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_phoenix_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_gold.44da84b8da10c864f7eea9b2d0f9c780184ec30e.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_gold_large.7d5441fcfab0ce9df406b6e36a16ef1d5b884cf0.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "match wins" - "class" "match_wins" - "value" "0" - } - "2" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "3" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "4" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "5" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "6" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "7" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "8" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "9" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - } - } - "127" - { - "name" "Community Season Four Summer 2014" - "defindex" "1027" - "item_class" "tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonFourSummer2014" - "item_description" "#CSGO_Ticket_CommunitySeasonFourSummer2014_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_breakout_pass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_pass.2c84f278eec59611affd866a64e255d6f64b8a44.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - "usable_out_of_game" "1" - } - "tool" - { - "type" "season_pass" - "use_string" "#ConsumeItem" - } - "attributes" - { + ] + + }, + { + "name": "weapon_knife_ghost", + "defindex": 80, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_Knife_Ghost", + "item_description": "#CSGO_Item_desc_Knife_Ghost", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "128" - { - "name" "Community Season Four Summer 2014 Coin 1" - "defindex" "1028" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_breakout_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_bronze.785329d1348a6291c6235bd21920782945484c35.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_bronze_large.e829dba96adb71e711ed2d8f4628a67f31cfe56d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - } - } - "129" - { - "name" "Community Season Four Summer 2014 Coin 2" - "defindex" "1029" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_breakout_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_silver.097fa8ff795b71ca6e57fcb79129412e81760933.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_silver_large.8e1574f62b67d6994ca2a2be962b274d72c24e72.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - } - } - "130" - { - "name" "Community Season Four Summer 2014 Coin 3" - "defindex" "1030" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_breakout_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_gold.d932cc657e797e3e0e0ba0ac4d5932aaf54d4e48.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_gold_large.3344fe7583c6b875072c240d98857c0aff2c3ea7.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - } - } - "131" - { - "name" "Map Token Castle" - "defindex" "1031" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenCastle" - "item_description" "#CSGO_Collectible_MapTokenCastle_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_castle" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_castle.c6d0534f38e0cd500d148e845447a0619a4e5116.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_castle_large.2d8fc69105f2cf565fe0d6bdef69c258669f0592.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_firebomb", + "defindex": 81, + "item_class": "weapon_molotov", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_FIREBOMB", + "item_description": "#CSGO_Item_Desc_Firebomb", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_molotov", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_molotov.d700f0165e02bd9f2cb6bdb63bb76b4cac450b76.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "132" - { - "name" "Map Token Black Gold" - "defindex" "1032" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenBlackgold" - "item_description" "#CSGO_Collectible_MapTokenBlackgold_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_blackgold" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_blackgold.4c8202949af55ffd2a2bb778d169d156d28c141b.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_blackgold_large.439811071418e7d3d51564ba305e262dcb86ed76.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_diversion", + "defindex": 82, + "item_class": "weapon_decoy", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_Diversion", + "item_description": "#CSGO_Item_Desc_Diversion", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_decoy", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_decoy.d09e626c3d81f1f262bbca6146407f279a24dd03.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "133" - { - "name" "Map Token Rush" - "defindex" "1033" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenRush" - "item_description" "#CSGO_Collectible_MapTokenRush_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_rush" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rush.9752e9d51926e5138af27934fb425952a3222d86.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rush_large.835ed1760d3a5f81f5e4e531a905f44192e306f6.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_frag_grenade", + "defindex": 83, + "item_class": "weapon_hegrenade", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_frag_Grenade", + "item_description": "#CSGO_Item_Desc_Frag_Grenade", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_hegrenade", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_hegrenade.7b344756d5dbdda4fd2e583a227a670599889f59.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "134" - { - "name" "Map Token Mist" - "defindex" "1034" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenMist" - "item_description" "#CSGO_Collectible_MapTokenMist_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_mist" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mist.71e33321e68064ac2d40c4e76da562c85621c281.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mist_large.d3bb68c34cb66c88de90e6c944c9c6e16beeaac7.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_snowball", + "defindex": 84, + "item_class": "weapon_snowball", + "item_type_name": "#CSGO_Type_Grenade", + "item_name": "#SFUI_WPNHUD_Snowball", + "item_description": "#SFUI_WPNHUD_Snowball", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_snowball", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_snowball.385e005991bd93fe186776bc037d1a85d6e66a83.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "135" - { - "name" "Map Token Insertion" - "defindex" "1035" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenInsertion" - "item_description" "#CSGO_Collectible_MapTokenInsertion_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_insertion" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_insertion.fb48c5e43d10ccdaa98dc2439defe3e9dae50017.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_insertion_large.a5344a201a9536d376807899c84c5a0ff36bd2ad.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_bumpmine", + "defindex": 85, + "item_class": "weapon_bumpmine", + "item_type_name": "#CSGO_Type_Equipment", + "item_name": "#SFUI_WPNHUD_BUMPMINE", + "item_description": "#SFUI_WPNHUD_BUMPMINE", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/weapon_bumpmine", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_bumpmine.bab1cf1a71ec4a291268145b387d968adbb5c9e7.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "attributes": [ - } - } - "136" - { - "name" "Map Token Overgrown" - "defindex" "1036" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenOvergrown" - "item_description" "#CSGO_Collectible_MapTokenOvergrown_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_overgrown" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_overgrown.fe6527c10619dc1b126a7492bce549eec3494c8b.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_overgrown_large.78dd43f0b9eac0fc3ba566ea53981edc26d81c33.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_bayonet", + "defindex": 500, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_KnifeBayonet", + "item_description": "#CSGO_Item_Desc_Knife_Bayonet", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_bayonet", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_bayonet.515de291204d6d896724d9fbb6856fcc6054a787.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "137" - { - "name" "Map Token Marquis" - "defindex" "1037" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenMarquis" - "item_description" "#CSGO_Collectible_MapTokenMarquis_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_marquis" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_marquis.850391449c5ca0a4a57446ff13cddf3da3f1ae4b.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_marquis_large.0079c2a285f2823dd8fe4290cef8a4df15664bc2.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_css", + "defindex": 503, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_KnifeCSS", + "item_description": "#CSGO_Item_Desc_Knife_CSS", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_css", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_css.0b33071c28c02e6f19e363dc9a838566c6557389.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "138" - { - "name" "Map Token Workout" - "defindex" "1038" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenWorkout" - "item_description" "#CSGO_Collectible_MapTokenWorkout_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_workout" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_workout.1baad38595395e94cc427a0870388137798f6ca8.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_workout_large.69b880650f39f6283b00cb8c978d91dfb21b09d9.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_flip", + "defindex": 505, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_KnifeFlip", + "item_description": "#CSGO_Item_Desc_Knife_Flip", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_flip.ebfc00735792b1e2947b30a321a07215dae8ceed.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "139" - { - "name" "Map Token Backalley" - "defindex" "1039" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenBackalley" - "item_description" "#CSGO_Collectible_MapTokenBackalley_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_backalley" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_backalley.9315d58c9d5c0814c4c06f40ce8af564d0e453c0.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_backalley_large.05438fa39d1bbf8b4a537751e800d7f2ca79eb9a.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_gut", + "defindex": 506, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_KnifeGut", + "item_description": "#CSGO_Item_Desc_Knife_Gut", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_gut", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_gut.1d53007384970e8eaf28448312777683fd633a79.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "140" - { - "name" "Map Token Season" - "defindex" "1040" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenSeason" - "item_description" "#CSGO_Collectible_MapTokenSeason_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_season" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_season.7ce3f52deca958a608173bd002711b6b445fb5a9.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_season_large.d73c4bb72f17c4d7b701757fa4da779c32c16336.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_karambit", + "defindex": 507, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_KnifeKaram", + "item_description": "#CSGO_Item_Desc_Knife_Karam", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_karambit", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_karambit.8b491b581a4b9c7b5298071425f2b29a39a2a12f.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "141" - { - "name" "Map Token Bazaar" - "defindex" "1041" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenBazaar" - "item_description" "#CSGO_Collectible_MapTokenBazaar_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_bazaar" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_bazaar.16090a83570edca5686f66bb8842ff8ca70933a3.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_bazaar_large.926018c940e122b66fa4eb6942e3dba6930d402d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_m9_bayonet", + "defindex": 508, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_KnifeM9", + "item_description": "#CSGO_Item_Desc_KnifeM9", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_m9_bayonet", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_m9_bayonet.1a55109e0c88792e5d56ea04dc1f676e44f9dec2.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "142" - { - "name" "Map Token Facade" - "defindex" "1042" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenFacade" - "item_description" "#CSGO_Collectible_MapTokenFacade_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_facade" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_facade.25d89f10111708ec822d65d1dd6588ac1c0428c2.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_facade_large.d441abb9cef81a359cf993af3642f58adda68419.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_tactical", + "defindex": 509, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_KnifeTactical", + "item_description": "#CSGO_Item_Desc_KnifeTactical", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_tactical", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_tactical.7621bbad70410deb629d60ed98ef248dac525356.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "143" - { - "name" "Map Token Log" - "defindex" "1043" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenLog" - "item_description" "#CSGO_Collectible_MapTokenLog_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_log" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_log.56ea9c6915676d5cc06861cbd38a458b0e01dfe6.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_log_large.18aa8f6714f15fbcd05892b1ae2082893ac71dd0.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_falchion", + "defindex": 512, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_falchion_advanced", + "item_description": "#CSGO_Item_Desc_knife_falchion_advanced", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_falchion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_falchion.adcc43a018fd4fe315dbdbc7960cfc52c5d63e3e.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "144" - { - "name" "Map Token Rails" - "defindex" "1044" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenRails" - "item_description" "#CSGO_Collectible_MapTokenRails_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_rails" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rails.fbacbd83d92dbb94bc2f96acc8bf7430b9ebb471.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rails_large.fb22a52ddc8296012f447d9a852b4467bf2e82a8.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_survival_bowie", + "defindex": 514, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_survival_bowie", + "item_description": "#CSGO_Item_Desc_knife_survival_bowie", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_survival_bowie", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_survival_bowie.01addb54d400815308b1d312290594a3177dd55f.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "145" - { - "name" "Map Token Resort" - "defindex" "1045" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenResort" - "item_description" "#CSGO_Collectible_MapTokenResort_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_resort" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_resort.6827ca91e80143feb27bd3c744adc313c592cb87.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_resort_large.94d6b94d99d55198741677b7f7ae8386b078416f.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_butterfly", + "defindex": 515, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_Knife_Butterfly", + "item_description": "#CSGO_Item_Desc_Knife_Butterfly", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_butterfly", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_butterfly.794147e84a4e9426202d45145910cbb007797ce5.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "146" - { - "name" "Map Token Zoo" - "defindex" "1046" - "item_class" "map_token" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_MapTokenZoo" - "item_description" "#CSGO_Collectible_MapTokenZoo_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/maptoken_zoo" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_zoo.2c52d2b297d9c77b25d6ff79f4255e0933e06c9c.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_zoo_large.a59d93b91f6b0bb11410c2d3c45e10e729828b89.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_push", + "defindex": 516, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_push", + "item_description": "#CSGO_Item_Desc_knife_push", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_push", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_push.13f409f23e653107c90711e5ab258b52b187ff6a.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "147" - { - "name" "Name Tag" - "defindex" "1200" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_Name_TagTag" - "item_name" "#CSGO_Tool_Name_Tag" - "item_description" "#CSGO_Tool_Name_Tag_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/tag" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/tag.a2bf9644e84e15506b9abab84125eb24527b723a.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/tag_large.d3594703dfdcce8d5d00b5b90a6e78c286c8574e.png" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "name" - "usage_capabilities" - { - "nameable" "1" - } - } - } - "148" - { - "name" "Weapon Case Key" - "defindex" "1203" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_Tool_WeaponCase_Key" - "item_description" "#CSGO_Tool_WeaponCase_Key_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/weapon_case_key" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/weapon_case_key.9da9cda11754311c016099d05c3dd3309ffd7cd6.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/weapon_case_key_large.9da9cda11754311c016099d05c3dd3309ffd7cd6.png" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "generic_valve_key" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "149" - { - "name" "E-Sports Weapon Case Key 1" - "defindex" "1204" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_esports_crate_key_1" - "item_description" "#CSGO_esports_crate_key_1_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/weapon_case_key_special_1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/weapon_case_key_special_1.6ced14e09f1d1f2f52a648b37d245fc1f1419a34.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "esports_crate_key" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "150" - { - "name" "sticker" - "defindex" "1209" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_Sticker" - "item_name" "#CSGO_Tool_Sticker" - "item_description" "#CSGO_Tool_Sticker_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "sticker" - "usage_capabilities" - { - "usable_out_of_game" "1" - "can_sticker" "1" - } - } - } - "151" - { - "name" "Gift - 1 Player" - "defindex" "1210" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_GiftTag" - "item_name" "#CSGO_Tool_Gift1Player" - "item_description" "#CSGO_Tool_Gift1Player_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/gift1player" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/gift1player.d7af0c74ccc8314c314c870708c0ae3a0ead32ad.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - } - "tool" - { - "type" "gift" - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "8" - } - } - } - "152" - { - "name" "Gift - 9 Players" - "defindex" "1211" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_GiftTag" - "item_name" "#CSGO_Tool_Gift9Players" - "item_description" "#CSGO_Tool_Gift9Players_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/gift9players" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/gift9players.d17fef24890f21e6de8cbc9690f5198d45cbb617.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - } - "tool" - { - "type" "gift" - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "8" - } - } - } - "153" - { - "name" "Sticker Crate Key" - "defindex" "1212" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_sticker_crate_key_1" - "item_description" "#CSGO_sticker_crate_key_1_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/sticker_crate_key" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/sticker_crate_key.1a436eb9f66602a8f472adf2afa600271056370c.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "sticker_crate_key" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "154" - { - "name" "Community Case Key 1" - "defindex" "1214" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_1" - "item_description" "#CSGO_community_crate_key_1_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_1.f168439f93277d8b3869910a3ee649ee4039edb4.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_1" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "155" - { - "name" "Gift - 25 Spectators" - "defindex" "1215" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_GiftTag" - "item_name" "#CSGO_Tool_Gift25Spectators" - "item_description" "#CSGO_Tool_Gift25Spectators_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/gift25spectators" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/gift25spectators.2df066096864ba183f903f656abe149b9d1f7a02.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - } - "tool" - { - "type" "gift" - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "8" - } - } - } - "156" - { - "name" "Community Case Key 2" - "defindex" "1303" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_2" - "item_description" "#CSGO_community_crate_key_2_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_2.d1bb59f3fd96f4332979690c08dc314f74d484de.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_2" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "157" - { - "name" "Community Sticker Capsule 1 Key May 2014" - "defindex" "1304" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_sticker_crate_key_community01" - "item_description" "#CSGO_sticker_crate_key_community01_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/sticker_crate_key_community01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/sticker_crate_key_community01.1301a32528f2f388b93f0d23a6ca23578bf99569.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "sticker_pack_community01_key" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "158" - { - "name" "Community Case Key 3 May 2014" - "defindex" "1305" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_3" - "item_description" "#CSGO_community_crate_key_3_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_3.37247b8634e99bd7061ed75e9b298cb031b24beb.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_3" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "159" - { - "name" "quest" - "defindex" "1306" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Quest" - "item_name" "#quest" - "item_description" "#quest_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/mission" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/mission.0066b84dc0d2136aae1518b9194d96d70b5b30fa.png" - "image_url_large" "" - "capabilities" - { - "can_delete" "1" - } - "attributes" - { + ] + + }, + { + "name": "weapon_knife_cord", + "defindex": 517, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_cord", + "item_description": "#CSGO_Item_Desc_knife_cord", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_cord", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_cord.073b5fa991a256ec2264b1c1c581401631eb51cb.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "160" - { - "name" "Community Case Key 3 June 2014" - "defindex" "1307" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_3" - "item_description" "#CSGO_community_crate_key_3_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_3.37247b8634e99bd7061ed75e9b298cb031b24beb.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_3" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "161" - { - "name" "Community Sticker Capsule 1 Key June 2014" - "defindex" "1308" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_sticker_crate_key_community01" - "item_description" "#CSGO_sticker_crate_key_community01_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/sticker_crate_key_community01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/sticker_crate_key_community01.1301a32528f2f388b93f0d23a6ca23578bf99569.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "sticker_pack_community01_key" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "162" - { - "name" "Community Case Key 4 July 2014" - "defindex" "1309" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_4" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "163" - { - "name" "Community Case Key 4 August 2014" - "defindex" "1310" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_4" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "164" - { - "name" "Community Case Key September 4" - "defindex" "1311" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_4" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "165" - { - "name" "Community Case Key 4" - "defindex" "1313" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_4" - "item_description" "#CSGO_community_crate_key_4_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_4" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "166" - { - "name" "musickit" - "defindex" "1314" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_MusicKit" - "item_name" "#CSGO_Type_MusicKit" - "item_description" "#CSGO_MusicKit_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "" - "image_url_large" "" - "capabilities" - { - "can_stattrack_swap" "1" - } - } - "167" - { - "name" "Community Season Five Summer 2014" - "defindex" "1315" - "item_class" "tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonFiveSummer2014" - "item_description" "#CSGO_Ticket_CommunitySeasonFiveSummer2014_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_vanguard_pass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_pass.4dbf27f27c32be69ae74f13f6aaa20da52ae8126.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - "usable_out_of_game" "1" - } - "tool" - { - "type" "season_pass" - "use_string" "#ConsumeItem" - } - "attributes" - { + ] + + }, + { + "name": "weapon_knife_canis", + "defindex": 518, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_canis", + "item_description": "#CSGO_Item_Desc_knife_canis", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_canis", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_canis.ae03aed81864dc2ee1e1118bb973418f910098ac.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "168" - { - "name" "Community Season Five Summer 2014 Coin 1" - "defindex" "1316" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_vanguard_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_bronze.12f462e7d160bc820324d016efe1e160f2919327.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_bronze_large.49c23321be1477a5b2a20e96fceb539b95d55c0e.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - "18" - { - "name" "operation points" - "class" "operation_points" - "value" "0" - } - } - } - "169" - { - "name" "Community Season Five Summer 2014 Coin 2" - "defindex" "1317" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_vanguard_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_silver.dc8013afcd7ccf823d820d623478611a3ab0752d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_silver_large.3eeb504060cfc460a866435070f9a83772bd66f5.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - "18" - { - "name" "operation points" - "class" "operation_points" - "value" "0" - } - } - } - "170" - { - "name" "Community Season Five Summer 2014 Coin 3" - "defindex" "1318" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_vanguard_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_gold.1c0be8869324090c4edd0ca402b6cfd4185079ac.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_gold_large.9fdda1c72855253c40d838658828b75b27a4dfaa.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - "18" - { - "name" "operation points" - "class" "operation_points" - "value" "0" - } - } - } - "171" - { - "name" "campaign magrheb" - "defindex" "1320" - "item_class" "collectible_item" - "item_type_name" "#campaign" - "item_name" "#csgo_campaign_maghreb" - "item_description" "#csgo_campaign_maghreb_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "backpack/crafting/campaign" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/backpack/crafting/campaign.0066b84dc0d2136aae1518b9194d96d70b5b30fa.png" - "image_url_large" "" - "attributes" - { - "0" - { - "name" "campaign completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - } - } - "172" - { - "name" "campaign eurasia" - "defindex" "1321" - "item_class" "collectible_item" - "item_type_name" "#campaign" - "item_name" "#csgo_campaign_eurasia" - "item_description" "#csgo_campaign_eurasia_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "backpack/crafting/campaign" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/backpack/crafting/campaign.0066b84dc0d2136aae1518b9194d96d70b5b30fa.png" - "image_url_large" "" - "attributes" - { - "0" - { - "name" "campaign completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - } - } - "173" - { - "name" "Community Case Key 5" - "defindex" "1322" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_5" - "item_description" "#CSGO_community_crate_key_5_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_5" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_5.af5e2695975f07d5efbf02de9274e9b1041ff1fc.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_5" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "174" - { - "name" "Community Case Key 6" - "defindex" "1323" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_6" - "item_description" "#CSGO_community_crate_key_6_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_6" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_6.f12230edccc052ca8909ea30bc7167d7d9cf4570.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_6" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "175" - { - "name" "stattrak_swap_tool" - "defindex" "1324" - "item_class" "tool" - "item_type_name" "#CSGO_Type_Tool" - "item_name" "#CSGO_tool_stattrak_swap" - "item_description" "#CSGO_tool_stattrak_swap_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/stattrak_swap_tool" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/stattrak_swap_tool.e5bf9223e6ffb0681c53f451badd9d8a17032905.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "stattrak_swap" - "usage_capabilities" - { - "can_stattrack_swap" "1" - } - } - } - "176" - { - "name" "Community Case Key 7" - "defindex" "1325" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_7" - "item_description" "#CSGO_community_crate_key_7_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_7" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_7.c3ad0bf7a20424e64b9eca91bd908c004d5ed3fc.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_7" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "177" - { - "name" "Community Season Six 2015" - "defindex" "1326" - "item_class" "tool" - "item_type_name" "#CSGO_Type_Ticket" - "item_name" "#CSGO_Ticket_CommunitySeasonSix2015" - "item_description" "#CSGO_Ticket_CommunitySeasonSix2015_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_6_pass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_pass.6c266208675ae8c4ad41b9ecd09502f7bf0fd97e.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "capabilities" - { - "usable_gc" "1" - "usable_out_of_game" "1" - } - "tool" - { - "type" "season_pass" - "use_string" "#ConsumeItem" - } - "attributes" - { + ] + + }, + { + "name": "weapon_knife_ursus", + "defindex": 519, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_ursus", + "item_description": "#CSGO_Item_Desc_knife_ursus", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_ursus", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_ursus.34ecda985c12503df5b88e9bda1826f61cc9e80a.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "178" - { - "name" "Community Season Six 2015 Coin 1" - "defindex" "1327" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin1" - "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin1_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_6_bronze" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_bronze.aa55ae15c60cc0d687e8e66f925a092b1c64d845.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_bronze_large.c8ad11b3ca16d8f261febe8f80834fe8f3788f4a.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - "18" - { - "name" "operation points" - "class" "operation_points" - "value" "0" - } - "19" - { - "name" "quest id" - "class" "quest_id" - "value" "0" - } - "20" - { - "name" "campaign 5 completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - "21" - { - "name" "campaign 5 last completed quest" - "class" "campaign_last_completed_quest" - "value" "0" - } - "22" - { - "name" "campaign 6 completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - "23" - { - "name" "campaign 6 last completed quest" - "class" "campaign_last_completed_quest" - "value" "0" - } - } - } - "179" - { - "name" "Community Season Six 2015 Coin 2" - "defindex" "1328" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin2" - "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin2_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_6_silver" - "min_ilevel" "2" - "max_ilevel" "2" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_silver.66218f52f6ca823fbc65c0169e203a1f71e63101.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_silver_large.42451df217bac9066549ca4f113065c4d281d086.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - "18" - { - "name" "operation points" - "class" "operation_points" - "value" "0" - } - "19" - { - "name" "quest id" - "class" "quest_id" - "value" "0" - } - "20" - { - "name" "campaign 5 completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - "21" - { - "name" "campaign 5 last completed quest" - "class" "campaign_last_completed_quest" - "value" "0" - } - "22" - { - "name" "campaign 6 completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - "23" - { - "name" "campaign 6 last completed quest" - "class" "campaign_last_completed_quest" - "value" "0" - } - } - } - "180" - { - "name" "Community Season Six 2015 Coin 3" - "defindex" "1329" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_CommunitySeasonSix2015_Coin3" - "item_description" "#CSGO_Collectible_CommunitySeasonSix2015_Coin3_Desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/operation_6_gold" - "min_ilevel" "3" - "max_ilevel" "3" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_gold.7d00062b0df6eb146f938d8d76833447b453ea07.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_gold_large.5d677e66b4a7d3d15d9b5d82cc5496f537756836.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - "0" - { - "name" "minutes played" - "class" "minutes_played" - "value" "1" - } - "1" - { - "name" "operation minutes played" - "class" "operation_minutes_played" - "value" "0" - } - "2" - { - "name" "operation wins" - "class" "operation_wins" - "value" "0" - } - "3" - { - "name" "operation kills" - "class" "operation_kills" - "value" "0" - } - "4" - { - "name" "operation 3k" - "class" "operation_3k" - "value" "0" - } - "5" - { - "name" "operation 4k" - "class" "operation_4k" - "value" "0" - } - "6" - { - "name" "operation 5k" - "class" "operation_5k" - "value" "0" - } - "7" - { - "name" "operation hsp" - "class" "operation_hsp" - "value" "0" - } - "8" - { - "name" "operation mvps" - "class" "operation_mvps" - "value" "0" - } - "9" - { - "name" "competitive minutes played" - "class" "competitive_minutes_played" - "value" "0" - } - "10" - { - "name" "competitive wins" - "class" "competitive_wins" - "value" "0" - } - "11" - { - "name" "competitive kills" - "class" "competitive_kills" - "value" "0" - } - "12" - { - "name" "competitive 3k" - "class" "competitive_3k" - "value" "0" - } - "13" - { - "name" "competitive 4k" - "class" "competitive_4k" - "value" "0" - } - "14" - { - "name" "competitive 5k" - "class" "competitive_5k" - "value" "0" - } - "15" - { - "name" "competitive hsp" - "class" "competitive_hsp" - "value" "0" - } - "16" - { - "name" "competitive mvps" - "class" "competitive_mvps" - "value" "0" - } - "17" - { - "name" "quests complete" - "class" "quests_complete" - "value" "0" - } - "18" - { - "name" "operation points" - "class" "operation_points" - "value" "0" - } - "19" - { - "name" "quest id" - "class" "quest_id" - "value" "0" - } - "20" - { - "name" "campaign 5 completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - "21" - { - "name" "campaign 5 last completed quest" - "class" "campaign_last_completed_quest" - "value" "0" - } - "22" - { - "name" "campaign 6 completion bitfield" - "class" "campaign_completion_bitfield" - "value" "0" - } - "23" - { - "name" "campaign 6 last completed quest" - "class" "campaign_last_completed_quest" - "value" "0" - } - } - } - "181" - { - "name" "Falchion Case Key" - "defindex" "1330" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_8" - "item_description" "#CSGO_community_crate_key_8_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_8" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_8.2f80c7209bd0853385326d4a6712e407981a77aa.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_8" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "182" - { - "name" "prestige coin 2015" - "defindex" "1331" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2015" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2015" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2015" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015.3ca7bf6f40edbae511a8ea595a0054736b397140.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015_large.3b8d6cddfd113b0b20bafa2bbee76a976c198e55.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_gypsy_jackknife", + "defindex": 520, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_gypsy_jackknife", + "item_description": "#CSGO_Item_Desc_knife_gypsy_jackknife", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_gypsy_jackknife", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_gypsy_jackknife.1a7e57791fa9383cce67d5915ffc442c7de2694a.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "183" - { - "name" "prestige coin 2015 level 2" - "defindex" "1332" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2015" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2015" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2015_2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015_2.b5b68c527a14fb4c8d60eb619da7dd521675bd78.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015_2_large.e6ece70c2561d90a73d5f5eb418921973a0b4aa1.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_outdoor", + "defindex": 521, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_outdoor", + "item_description": "#CSGO_Item_Desc_knife_outdoor", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_outdoor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_outdoor.fdb3ce5ceef1584781759ef5a7bd6f819bf12e9b.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "184" - { - "name" "Community Case Key 9" - "defindex" "1333" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_community_crate_key_9" - "item_description" "#CSGO_community_crate_key_9_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_9.c908521108c5cf99bdc5162c6c9ba8d46529a6a5.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "community_case_9" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "185" - { - "name" "crate_community_10 Key" - "defindex" "1334" - "item_class" "tool" - "item_type_name" "#CSGO_Tool_WeaponCase_KeyTag" - "item_name" "#CSGO_crate_community_10_key" - "item_description" "#CSGO_crate_community_10_key_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/tools/crate_key_community_10" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_10.4d149d87b12b269d791362e2529cbfafd295f1ca.png" - "image_url_large" "" - "craft_class" "tool" - "craft_material_type" "tool" - "tool" - { - "type" "decoder_ring" - "restriction" "crate_community_10" - "usage_capabilities" - { - "decodable" "1" - "usable_out_of_game" "1" - } - } - } - "186" - { - "name" "prestige coin 2016" - "defindex" "1339" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2016_lvl1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl1.c67ca0c2bca3a6f193f940284ac2b8fe6979311c.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl1_large.2dabe9584a18a843e8e64a5b5ae6e78b792f2823.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_stiletto", + "defindex": 522, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_stiletto", + "item_description": "#CSGO_Item_Desc_knife_stiletto", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_stiletto", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_stiletto.1aefe4ca0e433fc8c3f924ba362283e0666b5f8d.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "187" - { - "name" "prestige coin 2016 level 2" - "defindex" "1340" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2016_lvl2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl2.fca2045bdf9cc1b6d6a2dbc2e4fa5e53b81added.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl2_large.113667efbc19c5f236527ed91490680a55a42952.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_widowmaker", + "defindex": 523, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_widowmaker", + "item_description": "#CSGO_Item_Desc_knife_widowmaker", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_widowmaker", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_widowmaker.a0842ad04cda9292483b8896d1dcdaffac9c2e5e.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "188" - { - "name" "prestige coin 2016 level 3" - "defindex" "1341" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2016_lvl3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl3.bbf3997a9ff432201b9ce1a5f07dfbc8aad12bb9.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl3_large.0cf4db6649dcea51f472dac87d9cb5f45e2425a4.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "weapon_knife_skeleton", + "defindex": 525, + "item_class": "weapon_knife", + "item_type_name": "#CSGO_Type_Knife", + "item_name": "#SFUI_WPNHUD_knife_skeleton", + "item_description": "#CSGO_Item_Desc_knife_skeleton", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapons/base_weapons/weapon_knife_skeleton", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_skeleton.1fc401a844008bcaa89f8381cbe7b550a051609d.png", + "image_url_large": "", + "craft_class": "weapon", + "craft_material_type": "weapon", + "capabilities": { + "paintable": true, + "nameable": true, + "can_stattrack_swap": true + }, + "attributes": [ - } - } - "189" - { - "name" "prestige coin 2016 level 4" - "defindex" "1342" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2016_lvl4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl4.1a8b2059cc23cfbc2e27f90be52197cd9b7aec8d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl4_large.f5e3278c684d420867b39c421af42f122642f2de.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "Five Year Service Coin", + "defindex": 874, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_FiveYearService", + "item_description": "#CSGO_CollectibleCoin_FiveYearService_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/5yearcoin", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/5yearcoin.8349aa6fa8af5018a3906bf5a0223537dce3e0bf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/5yearcoin_large.8f83517dbda53fc10805f00bf0e3f59d30ee5033.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ - } - } - "190" - { - "name" "prestige coin 2016 level 5" - "defindex" "1343" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2016_lvl5" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl5.04402d35378599a7116139a684bf6e7a4b539e91.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl5_large.06fe1268f07b0c6ad65fcdc2cd600a722229f0a6.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "DreamHack SteelSeries 2013 CS:GO Champion", + "defindex": 875, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DH2013_Champion", + "item_description": "#CSGO_CollectibleCoin_DH2013_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dreamhack_2013_champion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_champion.9d715ee847c450b81f99861199a686e2aee36be0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_champion_large.a71dc37ea50a3c5a441922acc9b0596fa2b51a1d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 1 + } + ] + + }, + { + "name": "DreamHack SteelSeries 2013 CS:GO Finalist", + "defindex": 876, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DH2013_Finalist", + "item_description": "#CSGO_CollectibleCoin_DH2013_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dreamhack_2013_finalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_finalist.53f0c415765ea52f4302208fa60579e9094da109.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_finalist_large.dc4dced76778dfb4b7abb779b49dd07be8169bb8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 1 + } + ] + + }, + { + "name": "DreamHack SteelSeries 2013 CS:GO Semifinalist", + "defindex": 877, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DH2013_SemiFinalist", + "item_description": "#CSGO_CollectibleCoin_DH2013_SemiFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dreamhack_2013_semifinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_semifinalist.03f538b9b1b48220f77e78820946e1cbfdb5b5d6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_semifinalist_large.9cabb8b8e44611b4b709c56f074a259ad2487eef.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 1 + } + ] + + }, + { + "name": "DreamHack SteelSeries 2013 CS:GO Quarterfinalist", + "defindex": 878, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DH2013_QuarterFinalist", + "item_description": "#CSGO_CollectibleCoin_DH2013_QuarterFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dreamhack_2013_quarterfinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_quarterfinalist.826029a11953955679bd1572a6520e56c1ba66f2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dreamhack_2013_quarterfinalist_large.28b0d7ef982ef674148f77c5729be4d5221c0e49.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 1 + } + ] + + }, + { + "name": "EMS One Katowice 2014 CS:GO Champion", + "defindex": 879, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2014_Champion", + "item_description": "#CSGO_CollectibleCoin_Kat2014_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_2014_champion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_champion.796479b0c33ebd69fb00fada14b565036e304da3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_champion_large.bf565f6085cb4a3fa366e3167f7b873090176623.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 3 + } + ] + + }, + { + "name": "EMS One Katowice 2014 CS:GO Finalist", + "defindex": 880, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2014_Finalist", + "item_description": "#CSGO_CollectibleCoin_Kat2014_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_2014_finalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_finalist.5aa55b24f3d385735476e27cbff25370bac476c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_finalist_large.a96fab9b692e4e55cb310682df0deb8dba8f3a89.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 3 + } + ] + + }, + { + "name": "EMS One Katowice 2014 CS:GO Semifinalist", + "defindex": 881, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2014_SemiFinalist", + "item_description": "#CSGO_CollectibleCoin_Kat2014_SemiFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_2014_semifinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_semifinalist.3edec56e82c658ea8b94aed79b44401370775e56.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_semifinalist_large.85046d0d4b5748572859cb638c8e1f502825955d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 3 + } + ] + + }, + { + "name": "EMS One Katowice 2014 CS:GO Quarterfinalist", + "defindex": 882, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist", + "item_description": "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_2014_quarterfinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_quarterfinalist.1ad440c5b1334996c339dbfe631037a86c847604.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_2014_quarterfinalist_large.54910e582990bd76a5058312f6ae85c3a5dec30c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 3 + } + ] + + }, + { + "name": "ESL One Cologne 2014 CS:GO Champion", + "defindex": 883, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2014_Champion", + "item_description": "#CSGO_CollectibleCoin_Cologne2014_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_trophy_champion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_champion.004bb719a1b12d25d0d5b17186b9b7039bd6d1c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_champion_large.321d0168210c645327273a0a108670a2d8f3b71d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "ESL One Cologne 2014 CS:GO Finalist", + "defindex": 884, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2014_Finalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2014_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_trophy_finalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_finalist.05008add021cea21c8b8940176d78f912f62b9e6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_finalist_large.bc5075600a1b9b6d36e3f2fc4ddea54a0154f8b6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "ESL One Cologne 2014 CS:GO Semifinalist", + "defindex": 885, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_trophy_semifinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_semifinalist.9cadd6a2d5646653959542f98563761512370179.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_semifinalist_large.424db65bc9a21a4e837cf27d26a2f5bb55ab821e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "ESL One Cologne 2014 CS:GO Quarterfinalist", + "defindex": 886, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_trophy_quarterfinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_quarterfinalist.c56b9a83a93155abc772b89e9d14773cf162195f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_trophy_quarterfinalist_large.fc4034c97f63afe33acc1f677535069949a7fa4d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "ESL One Cologne 2014 Pick 'Em Challenge Bronze", + "defindex": 887, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_prediction_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_bronze.29df385363fad77e59f0279fb0b0fea274539ec5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_bronze_large.4a4cb569e6d40eac4992917e9220967953b22e06.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "ESL One Cologne 2014 Pick 'Em Challenge Silver", + "defindex": 888, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_prediction_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_silver.2e372eb394e4b4a50d80603a3478263c67701735.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_silver_large.7745d453d377b1017d3f6a0818c15a854a9b5967.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "ESL One Cologne 2014 Pick 'Em Challenge Gold", + "defindex": 889, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2014_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Cologne2014_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_prediction_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_gold.0d12edbfa6a8ea75b14a4c55276ec482e2283ffc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_prediction_gold_large.c5c930d92b24a36d65d4d68e474126fcce58e571.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "DreamHack Winter 2014 CS:GO Champion", + "defindex": 890, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DHW2014_Champion", + "item_description": "#CSGO_CollectibleCoin_DHW2014_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dhw_2014_champion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_champion.1e06beca89c812e4162c94cba3519c42eac4db33.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_champion_large.00b52cf3cab0182fcc466cfad2f8c560812d8a5a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "DreamHack Winter 2014 CS:GO Finalist", + "defindex": 891, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DHW2014_Finalist", + "item_description": "#CSGO_CollectibleCoin_DHW2014_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dhw_2014_finalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_finalist.87a5068df8f33af8f5a8633326cb15ecec6dec73.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_finalist_large.5dd601bef4b79c3e1623898773cb22b12e1ff4cb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "DreamHack Winter 2014 CS:GO Semifinalist", + "defindex": 892, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DHW2014_SemiFinalist", + "item_description": "#CSGO_CollectibleCoin_DHW2014_SemiFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dhw_2014_semifinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_semifinalist.989c220ae4fa6c37b74793c43067538103770e6e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_semifinalist_large.be9e9fd274a887c4a742d42aa01bfdb97b53c969.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "DreamHack Winter 2014 CS:GO Quarterfinalist", + "defindex": 893, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist", + "item_description": "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dhw_2014_quarterfinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_quarterfinalist.fba4a759e6d2d65057e72463045c042120d48104.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw_2014_quarterfinalist_large.431337841f75ff3c3dd1ef980a571d204433d50d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "DreamHack Winter 2014 Pick 'Em Challenge Bronze", + "defindex": 894, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DHW2014_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_DHW2014_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dhw14_prediction_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_bronze.fc8d7e76bf8d0816bf7e0781d4d02a1c59d71040.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_bronze_large.75a3748d4a79bcbf7174e980f212670797655edd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "DreamHack Winter 2014 Pick 'Em Challenge Silver", + "defindex": 895, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DHW2014_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_DHW2014_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dhw14_prediction_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_silver.c0d45cf1aba660da0d5049d737399493439c80f4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_silver_large.844b1c6fcc8438fb9bdadd97385912e660c58d11.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "DreamHack Winter 2014 Pick 'Em Challenge Gold", + "defindex": 896, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_DHW2014_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_DHW2014_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/dhw14_prediction_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_gold.9a57885b7a0c677409735e749ce1c0a3ab773209.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/dhw14_prediction_gold_large.161b3da47a840446eba78537ecbbf60563d01852.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "ESL One Katowice 2015 CS:GO Champion", + "defindex": 897, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2015_Champion", + "item_description": "#CSGO_CollectibleCoin_Kat2015_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/kat_2015_champion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_champion.a50771b582be575310cfe89844e8678ebbf328db.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_champion_large.0dd8522828b82ebf52efc6940ac7613d6b3428c1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "ESL One Katowice 2015 CS:GO Finalist", + "defindex": 898, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2015_Finalist", + "item_description": "#CSGO_CollectibleCoin_Kat2015_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/kat_2015_finalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_finalist.444ed0ebe03bd91d09bb03fbfa5994cc15ac42d5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_finalist_large.a4210eda1b48bc84b7fc496a8ebe3bab6dde553e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "ESL One Katowice 2015 CS:GO Semifinalist", + "defindex": 899, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2015_SemiFinalist", + "item_description": "#CSGO_CollectibleCoin_Kat2015_SemiFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/kat_2015_semifinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_semifinalist.d490506f29340fdda2caa79033221ce41b4a31ec.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_semifinalist_large.5d4acb38d67d95c2e395d58e91952572fabad669.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "ESL One Katowice 2015 CS:GO Quarterfinalist", + "defindex": 900, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist", + "item_description": "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/kat_2015_quarterfinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_quarterfinalist.b6d3b413a5f637da87eab8750783568a49dbe5df.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_quarterfinalist_large.707a47abca3a99776574ce056643ee339b41e25d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "ESL One Katowice 2015 Pick 'Em Challenge Bronze", + "defindex": 901, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2015_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Kat2015_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/kat_2015_prediction_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_bronze.b470697e211356947032b54dbc3635acabcda661.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_bronze_large.fd59fc01cfaf3df4539a3be9d4fdd11285c7d3d8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "ESL One Katowice 2015 Pick 'Em Challenge Silver", + "defindex": 902, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2015_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Kat2015_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/kat_2015_prediction_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_silver.4f5bde707810cdf2dcc46f91772fe6bef3ba36f6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_silver_large.b0c4e189449ae5ef22dabd95ef70cfc75593a38a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "ESL One Katowice 2015 Pick 'Em Challenge Gold", + "defindex": 903, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Kat2015_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Kat2015_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/kat_2015_prediction_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_gold.669b3692ce8a2bddc9d3a7a1e19c521dcfda6ecd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/kat_2015_prediction_gold_large.b808a46457ce16622f8a8560729e7072ba1b1be3.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "ESL One Cologne 2015 CS:GO Champion", + "defindex": 904, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2015_Champion", + "item_description": "#CSGO_CollectibleCoin_Cologne2015_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/col_2015_champion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_champion.9a53984e7eb98fef797d16a9703ceadd7b140de8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_champion_large.8bc88fbd2f73f61c9a0afbb5b6221542793ada5d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "ESL One Cologne 2015 CS:GO Finalist", + "defindex": 905, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2015_Finalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2015_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/col_2015_finalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_finalist.ad27198ff449ceabafc629e2eb5f200a7e2497da.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_finalist_large.507c4440ad457da4802ebc4eccd01b854f3781ee.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "ESL One Cologne 2015 CS:GO Semifinalist", + "defindex": 906, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/col_2015_semifinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_semifinalist.1827467b8c09d69e697e9869b61d743b33556bc1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_semifinalist_large.5e434d8956fa32b7d597aad5d28bab52cecd8dfe.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "ESL One Cologne 2015 CS:GO Quarterfinalist", + "defindex": 907, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/col_2015_quarterfinalist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_quarterfinalist.43289576aa03fdad7e9d881d18ad48360f045f3b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_quarterfinalist_large.e97caa5038e0deacc8604acb1632e86115b6dcd2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "ESL One Cologne 2015 Pick 'Em Challenge Bronze", + "defindex": 908, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/col_2015_prediction_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_bronze.81a926141f1ac7ab84a52a1ff25bf0700a4dee25.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_bronze_large.165a82bab538997ee6a50efee9d112190b4fe323.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "ESL One Cologne 2015 Pick 'Em Challenge Silver", + "defindex": 909, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/col_2015_prediction_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_silver.c4710e514a82f6d3e43469a9bf332321462e3833.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_silver_large.59486d939b7ddc2ebef4f12d068db0040f618d92.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "ESL One Cologne 2015 Pick 'Em Challenge Gold", + "defindex": 910, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2015_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Cologne2015_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/col_2015_prediction_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_gold.0d7e0fca7006f233357adf793d3ee9adeabc85e9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/col_2015_prediction_gold_large.da514b1dfcc2a2f7c4ef29f96f6d9359123ba89c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Bronze", + "defindex": 911, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cluj_2015_prediction_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_bronze.27eafa166751069a4dca5d054926738fcff0dbce.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_bronze_large.9c401113e666aa367763f42f28d5d2c116163452.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Silver", + "defindex": 912, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cluj_2015_prediction_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_silver.360c71f1bc40ad0771a7dc08bb14fd9c8470ec06.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_silver_large.c284a9187aa67bd326a397e6df0663c7c3989771.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Gold", + "defindex": 913, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cluj_2015_prediction_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_gold.935300cd2954dcdb3cffa7b95992a91937561cb1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_prediction_gold_large.77c0e08cf8b46dbb18c69ce1d33952fdcc97de3a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 Fantasy Team Bronze", + "defindex": 914, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cluj_2015_fantasy_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_bronze.1c9370516683f558afe4b197216f502ac24e03ab.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_bronze_large.f6a6d11595950b7960c713baefe10b368d2ed940.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 Fantasy Team Silver", + "defindex": 915, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_FantasySilver", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_FantasySilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cluj_2015_fantasy_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_silver.2ecaf3df2c431bc21d8b8d03436d9289f7ecb170.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_silver_large.88c70f4cb9ad5982e92d45159a461709e7d5b234.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 Fantasy Team Gold", + "defindex": 916, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_FantasyGold", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_FantasyGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cluj_2015_fantasy_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_gold.302969eed939bc0bc6639e104a11835b29c62d6d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cluj_2015_fantasy_gold_large.d06f6d8fab94f84d3a3288d3472664a6a3ad48fa.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 CS:GO Champion", + "defindex": 917, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_Champion", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 CS:GO Finalist", + "defindex": 918, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_Finalist", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 CS:GO Semifinalist", + "defindex": 919, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "DreamHack Cluj-Napoca 2015 CS:GO Quarterfinalist", + "defindex": 920, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cluj2015_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Cluj2015_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "MLG Columbus 2016 Pick 'Em Challenge Bronze", + "defindex": 921, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/mlg_2016_pickem_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_pickem_bronze.9dc85ac5dc86e99d8c3752ce5736bd40e91da108.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_pickem_bronze_large.3c1b65089cd8bb8decbfb3b23bef11b063160032.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 Pick 'Em Challenge Silver", + "defindex": 922, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/mlg_2016_pickem_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_pickem_silver.c227a6f5e2a2f7b1ca322c9bfcc075a012ac4dba.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_pickem_silver_large.6bc225f541fef1400a14d089fa33b60cb4771520.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 Pick 'Em Challenge Gold", + "defindex": 923, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/mlg_2016_pickem_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_pickem_gold.d11cf2c2aefc9f20cbe4989e64a3d9532023c63e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_pickem_gold_large.6bf41cd0c3206b139aefa4aaf9bce25ec0242fc3.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 Fantasy Team Bronze", + "defindex": 924, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_FantasyBronze", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_FantasyBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/mlg_2016_fantasy_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_fantasy_bronze.2a62366a91fe3369399bc86e22ca0b1e14390ee4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_fantasy_bronze_large.39d6b4fba0abb72dcd764f3e6c928e2d42845511.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 Fantasy Team Silver", + "defindex": 925, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_FantasySilver", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_FantasySilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/mlg_2016_fantasy_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_fantasy_silver.5e84d3ae8490351b9cdbc87251419e77af6fe6ad.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_fantasy_silver_large.4c63b8c6a41d5d3f4f5f67b1c6ec555a3acfe8f4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 Fantasy Team Gold", + "defindex": 926, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_FantasyGold", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_FantasyGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/mlg_2016_fantasy_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_fantasy_gold.a222cdc35d2f867b8895a2a1262b1362a15823f1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/mlg_2016_fantasy_gold_large.0e41417dacac4770b36c6a5b5c0b42aee019ebdf.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 CS:GO Champion", + "defindex": 927, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_Champion", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 CS:GO Finalist", + "defindex": 928, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_Finalist", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 CS:GO Semifinalist", + "defindex": 929, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "MLG Columbus 2016 CS:GO Quarterfinalist", + "defindex": 930, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Columbus2016_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Columbus2016_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "ESL One Cologne 2016 CS:GO Champion", + "defindex": 931, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_Champion", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "ESL One Cologne 2016 CS:GO Finalist", + "defindex": 932, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_Finalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "ESL One Cologne 2016 CS:GO Semifinalist", + "defindex": 933, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "ESL One Cologne 2016 CS:GO Quarterfinalist", + "defindex": 934, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "Cologne 2016 Pick 'Em Challenge Bronze", + "defindex": 935, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_pickem_2016_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_pickem_2016_bronze.3cac687a5ece7904c2df0abfbb81709ff53382d6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_pickem_2016_bronze_large.2e41dc3cffa675554b48860c575eba4e260c200c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "Cologne 2016 Pick 'Em Challenge Silver", + "defindex": 936, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_pickem_2016_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_pickem_2016_silver.5a6b3a7e06e8e0f115325eeea3ab04dcee813d31.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_pickem_2016_silver_large.ef07e67e4b2389b915e5a4434245ade505f903a5.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "Cologne 2016 Pick 'Em Challenge Gold", + "defindex": 937, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_pickem_2016_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_pickem_2016_gold.1562c4128289279e63efda17b6095040220d74d3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_pickem_2016_gold_large.e99560ff3521c6e0a8a5d6cb808dd0d456bab071.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "Cologne 2016 Fantasy Team Challenge Bronze", + "defindex": 938, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_FantasyBronze", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_FantasyBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_fantasy_2016_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_fantasy_2016_bronze.7c38629b05c166caf16cee8145f662c9a670faeb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_fantasy_2016_bronze_large.afd05f92914bddc27b71d43fe1d2dc95e7506b13.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "Cologne 2016 Fantasy Team Challenge Silver", + "defindex": 939, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_FantasySilver", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_FantasySilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_fantasy_2016_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_fantasy_2016_silver.0e41bef12543715556d7566a2b36b2560d9f54c8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_fantasy_2016_silver_large.81df9286f5cfea08cd1f6b0631bf04efe1fcd83e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "Cologne 2016 Fantasy Team Challenge Gold", + "defindex": 940, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Cologne2016_FantasyGold", + "item_description": "#CSGO_CollectibleCoin_Cologne2016_FantasyGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cologne_fantasy_2016_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_fantasy_2016_gold.e412e92112efb0ce78ed3f4fab9ffb3689d7eea4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cologne_fantasy_2016_gold_large.e4ea524a8e3cf7f6b25fa3ed978615010422a589.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "ELEAGUE Atlanta 2017 CS:GO Champion", + "defindex": 941, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Atlanta2017_Champion", + "item_description": "#CSGO_CollectibleCoin_Atlanta2017_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "ELEAGUE Atlanta 2017 CS:GO Finalist", + "defindex": 942, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Atlanta2017_Finalist", + "item_description": "#CSGO_CollectibleCoin_Atlanta2017_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "ELEAGUE Atlanta 2017 CS:GO Semifinalist", + "defindex": 943, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Atlanta2017_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Atlanta2017_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "ELEAGUE Atlanta 2017 CS:GO Quarterfinalist", + "defindex": 944, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Atlanta2017_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Atlanta2017_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "Atlanta 2017 Pick 'Em Challenge Bronze", + "defindex": 945, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Atlanta2017_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Atlanta2017_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/atlanta_pickem_2017_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/atlanta_pickem_2017_bronze.97062a512181cbdc54db74abfd86f4d8d61ff986.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/atlanta_pickem_2017_bronze_large.4f6af5a63c0dcab71f563fc8590ea1454077a449.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "Atlanta 2017 Pick 'Em Challenge Silver", + "defindex": 946, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Atlanta2017_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Atlanta2017_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/atlanta_pickem_2017_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/atlanta_pickem_2017_silver.e96f5c64dc5a63569813b66e4e160bec5ef4c09d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/atlanta_pickem_2017_silver_large.b84a2b475161b673003723f3913176c3b9dc0ce2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "Atlanta 2017 Pick 'Em Challenge Gold", + "defindex": 947, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Atlanta2017_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Atlanta2017_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/atlanta_pickem_2017_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/atlanta_pickem_2017_gold.288d419fb2ee7fc2928bed83e40769c94027fa7c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/atlanta_pickem_2017_gold_large.f26017250aba27128f7ef34443832d41261f8f3a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "PGL Krakow 2017 CS:GO Champion", + "defindex": 948, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Krakow2017_Champion", + "item_description": "#CSGO_CollectibleCoin_Krakow2017_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "PGL Krakow 2017 CS:GO Finalist", + "defindex": 949, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Krakow2017_Finalist", + "item_description": "#CSGO_CollectibleCoin_Krakow2017_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "PGL Krakow 2017 CS:GO Semifinalist", + "defindex": 950, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Krakow2017_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Krakow2017_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "PGL Krakow 2017 CS:GO Quarterfinalist", + "defindex": 951, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Krakow2017_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Krakow2017_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "Krakow 2017 Pick 'Em Challenge Bronze", + "defindex": 952, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Krakow2017_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Krakow2017_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/krakow_pickem_2017_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/krakow_pickem_2017_bronze.ebdf4daca182fe857de8c82e6f2d96c9b890767b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/krakow_pickem_2017_bronze_large.ac762a6769060b0f55d7f185bde38bff8c2794aa.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "Krakow 2017 Pick 'Em Challenge Silver", + "defindex": 953, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Krakow2017_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Krakow2017_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/krakow_pickem_2017_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/krakow_pickem_2017_silver.6566503648526c112f76a37f780f74908dd709c1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/krakow_pickem_2017_silver_large.ec84269be17ddeba801dfa664e4d9fa55176c74d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "Krakow 2017 Pick 'Em Challenge Gold", + "defindex": 954, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Krakow2017_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Krakow2017_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/krakow_pickem_2017_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/krakow_pickem_2017_gold.f7728ea814bb9c4ba3c3f8d1569eb91579833eae.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/krakow_pickem_2017_gold_large.a56437b73cb64b3bfc7cd25d9283181e85f4803c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "ELEAGUE Boston 2018 CS:GO Champion", + "defindex": 955, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Boston2018_Champion", + "item_description": "#CSGO_CollectibleCoin_Boston2018_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "ELEAGUE Boston 2018 CS:GO Finalist", + "defindex": 956, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Boston2018_Finalist", + "item_description": "#CSGO_CollectibleCoin_Boston2018_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "ELEAGUE Boston 2018 CS:GO Semifinalist", + "defindex": 957, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Boston2018_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Boston2018_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "ELEAGUE Boston 2018 CS:GO Quarterfinalist", + "defindex": 958, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Boston2018_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Boston2018_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "Boston 2018 Pick 'Em Challenge Bronze", + "defindex": 959, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Boston2018_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_Boston2018_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/boston_pickem_2018_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/boston_pickem_2018_bronze.b7f37d2a40e41b67cac9331dd2d305577dfe3ae6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/boston_pickem_2018_bronze_large.8239713da9ec3f52b0b81be023f531a3d9c084a6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "Boston 2018 Pick 'Em Challenge Silver", + "defindex": 960, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Boston2018_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_Boston2018_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/boston_pickem_2018_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/boston_pickem_2018_silver.818f03ad485870807ceccc532edb951b9ecabc78.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/boston_pickem_2018_silver_large.6d8431e288e64ef20a07427f840208653163e815.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "Boston 2018 Pick 'Em Challenge Gold", + "defindex": 961, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Boston2018_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_Boston2018_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/boston_pickem_2018_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/boston_pickem_2018_gold.d8d5c81a71f22edaf4fc36e8a22781244c47b8ea.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/boston_pickem_2018_gold_large.1cdb01b67efb6889a8746ba0dc8fd367d8537c1b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "FACEIT London 2018 CS:GO Champion", + "defindex": 962, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_London2018_Champion", + "item_description": "#CSGO_CollectibleCoin_London2018_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "FACEIT London 2018 CS:GO Finalist", + "defindex": 963, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_London2018_Finalist", + "item_description": "#CSGO_CollectibleCoin_London2018_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "FACEIT London 2018 CS:GO Semifinalist", + "defindex": 964, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_London2018_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_London2018_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "FACEIT London 2018 CS:GO Quarterfinalist", + "defindex": 965, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_London2018_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_London2018_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "London 2018 Pick 'Em Challenge Bronze", + "defindex": 966, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_London2018_PickEmBronze", + "item_description": "#CSGO_CollectibleCoin_London2018_PickEmBronze_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/london_pickem_2018_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/london_pickem_2018_bronze.9efd6bfaaa25bca7f780a1c60a6ef5e98f0d2bbc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/london_pickem_2018_bronze_large.41533d96c1b49d2dc146b304ed05048ce162f373.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "London 2018 Pick 'Em Challenge Silver", + "defindex": 967, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_London2018_PickEmSilver", + "item_description": "#CSGO_CollectibleCoin_London2018_PickEmSilver_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/london_pickem_2018_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/london_pickem_2018_silver.13f174c447592eff25cef4299019d0166431c2db.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/london_pickem_2018_silver_large.374de1349c4277ce552f4f350ff567b5213f43bf.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "London 2018 Pick 'Em Challenge Gold", + "defindex": 968, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_London2018_PickEmGold", + "item_description": "#CSGO_CollectibleCoin_London2018_PickEmGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/london_pickem_2018_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/london_pickem_2018_gold.8ea110534d09404e5535ccb4599b28cbcba756dd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/london_pickem_2018_gold_large.a27bc1ffa791afdf661c96512756f0684538cf1a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "Ten Year Service Coin", + "defindex": 969, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_TenYearService", + "item_description": "#CSGO_CollectibleCoin_TenYearService_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/10yearcoin", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/10yearcoin.c230fd1526b41bfae495ff22fd6842315141a537.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/10yearcoin_large.260e9a5c3a985930c43617436651a6e946313ae2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ - } - } - "191" - { - "name" "prestige coin 2016 level 6" - "defindex" "1344" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_GlobalGeneral2016" - "item_description" "#CSGO_Collectible_Desc_GlobalGeneral2016" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/status_icons/service_medal_2016_lvl6" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl6.a66e0f6d73f4a14fbf91b9838e6cc88741ddda08.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl6_large.fc26832c27b8c798b289cf72478abf4769d02feb.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { + ] + + }, + { + "name": "Fortius Quo Fidelius", + "defindex": 970, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_FortiusQuoFidelius", + "item_description": "#CSGO_CollectibleCoin_FortiusQuoFidelius_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/prime_badge", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/prime_badge.0baea2c41dfe69c27f05eb3bb6098492f55e8ff7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/prime_badge_large.f8144d0a79cf586c900a22f4c226410a0f307409.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ - } - } - "192" - { - "name" "crate_valve_1" - "defindex" "4001" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_valve_1" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_valve_1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "generic_valve_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "1" - } - } - } - "193" - { - "name" "crate_esports_2013" - "defindex" "4002" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esports_2013" - "item_description" "#CSGO_crate_esports_2013_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esports_2013" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "esports_crate_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "2" - } - } - } - "194" - { - "name" "crate_operation_ii" - "defindex" "4003" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_operation_ii" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_operation_ii" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "generic_valve_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "3" - } - } - } - "195" - { - "name" "crate_valve_2" - "defindex" "4004" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_valve_2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_valve_2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "generic_valve_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "4" - } - } - } - "196" - { - "name" "crate_esports_2013_winter" - "defindex" "4005" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esports_2013_winter" - "item_description" "#CSGO_crate_esports_2013_winter_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esports_2013_14" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "esports_crate_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "5" - } - } - } - "197" - { - "name" "crate_dhw13_promo" - "defindex" "4006" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw13_promo" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw13_promo" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "6" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "1" - } - } - } - "198" - { - "name" "crate_sticker_pack01" - "defindex" "4007" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack01" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack01.050d07ce442dc326f33bbb10ade6df941136b479.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "sticker_crate_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "9" - } - } - } - "199" - { - "name" "crate_community_1" - "defindex" "4009" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_1" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_1" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "7" - } - } - } - "200" - { - "name" "crate_valve_3" - "defindex" "4010" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_valve_3" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_valve_3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "generic_valve_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "10" - } - } - } - "201" - { - "name" "crate_community_2" - "defindex" "4011" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_2" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "11" - } - } - } - "202" - { - "name" "crate_sticker_pack02" - "defindex" "4012" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack02" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack02.49c83ded1d25de8cc486de43797b260361bdeff7.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "sticker_crate_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "12" - } - } - } - "203" - { - "name" "crate_ems14_promo" - "defindex" "4013" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_ems14_promo" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_ems14_promo" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "13" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "3" - } - } - } - "204" - { - "name" "crate_sticker_pack_kat2014_01" - "defindex" "4014" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_kat2014_01" - "item_description" "#CSGO_crate_sticker_pack_kat2014_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_kat2014_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_kat2014_01.217983bfc1c97317903a25beab668565ad417ef8.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "14" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "3" - } - } - } - "205" - { - "name" "crate_sticker_pack_kat2014_02" - "defindex" "4015" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_kat2014_02" - "item_description" "#CSGO_crate_sticker_pack_kat2014_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_kat2014_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_kat2014_02.71f2e9a0cb0e3f5ffea795f381058ecb84152d80.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "15" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "3" - } - } - } - "206" - { - "name" "crate_sticker_pack_community01" - "defindex" "4016" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_community01" - "item_description" "CSGO_crate_sticker_pack_community01_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_community01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_community01.86463c48a690c9df0853510aeb9f43275baa2d49.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "sticker_pack_community01_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "16" - } - } - } - "207" - { - "name" "crate_community_3" - "defindex" "4017" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_3" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_3" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "17" - } - } - } - "208" - { - "name" "crate_community_4" - "defindex" "4018" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_4" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_4" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "18" - } - } - } - "209" - { - "name" "crate_esports_2014_summer" - "defindex" "4019" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esports_2014_summer" - "item_description" "#CSGO_crate_esports_2014_summer_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esports_2014_summer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "esports_crate_key" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "19" - } - } - } - "210" - { - "name" "crate_sticker_pack_cologne2014_01" - "defindex" "4020" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_cologne2014_01" - "item_description" "#CSGO_crate_sticker_pack_cologne2014_desc01" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2014_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2014_01.27044753909c23b3e57bf4c92d0d8f11b1c661c2.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "20" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "211" - { - "name" "crate_sticker_pack_cologne2014_02" - "defindex" "4021" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_cologne2014_02" - "item_description" "#CSGO_crate_sticker_pack_cologne2014_desc02" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cologne2014_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2014_02.2c82e9044648e96f8ad8e905a97d89fb86cad100.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "21" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "212" - { - "name" "crate_esl14_promo_de_dust2" - "defindex" "4022" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esl14_promo_de_dust2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_dust2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "22" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "213" - { - "name" "crate_esl14_promo_de_inferno" - "defindex" "4023" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esl14_promo_de_inferno" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_inferno" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "23" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "214" - { - "name" "crate_esl14_promo_de_mirage" - "defindex" "4024" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esl14_promo_de_mirage" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_mirage" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "24" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "215" - { - "name" "crate_esl14_promo_de_nuke" - "defindex" "4025" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esl14_promo_de_nuke" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_nuke" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "25" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "216" - { - "name" "crate_esl14_promo_de_cache" - "defindex" "4026" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esl14_promo_de_cache" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_cache" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "26" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "217" - { - "name" "crate_esl14_promo_de_cbble" - "defindex" "4027" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esl14_promo_de_cbble" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_cbble" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "27" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "218" - { - "name" "crate_esl14_promo_de_overpass" - "defindex" "4028" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_esl14_promo_de_overpass" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_esl14_promo_de_overpass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "28" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "4" - } - } - } - "219" - { - "name" "crate_operation_vanguard" - "defindex" "4029" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_operation_vanguard" - "item_description" "#CSGO_crate_operation_vanguard_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_5" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_5" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "29" - } - } - } - "220" - { - "name" "crate_sticker_pack_dhw2014_01" - "defindex" "4030" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_dhw2014_01" - "item_description" "#CSGO_crate_sticker_pack_dhw2014_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_dhw2014_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_dhw2014_01.610021432846e2e95053b2efe732e02f84cb824d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_dhw2014_01_large.d239e0adad463ff845b55fd4864543db5c058ef6.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "30" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "221" - { - "name" "crate_dhw14_promo_de_dust2" - "defindex" "4031" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw14_promo_de_dust2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_dust2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "31" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "222" - { - "name" "crate_dhw14_promo_de_inferno" - "defindex" "4032" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw14_promo_de_inferno" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_inferno" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "32" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "223" - { - "name" "crate_dhw14_promo_de_mirage" - "defindex" "4033" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw14_promo_de_mirage" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_mirage" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "33" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "224" - { - "name" "crate_dhw14_promo_de_nuke" - "defindex" "4034" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw14_promo_de_nuke" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_nuke" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "34" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "225" - { - "name" "crate_dhw14_promo_de_cache" - "defindex" "4035" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw14_promo_de_cache" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_cache" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "35" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "226" - { - "name" "crate_dhw14_promo_de_cbble" - "defindex" "4036" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw14_promo_de_cbble" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_cbble" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "36" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "227" - { - "name" "crate_dhw14_promo_de_overpass" - "defindex" "4037" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_dhw14_promo_de_overpass" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_dhw14_promo_de_overpass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "37" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "228" - { - "name" "crate_sticker_pack_dhw2014_fnatic" - "defindex" "4038" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_fnatic" - "item_description" "#StickerKit_desc_dhw2014_fnatic" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/fnatic" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/fnatic.0c11f7179e706d9f544da50b23c9d88f06c15314.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/fnatic_large.341e4130694509f10480111791ff42cdef73b585.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "229" - { - "name" "crate_sticker_pack_dhw2014_cloud9" - "defindex" "4039" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_cloud9" - "item_description" "#StickerKit_desc_dhw2014_cloud9" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/cloud9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/cloud9.493d0f432ff1ad6086cbef662735e078125d519c.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/cloud9_large.09729c21f58cf48dc8cbd2ea25cb9c938211d587.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "230" - { - "name" "crate_sticker_pack_dhw2014_ninjasinpyjamas" - "defindex" "4041" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_ninjasinpyjamas" - "item_description" "#StickerKit_desc_dhw2014_ninjasinpyjamas" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/ninjasinpyjamas" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ninjasinpyjamas.3a11cdb981fd4b9ad3775f67c06f18d95bc934ef.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ninjasinpyjamas_large.aaa876adaee626de2c090d2eaefd7a102ea3e21d.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "231" - { - "name" "crate_sticker_pack_dhw2014_virtuspro" - "defindex" "4042" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_virtuspro" - "item_description" "#StickerKit_desc_dhw2014_virtuspro" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/virtuspro" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/virtuspro.d09e01ff7eaefdf26330c6bf2036cfda0dcb4c35.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/virtuspro_large.3f54f2b45ab69b3830f2941855b37362a7c756c7.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "232" - { - "name" "crate_sticker_pack_dhw2014_navi" - "defindex" "4043" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_navi" - "item_description" "#StickerKit_desc_dhw2014_navi" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/navi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/navi.ba10531a835b688b607bfdc63f9db0e2827d5640.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/navi_large.3f406c283c73c0e394f859a7c9fe82b125b0b0e6.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "233" - { - "name" "crate_sticker_pack_dhw2014_dignitas" - "defindex" "4045" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_teamdignitas" - "item_description" "#StickerKit_desc_dhw2014_dignitas" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/dignitas" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dignitas.b13f62307e3babc9936b2064f3f01887e0a9be5c.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dignitas_large.bc7c4602e33c314a2c5336d197a393edf250e8e7.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "234" - { - "name" "crate_sticker_pack_dhw2014_bravadogaming" - "defindex" "4046" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_bravadogaming" - "item_description" "#StickerKit_desc_dhw2014_bravadogaming" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/bravadogaming" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/bravadogaming.4680bd06cf3be1dd80fb1839dfd2df90d1eee339.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/bravadogaming_large.502768f3a37eabc8e227f35300ebe4f50e30acd1.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "235" - { - "name" "crate_sticker_pack_dhw2014_escgaming" - "defindex" "4047" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_escgaming" - "item_description" "#StickerKit_desc_dhw2014_escgaming" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/escgaming" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/escgaming.183e636597f9e5f922a1d6bf570333c02179ec8d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/escgaming_large.ce8418ad193e27b867b5ebcad15b131e37db4491.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "236" - { - "name" "crate_sticker_pack_dhw2014_hellraisers" - "defindex" "4048" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_hellraisers" - "item_description" "#StickerKit_desc_dhw2014_hellraisers" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/hellraisers" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/hellraisers.706e9a1c7a967b490730442b31b39dbfe341e31d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/hellraisers_large.909a85109977d63ffc2c46a05409026657fdde6e.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "237" - { - "name" "crate_sticker_pack_dhw2014_myxmg" - "defindex" "4049" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_myxmg" - "item_description" "#StickerKit_desc_dhw2014_myxmg" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/myxmg" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/myxmg.c36ff3c2ae77e84861c5d6222554a64dfec7b7cb.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/myxmg_large.64006519d172306cf1bbb404b446351241fdaec6.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "238" - { - "name" "crate_sticker_pack_dhw2014_ibuypower" - "defindex" "4050" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_ibuypower" - "item_description" "#StickerKit_desc_dhw2014_ibuypower" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/ibuypower" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ibuypower.9df10e3019f74586265d2f22f9c3f99664308e6c.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ibuypower_large.436eab1f9a65109c260b2b718e57d3028a00ba83.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "239" - { - "name" "crate_sticker_pack_dhw2014_teamldlc" - "defindex" "4051" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_teamldlc" - "item_description" "#StickerKit_desc_dhw2014_teamldlc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/teamldlc" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/teamldlc.c42985cc18855e89a2689ca3b11a1139bdf89f3f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/teamldlc_large.e07013d978d6f91f8e20b2401085dfdd73032ff8.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "240" - { - "name" "crate_sticker_pack_dhw2014_pentasports" - "defindex" "4052" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_pentasports" - "item_description" "#StickerKit_desc_dhw2014_pentasports" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/pentasports" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/pentasports.98d46c99ca7f2209837a864b246c52000ca98cdb.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/pentasports_large.e1056a880b5071e5ef6ac74b307edf93041065ed.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "241" - { - "name" "crate_sticker_pack_dhw2014_planetkeydynamics" - "defindex" "4053" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_planetkeydynamics" - "item_description" "#StickerKit_desc_dhw2014_planetkeydynamics" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/planetkeydynamics" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/planetkeydynamics.b178643926f0fbc94a35ee041050270323a250f3.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/planetkeydynamics_large.33f51a8cb0edd49ee5d8411191037685b4832320.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "242" - { - "name" "crate_sticker_pack_dhw2014_dhw" - "defindex" "4054" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_dhw" - "item_description" "#StickerKit_desc_dhw2014_dhw" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/dreamhackwinter2014" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dreamhackwinter2014.7f9f7b4710147b77727273055f57445092f86348.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dreamhackwinter2014_large.44a3ae4ec611d0cc81bba7a6368cd26257cc5288.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "243" - { - "name" "crate_sticker_pack_dhw2014_3dmax" - "defindex" "4055" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_3dmax" - "item_description" "#StickerKit_desc_dhw2014_3dmax" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/3dmax" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/3dmax.7af1311baffa42963099806bba2ea62da8ad7182.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/3dmax_large.fa11e39140200f3c441fc7e0fb0b9ce893918169.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "244" - { - "name" "crate_sticker_pack_dhw2014_copenhagenwolves" - "defindex" "4056" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_copenhagenwolves" - "item_description" "#StickerKit_desc_dhw2014_copenhagenwolves" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/copenhagenwolves" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/copenhagenwolves.c49723911bc0ee349196fb0acf01bd7fabfdea63.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/copenhagenwolves_large.32935def21beead765167a528d65137bc4fabc82.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "245" - { - "name" "crate_sticker_pack_dhw2014_datteam" - "defindex" "4057" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_datteam" - "item_description" "#StickerKit_desc_dhw2014_datteam" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/datteam" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/datteam.e0c3d9f5b448ded43d1fcf53730ea2457c308281.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/datteam_large.d2a656a7d09c14a4a6e67e524aed0c3d194c20fb.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "246" - { - "name" "crate_sticker_pack_dhw2014_londonconspiracy" - "defindex" "4058" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_londonconspiracy" - "item_description" "#StickerKit_desc_dhw2014_londonconspiracy" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/londonconspiracy" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/londonconspiracy.eed671703979052cda8884bbd07263051280222d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/londonconspiracy_large.39b6be0a1f1605efc103975636b064290715fff5.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "247" - { - "name" "crate_sticker_pack_dhw2014_mousesports" - "defindex" "4059" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_mousesports" - "item_description" "#StickerKit_desc_dhw2014_mousesports" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/mousesports" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/mousesports.c509123c89fcb404e9fed4f379702fd0f388c626.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/mousesports_large.c344d7ad5338f077af1923efce5f78fd8de3013b.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "248" - { - "name" "crate_sticker_pack_dhw2014_flipsid3" - "defindex" "4060" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_dhw2014_flipsid3" - "item_description" "#StickerKit_desc_dhw2014_flipsid3" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/dhw2014/flipsid3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/flipsid3.cdce4e5bf6b4ce418ea8369a13587097b6e62095.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/flipsid3_large.c221f04f9e5019b0d604d103438ec7002b5d8d43.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "5" - } - } - } - "249" - { - "name" "crate_community_6" - "defindex" "4061" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_6" - "item_description" "#CSGO_crate_community_6_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_6" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_6" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "38" - } - } - } - "250" - { - "name" "crate_sticker_pack_eslkatowice2015_3dmax" - "defindex" "4062" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_3dmax" - "item_description" "#StickerKit_desc_eslkatowice2015_3dmax" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/3dmax" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/3dmax.bfb723831b03d2e12de9f1d1b551c93634fe49cd.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/3dmax_large.6dd94c5043a00ba0116d9cba6f632f93254637f5.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "251" - { - "name" "crate_sticker_pack_eslkatowice2015_cloud9" - "defindex" "4063" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_cloud9" - "item_description" "#StickerKit_desc_eslkatowice2015_cloud9" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/cloud9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/cloud9.3c51c6174cef500c61d547c42dc952cdd4ab7611.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/cloud9_large.cbcc87fdb71be8e2f62f6a54fd063c229d3b4e82.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "252" - { - "name" "crate_sticker_pack_eslkatowice2015_counterlogic" - "defindex" "4064" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_counterlogic" - "item_description" "#StickerKit_desc_eslkatowice2015_counterlogic" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/counterlogic" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/counterlogic.f49adabd6052a558bff3fe09f5a09e0675737936.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/counterlogic_large.03c5c9314466ac62842ca18f2928be56fd76647d.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "253" - { - "name" "crate_sticker_pack_eslkatowice2015_flipsid3" - "defindex" "4065" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_flipsid3" - "item_description" "#StickerKit_desc_eslkatowice2015_flipsid3" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/flipsid3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/flipsid3.34ca10bd00eb1e307a4b2465927015270b338e4c.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/flipsid3_large.84f5a0408e732c3405580c211050a916195e5b9b.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "254" - { - "name" "crate_sticker_pack_eslkatowice2015_fnatic" - "defindex" "4066" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_fnatic" - "item_description" "#StickerKit_desc_eslkatowice2015_fnatic" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/fnatic" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/fnatic.933f108d8414959c6ccb902fdad3330ca8eb8310.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/fnatic_large.65da8ea42ccaa373812e4a3d08d70b3fc6b92ef8.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "255" - { - "name" "crate_sticker_pack_eslkatowice2015_hellraisers" - "defindex" "4067" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_hellraisers" - "item_description" "#StickerKit_desc_eslkatowice2015_hellraisers" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/hellraisers" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/hellraisers.889f1377314658a29861f2a9ab106f9e941abb63.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/hellraisers_large.791b11a91b2a12c5cc56018056ac6ef4a4cd7bc2.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "256" - { - "name" "crate_sticker_pack_eslkatowice2015_keyd" - "defindex" "4068" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_keyd" - "item_description" "#StickerKit_desc_eslkatowice2015_keyd" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/keyd" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/keyd.8757d7756845e9c7c04c26fd71e1fe38af3f2829.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/keyd_large.1371381a6ac4c1a9275ed55285f93658f844fc05.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "257" - { - "name" "crate_sticker_pack_eslkatowice2015_lgb" - "defindex" "4069" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_lgb" - "item_description" "#StickerKit_desc_eslkatowice2015_lgb" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/lgb" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/lgb.e0683db5ccf434f75469f4a9f7b2f49822e89264.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/lgb_large.e2433db63170f333355ec88914b901efa6e002fc.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "258" - { - "name" "crate_sticker_pack_eslkatowice2015_navi" - "defindex" "4070" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_navi" - "item_description" "#StickerKit_desc_eslkatowice2015_navi" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/navi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/navi.2a907bfdb5eaf77c42f30c7f374ff29d0f79dfe2.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/navi_large.ead83ccce5bb308db55d2eb92b2e4d511adf6307.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "259" - { - "name" "crate_sticker_pack_eslkatowice2015_ninjasinpyjamas" - "defindex" "4071" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_ninjasinpyjamas" - "item_description" "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/ninjasinpyjamas" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/ninjasinpyjamas.1850936680a25413d93dc240d76366a9088f51ed.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/ninjasinpyjamas_large.b651b80e8c58f443bd1b24c5de146931ff380992.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "260" - { - "name" "crate_sticker_pack_eslkatowice2015_pentasports" - "defindex" "4072" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_pentasports" - "item_description" "#StickerKit_desc_eslkatowice2015_pentasports" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/pentasports" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/pentasports.a6b0ddffefb5507453456c0d2c35b6a57821c171.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/pentasports_large.8fdf2611c611d48069b2bbc1d580d457ab7e3a5f.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "261" - { - "name" "crate_sticker_pack_eslkatowice2015_teamenvyus" - "defindex" "4073" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_teamenvyus" - "item_description" "#StickerKit_desc_eslkatowice2015_teamenvyus" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/teamenvyus" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamenvyus.7055375c2c2682e9ed46e8b6db514814ee7db6a1.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamenvyus_large.ecd0526e2cf238b0425e98c4f7bd3c9779f9647b.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "262" - { - "name" "crate_sticker_pack_eslkatowice2015_teamsolomid" - "defindex" "4074" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_teamsolomid" - "item_description" "#StickerKit_desc_eslkatowice2015_teamsolomid" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/teamsolomid" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamsolomid.c133bd18f8edaaf4c13703cdfad293c29d962412.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamsolomid_large.be234b9678c6c4b3116f72e24efd9347e4e2f50d.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "263" - { - "name" "crate_sticker_pack_eslkatowice2015_titan" - "defindex" "4075" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_titan" - "item_description" "#StickerKit_desc_eslkatowice2015_titan" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/titan" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/titan.fe5f4085cd69484463b529908b351ec066c01e5f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/titan_large.ec5f872517c77762c74f1461867c76f929d0a620.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "264" - { - "name" "crate_sticker_pack_eslkatowice2015_virtuspro" - "defindex" "4076" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_virtuspro" - "item_description" "#StickerKit_desc_eslkatowice2015_virtuspro" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/virtuspro" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/virtuspro.f439f2e8088229af10a9340a593eb2095a876bbd.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/virtuspro_large.aacafa7a15b4d315ac8b6c2d873af56824100a62.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "265" - { - "name" "crate_sticker_pack_eslkatowice2015_voxeminor" - "defindex" "4077" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_voxeminor" - "item_description" "#StickerKit_desc_eslkatowice2015_voxeminor" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/voxeminor" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/voxeminor.d013b4a6b538881f7467120d147acfbffb242460.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/voxeminor_large.283cf0be32bf62f205be77bfaa8afc5641a86167.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "266" - { - "name" "crate_sticker_pack_eslkatowice2015_esl_a" - "defindex" "4078" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslkatowice2015_esl_a" - "item_description" "#StickerKit_desc_eslkatowice2015_esl_a" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/eslkatowice2015/esl_a" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/esl_a.fc2e4e24ecbf198f3f9736c051ff22feeb0e4ae3.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/esl_a_large.b6e94be2643e41e1db192c0794c0cf18101106de.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "267" - { - "name" "crate_eslkatowice2015_promo_de_dust2" - "defindex" "4079" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_dust2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "39" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "268" - { - "name" "crate_eslkatowice2015_promo_de_inferno" - "defindex" "4080" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_inferno" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "40" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "269" - { - "name" "crate_eslkatowice2015_promo_de_mirage" - "defindex" "4081" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_mirage" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "41" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "270" - { - "name" "crate_eslkatowice2015_promo_de_nuke" - "defindex" "4082" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_nuke" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "42" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "271" - { - "name" "crate_eslkatowice2015_promo_de_cache" - "defindex" "4083" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_cache" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_cache" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "43" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "272" - { - "name" "crate_eslkatowice2015_promo_de_cbble" - "defindex" "4084" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_cbble" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "44" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "273" - { - "name" "crate_eslkatowice2015_promo_de_overpass" - "defindex" "4085" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslkatowice2015_promo_de_overpass" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "45" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "274" - { - "name" "crate_sticker_pack_eslkatowice2015_01" - "defindex" "4086" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_eslkatowice2015_01" - "item_description" "#CSGO_crate_sticker_pack_eslkatowice2015_desc01" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01.5c7057fb4d6e20a98ac073aeb54b6d8497d1b43a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "46" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "275" - { - "name" "crate_sticker_pack_eslkatowice2015_02" - "defindex" "4087" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_eslkatowice2015_02" - "item_description" "#CSGO_crate_sticker_pack_eslkatowice2015_desc02" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02.762617e39f9d6545c44623a27178d7a192fe87cc.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "47" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "6" - } - } - } - "276" - { - "name" "crate_stattrak_swap_tool" - "defindex" "4088" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_tool_stattrak_swap" - "item_description" "#CSGO_desc_crate_tool_stattrak_swap" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/stattrak_swap_tool_bundle" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/stattrak_swap_tool_bundle.cc65eb839230ac929686bacb6cb8ecd2f3c48f8a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - } - "277" - { - "name" "crate_community_7" - "defindex" "4089" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_7" - "item_description" "#CSGO_crate_community_7_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_7" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_7" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "48" - } - } - } - "278" - { - "name" "crate_sticker_pack_enfu_capsule" - "defindex" "4090" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_enfu_capsule" - "item_description" "#CSGO_crate_sticker_pack_enfu_capsule_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_enfu_capsule" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_enfu_capsule.7a280c77c564e6dce70973d8d12af9fdd033688a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "49" - } - } - } - "279" - { - "name" "crate_community_8" - "defindex" "4091" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_8" - "item_description" "#CSGO_crate_community_8_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_8" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_8" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "50" - } - } - } - "280" - { - "name" "crate_sticker_pack_eslcologne2015_fnatic" - "defindex" "4092" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_fnatic" - "item_description" "#StickerKit_desc_eslcologne2015_team_fnatic" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/fnatic" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/fnatic.d3d7096212ae149d70d077ddab7f4e2ce13af3ea.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/fnatic_large.5f6803ac084a927d453022c16ff67052cc144021.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "281" - { - "name" "crate_sticker_pack_eslcologne2015_virtuspro" - "defindex" "4093" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_virtuspro" - "item_description" "#StickerKit_desc_eslcologne2015_team_virtuspro" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/virtuspro" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/virtuspro.1907301b9e226a7e9d049219745627aaaab71688.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/virtuspro_large.a290bf9f9422982da08fd9b6c3544df1965667f3.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "282" - { - "name" "crate_sticker_pack_eslcologne2015_mousesports" - "defindex" "4094" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_mousesports" - "item_description" "#StickerKit_desc_eslcologne2015_team_mousesports" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/mousesports" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/mousesports.3e75da497d9f75fa56f463c22db25f29992561ce.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/mousesports_large.54488625d33c89870c8331e1f45bad59331667cc.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "283" - { - "name" "crate_sticker_pack_eslcologne2015_navi" - "defindex" "4095" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_navi" - "item_description" "#StickerKit_desc_eslcologne2015_team_navi" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/navi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/navi.38eaac16dd03c9491c37e400a65380b9d8112735.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/navi_large.2afcea86a9066e5cfc6e8430bad366cdf7e5becc.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "284" - { - "name" "crate_sticker_pack_eslcologne2015_renegades" - "defindex" "4096" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_renegades" - "item_description" "#StickerKit_desc_eslcologne2015_team_renegades" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/renegades" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/renegades.f423ae9e2da9445eb5eccabf89ad7229d9fdefcc.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/renegades_large.1835cf469efad2dbb3ef7ac5ead0f2c757363e8d.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "285" - { - "name" "crate_sticker_pack_eslcologne2015_kinguin" - "defindex" "4097" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_kinguin" - "item_description" "#StickerKit_desc_eslcologne2015_team_kinguin" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/kinguin" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/kinguin.8ac2845fdef90419820256cee06c634a0f25c95f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/kinguin_large.181c1613682020d27f0cfd90924ebdc5a88960cb.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "286" - { - "name" "crate_sticker_pack_eslcologne2015_ebettle" - "defindex" "4098" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_ebettle" - "item_description" "#StickerKit_desc_eslcologne2015_team_ebettle" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/ebettle" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ebettle.004edab3669e4ffba2304385fd4abdd827a56145.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ebettle_large.610f9297822c9f88522d691a56d9b0c51cbe2e0d.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "287" - { - "name" "crate_sticker_pack_eslcologne2015_cloud9" - "defindex" "4099" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_cloud9" - "item_description" "#StickerKit_desc_eslcologne2015_team_cloud9" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/cloud9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/cloud9.5bbc7086b3c2c528546452a32b50a2a769942066.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/cloud9_large.1dc18f936c3860f2c8a781fc6da37256cad7720d.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "288" - { - "name" "crate_sticker_pack_eslcologne2015_ninjasinpyjamas" - "defindex" "4100" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_ninjasinpyjamas" - "item_description" "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/ninjasinpyjamas" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ninjasinpyjamas.688fe5ef66bbf1e61cbdfeff495666091f9b01ee.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ninjasinpyjamas_large.0fdbd3a405937e33ace895250ee9cb2659784edf.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "289" - { - "name" "crate_sticker_pack_eslcologne2015_envyus" - "defindex" "4101" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_envyus" - "item_description" "#StickerKit_desc_eslcologne2015_team_envyus" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/envyus" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/envyus.89a88946df01bd6eb9a7e9dc02885ec043671702.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/envyus_large.d784e189d585254bf8bf4d617d73a3944bf9aa8a.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "290" - { - "name" "crate_sticker_pack_eslcologne2015_luminositygaming" - "defindex" "4102" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_luminositygaming" - "item_description" "#StickerKit_desc_eslcologne2015_team_luminositygaming" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/luminositygaming" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/luminositygaming.8f72e622a54c32d3f706e73de0be2f9a44bb86f9.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/luminositygaming_large.54fe6da5a2e6c438c3d5b22d66509d27426deb16.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "291" - { - "name" "crate_sticker_pack_eslcologne2015_solomid" - "defindex" "4103" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_solomid" - "item_description" "#StickerKit_desc_eslcologne2015_team_solomid" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/solomid" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/solomid.eb9fe3cd2d2d377f065973f6c05d2e92ff37cc10.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/solomid_large.8b69bbb85d51887dd0e83a68581ddbf3c78e3f8f.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "292" - { - "name" "crate_sticker_pack_eslcologne2015_teamimmunity" - "defindex" "4104" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_teamimmunity" - "item_description" "#StickerKit_desc_eslcologne2015_team_teamimmunity" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/teamimmunity" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/teamimmunity.161950e378400ecc695cf42f45f30dd3e647560f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/teamimmunity_large.b828628533c691ce5a8ba6efc5da876bf0bee974.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "293" - { - "name" "crate_sticker_pack_eslcologne2015_flipside" - "defindex" "4105" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_flipside" - "item_description" "#StickerKit_desc_eslcologne2015_team_flipside" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/flipside" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/flipside.8d441e7ab7fae15a36b261c9fbc8ea4d66be352b.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/flipside_large.b1c24dd5a42f192a4f07e63398eb662de8580da3.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "294" - { - "name" "crate_sticker_pack_eslcologne2015_titan" - "defindex" "4106" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_titan" - "item_description" "#StickerKit_desc_eslcologne2015_team_titan" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/titan" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/titan.5059cc4785d26ba50eb5abd39a7c6f35fa4e0ab9.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/titan_large.b0e0885602d786d4f0763541a303d45b16fcf194.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "295" - { - "name" "crate_sticker_pack_eslcologne2015_clg" - "defindex" "4107" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_clg" - "item_description" "#StickerKit_desc_eslcologne2015_team_clg" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/clg" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/clg.dd63e11b139ad10c965fa7fbec9a5d5d34bead78.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/clg_large.716d4b3d442f088ccf9987607d3eb63f07bc799c.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "296" - { - "name" "crate_sticker_pack_eslcologne2015_esl" - "defindex" "4108" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_eslcologne2015_team_esl" - "item_description" "#StickerKit_desc_eslcologne2015_team_esl" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cologne2015/esl" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/esl.39ca47899dbbe67d8ed074d37a4551ce525abfb1.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/esl_large.5e2c2a30caee9d5a14c714671e6cd935d17615ca.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "297" - { - "name" "crate_sticker_pack_eslcologne2015_legends" - "defindex" "4109" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_eslcologne2015_legends" - "item_description" "#CSGO_crate_sticker_pack_eslcologne2015_legends_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_01.37874785affc9556f9985f26a8d28dcb23795130.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "51" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "298" - { - "name" "crate_sticker_pack_eslcologne2015_challengers" - "defindex" "4110" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_eslcologne2015_challengers" - "item_description" "#CSGO_crate_sticker_pack_eslcologne2015_challengers_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_02.1912c6b817b404791c8a3d1b4a90acebe003b0b5.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "52" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "299" - { - "name" "crate_signature_pack_eslcologne2015_group_1" - "defindex" "4111" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_1" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_1_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_1.ef77b4921d3213981ea7c21866a59e33bd2cf755.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "53" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "300" - { - "name" "crate_signature_pack_eslcologne2015_group_2" - "defindex" "4112" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_2" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_2_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_2.9a96ebf86e6600672545512b35281213e610a466.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "54" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "301" - { - "name" "crate_signature_pack_eslcologne2015_group_3" - "defindex" "4113" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_3" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_3_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_3" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_3.a427cd0396dadefccbb8f3f3180efbfa32af86e0.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "55" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "302" - { - "name" "crate_signature_pack_eslcologne2015_group_4" - "defindex" "4114" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_group_4" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_group_4_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_4" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_4.7ca048d7415dfabe2012e743d7aa150b5d0f57fd.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "56" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "303" - { - "name" "crate_signature_pack_eslcologne2015_fnatic" - "defindex" "4115" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_fnatic" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_fnatic_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_fnatic" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_fnatic.131fb6a9a7430729425c723e70a85fe05a790509.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "57" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "6" - } - } - } - "304" - { - "name" "crate_signature_pack_eslcologne2015_luminositygaming" - "defindex" "4116" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_luminositygaming" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_luminositygaming.a3153f54ff1ce257e1b8e5271476c55852d3e0c0.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "58" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "57" - } - } - } - "305" - { - "name" "crate_signature_pack_eslcologne2015_navi" - "defindex" "4117" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_navi" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_navi_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_navi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_navi.a455c3031fe2ed9e26ff976fd0e4729e58747997.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "59" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "12" - } - } - } - "306" - { - "name" "crate_signature_pack_eslcologne2015_ninjasinpyjamas" - "defindex" "4118" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_ninjasinpyjamas" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_ninjasinpyjamas.08186b200f886664121acc544115020f4e7274b9.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "60" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "1" - } - } - } - "307" - { - "name" "crate_signature_pack_eslcologne2015_envyus" - "defindex" "4119" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_envyus" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_envyus_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_envyus" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_envyus.86e41aa7099e2c68982d1d997a9f1578e535969f.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "61" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "46" - } - } - } - "308" - { - "name" "crate_signature_pack_eslcologne2015_titan" - "defindex" "4120" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_titan" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_titan_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_titan" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_titan.2f4f27af898409a628153ffbc991d3581c3a89e2.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "62" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "27" - } - } - } - "309" - { - "name" "crate_signature_pack_eslcologne2015_solomid" - "defindex" "4121" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_solomid" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_solomid_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_solomid" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_solomid.0cf93bb22c101d93f96584ee1ac875766cd7f731.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "63" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "58" - } - } - } - "310" - { - "name" "crate_signature_pack_eslcologne2015_virtuspro" - "defindex" "4122" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_virtuspro" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_virtuspro_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_virtuspro" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_virtuspro.fd1d9f7a7f03458b317d0b4e39351c5a60da0519.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "64" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "31" - } - } - } - "311" - { - "name" "crate_signature_pack_eslcologne2015_mousesports" - "defindex" "4123" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_mousesports" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_mousesports_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_mousesports" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_mousesports.8c95e4941107ce30cbeb51f52c1861f726278d2f.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "65" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "29" - } - } - } - "312" - { - "name" "crate_signature_pack_eslcologne2015_renegades" - "defindex" "4124" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_renegades" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_renegades_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_renegades" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_renegades.8ac632d013c90cd6f29c6efc9093ea93840858db.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "66" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "53" - } - } - } - "313" - { - "name" "crate_signature_pack_eslcologne2015_teamimmunity" - "defindex" "4125" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_teamimmunity" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_teamimmunity.0130e27679add9a8ab9c959c770312d76a394bc1.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "67" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "54" - } - } - } - "314" - { - "name" "crate_signature_pack_eslcologne2015_ebettle" - "defindex" "4126" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_ebettle" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_ebettle_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_ebettle" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_ebettle.eb534ef07f786022c07609deffe293450e759d2d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "68" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "56" - } - } - } - "315" - { - "name" "crate_signature_pack_eslcologne2015_kinguin" - "defindex" "4127" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_kinguin" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_kinguin_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_kinguin" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_kinguin.2b65e6cc0d8dba62d677aa25895ccf80b030b2aa.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "69" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "55" - } - } - } - "316" - { - "name" "crate_signature_pack_eslcologne2015_flipside" - "defindex" "4128" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_flipside" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_flipside_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_flipside" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_flipside.01a3a5bfb385f3e1d5ebfd4b233436c8b0788538.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "70" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "43" - } - } - } - "317" - { - "name" "crate_signature_pack_eslcologne2015_clg" - "defindex" "4129" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_clg" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_clg_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_clg" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_clg.40faf67598c471ef0db25cb039755631ff14fb4f.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "71" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "49" - } - } - } - "318" - { - "name" "crate_signature_pack_eslcologne2015_cloud9" - "defindex" "4130" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_eslcologne2015_cloud9" - "item_description" "#CSGO_crate_signature_pack_eslcologne2015_cloud9_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cologne2015_cloud9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_cloud9.1ae20ce78cf35bc6e8d16d22c936bfe50a3d9e33.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "72" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "52" - } - } - } - "319" - { - "name" "crate_eslcologne2015_promo_de_dust2" - "defindex" "4131" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslcologne2015_promo_de_dust2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_dust2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "73" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "320" - { - "name" "crate_eslcologne2015_promo_de_mirage" - "defindex" "4132" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslcologne2015_promo_de_mirage" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_mirage" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "74" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "321" - { - "name" "crate_eslcologne2015_promo_de_inferno" - "defindex" "4133" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslcologne2015_promo_de_inferno" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_inferno" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "75" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "322" - { - "name" "crate_eslcologne2015_promo_de_cbble" - "defindex" "4134" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslcologne2015_promo_de_cbble" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_cbble" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "76" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "323" - { - "name" "crate_eslcologne2015_promo_de_overpass" - "defindex" "4135" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslcologne2015_promo_de_overpass" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_overpass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "77" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "324" - { - "name" "crate_eslcologne2015_promo_de_cache" - "defindex" "4136" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslcologne2015_promo_de_cache" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_cache" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "78" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "325" - { - "name" "crate_eslcologne2015_promo_de_train" - "defindex" "4137" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_eslcologne2015_promo_de_train" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_eslcologne2015_promo_de_train" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "79" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "7" - } - } - } - "326" - { - "name" "crate_community_9" - "defindex" "4138" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_9" - "item_description" "#CSGO_crate_community_9_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "community_case_9" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "80" - } - } - } - "327" - { - "name" "crate_sticker_pack_cluj2015_nip" - "defindex" "4139" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_nip" - "item_description" "#StickerKit_desc_cluj2015_team_nip" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/nip" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nip.64c93c7613ab0aba6dae1e4014a00a35290ca662.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nip_large.c7139b2b1884d10c3f6942052f57a4f79161f330.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "328" - { - "name" "crate_sticker_pack_cluj2015_dig" - "defindex" "4140" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_dig" - "item_description" "#StickerKit_desc_cluj2015_team_dig" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/dig" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dig.1962ee7e35fb4d40fb85823e337dac4de8ce9420.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dig_large.b4f5b32b362b3d1915d2486d1d24ed1964a420e3.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "329" - { - "name" "crate_sticker_pack_cluj2015_clg" - "defindex" "4141" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_clg" - "item_description" "#StickerKit_desc_cluj2015_team_clg" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/clg" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/clg.c97564d529827bdc2cd35805747c02c5989ac5c1.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/clg_large.0fc6bd1548095c909679116b6c622c8b727266bf.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "330" - { - "name" "crate_sticker_pack_cluj2015_vex" - "defindex" "4142" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_vex" - "item_description" "#StickerKit_desc_cluj2015_team_vex" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/vex" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vex.9a296b43202ffc3b76e6b3f950d2c6570127293e.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vex_large.20f48097153b223651684f514c7f789bcfd353f6.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "331" - { - "name" "crate_sticker_pack_cluj2015_flip" - "defindex" "4143" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_flip" - "item_description" "#StickerKit_desc_cluj2015_team_flip" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/flip" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/flip.6b2232daafea4cd9f6229f8dba0688a4f5dded3d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/flip_large.2fd3fdcdba22f17a0d095327588049014ea33ba1.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "332" - { - "name" "crate_sticker_pack_cluj2015_liq" - "defindex" "4144" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_liq" - "item_description" "#StickerKit_desc_cluj2015_team_liq" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/liq" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/liq.ff2545d70836f6090039cbd3f6c7101745a0d05d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/liq_large.531e73c4595f371f3a00f41bb6820db3c975b4bc.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "333" - { - "name" "crate_sticker_pack_cluj2015_mss" - "defindex" "4145" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_mss" - "item_description" "#StickerKit_desc_cluj2015_team_mss" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/mss" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/mss.ad4a651b0e3e2687d96f37747d5cc0a7bebf4708.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/mss_large.4b6073a2d10053bc471f20b8ffa528f9d9e5586b.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "334" - { - "name" "crate_sticker_pack_cluj2015_navi" - "defindex" "4146" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_navi" - "item_description" "#StickerKit_desc_cluj2015_team_navi" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/navi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/navi.a15b4e8be3f693ba5be157161c3c627bc7e8bd59.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/navi_large.3ca2ae32dc950ca6d842c30037fdda3321c83e4a.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "335" - { - "name" "crate_sticker_pack_cluj2015_vp" - "defindex" "4147" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_vp" - "item_description" "#StickerKit_desc_cluj2015_team_vp" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/vp" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vp.5cc950372e0c448d2ff958b7ce13fd907bcd2ace.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vp_large.b6a2d1867b93bd87d04a5ccf41c614547522ee61.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "336" - { - "name" "crate_sticker_pack_cluj2015_c9" - "defindex" "4148" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_c9" - "item_description" "#StickerKit_desc_cluj2015_team_c9" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/c9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/c9.53b4aa06864914b295514b83087bb389c2006476.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/c9_large.dbf10a8d74d47818baaf4fb7b75f051627d5e145.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "337" - { - "name" "crate_sticker_pack_cluj2015_g2" - "defindex" "4149" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_g2" - "item_description" "#StickerKit_desc_cluj2015_team_g2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/g2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/g2.27f296d878deab672fc965d48bf61350ff279e55.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/g2_large.3b3ca07a23e22e3c2d1ccc5ce8e4037accc686d9.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "338" - { - "name" "crate_sticker_pack_cluj2015_tit" - "defindex" "4150" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_tit" - "item_description" "#StickerKit_desc_cluj2015_team_tit" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/tit" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tit.5023eda322ecb248d0b034624aa4f92a6328483d.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tit_large.79f53164d6c3d0833ae1597f6a495e51907bce15.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "339" - { - "name" "crate_sticker_pack_cluj2015_tsolo" - "defindex" "4151" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_tsolo" - "item_description" "#StickerKit_desc_cluj2015_team_tsolo" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/tsolo" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tsolo.4e3f0cf2735b8dca2ec59655a35e0247552ad8c3.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tsolo_large.2a9ab26f578980660d4bc439d6f057cddf67e3a3.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "340" - { - "name" "crate_sticker_pack_cluj2015_nv" - "defindex" "4152" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_nv" - "item_description" "#StickerKit_desc_cluj2015_team_nv" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/nv" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nv.619e0887480edb39725f97ea6252a279eb91ad52.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nv_large.63cb2f608bd4ed2ce4f5ce47172d921bb1f6308d.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "341" - { - "name" "crate_sticker_pack_cluj2015_fntc" - "defindex" "4153" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_fntc" - "item_description" "#StickerKit_desc_cluj2015_team_fntc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/fntc" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/fntc.ff9b4d3f298c3618e3ec9f5830ac654426a96dcd.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/fntc_large.d4a03e2044bd4776cfdd8ff0e7761cdd1a5937c0.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "342" - { - "name" "crate_sticker_pack_cluj2015_lumi" - "defindex" "4154" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_lumi" - "item_description" "#StickerKit_desc_cluj2015_team_lumi" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/lumi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/lumi.741ce5b5f01c75a3aadb484b860323e2282d5324.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/lumi_large.1186f851d507701fde008ff0e9b9e0800255f3d5.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "343" - { - "name" "crate_sticker_pack_cluj2015_dhc" - "defindex" "4155" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#StickerKit_cluj2015_team_dhc" - "item_description" "#StickerKit_desc_cluj2015_team_dhc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/stickers/cluj2015/dhc" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dhc.6ec0924518bdc2d4c74afd8418a61e39beecb9e8.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dhc_large.9a2b556dd0ae1001ec0798f7d183e7f6432d692a.png" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "344" - { - "name" "crate_sticker_pack_cluj2015_legends" - "defindex" "4156" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_cluj2015_legends" - "item_description" "#CSGO_crate_sticker_pack_cluj2015_legends_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_01.b5aa0f4b99dc4dcab141fa6dcd4582314028d883.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "81" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "345" - { - "name" "crate_sticker_pack_cluj2015_challengers" - "defindex" "4157" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_cluj2015_challengers" - "item_description" "#CSGO_crate_sticker_pack_cluj2015_challengers_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_02.373ff0ba71289d874326b91b2ff7d75a2414de32.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "82" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "346" - { - "name" "crate_signature_pack_cluj2015_group_1" - "defindex" "4158" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_group_1" - "item_description" "#CSGO_crate_signature_pack_cluj2015_group_1_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_group_1" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_group_1.6a6b90fb30454859a255ca3d1888a9158ffbf180.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "83" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "347" - { - "name" "crate_signature_pack_cluj2015_group_2" - "defindex" "4159" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_group_2" - "item_description" "#CSGO_crate_signature_pack_cluj2015_group_2_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_cluj2015_group_2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_group_2.f22b59610aa0e88cb0447ab0599d62bb620a4b18.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "84" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "348" - { - "name" "crate_signature_pack_cluj2015_nip" - "defindex" "4160" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_nip" - "item_description" "#CSGO_crate_signature_pack_cluj2015_nip_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_nip" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_nip.3bb19dec2710b66a829fe41a42f37da1e4cb60e7.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "85" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "1" - } - } - } - "349" - { - "name" "crate_signature_pack_cluj2015_dig" - "defindex" "4161" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_dig" - "item_description" "#CSGO_crate_signature_pack_cluj2015_dig_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_dig" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_dig.10f7d28aa9bfa89b01f96ef9bbdacd1486947601.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "86" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "24" - } - } - } - "350" - { - "name" "crate_signature_pack_cluj2015_clg" - "defindex" "4162" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_clg" - "item_description" "#CSGO_crate_signature_pack_cluj2015_clg_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_clg" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_clg.c53d8a771295de390b35a96d9d3bdcfbb419c9ee.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "87" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "49" - } - } - } - "351" - { - "name" "crate_signature_pack_cluj2015_vex" - "defindex" "4163" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_vex" - "item_description" "#CSGO_crate_signature_pack_cluj2015_vex_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_vex" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_vex.e2a706220041111bb27daedeafe736b308d5461d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "88" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "47" - } - } - } - "352" - { - "name" "crate_signature_pack_cluj2015_flip" - "defindex" "4164" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_flip" - "item_description" "#CSGO_crate_signature_pack_cluj2015_flip_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_flip" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_flip.3087331179c290515f2598a63142e2629454fdf5.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "89" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "43" - } - } - } - "353" - { - "name" "crate_signature_pack_cluj2015_liq" - "defindex" "4165" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_liq" - "item_description" "#CSGO_crate_signature_pack_cluj2015_liq_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_liq" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_liq.1c92555032b1607fe8fa4b4b3d62b52db35c1c60.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "90" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "48" - } - } - } - "354" - { - "name" "crate_signature_pack_cluj2015_mss" - "defindex" "4166" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_mss" - "item_description" "#CSGO_crate_signature_pack_cluj2015_mss_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_mss" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_mss.c6e7c8a04e08608c2094945b97b14c6522416420.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "91" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "29" - } - } - } - "355" - { - "name" "crate_signature_pack_cluj2015_navi" - "defindex" "4167" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_navi" - "item_description" "#CSGO_crate_signature_pack_cluj2015_navi_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_navi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_navi.98a2ef643af64a98a84879e82461392c7041f764.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "92" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "12" - } - } - } - "356" - { - "name" "crate_signature_pack_cluj2015_vp" - "defindex" "4168" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_vp" - "item_description" "#CSGO_crate_signature_pack_cluj2015_vp_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_vp" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_vp.cd7c632e7aeb440e304f61b838a84cdf12b73289.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "93" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "31" - } - } - } - "357" - { - "name" "crate_signature_pack_cluj2015_c9" - "defindex" "4169" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_c9" - "item_description" "#CSGO_crate_signature_pack_cluj2015_c9_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_c9" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_c9.a2e53b4ba75a1eaeb9c213dbaf916795ba281fea.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "94" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "33" - } - } - } - "358" - { - "name" "crate_signature_pack_cluj2015_g2" - "defindex" "4170" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_g2" - "item_description" "#CSGO_crate_signature_pack_cluj2015_g2_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_g2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_g2.6918e2ed3b276f3acc35467e3e2e83af7769f3ef.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "95" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "59" - } - } - } - "359" - { - "name" "crate_signature_pack_cluj2015_tit" - "defindex" "4171" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_tit" - "item_description" "#CSGO_crate_signature_pack_cluj2015_tit_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_tit" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_tit.c1eaa565d4b1be3bfb3a073adb77869ead9f45bd.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "96" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "27" - } - } - } - "360" - { - "name" "crate_signature_pack_cluj2015_tsolo" - "defindex" "4172" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_tsolo" - "item_description" "#CSGO_crate_signature_pack_cluj2015_tsolo_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_tsolo" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_tsolo.d1d03f71a9ebe37999606a37100ee076392121eb.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "97" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "58" - } - } - } - "361" - { - "name" "crate_signature_pack_cluj2015_nv" - "defindex" "4173" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_nv" - "item_description" "#CSGO_crate_signature_pack_cluj2015_nv_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_nv" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_nv.fdd5a3e7baa7073d3cafa3b748063db8ca013330.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "98" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "46" - } - } - } - "362" - { - "name" "crate_signature_pack_cluj2015_fntc" - "defindex" "4174" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_fntc" - "item_description" "#CSGO_crate_signature_pack_cluj2015_fntc_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_fntc" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_fntc.f0ea756017aa5c9ca85a720cd632d6b5c5a2bb6a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "99" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "6" - } - } - } - "363" - { - "name" "crate_signature_pack_cluj2015_lumi" - "defindex" "4175" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_signature_pack_cluj2015_lumi" - "item_description" "#CSGO_crate_signature_pack_cluj2015_lumi_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/cluj2015_lumi" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_lumi.5c0d1b790a0a6717c7a073f3814c34f38544f8ff.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "100" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - "2" - { - "name" "tournament event team0 id" - "class" "tournament_event_team_id" - "value" "57" - } - } - } - "364" - { - "name" "crate_cluj2015_promo_de_dust2" - "defindex" "4176" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_cluj2015_promo_de_dust2" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_dust2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "101" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "365" - { - "name" "crate_cluj2015_promo_de_mirage" - "defindex" "4177" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_cluj2015_promo_de_mirage" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_mirage" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "102" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "366" - { - "name" "crate_cluj2015_promo_de_inferno" - "defindex" "4178" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_cluj2015_promo_de_inferno" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_inferno" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "103" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "367" - { - "name" "crate_cluj2015_promo_de_cbble" - "defindex" "4179" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_cluj2015_promo_de_cbble" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_cbble" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "104" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "368" - { - "name" "crate_cluj2015_promo_de_overpass" - "defindex" "4180" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_cluj2015_promo_de_overpass" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_overpass" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "105" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "369" - { - "name" "crate_cluj2015_promo_de_cache" - "defindex" "4181" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_cluj2015_promo_de_cache" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_cache" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "106" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "370" - { - "name" "crate_cluj2015_promo_de_train" - "defindex" "4182" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_cluj2015_promo_de_train" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_cluj2015_promo_de_train" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "107" - } - "1" - { - "name" "tournament event id" - "class" "tournament_event_id" - "value" "8" - } - } - } - "371" - { - "name" "crate_sticker_pack_pinups_capsule" - "defindex" "4183" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_pinups_capsule" - "item_description" "#CSGO_crate_sticker_pack_pinups_capsule_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_pinups_capsule" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_pinups_capsule.7d683665bbde870d62b4ad378a10945b2136b1f4.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "108" - } - } - } - "372" - { - "name" "crate_sticker_pack_slid3_capsule" - "defindex" "4184" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_slid3_capsule" - "item_description" "#CSGO_crate_sticker_pack_slid3_capsule_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_slid3_capsule" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_slid3_capsule.f534cc63ee1d94322f4e3c363081055ddbff7890.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "109" - } - } - } - "373" - { - "name" "crate_sticker_pack_team_roles_capsule" - "defindex" "4185" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_sticker_pack_team_roles_capsule" - "item_description" "#CSGO_crate_sticker_pack_team_roles_capsule_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_sticker_pack_team_roles_capsule" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_team_roles_capsule.13875f33d0883e9687a34f101565d0e0cc4fc145.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "110" - } - } - } - "374" - { - "name" "crate_community_10" - "defindex" "4186" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#CSGO_crate_community_10" - "item_description" "#CSGO_crate_community_10_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/weapon_cases/crate_community_10" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - "can_delete" "1" - } - "tool" - { - "type" "supply_crate" - "restriction" "crate_community_10" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "set supply crate series" - "class" "supply_crate_series" - "value" "111" - } - } - } - "375" - { - "name" "Collectible Pin - Dust II" - "defindex" "6001" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_DustII" - "item_description" "#CSGO_Collectible_Pin_DustII_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_dust2" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_dust2.21cfa1f8900c3e59fd207dc500ab4287feeccbc0.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_dust2_large.619f7e63556591eda38a7982f63dcd686f746371.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "376" - { - "name" "Collectible Pin - Guardian Elite" - "defindex" "6002" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_GuardianElite" - "item_description" "#CSGO_Collectible_Pin_GuardianElite_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_guardianelite" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardianelite.6a9648fd4eba0ccbe729e2173b57ad7502880a70.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardianelite_large.709bd555c8af75e87ee661aaacc5ea4f87ac8f36.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "377" - { - "name" "Collectible Pin - Mirage" - "defindex" "6003" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Mirage" - "item_description" "#CSGO_Collectible_Pin_Mirage_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_mirage" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_mirage.0b6a425a4ee64a014165b49076498de1aaf2d3ea.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_mirage_large.52d568542487696880ef395ef009853cdd88c2e8.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "378" - { - "name" "Collectible Pin - Inferno" - "defindex" "6004" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Inferno" - "item_description" "#CSGO_Collectible_Pin_Inferno_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_inferno" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno.790dbd55c964e62eae58eef4228e3b1ba4b45a39.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno_large.082a3bf33e7f6e812a47b11821f477e491f4ad2d.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "379" - { - "name" "Collectible Pin - Italy" - "defindex" "6005" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Italy" - "item_description" "#CSGO_Collectible_Pin_Italy_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_italy" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_italy.27b52667dff5127fe2227aee83cb3dce4880f0bf.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_italy_large.ebe62876c27f1bd012cb1c3b61b4b8e8ec2d6a9a.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "380" - { - "name" "Collectible Pin - Victory" - "defindex" "6006" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Victory" - "item_description" "#CSGO_Collectible_Pin_Victory_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_victory" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_victory.f7bca47001d46f306897c89bae3ab30b86528c4f.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_victory_large.64efa85ea1f1241610c21ca355ee60a24430c581.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "381" - { - "name" "Collectible Pin - Militia" - "defindex" "6007" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Militia" - "item_description" "#CSGO_Collectible_Pin_Militia_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_militia" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_militia.96fadc5cc09ab53f30f8a9cb7a5fbb44913f5700.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_militia_large.7c2d05990e80c386018596b4dc45982aa1bf8e4e.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "382" - { - "name" "Collectible Pin - Nuke" - "defindex" "6008" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Nuke" - "item_description" "#CSGO_Collectible_Pin_Nuke_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_nuke" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_nuke.775c18ed5f8d424609a8e4d629770be11897f1c0.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_nuke_large.a523a4fe17b12c42f7a99e12fc6db499ff97d5bb.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "383" - { - "name" "Collectible Pin - Train" - "defindex" "6009" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Train" - "item_description" "#CSGO_Collectible_Pin_Train_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_train" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_train.c91b16153b969f0e3f6c57fef19b1ef1ad2a8450.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_train_large.86f41b7a5eb7046a720fea36546d71b54ff30200.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "384" - { - "name" "Collectible Pin - Guardian" - "defindex" "6010" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Guardian" - "item_description" "#CSGO_Collectible_Pin_Guardian_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_guardian" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian.df1b403aa0f46e534b00495eae4266c7aea3bd2e.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_large.0ec6a8661f634532fbf231a2838c1db57ab6537c.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "385" - { - "name" "Collectible Pin - Tactics" - "defindex" "6011" - "item_class" "collectible_item" - "item_type_name" "#CSGO_Type_Collectible" - "item_name" "#CSGO_Collectible_Pin_Tactics" - "item_description" "#CSGO_Collectible_Pin_Tactics_Desc" - "proper_name" "0" - "item_quality" "1" - "image_inventory" "econ/status_icons/collectible_pin_tactics" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png" - "image_url_large" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png" - "craft_class" "collectable" - "craft_material_type" "tool" - "attributes" - { - - } - } - "386" - { - "name" "coupon - bossyburger" - "defindex" "20000" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_bossyburger" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "387" - { - "name" "coupon - catcall" - "defindex" "20001" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_catcall" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "388" - { - "name" "coupon - chickenstrike" - "defindex" "20002" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_chickenstrike" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "389" - { - "name" "coupon - ctbanana" - "defindex" "20003" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_ctbanana" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "390" - { - "name" "coupon - dontworryimpro" - "defindex" "20004" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_dontworryimpro" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "391" - { - "name" "coupon - fightlikeagirl" - "defindex" "20005" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_fightlikeagirl" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "392" - { - "name" "coupon - handmadeflash" - "defindex" "20006" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_handmadeflash" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "393" - { - "name" "coupon - kawaiikiller" - "defindex" "20007" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_kawaiikiller" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "394" - { - "name" "coupon - neluthebear" - "defindex" "20008" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_neluthebear" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "395" - { - "name" "coupon - oneshotonekill" - "defindex" "20009" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_oneshotonekill" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "396" - { - "name" "coupon - shootingstar" - "defindex" "20010" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_shootingstar" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "397" - { - "name" "coupon - warpenguin" - "defindex" "20012" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_warpenguin" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "398" - { - "name" "coupon - windywalking" - "defindex" "20013" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_windywalking" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "399" - { - "name" "coupon - blitzkrieg" - "defindex" "20014" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_blitzkrieg" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "400" - { - "name" "coupon - pigeonmaster" - "defindex" "20015" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_pigeonmaster" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "401" - { - "name" "coupon - terrorized" - "defindex" "20016" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_terrorized" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "402" - { - "name" "coupon - tilldeathdouspart" - "defindex" "20017" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_tilldeathdouspart" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "403" - { - "name" "coupon - stayfrosty" - "defindex" "20018" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_stayfrosty" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "404" - { - "name" "coupon - toncat" - "defindex" "20019" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_toncat" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "405" - { - "name" "coupon - danielsadowski_01" - "defindex" "20020" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_danielsadowski_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/danielsadowski_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_01.a2bf9e2640ea2dbbf5d0179b7669e09f5e7a7408.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "406" - { - "name" "coupon - noisia_01" - "defindex" "20021" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_noisia_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/noisia_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/noisia_01.fe525cc5e29525708f4dc07c0a986a110075f796.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "407" - { - "name" "coupon - robertallaire_01" - "defindex" "20022" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_robertallaire_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/robertallaire_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/robertallaire_01.61aafd2711f5f4ad260390f546fea72d57929900.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "408" - { - "name" "coupon - seanmurray_01" - "defindex" "20023" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_seanmurray_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/seanmurray_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/seanmurray_01.5e8de73cba9c875085372f52f70cbc3404e6dcc1.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "409" - { - "name" "coupon - feedme_01" - "defindex" "20024" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_feedme_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/feedme_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/feedme_01.8fcf645e3b3b2754bd9c478d1576b20cb3c18fa6.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "410" - { - "name" "coupon - dren_01" - "defindex" "20025" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_dren_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/dren_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/dren_01.fc2175fa289bd9953dcc7d6c672a75d9e42f6093.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "411" - { - "name" "coupon - austinwintory_01" - "defindex" "20026" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_austinwintory_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/austinwintory_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/austinwintory_01.5e3be7d7bd2e123d76969e7d17617545804a6c6b.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "412" - { - "name" "coupon - sasha_01" - "defindex" "20027" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_sasha_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/sasha_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/sasha_01.8ad1c2aebd178df3dff09c4f190b7064d46d142e.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "413" - { - "name" "coupon - skog_01" - "defindex" "20028" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_skog_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/skog_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_01.4869cd4270b65135eff75d121012db094bbf4973.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "414" - { - "name" "coupon - doomed" - "defindex" "20029" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_doomed" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "415" - { - "name" "coupon - queenofpain" - "defindex" "20030" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_queenofpain" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "416" - { - "name" "coupon - trickorthreat" - "defindex" "20031" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_trickorthreat" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "417" - { - "name" "coupon - trickortreat" - "defindex" "20032" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_trickortreat" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "418" - { - "name" "coupon - witch" - "defindex" "20033" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_witch" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "419" - { - "name" "coupon - zombielover" - "defindex" "20034" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_zombielover" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "420" - { - "name" "coupon - blood_broiler" - "defindex" "20035" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_blood_broiler" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "421" - { - "name" "coupon - dinked" - "defindex" "20036" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_dinked" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "422" - { - "name" "coupon - drugwarveteran" - "defindex" "20037" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_drugwarveteran" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "423" - { - "name" "coupon - hohoho" - "defindex" "20038" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_hohoho" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "424" - { - "name" "coupon - massivepear" - "defindex" "20039" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_massivepear" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "425" - { - "name" "coupon - mylittlefriend" - "defindex" "20040" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_mylittlefriend" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "426" - { - "name" "coupon - pandamonium" - "defindex" "20041" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_pandamonium" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "427" - { - "name" "coupon - pieceofcake" - "defindex" "20042" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_pieceofcake" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "428" - { - "name" "coupon - saschicken" - "defindex" "20043" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_saschicken" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "429" - { - "name" "coupon - thuglife" - "defindex" "20044" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_thuglife" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "430" - { - "name" "coupon - trekt" - "defindex" "20045" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_trekt" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "431" - { - "name" "coupon - warowl" - "defindex" "20046" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_warowl" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "432" - { - "name" "coupon - workforfood" - "defindex" "20047" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_workforfood" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "433" - { - "name" "coupon - phoenix_foil" - "defindex" "20048" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_phoenix_foil" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "434" - { - "name" "coupon - bombsquad_foil" - "defindex" "20049" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_bombsquad_foil" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "435" - { - "name" "coupon - midnightriders_01" - "defindex" "20050" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_midnightriders_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/midnightriders_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/midnightriders_01.22ad94b80a058ad3cb1373fcf0f69e6983491765.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "436" - { - "name" "coupon - danielsadowski_02" - "defindex" "20051" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_danielsadowski_02" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/danielsadowski_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_02.5a250ef0a92cbe07b1fd5d26afd1fda52d10ee8d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "437" - { - "name" "coupon - hotlinemiami_01" - "defindex" "20052" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_hotlinemiami_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/hotlinemiami_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/hotlinemiami_01.df89086218adcaf00b86cffff78191f2f5bcb500.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "438" - { - "name" "coupon - mattlange_01" - "defindex" "20053" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_mattlange_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/mattlange_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mattlange_01.a5321f2db9fd84c93e384e28d6048784913af83a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "439" - { - "name" "coupon - mateomessina_01" - "defindex" "20054" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_mateomessina_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/mateomessina_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mateomessina_01.94e787b3d227841ea7a3cd48dfb911131a1bb1ef.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "440" - { - "name" "coupon - damjanmravunac_01" - "defindex" "20055" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_damjanmravunac_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/damjanmravunac_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/damjanmravunac_01.538b68f26daddde3c83f6ae44de9947ab7e8c2d0.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "441" - { - "name" "coupon - flickshot" - "defindex" "20056" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_flickshot" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "442" - { - "name" "coupon - headshot_guarantee" - "defindex" "20057" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_headshot_guarantee" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "443" - { - "name" "coupon - eco_rush" - "defindex" "20058" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_eco_rush" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "444" - { - "name" "coupon - just_trolling" - "defindex" "20059" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_just_trolling" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "445" - { - "name" "coupon - firestarter_holo" - "defindex" "20061" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_firestarter_holo" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "446" - { - "name" "coupon - lucky_cat_foil" - "defindex" "20062" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_lucky_cat_foil" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "447" - { - "name" "coupon - robot_head" - "defindex" "20063" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_robot_head" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "448" - { - "name" "coupon - witchcraft" - "defindex" "20064" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_witchcraft" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "449" - { - "name" "coupon - wanna_fight" - "defindex" "20065" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_wanna_fight" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "450" - { - "name" "coupon - hostage_rescue" - "defindex" "20066" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_hostage_rescue" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "451" - { - "name" "coupon - hamster_hawk" - "defindex" "20067" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_hamster_hawk" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "452" - { - "name" "coupon - headless_chicken" - "defindex" "20068" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_headless_chicken" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "453" - { - "name" "coupon - proxy_01" - "defindex" "20069" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_proxy_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/proxy_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/proxy_01.12796e09ff47c1dd25757cff0761bf7b880dfb3b.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "454" - { - "name" "coupon - kitheory_01" - "defindex" "20070" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_kitheory_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/kitheory_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kitheory_01.00e97bde40259873dfe52ffe809c0a05418d11ff.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "455" - { - "name" "coupon - troelsfolmann_01" - "defindex" "20071" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_troelsfolmann_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/troelsfolmann_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/troelsfolmann_01.62c19e1f4ed3c30ec238d088ddc036671e574972.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "456" - { - "name" "coupon - kellybailey_01" - "defindex" "20072" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_kellybailey_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/kellybailey_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kellybailey_01.5f62031bbb9d6859db2f1f8a575a6dcd1079c928.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "457" - { - "name" "coupon - skog_02" - "defindex" "20073" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_skog_02" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/skog_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_02.eeb9ddb340f8a0b530b097f6a7f37cd922334f53.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "458" - { - "name" "coupon - enfu_sticker_capsule" - "defindex" "20074" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_enfu_sticker_capsule" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "459" - { - "name" "coupon - awp_country" - "defindex" "20075" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_awp_country" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "460" - { - "name" "coupon - chi_bomb" - "defindex" "20076" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_chi_bomb" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "461" - { - "name" "coupon - fox" - "defindex" "20077" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_fox" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "462" - { - "name" "coupon - knifeclub" - "defindex" "20078" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_knifeclub" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "463" - { - "name" "coupon - cs_on_the_mind" - "defindex" "20079" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_cs_on_the_mind" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "464" - { - "name" "coupon - ninja_defuse" - "defindex" "20080" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_ninja_defuse" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "465" - { - "name" "coupon - pros_dont_fake" - "defindex" "20081" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_pros_dont_fake" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "466" - { - "name" "coupon - kawaiikiller_t" - "defindex" "20082" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_kawaiikiller_t" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "467" - { - "name" "coupon - baackstabber" - "defindex" "20083" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_baackstabber" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "468" - { - "name" "coupon - delicious_tears" - "defindex" "20084" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_delicious_tears" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "469" - { - "name" "coupon - danielsadowski_03" - "defindex" "20085" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_danielsadowski_03" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/danielsadowski_03" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_03.23f670f86d302907e1965780bf0fc145ab334235.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "470" - { - "name" "coupon - awolnation_01" - "defindex" "20086" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_awolnation_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/awolnation_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/awolnation_01.2ffc1650abdea909957237a616b8a85f8ca686e4.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "471" - { - "name" "coupon - mordfustang_01" - "defindex" "20087" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_mordfustang_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/mordfustang_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mordfustang_01.19b15e98c183e4cf11f06ee9d59a890d91513a8b.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "472" - { - "name" "coupon - michaelbross_01" - "defindex" "20088" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_michaelbross_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/michaelbross_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/michaelbross_01.adff3cdea10bca94a92025cc1fd052b5a2327a8d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "473" - { - "name" "coupon - ianhultquist_01" - "defindex" "20089" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_ianhultquist_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/ianhultquist_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/ianhultquist_01.3157f761e847ba428bbf82fbfa7f07c792a5d626.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "474" - { - "name" "coupon - newbeatfund_01" - "defindex" "20090" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_newbeatfund_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/newbeatfund_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/newbeatfund_01.f711bcd037c0ccc121b3ef4d0d45b7646ba3ccce.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "475" - { - "name" "coupon - beartooth_01" - "defindex" "20091" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_beartooth_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/beartooth_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/beartooth_01.7c8272a14a47916ceb4b59bc18b1f2d0036b5523.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "476" - { - "name" "coupon - lenniemoore_01" - "defindex" "20092" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_lenniemoore_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/lenniemoore_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/lenniemoore_01.85efce33bf5d30452a8e84e4a55c78c9b44775d3.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "477" - { - "name" "coupon - darude_01" - "defindex" "20093" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_darude_01" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/darude_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/darude_01.7c92a500270301ab6883f6a144f59cc28571521d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "478" - { - "name" "coupon - proxy_01_stattrak" - "defindex" "20094" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_proxy_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/proxy_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/proxy_01.12796e09ff47c1dd25757cff0761bf7b880dfb3b.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "479" - { - "name" "coupon - kitheory_01_stattrak" - "defindex" "20095" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_kitheory_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/kitheory_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kitheory_01.00e97bde40259873dfe52ffe809c0a05418d11ff.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "480" - { - "name" "coupon - troelsfolmann_01_stattrak" - "defindex" "20096" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_troelsfolmann_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/troelsfolmann_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/troelsfolmann_01.62c19e1f4ed3c30ec238d088ddc036671e574972.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "481" - { - "name" "coupon - kellybailey_01_stattrak" - "defindex" "20097" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_kellybailey_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/kellybailey_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kellybailey_01.5f62031bbb9d6859db2f1f8a575a6dcd1079c928.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "482" - { - "name" "coupon - skog_02_stattrak" - "defindex" "20098" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_skog_02_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/skog_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_02.eeb9ddb340f8a0b530b097f6a7f37cd922334f53.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "483" - { - "name" "coupon - danielsadowski_03_stattrak" - "defindex" "20099" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_danielsadowski_03_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/danielsadowski_03" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_03.23f670f86d302907e1965780bf0fc145ab334235.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "484" - { - "name" "coupon - awolnation_01_stattrak" - "defindex" "20100" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_awolnation_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/awolnation_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/awolnation_01.2ffc1650abdea909957237a616b8a85f8ca686e4.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "485" - { - "name" "coupon - mordfustang_01_stattrak" - "defindex" "20101" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_mordfustang_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/mordfustang_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mordfustang_01.19b15e98c183e4cf11f06ee9d59a890d91513a8b.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "486" - { - "name" "coupon - michaelbross_01_stattrak" - "defindex" "20102" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_michaelbross_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/michaelbross_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/michaelbross_01.adff3cdea10bca94a92025cc1fd052b5a2327a8d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "487" - { - "name" "coupon - ianhultquist_01_stattrak" - "defindex" "20103" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_ianhultquist_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/ianhultquist_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/ianhultquist_01.3157f761e847ba428bbf82fbfa7f07c792a5d626.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "488" - { - "name" "coupon - newbeatfund_01_stattrak" - "defindex" "20104" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_newbeatfund_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/newbeatfund_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/newbeatfund_01.f711bcd037c0ccc121b3ef4d0d45b7646ba3ccce.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "489" - { - "name" "coupon - beartooth_01_stattrak" - "defindex" "20105" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_beartooth_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/beartooth_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/beartooth_01.7c8272a14a47916ceb4b59bc18b1f2d0036b5523.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "490" - { - "name" "coupon - lenniemoore_01_stattrak" - "defindex" "20106" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_lenniemoore_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/lenniemoore_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/lenniemoore_01.85efce33bf5d30452a8e84e4a55c78c9b44775d3.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "491" - { - "name" "coupon - darude_01_stattrak" - "defindex" "20107" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_darude_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/darude_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/darude_01.7c92a500270301ab6883f6a144f59cc28571521d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "492" - { - "name" "coupon - danielsadowski_01_stattrak" - "defindex" "20108" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_danielsadowski_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/danielsadowski_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_01.a2bf9e2640ea2dbbf5d0179b7669e09f5e7a7408.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "493" - { - "name" "coupon - noisia_01_stattrak" - "defindex" "20109" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_noisia_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/noisia_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/noisia_01.fe525cc5e29525708f4dc07c0a986a110075f796.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "494" - { - "name" "coupon - robertallaire_01_stattrak" - "defindex" "20110" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_robertallaire_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/robertallaire_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/robertallaire_01.61aafd2711f5f4ad260390f546fea72d57929900.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "495" - { - "name" "coupon - seanmurray_01_stattrak" - "defindex" "20111" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_seanmurray_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/seanmurray_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/seanmurray_01.5e8de73cba9c875085372f52f70cbc3404e6dcc1.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "496" - { - "name" "coupon - feedme_01_stattrak" - "defindex" "20112" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_feedme_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/feedme_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/feedme_01.8fcf645e3b3b2754bd9c478d1576b20cb3c18fa6.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "497" - { - "name" "coupon - dren_01_stattrak" - "defindex" "20113" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_dren_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/dren_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/dren_01.fc2175fa289bd9953dcc7d6c672a75d9e42f6093.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "498" - { - "name" "coupon - austinwintory_01_stattrak" - "defindex" "20114" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_austinwintory_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/austinwintory_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/austinwintory_01.5e3be7d7bd2e123d76969e7d17617545804a6c6b.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "499" - { - "name" "coupon - sasha_01_stattrak" - "defindex" "20115" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_sasha_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/sasha_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/sasha_01.8ad1c2aebd178df3dff09c4f190b7064d46d142e.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "500" - { - "name" "coupon - skog_01_stattrak" - "defindex" "20116" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_skog_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/skog_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_01.4869cd4270b65135eff75d121012db094bbf4973.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "501" - { - "name" "coupon - midnightriders_01_stattrak" - "defindex" "20117" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_midnightriders_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/midnightriders_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/midnightriders_01.22ad94b80a058ad3cb1373fcf0f69e6983491765.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "502" - { - "name" "coupon - danielsadowski_02_stattrak" - "defindex" "20118" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_danielsadowski_02_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/danielsadowski_02" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_02.5a250ef0a92cbe07b1fd5d26afd1fda52d10ee8d.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "503" - { - "name" "coupon - hotlinemiami_01_stattrak" - "defindex" "20119" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_hotlinemiami_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/hotlinemiami_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/hotlinemiami_01.df89086218adcaf00b86cffff78191f2f5bcb500.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "504" - { - "name" "coupon - mattlange_01_stattrak" - "defindex" "20120" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_mattlange_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/mattlange_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mattlange_01.a5321f2db9fd84c93e384e28d6048784913af83a.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "505" - { - "name" "coupon - mateomessina_01_stattrak" - "defindex" "20121" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_mateomessina_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/mateomessina_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mateomessina_01.94e787b3d227841ea7a3cd48dfb911131a1bb1ef.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "506" - { - "name" "coupon - damjanmravunac_01_stattrak" - "defindex" "20122" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_damjanmravunac_01_stattrak" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/music_kits/damjanmravunac_01" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/damjanmravunac_01.538b68f26daddde3c83f6ae44de9947ab7e8c2d0.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "507" - { - "name" "coupon - pinups_sticker_capsule" - "defindex" "20123" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_pinups_sticker_capsule" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "508" - { - "name" "coupon - slid3_sticker_capsule" - "defindex" "20124" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_slid3_sticker_capsule" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - "509" - { - "name" "coupon - team_roles_sticker_capsule" - "defindex" "20125" - "item_class" "supply_crate" - "item_type_name" "#CSGO_Type_WeaponCase" - "item_name" "#coupon_team_roles_sticker_capsule" - "item_description" "#coupon_desc" - "proper_name" "0" - "item_quality" "4" - "image_inventory" "econ/coupon/offer" - "min_ilevel" "1" - "max_ilevel" "1" - "image_url" "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png" - "image_url_large" "" - "capabilities" - { - "decodable" "1" - } - "tool" - { - "type" "supply_crate" - "usage_capabilities" - { - "usable_out_of_game" "1" - } - } - "attributes" - { - "0" - { - "name" "expiration date" - "class" "expiration_date" - "value" "2" - } - } - } - } - "attributes" - { - "0" - { - "name" "always tradable" - "defindex" "1" - "attribute_class" "always_tradable" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "1" - { - "name" "cannot trade" - "defindex" "2" - "attribute_class" "cannot_trade" - "effect_type" "negative" - "hidden" "1" - "stored_as_integer" "1" - } - "2" - { - "name" "referenced item id low" - "defindex" "3" - "attribute_class" "referenced_item_id_low" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "1" - } - "3" - { - "name" "referenced item id high" - "defindex" "4" - "attribute_class" "referenced_item_id_high" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "1" - } - "4" - { - "name" "set item texture prefab" - "defindex" "6" - "attribute_class" "set_item_texture_prefab" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "5" - { - "name" "set item texture seed" - "defindex" "7" - "attribute_class" "set_item_texture_seed" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "6" - { - "name" "set item texture wear" - "defindex" "8" - "attribute_class" "set_item_texture_wear" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "7" - { - "name" "has silencer" - "defindex" "10" - "attribute_class" "has_silencer" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "8" - { - "name" "has burst mode" - "defindex" "13" - "attribute_class" "has_burst_mode" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "9" - { - "name" "cycletime when in burst mode" - "defindex" "14" - "attribute_class" "cycletime_when_in_burst_mode" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "10" - { - "name" "time between burst shots" - "defindex" "15" - "attribute_class" "time_between_burst_shots" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "11" - { - "name" "unzoom after shot" - "defindex" "16" - "attribute_class" "unzoom_after_shot" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "1" - } - "12" - { - "name" "cycletime when zoomed" - "defindex" "17" - "attribute_class" "cycletime_when_zoomed" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "13" - { - "name" "cannot shoot underwater" - "defindex" "18" - "attribute_class" "cannot_shoot_underwater" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "1" - } - "14" - { - "name" "in game price" - "defindex" "19" - "attribute_class" "in_game_price" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "15" - { - "name" "primary clip size" - "defindex" "20" - "attribute_class" "primary_clip_size" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "16" - { - "name" "secondary clip size" - "defindex" "21" - "attribute_class" "secondary_clip_size" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "17" - { - "name" "is full auto" - "defindex" "22" - "attribute_class" "is_full_auto" - "description_string" "#Attrib_FullAuto" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "0" - } - "18" - { - "name" "heat per shot" - "defindex" "23" - "attribute_class" "heat_per_shot" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "19" - { - "name" "addon scale" - "defindex" "24" - "attribute_class" "addon_scale" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "20" - { - "name" "tracer frequency" - "defindex" "25" - "attribute_class" "tracer_frequency" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "21" - { - "name" "max player speed" - "defindex" "26" - "attribute_class" "max_player_speed" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "22" - { - "name" "max player speed alt" - "defindex" "27" - "attribute_class" "max_player_speed_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "23" - { - "name" "armor ratio" - "defindex" "28" - "attribute_class" "armor_ratio" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "24" - { - "name" "crosshair min distance" - "defindex" "29" - "attribute_class" "crosshair_min_distance" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "25" - { - "name" "crosshair delta distance" - "defindex" "30" - "attribute_class" "crosshair_delta_distance" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "26" - { - "name" "penetration" - "defindex" "31" - "attribute_class" "penetration" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "27" - { - "name" "damage" - "defindex" "32" - "attribute_class" "damage" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "28" - { - "name" "range" - "defindex" "33" - "attribute_class" "range" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "29" - { - "name" "range modifier" - "defindex" "34" - "attribute_class" "range_modifier" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "30" - { - "name" "bullets" - "defindex" "35" - "attribute_class" "bullets" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "31" - { - "name" "cycletime" - "defindex" "36" - "attribute_class" "cycletime" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "32" - { - "name" "time to idle" - "defindex" "37" - "attribute_class" "time_to_idle" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "33" - { - "name" "idle interval" - "defindex" "38" - "attribute_class" "idle interval" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "34" - { - "name" "flinch velocity modifier large" - "defindex" "39" - "attribute_class" "flinch_velocity_modifier_large" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "35" - { - "name" "flinch velocity modifier small" - "defindex" "40" - "attribute_class" "flinch velocity modifier small" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "36" - { - "name" "spread" - "defindex" "41" - "attribute_class" "spread" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "37" - { - "name" "inaccuracy crouch" - "defindex" "42" - "attribute_class" "inaccuracy_crouch" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "38" - { - "name" "inaccuracy stand" - "defindex" "43" - "attribute_class" "inaccuracy_stand" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "39" - { - "name" "inaccuracy jump" - "defindex" "44" - "attribute_class" "inaccuracy_jump" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "40" - { - "name" "inaccuracy land" - "defindex" "45" - "attribute_class" "inaccuracy_land" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "41" - { - "name" "inaccuracy ladder" - "defindex" "46" - "attribute_class" "inaccuracy_ladder" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "42" - { - "name" "inaccuracy fire" - "defindex" "47" - "attribute_class" "inaccuracy_fire" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "43" - { - "name" "inaccuracy move" - "defindex" "48" - "attribute_class" "inaccuracy_move" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "44" - { - "name" "spread alt" - "defindex" "49" - "attribute_class" "spread_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "45" - { - "name" "inaccuracy crouch alt" - "defindex" "50" - "attribute_class" "inaccuracy_crouch_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "46" - { - "name" "inaccuracy stand alt" - "defindex" "51" - "attribute_class" "inaccuracy_stand_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "47" - { - "name" "inaccuracy jump alt" - "defindex" "52" - "attribute_class" "inaccuracy_jump_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "48" - { - "name" "inaccuracy land alt" - "defindex" "53" - "attribute_class" "inaccuracy_land_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "49" - { - "name" "inaccuracy ladder alt" - "defindex" "54" - "attribute_class" "inaccuracy_ladder_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "50" - { - "name" "inaccuracy fire alt" - "defindex" "55" - "attribute_class" "inaccuracy_fire_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "51" - { - "name" "inaccuracy move alt" - "defindex" "56" - "attribute_class" "inaccuracy_move_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "52" - { - "name" "recovery time crouch" - "defindex" "57" - "attribute_class" "recovery_time_crouch" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "53" - { - "name" "recovery time stand" - "defindex" "58" - "attribute_class" "recovery_time_stand" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "54" - { - "name" "recoil seed" - "defindex" "59" - "attribute_class" "recoil_seed" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "55" - { - "name" "recoil angle" - "defindex" "60" - "attribute_class" "recoil_angle" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "56" - { - "name" "recoil angle variance" - "defindex" "61" - "attribute_class" "recoil_angle_variance" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "57" - { - "name" "recoil magnitude" - "defindex" "62" - "attribute_class" "recoil_magnitude" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "58" - { - "name" "recoil magnitude variance" - "defindex" "63" - "attribute_class" "recoil_magnitude_variance" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "59" - { - "name" "recoil angle alt" - "defindex" "64" - "attribute_class" "recoil_angle_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "60" - { - "name" "recoil angle variance alt" - "defindex" "65" - "attribute_class" "recoil_angle_variance_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "61" - { - "name" "recoil magnitude alt" - "defindex" "66" - "attribute_class" "recoil_magnitude_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "62" - { - "name" "recoil magnitude variance alt" - "defindex" "67" - "attribute_class" "recoil_magnitude_variance_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "63" - { - "name" "set supply crate series" - "defindex" "68" - "attribute_class" "supply_crate_series" - "description_string" "#Attrib_SupplyCrateSeries" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "64" - { - "name" "minutes played" - "defindex" "69" - "attribute_class" "minutes_played" - "description_string" "#Attrib_MinutesPlayedAsHrs" - "description_format" "value_is_mins_as_hours" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "0" - } - "65" - { - "name" "alternate icon" - "defindex" "70" - "attribute_class" "alternate_icon" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "66" - { - "name" "season access" - "defindex" "71" - "attribute_class" "season_access" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "67" - { - "name" "disallow recycling" - "defindex" "72" - "attribute_class" "disallow_recycling" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "68" - { - "name" "upgrade threshold" - "defindex" "73" - "attribute_class" "upgrade_threshold" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "69" - { - "name" "tradable after date" - "defindex" "75" - "attribute_class" "tradable_after_date" - "effect_type" "negative" - "hidden" "1" - "stored_as_integer" "1" - } - "70" - { - "name" "is revolver" - "defindex" "76" - "attribute_class" "is_revolver" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "1" - } - "71" - { - "name" "elevate quality" - "defindex" "78" - "attribute_class" "set_elevated_quality" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "72" - { - "name" "cycletime alt" - "defindex" "79" - "attribute_class" "cycletime_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "73" - { - "name" "kill eater" - "defindex" "80" - "attribute_class" "kill_eater" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "74" - { - "name" "kill eater score type" - "defindex" "81" - "attribute_class" "kill_eater_score_type" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "75" - { - "name" "kill eater user 1" - "defindex" "82" - "attribute_class" "kill_eater_user_1" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "76" - { - "name" "kill eater user score type 1" - "defindex" "83" - "attribute_class" "kill_eater_user_score_type_1" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "77" - { - "name" "kill eater user 2" - "defindex" "84" - "attribute_class" "kill_eater_user_2" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "78" - { - "name" "kill eater user score type 2" - "defindex" "85" - "attribute_class" "kill_eater_user_score_type_2" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "79" - { - "name" "kill eater user 3" - "defindex" "86" - "attribute_class" "kill_eater_user_3" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "80" - { - "name" "kill eater user score type 3" - "defindex" "87" - "attribute_class" "kill_eater_user_score_type_3" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "81" - { - "name" "kill eater 2" - "defindex" "88" - "attribute_class" "kill_eater_2" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "82" - { - "name" "kill eater score type 2" - "defindex" "89" - "attribute_class" "kill_eater_score_type_2" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "83" - { - "name" "tracer frequency alt" - "defindex" "92" - "attribute_class" "tracer_frequency_alt" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "84" - { - "name" "primary default clip size" - "defindex" "93" - "attribute_class" "primary_default_clip_size" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "85" - { - "name" "secondary default clip size" - "defindex" "94" - "attribute_class" "secondary_default_clip_size" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "86" - { - "name" "recipe filter" - "defindex" "95" - "attribute_class" "recipe_filter" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "87" - { - "name" "competitive kills" - "defindex" "97" - "attribute_class" "competitive_kills" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "88" - { - "name" "competitive 3k" - "defindex" "98" - "attribute_class" "competitive_3k" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "89" - { - "name" "competitive 4k" - "defindex" "99" - "attribute_class" "competitive_4k" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "90" - { - "name" "competitive 5k" - "defindex" "101" - "attribute_class" "competitive_5k" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "91" - { - "name" "competitive wins" - "defindex" "103" - "attribute_class" "competitive_wins" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "92" - { - "name" "competitive mvps" - "defindex" "104" - "attribute_class" "competitive_mvps" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "93" - { - "name" "match wins" - "defindex" "106" - "attribute_class" "match_wins" - "description_string" "#Attrib_MatchWins" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "94" - { - "name" "preferred sort" - "defindex" "107" - "attribute_class" "preferred_sort" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "95" - { - "name" "custom name attr" - "defindex" "111" - "attribute_class" "custom_name_attr" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "96" - { - "name" "custom desc attr" - "defindex" "112" - "attribute_class" "custom_desc_attr" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "97" - { - "name" "sticker slot 0 id" - "defindex" "113" - "attribute_class" "sticker_slot_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "98" - { - "name" "sticker slot 0 wear" - "defindex" "114" - "attribute_class" "sticker_slot_wear" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "99" - { - "name" "sticker slot 0 scale" - "defindex" "115" - "attribute_class" "sticker_slot_scale" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "100" - { - "name" "sticker slot 0 rotation" - "defindex" "116" - "attribute_class" "sticker_slot_rotation" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "101" - { - "name" "sticker slot 1 id" - "defindex" "117" - "attribute_class" "sticker_slot_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "102" - { - "name" "sticker slot 1 wear" - "defindex" "118" - "attribute_class" "sticker_slot_wear" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "103" - { - "name" "sticker slot 1 scale" - "defindex" "119" - "attribute_class" "sticker_slot_scale" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "104" - { - "name" "sticker slot 1 rotation" - "defindex" "120" - "attribute_class" "sticker_slot_rotation" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "105" - { - "name" "sticker slot 2 id" - "defindex" "121" - "attribute_class" "sticker_slot_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "106" - { - "name" "sticker slot 2 wear" - "defindex" "122" - "attribute_class" "sticker_slot_wear" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "107" - { - "name" "sticker slot 2 scale" - "defindex" "123" - "attribute_class" "sticker_slot_scale" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "108" - { - "name" "sticker slot 2 rotation" - "defindex" "124" - "attribute_class" "sticker_slot_rotation" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "109" - { - "name" "sticker slot 3 id" - "defindex" "125" - "attribute_class" "sticker_slot_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "110" - { - "name" "sticker slot 3 wear" - "defindex" "126" - "attribute_class" "sticker_slot_wear" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "111" - { - "name" "sticker slot 3 scale" - "defindex" "127" - "attribute_class" "sticker_slot_scale" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "112" - { - "name" "sticker slot 3 rotation" - "defindex" "128" - "attribute_class" "sticker_slot_rotation" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "113" - { - "name" "sticker slot 4 id" - "defindex" "129" - "attribute_class" "sticker_slot_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "114" - { - "name" "sticker slot 4 wear" - "defindex" "130" - "attribute_class" "sticker_slot_wear" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "115" - { - "name" "sticker slot 4 scale" - "defindex" "131" - "attribute_class" "sticker_slot_scale" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "116" - { - "name" "sticker slot 4 rotation" - "defindex" "132" - "attribute_class" "sticker_slot_rotation" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "117" - { - "name" "sticker slot 5 id" - "defindex" "133" - "attribute_class" "sticker_slot_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "118" - { - "name" "sticker slot 5 wear" - "defindex" "134" - "attribute_class" "sticker_slot_wear" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "119" - { - "name" "sticker slot 5 scale" - "defindex" "135" - "attribute_class" "sticker_slot_scale" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "120" - { - "name" "sticker slot 5 rotation" - "defindex" "136" - "attribute_class" "sticker_slot_rotation" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "121" - { - "name" "tournament event id" - "defindex" "137" - "attribute_class" "tournament_event_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "122" - { - "name" "tournament event stage id" - "defindex" "138" - "attribute_class" "tournament_event_stage_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "123" - { - "name" "tournament event team0 id" - "defindex" "139" - "attribute_class" "tournament_event_team_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "124" - { - "name" "tournament event team1 id" - "defindex" "140" - "attribute_class" "tournament_event_team_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "125" - { - "name" "icon display model" - "defindex" "142" - "attribute_class" "icon_display_model" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "126" - { - "name" "buymenu display model" - "defindex" "143" - "attribute_class" "buymenu_display_model" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "127" - { - "name" "pedestal display model" - "defindex" "144" - "attribute_class" "pedestal_display_model" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "128" - { - "name" "magazine model" - "defindex" "145" - "attribute_class" "magazine_model" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "129" - { - "name" "uid model" - "defindex" "146" - "attribute_class" "uid_model" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "130" - { - "name" "stattrak model" - "defindex" "147" - "attribute_class" "stattrak_model" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "131" - { - "name" "aimsight capable" - "defindex" "150" - "attribute_class" "aimsight_capable" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "1" - } - "132" - { - "name" "aimsight eye pos" - "defindex" "151" - "attribute_class" "aimsight_eye_pos" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "133" - { - "name" "aimsight pivot angle" - "defindex" "154" - "attribute_class" "aimsight_pivot_angle" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "134" - { - "name" "aimsight speed up" - "defindex" "157" - "attribute_class" "aimsight_speed_up" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "135" - { - "name" "aimsight speed down" - "defindex" "158" - "attribute_class" "aimsight_speed_down" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "136" - { - "name" "aimsight looseness" - "defindex" "159" - "attribute_class" "aimsight_looseness" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "137" - { - "name" "aimsight fov" - "defindex" "160" - "attribute_class" "aimsight_fov" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "138" - { - "name" "aimsight pivot forward" - "defindex" "161" - "attribute_class" "aimsight_pivot_forward" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "139" - { - "name" "gifter account id" - "defindex" "162" - "attribute_class" "gifter_account_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "140" - { - "name" "aimsight lens mask" - "defindex" "165" - "attribute_class" "aimsight_lens_mask" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "0" - } - "141" - { - "name" "music id" - "defindex" "166" - "attribute_class" "music_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "142" - { - "name" "quests complete" - "defindex" "171" - "attribute_class" "quests_complete" - "description_string" "#Attrib_QuestsComplete" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "143" - { - "name" "operation kills" - "defindex" "172" - "attribute_class" "operation_kills" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "144" - { - "name" "operation 3k" - "defindex" "173" - "attribute_class" "operation_3k" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "145" - { - "name" "operation 4k" - "defindex" "174" - "attribute_class" "operation_4k" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "146" - { - "name" "operation 5k" - "defindex" "175" - "attribute_class" "operation_5k" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "147" - { - "name" "operation mvps" - "defindex" "177" - "attribute_class" "operation_mvps" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "148" - { - "name" "operation wins" - "defindex" "179" - "attribute_class" "operation_wins" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - "149" - { - "name" "deployment date" - "defindex" "180" - "attribute_class" "deployment_date" - "description_string" "#Attrib_DeploymentDate" - "description_format" "value_is_date" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "150" - { - "name" "use after date" - "defindex" "182" - "attribute_class" "use_after_date" - "effect_type" "negative" - "hidden" "1" - "stored_as_integer" "1" - } - "151" - { - "name" "kill award" - "defindex" "197" - "attribute_class" "kill_award" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "0" - } - "152" - { - "name" "primary reserve ammo max" - "defindex" "199" - "attribute_class" "primary_reserve_ammo_max" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "153" - { - "name" "secondary reserve ammo max" - "defindex" "200" - "attribute_class" "secondary_reserve_ammo_max" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "0" - } - "154" - { - "name" "operation bonus points" - "defindex" "220" - "attribute_class" "operation_bonus_points" - "description_string" "#Attrib_OperationBonusXP" - "description_format" "value_is_additive" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "155" - { - "name" "prestige year" - "defindex" "221" - "attribute_class" "prestige_year" - "effect_type" "neutral" - "hidden" "1" - "stored_as_integer" "1" - } - "156" - { - "name" "issue date" - "defindex" "222" - "attribute_class" "issue_date" - "description_string" "#Attrib_IssueDate" - "description_format" "value_is_date" - "effect_type" "positive" - "hidden" "0" - "stored_as_integer" "1" - } - "157" - { - "name" "tournament mvp account id" - "defindex" "223" - "attribute_class" "tournament_mvp_account_id" - "effect_type" "positive" - "hidden" "1" - "stored_as_integer" "1" - } - } - "item_sets" - { - "0" - { - "item_set" "set_assault" - "name" "#CSGO_set_assault" - "items" - { - "0" "weapon_ump45" - "1" "weapon_sg556" - "2" "weapon_fiveseven" - "3" "weapon_negev" - "4" "weapon_aug" - "5" "weapon_glock" - "6" "weapon_mp9" - } - } - "1" - { - "item_set" "set_aztec" - "name" "#CSGO_set_aztec" - "items" - { - "0" "weapon_nova" - "1" "weapon_ssg08" - "2" "weapon_fiveseven" - "3" "weapon_m4a1" - "4" "weapon_ak47" - "5" "weapon_tec9" - } - } - "2" - { - "item_set" "set_baggage" - "name" "#CSGO_set_baggage" - "items" - { - "0" "weapon_g3sg1" - "1" "weapon_ssg08" - "2" "weapon_mp7" - "3" "weapon_mp9" - "4" "weapon_cz75a" - "5" "weapon_p90" - "6" "weapon_mac10" - "7" "weapon_hkp2000" - "8" "weapon_sg556" - "9" "weapon_sawedoff" - "10" "weapon_xm1014" - "11" "weapon_usp_silencer" - "12" "weapon_ak47" - "13" "weapon_deagle" - "14" "weapon_ak47" - } - } - "3" - { - "item_set" "set_bank" - "name" "#CSGO_set_bank" - "items" - { - "0" "weapon_mp7" - "1" "weapon_sawedoff" - "2" "weapon_tec9" - "3" "weapon_revolver" - "4" "weapon_negev" - "5" "weapon_sg556" - "6" "weapon_mac10" - "7" "weapon_ump45" - "8" "weapon_glock" - "9" "weapon_g3sg1" - "10" "weapon_nova" - "11" "weapon_deagle" - "12" "weapon_galilar" - "13" "weapon_cz75a" - "14" "weapon_ak47" - "15" "weapon_p250" - } - } - "4" - { - "item_set" "set_bravo_i" - "name" "#CSGO_set_bravo_i" - "items" - { - "0" "weapon_sg556" - "1" "weapon_elite" - "2" "weapon_nova" - "3" "weapon_galilar" - "4" "weapon_ump45" - "5" "weapon_g3sg1" - "6" "weapon_usp_silencer" - "7" "weapon_m4a1" - "8" "weapon_mac10" - "9" "weapon_m4a1_silencer" - "10" "weapon_p90" - "11" "weapon_hkp2000" - "12" "weapon_awp" - "13" "weapon_ak47" - "14" "weapon_deagle" - } - } - "5" - { - "item_set" "set_bravo_ii" - "name" "#CSGO_set_bravo_ii" - "items" - { - "0" "weapon_mp9" - "1" "weapon_m249" - "2" "weapon_xm1014" - "3" "weapon_tec9" - "4" "weapon_mp7" - "5" "weapon_fiveseven" - "6" "weapon_ssg08" - "7" "weapon_negev" - "8" "weapon_sawedoff" - "9" "weapon_p250" - "10" "weapon_glock" - "11" "weapon_aug" - "12" "weapon_mag7" - "13" "weapon_bizon" - "14" "weapon_famas" - "15" "weapon_scar20" - } - } - "6" - { - "item_set" "set_cache" - "name" "#CSGO_set_cache" - "items" - { - "0" "weapon_negev" - "1" "weapon_p250" - "2" "weapon_aug" - "3" "weapon_bizon" - "4" "weapon_fiveseven" - "5" "weapon_sg556" - "6" "weapon_glock" - "7" "weapon_mp9" - "8" "weapon_xm1014" - "9" "weapon_mac10" - "10" "weapon_tec9" - "11" "weapon_famas" - "12" "weapon_galilar" - } - } - "7" - { - "item_set" "set_chopshop" - "name" "#CSGO_set_chopshop" - "items" - { - "0" "weapon_scar20" - "1" "weapon_cz75a" - "2" "weapon_m249" - "3" "weapon_mag7" - "4" "weapon_deagle" - "5" "weapon_galilar" - "6" "weapon_usp_silencer" - "7" "weapon_mac10" - "8" "weapon_p250" - "9" "weapon_mp7" - "10" "weapon_fiveseven" - "11" "weapon_cz75a" - "12" "weapon_sg556" - "13" "weapon_elite" - "14" "weapon_glock" - "15" "weapon_m4a1_silencer" - } - } - "8" - { - "item_set" "set_cobblestone" - "name" "#CSGO_set_cobblestone" - "items" - { - "0" "weapon_p90" - "1" "weapon_scar20" - "2" "weapon_elite" - "3" "weapon_mac10" - "4" "weapon_ump45" - "5" "weapon_mag7" - "6" "weapon_nova" - "7" "weapon_sawedoff" - "8" "weapon_usp_silencer" - "9" "weapon_hkp2000" - "10" "weapon_mp9" - "11" "weapon_cz75a" - "12" "weapon_deagle" - "13" "weapon_m4a1_silencer" - "14" "weapon_awp" - } - } - "9" - { - "item_set" "set_community_1" - "name" "#CSGO_set_community_1" - "items" - { - "0" "weapon_galilar" - "1" "weapon_fiveseven" - "2" "weapon_m249" - "3" "weapon_bizon" - "4" "weapon_famas" - "5" "weapon_elite" - "6" "weapon_mp9" - "7" "weapon_nova" - "8" "weapon_m4a1_silencer" - "9" "weapon_p250" - "10" "weapon_awp" - "11" "weapon_m4a1" - "12" "weapon_sawedoff" - } - } - "10" - { - "item_set" "set_community_10" - "name" "#CSGO_set_community_10" - "items" - { - "0" "weapon_revolver" - "1" "weapon_aug" - "2" "weapon_deagle" - "3" "weapon_hkp2000" - "4" "weapon_sawedoff" - "5" "weapon_scar20" - "6" "weapon_bizon" - "7" "weapon_fiveseven" - "8" "weapon_negev" - "9" "weapon_sg556" - "10" "weapon_tec9" - "11" "weapon_xm1014" - "12" "weapon_ak47" - "13" "weapon_g3sg1" - "14" "weapon_p90" - "15" "weapon_m4a1" - "16" "weapon_revolver" - } - } - "11" - { - "item_set" "set_community_2" - "name" "#CSGO_set_community_2" - "items" - { - "0" "weapon_ump45" - "1" "weapon_negev" - "2" "weapon_tec9" - "3" "weapon_mag7" - "4" "weapon_mac10" - "5" "weapon_sg556" - "6" "weapon_famas" - "7" "weapon_usp_silencer" - "8" "weapon_ak47" - "9" "weapon_p90" - "10" "weapon_nova" - "11" "weapon_awp" - "12" "weapon_aug" - } - } - "12" - { - "item_set" "set_community_3" - "name" "#CSGO_set_community_3" - "items" - { - "0" "weapon_tec9" - "1" "weapon_ssg08" - "2" "weapon_elite" - "3" "weapon_galilar" - "4" "weapon_p90" - "5" "weapon_cz75a" - "6" "weapon_cz75a" - "7" "weapon_p90" - "8" "weapon_hkp2000" - "9" "weapon_aug" - "10" "weapon_bizon" - "11" "weapon_mac10" - "12" "weapon_xm1014" - "13" "weapon_mac10" - "14" "weapon_m4a1_silencer" - "15" "weapon_scar20" - "16" "weapon_usp_silencer" - "17" "weapon_usp_silencer" - "18" "weapon_ak47" - "19" "weapon_m4a1" - } - } - "13" - { - "item_set" "set_community_4" - "name" "#CSGO_set_community_4" - "items" - { - "0" "weapon_mp7" - "1" "weapon_negev" - "2" "weapon_hkp2000" - "3" "weapon_ssg08" - "4" "weapon_ump45" - "5" "weapon_bizon" - "6" "weapon_cz75a" - "7" "weapon_nova" - "8" "weapon_p250" - "9" "weapon_deagle" - "10" "weapon_fiveseven" - "11" "weapon_glock" - "12" "weapon_p90" - "13" "weapon_m4a1_silencer" - } - } - "14" - { - "item_set" "set_community_5" - "name" "#CSGO_set_community_5" - "items" - { - "0" "weapon_g3sg1" - "1" "weapon_mag7" - "2" "weapon_mp9" - "3" "weapon_fiveseven" - "4" "weapon_ump45" - "5" "weapon_glock" - "6" "weapon_m4a1_silencer" - "7" "weapon_m4a1" - "8" "weapon_sawedoff" - "9" "weapon_p250" - "10" "weapon_scar20" - "11" "weapon_xm1014" - "12" "weapon_ak47" - "13" "weapon_hkp2000" - } - } - "15" - { - "item_set" "set_community_6" - "name" "#CSGO_set_community_6" - "items" - { - "0" "weapon_glock" - "1" "weapon_m249" - "2" "weapon_mp9" - "3" "weapon_scar20" - "4" "weapon_xm1014" - "5" "weapon_elite" - "6" "weapon_deagle" - "7" "weapon_mac10" - "8" "weapon_sawedoff" - "9" "weapon_ak47" - "10" "weapon_m4a1" - "11" "weapon_p250" - "12" "weapon_awp" - "13" "weapon_galilar" - } - } - "16" - { - "item_set" "set_community_7" - "name" "#CSGO_set_community_7" - "items" - { - "0" "weapon_ak47" - "1" "weapon_mp7" - "2" "weapon_deagle" - "3" "weapon_p250" - "4" "weapon_negev" - "5" "weapon_sawedoff" - "6" "weapon_awp" - "7" "weapon_mag7" - "8" "weapon_cz75a" - "9" "weapon_ump45" - "10" "weapon_fiveseven" - "11" "weapon_galilar" - "12" "weapon_famas" - "13" "weapon_m4a1_silencer" - "14" "weapon_mac10" - } - } - "17" - { - "item_set" "set_community_8" - "name" "#CSGO_set_community_8" - "items" - { - "0" "weapon_galilar" - "1" "weapon_glock" - "2" "weapon_nova" - "3" "weapon_p90" - "4" "weapon_ump45" - "5" "weapon_usp_silencer" - "6" "weapon_famas" - "7" "weapon_m4a1" - "8" "weapon_mp9" - "9" "weapon_negev" - "10" "weapon_hkp2000" - "11" "weapon_cz75a" - "12" "weapon_mp7" - "13" "weapon_sg556" - "14" "weapon_ak47" - "15" "weapon_awp" - } - } - "18" - { - "item_set" "set_community_9" - "name" "#CSGO_set_community_9" - "items" - { - "0" "weapon_elite" - "1" "weapon_famas" - "2" "weapon_glock" - "3" "weapon_mac10" - "4" "weapon_mag7" - "5" "weapon_scar20" - "6" "weapon_xm1014" - "7" "weapon_galilar" - "8" "weapon_m249" - "9" "weapon_mp7" - "10" "weapon_p250" - "11" "weapon_ak47" - "12" "weapon_g3sg1" - "13" "weapon_ssg08" - "14" "weapon_m4a1_silencer" - "15" "weapon_usp_silencer" - } - } - "19" - { - "item_set" "set_dust" - "name" "#CSGO_set_dust" - "items" - { - "0" "weapon_m4a1" - "1" "weapon_scar20" - "2" "weapon_ak47" - "3" "weapon_aug" - "4" "weapon_awp" - "5" "weapon_sawedoff" - "6" "weapon_deagle" - "7" "weapon_hkp2000" - "8" "weapon_glock" - } - } - "20" - { - "item_set" "set_dust_2" - "name" "#CSGO_set_dust_2" - "items" - { - "0" "weapon_g3sg1" - "1" "weapon_p250" - "2" "weapon_scar20" - "3" "weapon_p90" - "4" "weapon_mp9" - "5" "weapon_nova" - "6" "weapon_sawedoff" - "7" "weapon_ak47" - "8" "weapon_fiveseven" - "9" "weapon_mac10" - "10" "weapon_tec9" - "11" "weapon_bizon" - "12" "weapon_m4a1_silencer" - "13" "weapon_sg556" - "14" "weapon_hkp2000" - "15" "weapon_revolver" - } - } - "21" - { - "item_set" "set_esports" - "name" "#CSGO_set_esports" - "items" - { - "0" "weapon_m4a1" - "1" "weapon_mag7" - "2" "weapon_famas" - "3" "weapon_galilar" - "4" "weapon_sawedoff" - "5" "weapon_p250" - "6" "weapon_ak47" - "7" "weapon_awp" - "8" "weapon_p90" - } - } - "22" - { - "item_set" "set_esports_ii" - "name" "#CSGO_set_esports_ii" - "items" - { - "0" "weapon_galilar" - "1" "weapon_fiveseven" - "2" "weapon_bizon" - "3" "weapon_nova" - "4" "weapon_g3sg1" - "5" "weapon_p250" - "6" "weapon_ak47" - "7" "weapon_p90" - "8" "weapon_famas" - "9" "weapon_awp" - "10" "weapon_deagle" - "11" "weapon_m4a1" - } - } - "23" - { - "item_set" "set_esports_iii" - "name" "#CSGO_set_esports_2014_summer" - "items" - { - "0" "weapon_ssg08" - "1" "weapon_mac10" - "2" "weapon_usp_silencer" - "3" "weapon_cz75a" - "4" "weapon_negev" - "5" "weapon_xm1014" - "6" "weapon_bizon" - "7" "weapon_p90" - "8" "weapon_mp7" - "9" "weapon_glock" - "10" "weapon_deagle" - "11" "weapon_aug" - "12" "weapon_nova" - "13" "weapon_awp" - "14" "weapon_hkp2000" - "15" "weapon_m4a1" - "16" "weapon_ak47" - } - } - "24" - { - "item_set" "set_gods_and_monsters" - "name" "#CSGO_set_gods_and_monsters" - "items" - { - "0" "weapon_mp7" - "1" "weapon_aug" - "2" "weapon_elite" - "3" "weapon_nova" - "4" "weapon_tec9" - "5" "weapon_hkp2000" - "6" "weapon_awp" - "7" "weapon_m249" - "8" "weapon_ump45" - "9" "weapon_mp9" - "10" "weapon_g3sg1" - "11" "weapon_m4a1_silencer" - "12" "weapon_m4a1" - "13" "weapon_awp" - } - } - "25" - { - "item_set" "set_inferno" - "name" "#CSGO_set_inferno" - "items" - { - "0" "weapon_mag7" - "1" "weapon_nova" - "2" "weapon_p250" - "3" "weapon_m4a1" - "4" "weapon_elite" - "5" "weapon_tec9" - } - } - "26" - { - "item_set" "set_italy" - "name" "#CSGO_set_italy" - "items" - { - "0" "weapon_tec9" - "1" "weapon_aug" - "2" "weapon_famas" - "3" "weapon_nova" - "4" "weapon_bizon" - "5" "weapon_nova" - "6" "weapon_ump45" - "7" "weapon_hkp2000" - "8" "weapon_elite" - "9" "weapon_m4a1_silencer" - "10" "weapon_xm1014" - "11" "weapon_glock" - "12" "weapon_mp7" - "13" "weapon_sawedoff" - "14" "weapon_awp" - } - } - "27" - { - "item_set" "set_kimono" - "name" "#CSGO_set_kimono" - "items" - { - "0" "weapon_bizon" - "1" "weapon_sawedoff" - "2" "weapon_tec9" - "3" "weapon_g3sg1" - "4" "weapon_p250" - "5" "weapon_p250" - "6" "weapon_deagle" - "7" "weapon_galilar" - "8" "weapon_mag7" - "9" "weapon_tec9" - "10" "weapon_fiveseven" - "11" "weapon_deagle" - "12" "weapon_deagle" - "13" "weapon_m4a1" - "14" "weapon_ak47" - "15" "weapon_aug" - } - } - "28" - { - "item_set" "set_lake" - "name" "#CSGO_set_lake" - "items" - { - "0" "weapon_p250" - "1" "weapon_xm1014" - "2" "weapon_aug" - "3" "weapon_galilar" - "4" "weapon_sg556" - "5" "weapon_g3sg1" - "6" "weapon_xm1014" - "7" "weapon_awp" - "8" "weapon_deagle" - "9" "weapon_famas" - "10" "weapon_bizon" - "11" "weapon_sg556" - "12" "weapon_usp_silencer" - "13" "weapon_p90" - "14" "weapon_elite" - } - } - "29" - { - "item_set" "set_militia" - "name" "#CSGO_set_militia" - "items" - { - "0" "weapon_bizon" - "1" "weapon_xm1014" - "2" "weapon_mac10" - "3" "weapon_hkp2000" - "4" "weapon_bizon" - "5" "weapon_nova" - "6" "weapon_p250" - "7" "weapon_nova" - "8" "weapon_xm1014" - "9" "weapon_m4a1" - "10" "weapon_scar20" - } - } - "30" - { - "item_set" "set_mirage" - "name" "#CSGO_set_mirage" - "items" - { - "0" "weapon_p250" - "1" "weapon_fiveseven" - "2" "weapon_aug" - "3" "weapon_g3sg1" - "4" "weapon_p90" - "5" "weapon_galilar" - "6" "weapon_glock" - "7" "weapon_mp7" - "8" "weapon_ssg08" - "9" "weapon_negev" - "10" "weapon_sg556" - "11" "weapon_mp9" - "12" "weapon_ump45" - "13" "weapon_mac10" - "14" "weapon_mag7" - } - } - "31" - { - "item_set" "set_nuke" - "name" "#CSGO_set_nuke" - "items" - { - "0" "weapon_bizon" - "1" "weapon_mag7" - "2" "weapon_sawedoff" - "3" "weapon_p90" - "4" "weapon_ump45" - "5" "weapon_xm1014" - "6" "weapon_m4a1" - "7" "weapon_p250" - "8" "weapon_tec9" - } - } - "32" - { - "item_set" "set_office" - "name" "#CSGO_set_office" - "items" - { - "0" "weapon_famas" - "1" "weapon_g3sg1" - "2" "weapon_m249" - "3" "weapon_galilar" - "4" "weapon_hkp2000" - "5" "weapon_mp7" - } - } - "33" - { - "item_set" "set_overpass" - "name" "#CSGO_set_overpass" - "items" - { - "0" "weapon_m249" - "1" "weapon_mag7" - "2" "weapon_mp9" - "3" "weapon_sawedoff" - "4" "weapon_ump45" - "5" "weapon_mp7" - "6" "weapon_deagle" - "7" "weapon_glock" - "8" "weapon_hkp2000" - "9" "weapon_xm1014" - "10" "weapon_ssg08" - "11" "weapon_cz75a" - "12" "weapon_awp" - "13" "weapon_usp_silencer" - "14" "weapon_m4a1_silencer" - } - } - "34" - { - "item_set" "set_safehouse" - "name" "#CSGO_set_safehouse" - "items" - { - "0" "weapon_elite" - "1" "weapon_scar20" - "2" "weapon_ssg08" - "3" "weapon_tec9" - "4" "weapon_mp7" - "5" "weapon_usp_silencer" - "6" "weapon_aug" - "7" "weapon_mp9" - "8" "weapon_g3sg1" - "9" "weapon_galilar" - "10" "weapon_m249" - "11" "weapon_famas" - "12" "weapon_fiveseven" - "13" "weapon_ssg08" - "14" "weapon_m4a1_silencer" - } - } - "35" - { - "item_set" "set_train" - "name" "#CSGO_set_train" - "items" - { - "0" "weapon_ump45" - "1" "weapon_elite" - "2" "weapon_g3sg1" - "3" "weapon_fiveseven" - "4" "weapon_nova" - "5" "weapon_bizon" - "6" "weapon_mac10" - "7" "weapon_m4a1" - "8" "weapon_mag7" - "9" "weapon_p250" - "10" "weapon_scar20" - "11" "weapon_p90" - "12" "weapon_deagle" - "13" "weapon_sawedoff" - "14" "weapon_tec9" - } - } - "36" - { - "item_set" "set_vertigo" - "name" "#CSGO_set_vertigo" - "items" - { - "0" "weapon_mac10" - "1" "weapon_xm1014" - "2" "weapon_bizon" - "3" "weapon_p90" - "4" "weapon_ak47" - "5" "weapon_elite" - } - } - "37" - { - "item_set" "set_weapons_i" - "name" "#CSGO_set_weapons_i" - "items" - { - "0" "weapon_mp7" - "1" "weapon_aug" - "2" "weapon_sg556" - "3" "weapon_glock" - "4" "weapon_usp_silencer" - "5" "weapon_m4a1_silencer" - "6" "weapon_ak47" - "7" "weapon_deagle" - "8" "weapon_awp" - } - } - "38" - { - "item_set" "set_weapons_ii" - "name" "#CSGO_set_weapons_ii" - "items" - { - "0" "weapon_tec9" - "1" "weapon_m4a1_silencer" - "2" "weapon_famas" - "3" "weapon_p250" - "4" "weapon_scar20" - "5" "weapon_fiveseven" - "6" "weapon_mp9" - "7" "weapon_nova" - "8" "weapon_elite" - "9" "weapon_p90" - "10" "weapon_usp_silencer" - "11" "weapon_ssg08" - } - } - "39" - { - "item_set" "set_weapons_iii" - "name" "#CSGO_set_weapons_iii" - "items" - { - "0" "weapon_cz75a" - "1" "weapon_hkp2000" - "2" "weapon_elite" - "3" "weapon_usp_silencer" - "4" "weapon_glock" - "5" "weapon_cz75a" - "6" "weapon_tec9" - "7" "weapon_deagle" - "8" "weapon_fiveseven" - "9" "weapon_cz75a" - "10" "weapon_p250" - "11" "weapon_cz75a" - } - } - } - "attribute_controlled_attached_particles" - { + ] + + }, + { + "name": "IEM Katowice 2019 CS:GO Champion", + "defindex": 971, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Katowice2019_Champion", + "item_description": "#CSGO_CollectibleCoin_Katowice2019_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "IEM Katowice 2019 CS:GO Finalist", + "defindex": 972, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Katowice2019_Finalist", + "item_description": "#CSGO_CollectibleCoin_Katowice2019_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "IEM Katowice 2019 CS:GO Semifinalist", + "defindex": 973, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Katowice2019_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Katowice2019_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "IEM Katowice 2019 CS:GO Quarterfinalist", + "defindex": 974, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Katowice2019_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Katowice2019_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "StarLadder Berlin 2019 CS:GO Champion", + "defindex": 975, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Berlin2019_Champion", + "item_description": "#CSGO_CollectibleCoin_Berlin2019_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "StarLadder Berlin 2019 CS:GO Finalist", + "defindex": 976, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Berlin2019_Finalist", + "item_description": "#CSGO_CollectibleCoin_Berlin2019_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "StarLadder Berlin 2019 CS:GO Semifinalist", + "defindex": 977, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Berlin2019_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Berlin2019_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "StarLadder Berlin 2019 CS:GO Quarterfinalist", + "defindex": 978, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Berlin2019_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Berlin2019_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "PGL Stockholm 2021 CS:GO Champion", + "defindex": 979, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Stockh2021_Champion", + "item_description": "#CSGO_CollectibleCoin_Stockh2021_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "PGL Stockholm 2021 CS:GO Finalist", + "defindex": 980, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Stockh2021_Finalist", + "item_description": "#CSGO_CollectibleCoin_Stockh2021_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "PGL Stockholm 2021 CS:GO Semifinalist", + "defindex": 981, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Stockh2021_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Stockh2021_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "PGL Stockholm 2021 CS:GO Quarterfinalist", + "defindex": 982, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Stockh2021_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Stockh2021_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "PGL Antwerp 2022 CS:GO Champion", + "defindex": 983, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Antwerp2022_Champion", + "item_description": "#CSGO_CollectibleCoin_Antwerp2022_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "PGL Antwerp 2022 CS:GO Finalist", + "defindex": 984, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Antwerp2022_Finalist", + "item_description": "#CSGO_CollectibleCoin_Antwerp2022_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "PGL Antwerp 2022 CS:GO Semifinalist", + "defindex": 985, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Antwerp2022_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Antwerp2022_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "PGL Antwerp 2022 CS:GO Quarterfinalist", + "defindex": 986, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Antwerp2022_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Antwerp2022_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "CSGO Ten Year Anniversary Memorabilia", + "defindex": 987, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_CsgoTenYearAnniversaryMemorabilia", + "item_description": "#CSGO_CollectibleCoin_CsgoTenYearAnniversaryMemorabilia_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/cupcake_10_year", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cupcake_10_year.f6253e97802692c9c8b2d24231eaf8edc2e6c641.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/cupcake_10_year_large.6bf0b2033f0d0e50ded1c491bc1c6330ac5d63f7.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "PGL Rio 2022 CS:GO Champion", + "defindex": 988, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Rio2022_Champion", + "item_description": "#CSGO_CollectibleCoin_Rio2022_Champion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors.22c41059d3f3732ccc503cff103040e020f05e92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_large.8a7e1053459660c0ba57dcc2dc95c02cbaf4125b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "PGL Rio 2022 CS:GO Finalist", + "defindex": 989, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Rio2022_Finalist", + "item_description": "#CSGO_CollectibleCoin_Rio2022_Finalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "PGL Rio 2022 CS:GO Semifinalist", + "defindex": 990, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Rio2022_Semifinalist", + "item_description": "#CSGO_CollectibleCoin_Rio2022_Semifinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "PGL Rio 2022 CS:GO Quarterfinalist", + "defindex": 991, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_CollectibleCoin_Rio2022_Quarterfinalist", + "item_description": "#CSGO_CollectibleCoin_Rio2022_Quarterfinalist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/trophy_majors_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists.3fc763dc0877ef542e9e6927bde6e3771deaee00.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/trophy_majors_finalists_large.147cd1c9a33d73316a4a676066a1ede9cd1636a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "Community Season One Spring 2013", + "defindex": 1000, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonOneSpring2013", + "item_description": "#CSGO_Ticket_CommunitySeasonOneSpring2013_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/community_support_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass.b17a35da019f3256833ea4089c7df6c2ece80274.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_large.d1cfbac8be9e92127893ff2054647b73c76c35b3.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "Community Season One Spring 2013 Coin 1", + "defindex": 1001, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/community_support_pass_coin1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin1.c52c7928635e86d8f855ffaf97dff79a1739cdf7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin1_large.bff9cd331dd659a64080d98e7705b76c024db56b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "Community Season One Spring 2013 Coin 2", + "defindex": 1002, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/community_support_pass_coin2", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin2.73f8f284be9bef49104ed851f9db238feffd1492.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin2_large.bc786108abf26dbe30a13fc81d15719f495b0560.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "Community Season One Spring 2013 Coin 3", + "defindex": 1003, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/community_support_pass_coin3", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin3.b4d9b8e8cb1e591dcbc5cd4be97271990e501050.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/community_support_pass_coin3_large.c3afe0cfbd929f85fca1a63ec1815e8336dcfe7d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "Map Token Museum", + "defindex": 1004, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenMuseum", + "item_description": "#CSGO_Collectible_MapTokenMuseum_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_museum", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_museum.19b18ee64caec03d8b6e24989b3cf4c456c78cc3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_museum_large.7e979cc2871851550a473bd37a46d7b6c200b7ad.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Downtown", + "defindex": 1005, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenDowntown", + "item_description": "#CSGO_Collectible_MapTokenDowntown_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_downtown", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_downtown.af8f4d7a6335ddcc4ecf1ff362e9932e9e348a66.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_downtown_large.50a8ae9bd92cce414e04a250292111db671fa00d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Thunder", + "defindex": 1006, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenThunder", + "item_description": "#CSGO_Collectible_MapTokenThunder_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_thunder", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_thunder.df4841912515e3ea5cdb5c5aa3574a713e1cdc1f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_thunder_large.9a2001c80a3fbf6d46f153c0563047002bd1f2fd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Favela", + "defindex": 1007, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenFavela", + "item_description": "#CSGO_Collectible_MapTokenFavela_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_favela", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_favela.87c12ee09f70a181e8a1af3df1e0ff6d8febfdbe.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_favela_large.338a662380c3ecfbb1382a395a3bb08a383225ae.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Motel", + "defindex": 1008, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenMotel", + "item_description": "#CSGO_Collectible_MapTokenMotel_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_motel", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_motel.6ddc95f4d4246e3538ea66ab1afbebdef51db86b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_motel_large.0e9f82978876c2c69d3164f5e7db1aeaac85dd04.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Seaside", + "defindex": 1009, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenSeaside", + "item_description": "#CSGO_Collectible_MapTokenSeaside_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_seaside", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_seaside.6e33fcee9c611dad2b119c16cfa9cfd52854c4e5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_seaside_large.43eca57040d443e997d3f7260c20f2613a70c6a6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Library", + "defindex": 1010, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenLibrary", + "item_description": "#CSGO_Collectible_MapTokenLibrary_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_library", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_library.c27bb561fe98926e3f879389daf62aa84967fbc8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_library_large.a1158f9a819a7c3a3466670c95cfacd3dc92ce61.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Community Season Two Autumn 2013", + "defindex": 1012, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonTwoAutumn2013", + "item_description": "#CSGO_Ticket_CommunitySeasonTwoAutumn2013_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_bravo_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_pass.d8cb196619345c8b5883f515bdb46c5b3de4e995.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "Community Season Two Autumn 2013 Coin 1", + "defindex": 1013, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_bravo_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_bronze.fbc76a430e41a45125959f7445b1efa270ab46c2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_bronze_large.2542494a3a070356b8ba5f11dc0e38c95e1e624f.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "match wins", + "class": "match_wins", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + } + ] + + }, + { + "name": "Community Season Two Autumn 2013 Coin 2", + "defindex": 1014, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_bravo_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_silver.b2c3e4f7335165fef148847c8fd86cf1bdc1f573.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_silver_large.3f176a6b2c91c8b91747afc432c755c0b7e6fca7.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "match wins", + "class": "match_wins", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + } + ] + + }, + { + "name": "Community Season Two Autumn 2013 Coin 3", + "defindex": 1015, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_bravo_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_gold.365a7644f1f889a7a710805585b26fe9766248a1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_bravo_gold_large.d6be46887a064db399a7155c3e88ae321e2d3eba.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "match wins", + "class": "match_wins", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + } + ] + + }, + { + "name": "Map Token Agency", + "defindex": 1016, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenAgency", + "item_description": "#CSGO_Collectible_MapTokenAgency_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_agency", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_agency.0d6b5e9d05ffb0f8e450eb82d7a78d8a47c1064f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_agency_large.1759793368db27d5c0230c4b3b185aa6d2f4a2b6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Ali", + "defindex": 1017, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenAli", + "item_description": "#CSGO_Collectible_MapTokenAli_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_ali", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ali.b851b1a64874bbc20bedcd6bd13746f2c61a0d2f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ali_large.7fc60a735cc50aad8744f15ee8e5d262deb4206a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Cache", + "defindex": 1018, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenCache", + "item_description": "#CSGO_Collectible_MapTokenCache_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_cache.11640014eb64dec8f5ee580add610fb195f8ac72.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_cache_large.96803d4f8de5436ec54679d83a90032bee4cf481.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Chinatown", + "defindex": 1019, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenChinatown", + "item_description": "#CSGO_Collectible_MapTokenChinatown_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_chinatown", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chinatown.f5f7a7f0834016df6ef5a1cc603e746fbfecfa20.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chinatown_large.9a03b6f7a60fed7e2bc7277cbf5930a07d2e6ffa.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Gwalior", + "defindex": 1020, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenGwalior", + "item_description": "#CSGO_Collectible_MapTokenGwalior_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_gwalior", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_gwalior.c595fe8abca95bd1866a91d9f339353f1f0eb490.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_gwalior_large.cc5d1f9ef72272f366c2ea487b423c9fa8f87582.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Ruins", + "defindex": 1021, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenRuins", + "item_description": "#CSGO_Collectible_MapTokenRuins_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_ruins", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ruins.56bd126e6e4e3ff15fd12fab6df459339adcb774.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ruins_large.3b619b3214cec42345e3fc86775eaf9590968307.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Siege", + "defindex": 1022, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenSiege", + "item_description": "#CSGO_Collectible_MapTokenSiege_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_siege", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_siege.dd1bd3688b5caa4ec580cc6a2080e135b3ee8dd8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_siege_large.d5febba68d951a56955e6b2a4ba785077abb2dd5.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Community Season Three Spring 2014", + "defindex": 1023, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonThreeSpring2014", + "item_description": "#CSGO_Ticket_CommunitySeasonThreeSpring2014_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_phoenix_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_pass.ef3b4180e52d2d4a4cbb9fbe2df440b1ee8f0dca.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "Community Season Three Spring 2014 Coin 1", + "defindex": 1024, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_phoenix_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_bronze.b95d670bb428fa933b93e903feeb338728e1cd8d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_bronze_large.a370356824b271e2691ec6495e91e66e89567ceb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "match wins", + "class": "match_wins", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + } + ] + + }, + { + "name": "Community Season Three Spring 2014 Coin 2", + "defindex": 1025, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_phoenix_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_silver.b5c4fb2070286c6c3682345dcdbf17dadd16e1af.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_silver_large.0340dbf0af85f9f4c4bf36b3c605c273d9f80a26.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "match wins", + "class": "match_wins", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + } + ] + + }, + { + "name": "Community Season Three Spring 2014 Coin 3", + "defindex": 1026, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_phoenix_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_gold.44da84b8da10c864f7eea9b2d0f9c780184ec30e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_phoenix_gold_large.7d5441fcfab0ce9df406b6e36a16ef1d5b884cf0.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "match wins", + "class": "match_wins", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + } + ] + + }, + { + "name": "Community Season Four Summer 2014", + "defindex": 1027, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonFourSummer2014", + "item_description": "#CSGO_Ticket_CommunitySeasonFourSummer2014_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_breakout_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_pass.2c84f278eec59611affd866a64e255d6f64b8a44.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "Community Season Four Summer 2014 Coin 1", + "defindex": 1028, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_breakout_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_bronze.785329d1348a6291c6235bd21920782945484c35.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_bronze_large.e829dba96adb71e711ed2d8f4628a67f31cfe56d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + } + ] + + }, + { + "name": "Community Season Four Summer 2014 Coin 2", + "defindex": 1029, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_breakout_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_silver.097fa8ff795b71ca6e57fcb79129412e81760933.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_silver_large.8e1574f62b67d6994ca2a2be962b274d72c24e72.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + } + ] + + }, + { + "name": "Community Season Four Summer 2014 Coin 3", + "defindex": 1030, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_breakout_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_gold.d932cc657e797e3e0e0ba0ac4d5932aaf54d4e48.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_breakout_gold_large.3344fe7583c6b875072c240d98857c0aff2c3ea7.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + } + ] + + }, + { + "name": "Map Token Castle", + "defindex": 1031, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenCastle", + "item_description": "#CSGO_Collectible_MapTokenCastle_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_castle", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_castle.c6d0534f38e0cd500d148e845447a0619a4e5116.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_castle_large.2d8fc69105f2cf565fe0d6bdef69c258669f0592.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Black Gold", + "defindex": 1032, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBlackGold", + "item_description": "#CSGO_Collectible_MapTokenBlackGold_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_blackgold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_blackgold.4c8202949af55ffd2a2bb778d169d156d28c141b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_blackgold_large.439811071418e7d3d51564ba305e262dcb86ed76.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Rush", + "defindex": 1033, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenRush", + "item_description": "#CSGO_Collectible_MapTokenRush_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_rush", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rush.9752e9d51926e5138af27934fb425952a3222d86.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rush_large.835ed1760d3a5f81f5e4e531a905f44192e306f6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Mist", + "defindex": 1034, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenMist", + "item_description": "#CSGO_Collectible_MapTokenMist_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_mist", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mist.71e33321e68064ac2d40c4e76da562c85621c281.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mist_large.d3bb68c34cb66c88de90e6c944c9c6e16beeaac7.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Insertion", + "defindex": 1035, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenInsertion", + "item_description": "#CSGO_Collectible_MapTokenInsertion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_insertion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_insertion.fb48c5e43d10ccdaa98dc2439defe3e9dae50017.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_insertion_large.a5344a201a9536d376807899c84c5a0ff36bd2ad.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Overgrown", + "defindex": 1036, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenOvergrown", + "item_description": "#CSGO_Collectible_MapTokenOvergrown_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_overgrown", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_overgrown.fe6527c10619dc1b126a7492bce549eec3494c8b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_overgrown_large.78dd43f0b9eac0fc3ba566ea53981edc26d81c33.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Marquis", + "defindex": 1037, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenMarquis", + "item_description": "#CSGO_Collectible_MapTokenMarquis_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_marquis", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_marquis.850391449c5ca0a4a57446ff13cddf3da3f1ae4b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_marquis_large.0079c2a285f2823dd8fe4290cef8a4df15664bc2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Workout", + "defindex": 1038, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenWorkout", + "item_description": "#CSGO_Collectible_MapTokenWorkout_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_workout", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_workout.1baad38595395e94cc427a0870388137798f6ca8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_workout_large.69b880650f39f6283b00cb8c978d91dfb21b09d9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Backalley", + "defindex": 1039, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBackalley", + "item_description": "#CSGO_Collectible_MapTokenBackalley_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_backalley", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_backalley.9315d58c9d5c0814c4c06f40ce8af564d0e453c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_backalley_large.05438fa39d1bbf8b4a537751e800d7f2ca79eb9a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Season", + "defindex": 1040, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenSeason", + "item_description": "#CSGO_Collectible_MapTokenSeason_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_season", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_season.7ce3f52deca958a608173bd002711b6b445fb5a9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_season_large.d73c4bb72f17c4d7b701757fa4da779c32c16336.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Bazaar", + "defindex": 1041, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBazaar", + "item_description": "#CSGO_Collectible_MapTokenBazaar_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_bazaar", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_bazaar.16090a83570edca5686f66bb8842ff8ca70933a3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_bazaar_large.926018c940e122b66fa4eb6942e3dba6930d402d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Facade", + "defindex": 1042, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenFacade", + "item_description": "#CSGO_Collectible_MapTokenFacade_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_facade", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_facade.25d89f10111708ec822d65d1dd6588ac1c0428c2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_facade_large.d441abb9cef81a359cf993af3642f58adda68419.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Log", + "defindex": 1043, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenLog", + "item_description": "#CSGO_Collectible_MapTokenLog_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_log", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_log.56ea9c6915676d5cc06861cbd38a458b0e01dfe6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_log_large.18aa8f6714f15fbcd05892b1ae2082893ac71dd0.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Rails", + "defindex": 1044, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenRails", + "item_description": "#CSGO_Collectible_MapTokenRails_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_rails", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rails.fbacbd83d92dbb94bc2f96acc8bf7430b9ebb471.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_rails_large.fb22a52ddc8296012f447d9a852b4467bf2e82a8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Resort", + "defindex": 1045, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenResort", + "item_description": "#CSGO_Collectible_MapTokenResort_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_resort", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_resort.6827ca91e80143feb27bd3c744adc313c592cb87.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_resort_large.94d6b94d99d55198741677b7f7ae8386b078416f.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Zoo", + "defindex": 1046, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenZoo", + "item_description": "#CSGO_Collectible_MapTokenZoo_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_zoo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_zoo.2c52d2b297d9c77b25d6ff79f4255e0933e06c9c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_zoo_large.a59d93b91f6b0bb11410c2d3c45e10e729828b89.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Santorini", + "defindex": 1047, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenSantorini", + "item_description": "#CSGO_Collectible_MapTokenSantorini_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_santorini", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_santorini.574fa0468540b708cb4950f9e978dcaed65ec482.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_santorini_large.57459151521b943df5c5a9ab524f15990f170a39.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Coast", + "defindex": 1048, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenCoast", + "item_description": "#CSGO_Collectible_MapTokenCoast_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_coast", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_coast.0be2ec9438663fee2f1e4f58fc10e55977c73331.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_coast_large.95b0dcf4d614d6de056313cc4ff9d9a3fa8c971d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Mikla", + "defindex": 1049, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenMikla", + "item_description": "#CSGO_Collectible_MapTokenMikla_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_mikla", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mikla.d8e8fdc6b2092e2ea37884bf528aabb0ce61411b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mikla_large.ab7edb5dc61566e73edd517bca44569eec19d634.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Royal", + "defindex": 1050, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenRoyal", + "item_description": "#CSGO_Collectible_MapTokenRoyal_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_royal", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_royal.9f5c1b3acf9848bfc9323b224626ca7a90c6f15f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_royal_large.03a0bc4f5e72039a36dbac2373323a8e93dfb2f4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Empire", + "defindex": 1051, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenEmpire", + "item_description": "#CSGO_Collectible_MapTokenEmpire_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_empire", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_empire.99ff2e407a56473e9dd03928a9df1ee5eeb8dce4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_empire_large.e23b29bcba2fcd3832cfd7a461bb918443ca00f1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Tulip", + "defindex": 1052, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenTulip", + "item_description": "#CSGO_Collectible_MapTokenTulip_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_tulip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_tulip.fce0def26241b9a3f91baca4c9fc5fe03d9dc716.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_tulip_large.2cb61b0ea91b152456669cf25329ba35d0042726.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Cruise", + "defindex": 1053, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenCruise", + "item_description": "#CSGO_Collectible_MapTokenCruise_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_cruise", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_cruise.fea625fcecfd66a0ba1fe4be301f4da3f6d0b3fb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_cruise_large.38f36e8f34f79a3eadcc3a7cad84ba09c1b2ed0a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Subzero", + "defindex": 1054, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenSubzero", + "item_description": "#CSGO_Collectible_MapTokenSubzero_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_subzero", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_subzero.c58eddd10d1aef9a8bf48d3c60c809bdef9a4e6f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_subzero_large.80a426dc9c969b57a5bfd62fb883abd12c4c1401.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Biome", + "defindex": 1055, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBiome", + "item_description": "#CSGO_Collectible_MapTokenBiome_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_biome", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_biome.fd1f26e3193f99859a305370f09847a961629cdc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_biome_large.eaaea75393d311c3287f756e13b3d7124a9530fb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Abbey", + "defindex": 1056, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenAbbey", + "item_description": "#CSGO_Collectible_MapTokenAbbey_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_abbey", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_abbey.cfde1e4d83022ba3c4393648bdb8fdf520675db6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_abbey_large.438086c49b6bbc32b5749fd69d3cc22e21150b0f.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Ruby", + "defindex": 1057, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenRuby", + "item_description": "#CSGO_Collectible_MapTokenRuby_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_ruby", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ruby.6f7dcc792276cc8d28bc250882244d28abe1cb60.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ruby_large.8401499d5b3428552fba6ede16d6eb6be6ac049e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Breach", + "defindex": 1058, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBreach", + "item_description": "#CSGO_Collectible_MapTokenBreach_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_breach", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_breach.da23b902d574eccd7ff0eac0ab2a48eea1024dd5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_breach_large.55d6f60cf79b0fd72be64eb609dbed2c03476688.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Studio", + "defindex": 1059, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenStudio", + "item_description": "#CSGO_Collectible_MapTokenStudio_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_studio", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_studio.69e62a49e3110548257c3883f9bf884536762231.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_studio_large.b8f76c2893659d5b4e6f9319081b79154a9a60fa.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Jungle", + "defindex": 1060, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenJungle", + "item_description": "#CSGO_Collectible_MapTokenJungle_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_jungle", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_jungle.fe1ede6170f402f850f5f6dad83748f07f8e7d2f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_jungle_large.1ec89b7e973765f0fa31805ee52803b6c1fafbf5.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Anubis", + "defindex": 1061, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenAnubis", + "item_description": "#CSGO_Collectible_MapTokenAnubis_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_anubis", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_anubis.32850f31b21f0059cbafa76ea5f5abf4afb97146.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_anubis_large.6d5365950d929c8accc055a0f73fc63d14c015f4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Chlorine", + "defindex": 1062, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenChlorine", + "item_description": "#CSGO_Collectible_MapTokenChlorine_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_chlorine", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chlorine.9504cc248276b4d4b8e2e29e7128fd79943ac141.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chlorine_large.13253e81f7b54fea73f56a27261514ad7dd9d46a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Mutiny", + "defindex": 1063, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenMutiny", + "item_description": "#CSGO_Collectible_MapTokenMutiny_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_mutiny", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mutiny.b113f4679e247fd88f3b63add037d961de79195e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mutiny_large.8c1f86488442fc6d979181d2c8f6a7d422c6301c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Swamp", + "defindex": 1064, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenSwamp", + "item_description": "#CSGO_Collectible_MapTokenSwamp_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_swamp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_swamp.fb519fd449366a8eee1fd13d33124d54bc43a34e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_swamp_large.0f11b60329b8d721dd87009d8a555dea9b22e7a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Frostbite", + "defindex": 1065, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenFrostbite", + "item_description": "#CSGO_Collectible_MapTokenFrostbite_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_frostbite", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_frostbite.3bd79277a8dd9ad081689b57aa27d847a954a7b2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_frostbite_large.bdfc34c41f783957d5b0745ef347a48479fc3189.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Engage", + "defindex": 1066, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenEngage", + "item_description": "#CSGO_Collectible_MapTokenEngage_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_engage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_engage.6758982753ea03ac4c22ed762f347dc283bc2de1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_engage_large.22138211532536a6f45c2d8496b5af8ed15eddf8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Apollo", + "defindex": 1067, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenApollo", + "item_description": "#CSGO_Collectible_MapTokenApollo_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_apollo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_apollo.a9134e82edad81e861b6055cffc56c88ea14042d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_apollo_large.1177bb4ca0867098e983d4ca17b63324423170b2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Guard", + "defindex": 1068, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenGuard", + "item_description": "#CSGO_Collectible_MapTokenGuard_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_guard", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_guard.f56eb5563de55afa0402e54fcdc70e661bc21942.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_guard_large.09570f3a03132e299e807599b419437939cd319b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Elysion", + "defindex": 1069, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenElysion", + "item_description": "#CSGO_Collectible_MapTokenElysion_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_elysion", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_elysion.c15d1e5e91970e53d9040df907c999489829480b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_elysion_large.7e02ce48b24e6cc07c66c92fb813bdc4f6e3a159.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Grind", + "defindex": 1070, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenGrind", + "item_description": "#CSGO_Collectible_MapTokenGrind_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_grind", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_grind.91d7d7c05234805c586bc9369bedbcefc702d6fc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_grind_large.bd181b40c5b03c4aed1517c94ebb051624a9cbd1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Mocha", + "defindex": 1071, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenMocha", + "item_description": "#CSGO_Collectible_MapTokenMocha_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_mocha", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mocha.bef60eb978dcf4f354597c46a0d4eb375bed1c6f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_mocha_large.b9aa56d8f93c17d17e0ce03332ab2eb44748160a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Calavera", + "defindex": 1072, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenCalavera", + "item_description": "#CSGO_Collectible_MapTokenCalavera_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_calavera", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_calavera.8d0a4649ec49c9a68c99bc98229c68602490880a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_calavera_large.3ce86829768177e67cea98f6fda00498bb577df6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Pitstop", + "defindex": 1073, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenPitstop", + "item_description": "#CSGO_Collectible_MapTokenPitstop_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_pitstop", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_pitstop.bcb8e799c2492230c75d417a02310dc135d58390.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_pitstop_large.5c4a4f35bdc680351d981b014263ea3fdb88ccf1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Basalt", + "defindex": 1074, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBasalt", + "item_description": "#CSGO_Collectible_MapTokenBasalt_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_basalt", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_basalt.a9cbbbfac5e5e20433a8eaaa951f74cfbe86dcb2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_basalt_large.c85c40856f1ead8e487bb690626a62151586c264.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Insertion2", + "defindex": 1075, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenInsertion2", + "item_description": "#CSGO_Collectible_MapTokenInsertion2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_insertion2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_insertion2.7b09a8feab70814a8449aa95f5c0a7d9fb071a3c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_insertion2_large.d2b1d0c5e9bfcc92e94e1d1f120bf5040f7d2cac.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Ravine", + "defindex": 1076, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenRavine", + "item_description": "#CSGO_Collectible_MapTokenRavine_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_ravine", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ravine.0c94bed96a7f03a8d13df0394a696028faccb51b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ravine_large.c172e3a09404d613c963a148396ea2305c1656ef.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Extraction", + "defindex": 1077, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenExtraction", + "item_description": "#CSGO_Collectible_MapTokenExtraction_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_extraction", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_extraction.8681f00d944a9accbd3ff1eae5233f5918d751bc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_extraction_large.9ea5c88644f211f4dd1b44e071b97218c6dcf33d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token County", + "defindex": 1078, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenCounty", + "item_description": "#CSGO_Collectible_MapTokenCounty_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_county", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_county.7352db6a23b166f69dcbeeafe67573f7a4bb02e0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_county_large.9e873b3eaf1f514aca1668f50d63c72c5d631510.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Iris", + "defindex": 1079, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenIris", + "item_description": "#CSGO_Collectible_MapTokenIris_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_iris", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_iris.f7f26d30c7d355011e0b82e4852b92b76c402d24.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_iris_large.c9cc670abed99fc8ef7bea5a3e28adb89643c323.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Climb", + "defindex": 1080, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenClimb", + "item_description": "#CSGO_Collectible_MapTokenClimb_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_climb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_climb.052e07c5967d082dc6284708a1d3dab9113a250c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_climb_large.8d360b654119977af13023483d872d9b5fb2879e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Crete", + "defindex": 1081, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenCrete", + "item_description": "#CSGO_Collectible_MapTokenCrete_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_crete", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_crete.ba48f238ec6045875787bc012550d8fa5769ad3c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_crete_large.2af72f5b0e25fabb0b7a4488c2c8ea2be1710d27.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Hive", + "defindex": 1082, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenHive", + "item_description": "#CSGO_Collectible_MapTokenHive_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_hive", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_hive.30dddbb4433152560f6fd5d89242f2a5e28c53af.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_hive_large.a48cbd7068653283d7d8d50ca3d27be15023e778.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Vineyard", + "defindex": 1083, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenVineyard", + "item_description": "#CSGO_Collectible_MapTokenVineyard_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_vineyard", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_vineyard.6724f3f34c27bcd26b9480354d68933ed774eef2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_vineyard_large.2b361566e584f03349eb250f8cb1b13478a12b54.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Ember", + "defindex": 1084, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenEmber", + "item_description": "#CSGO_Collectible_MapTokenEmber_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_ember", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ember.dabce2e9efd517a5eb4a3060545eb0da017f2733.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_ember_large.b7ffbafb1277a4af2b8a69526edf8e8412456e42.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Tuscan", + "defindex": 1085, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenTuscan", + "item_description": "#CSGO_Collectible_MapTokenTuscan_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_tuscan", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_tuscan.911731564031ea72e33d8d33c608e415a114fcac.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_tuscan_large.1801ca53aaa4c9ec0fb86a9b03831d033619ea0c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Prime", + "defindex": 1086, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenPrime", + "item_description": "#CSGO_Collectible_MapTokenPrime_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_prime", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_prime.14e50a8839349aafec74b7df3a02be712f5a2fc8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_prime_large.625e9c1b7d90d6bc7af3f3ca910fa66923ea9dbe.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Blagai", + "defindex": 1087, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBlagai", + "item_description": "#CSGO_Collectible_MapTokenBlagai_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_blagai", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_blagai.e7ebcccf2b0ff6ae1cd3d224d64453ab9467d555.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_blagai_large.5f93fc30a33ed2e228e500f3b210def28fd36654.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Boyard", + "defindex": 1088, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenBoyard", + "item_description": "#CSGO_Collectible_MapTokenBoyard_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_boyard", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_boyard.818d1f813f96619c72b81132fa98d498ffe95a3e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_boyard_large.abe87b0e8208970bab30fb155c614afd64eadcde.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Map Token Chalice", + "defindex": 1089, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_MapTokenChalice", + "item_description": "#CSGO_Collectible_MapTokenChalice_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/maptoken_chalice", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chalice.6edefc27cc4c2ae25292c94091d50644bc2e5b1d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/maptoken_chalice_large.9a09c313c02504c358c89ba0c4cf4f4ccf2c23fe.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Name Tag", + "defindex": 1200, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_Name_TagTag", + "item_name": "#CSGO_Tool_Name_Tag", + "item_description": "#CSGO_Tool_Name_Tag_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/tag", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/tag.a2bf9644e84e15506b9abab84125eb24527b723a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/tag_large.d3594703dfdcce8d5d00b5b90a6e78c286c8574e.png", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "name", + "usage_capabilities": { + "nameable": true + } + } + }, + { + "name": "casket", + "defindex": 1201, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Tool", + "item_name": "#CSGO_Tool_Casket_Tag", + "item_description": "#CSGO_Tool_Casket_Tag_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/casket", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/casket.50019c3b357c67409ef4acee74308da267b91d25.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/casket_large.3a6ace91832fd61d4599f1884dd99a328abfd2a8.png", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "casket", + "usage_capabilities": { + "nameable": true, + "can_collect": true + } + }, + "attributes": [ + + ] + + }, + { + "name": "Weapon Case Key", + "defindex": 1203, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_Tool_WeaponCase_Key", + "item_description": "#CSGO_Tool_WeaponCase_Key_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/weapon_case_key", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/weapon_case_key.9da9cda11754311c016099d05c3dd3309ffd7cd6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/weapon_case_key_large.9da9cda11754311c016099d05c3dd3309ffd7cd6.png", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "generic_valve_key", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "E-Sports Weapon Case Key 1", + "defindex": 1204, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_esports_crate_key_1", + "item_description": "#CSGO_esports_crate_key_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/weapon_case_key_special_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/weapon_case_key_special_1.6ced14e09f1d1f2f52a648b37d245fc1f1419a34.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "esports_crate_key", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "sticker", + "defindex": 1209, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_Sticker", + "item_name": "#CSGO_Tool_Sticker", + "item_description": "#CSGO_Tool_Sticker_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "sticker", + "usage_capabilities": { + "usable_out_of_game": true, + "can_sticker": true + } + } + }, + { + "name": "Gift - 1 Player", + "defindex": 1210, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_GiftTag", + "item_name": "#CSGO_Tool_Gift1Player", + "item_description": "#CSGO_Tool_Gift1Player_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/gift1player", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/gift1player.d7af0c74ccc8314c314c870708c0ae3a0ead32ad.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true + }, + "tool": { + "type": "gift" + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 8 + } + ] + + }, + { + "name": "Gift - 9 Players", + "defindex": 1211, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_GiftTag", + "item_name": "#CSGO_Tool_Gift9Players", + "item_description": "#CSGO_Tool_Gift9Players_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/gift9players", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/gift9players.d17fef24890f21e6de8cbc9690f5198d45cbb617.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true + }, + "tool": { + "type": "gift" + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 8 + } + ] + + }, + { + "name": "Sticker Crate Key", + "defindex": 1212, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_sticker_crate_key_1", + "item_description": "#CSGO_sticker_crate_key_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/sticker_crate_key", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/sticker_crate_key.1a436eb9f66602a8f472adf2afa600271056370c.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "sticker_crate_key", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Case Key 1", + "defindex": 1214, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_1", + "item_description": "#CSGO_community_crate_key_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_1.f168439f93277d8b3869910a3ee649ee4039edb4.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_1", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Gift - 25 Spectators", + "defindex": 1215, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_GiftTag", + "item_name": "#CSGO_Tool_Gift25Spectators", + "item_description": "#CSGO_Tool_Gift25Spectators_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/gift25spectators", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/gift25spectators.2df066096864ba183f903f656abe149b9d1f7a02.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true + }, + "tool": { + "type": "gift" + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 8 + } + ] + + }, + { + "name": "Community Case Key 2", + "defindex": 1303, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_2", + "item_description": "#CSGO_community_crate_key_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_2.d1bb59f3fd96f4332979690c08dc314f74d484de.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_2", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Sticker Capsule 1 Key May 2014", + "defindex": 1304, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_sticker_crate_key_community01", + "item_description": "#CSGO_sticker_crate_key_community01_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/sticker_crate_key_community01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/sticker_crate_key_community01.1301a32528f2f388b93f0d23a6ca23578bf99569.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "sticker_pack_community01_key", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Case Key 3 May 2014", + "defindex": 1305, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_3", + "item_description": "#CSGO_community_crate_key_3_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_3.37247b8634e99bd7061ed75e9b298cb031b24beb.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_3", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "quest", + "defindex": 1306, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Quest", + "item_name": "#quest", + "item_description": "#quest_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/mission", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/mission.0066b84dc0d2136aae1518b9194d96d70b5b30fa.png", + "image_url_large": "", + "capabilities": { + "can_delete": true + }, + "attributes": [ + + ] + + }, + { + "name": "Community Case Key 3 June 2014", + "defindex": 1307, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_3", + "item_description": "#CSGO_community_crate_key_3_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_3.37247b8634e99bd7061ed75e9b298cb031b24beb.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_3", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Sticker Capsule 1 Key June 2014", + "defindex": 1308, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_sticker_crate_key_community01", + "item_description": "#CSGO_sticker_crate_key_community01_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/sticker_crate_key_community01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/sticker_crate_key_community01.1301a32528f2f388b93f0d23a6ca23578bf99569.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "sticker_pack_community01_key", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Case Key 4 July 2014", + "defindex": 1309, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_4", + "item_description": "#CSGO_community_crate_key_4_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_4", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Case Key 4 August 2014", + "defindex": 1310, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_4", + "item_description": "#CSGO_community_crate_key_4_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_4", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Case Key September 4", + "defindex": 1311, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_4", + "item_description": "#CSGO_community_crate_key_4_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_4", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Case Key 4", + "defindex": 1313, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_4", + "item_description": "#CSGO_community_crate_key_4_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_4.9767c63233d8985cd090230ab2bfa29ae05ecdc0.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_4", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "musickit", + "defindex": 1314, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_MusicKit", + "item_name": "#CSGO_Type_MusicKit", + "item_description": "#CSGO_MusicKit_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "can_stattrack_swap": true + } + }, + { + "name": "Community Season Five Summer 2014", + "defindex": 1315, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonFiveSummer2014", + "item_description": "#CSGO_Ticket_CommunitySeasonFiveSummer2014_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_vanguard_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_pass.4dbf27f27c32be69ae74f13f6aaa20da52ae8126.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "Community Season Five Summer 2014 Coin 1", + "defindex": 1316, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_vanguard_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_bronze.12f462e7d160bc820324d016efe1e160f2919327.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_bronze_large.49c23321be1477a5b2a20e96fceb539b95d55c0e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + } + ] + + }, + { + "name": "Community Season Five Summer 2014 Coin 2", + "defindex": 1317, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_vanguard_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_silver.dc8013afcd7ccf823d820d623478611a3ab0752d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_silver_large.3eeb504060cfc460a866435070f9a83772bd66f5.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + } + ] + + }, + { + "name": "Community Season Five Summer 2014 Coin 3", + "defindex": 1318, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_vanguard_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_gold.1c0be8869324090c4edd0ca402b6cfd4185079ac.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_vanguard_gold_large.9fdda1c72855253c40d838658828b75b27a4dfaa.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + } + ] + + }, + { + "name": "campaign magrheb", + "defindex": 1320, + "item_class": "collectible_item", + "item_type_name": "#campaign", + "item_name": "#csgo_campaign_maghreb", + "item_description": "#csgo_campaign_maghreb_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "backpack/crafting/campaign", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/backpack/crafting/campaign.0066b84dc0d2136aae1518b9194d96d70b5b30fa.png", + "image_url_large": "", + "attributes": [ + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + } + ] + + }, + { + "name": "campaign eurasia", + "defindex": 1321, + "item_class": "collectible_item", + "item_type_name": "#campaign", + "item_name": "#csgo_campaign_eurasia", + "item_description": "#csgo_campaign_eurasia_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "backpack/crafting/campaign", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/backpack/crafting/campaign.0066b84dc0d2136aae1518b9194d96d70b5b30fa.png", + "image_url_large": "", + "attributes": [ + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + } + ] + + }, + { + "name": "Community Case Key 5", + "defindex": 1322, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_5", + "item_description": "#CSGO_community_crate_key_5_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_5.af5e2695975f07d5efbf02de9274e9b1041ff1fc.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_5", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Case Key 6", + "defindex": 1323, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_6", + "item_description": "#CSGO_community_crate_key_6_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_6.f12230edccc052ca8909ea30bc7167d7d9cf4570.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_6", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "stattrak_swap_tool", + "defindex": 1324, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Tool", + "item_name": "#CSGO_tool_stattrak_swap", + "item_description": "#CSGO_tool_stattrak_swap_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/stattrak_swap_tool", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/stattrak_swap_tool.e5bf9223e6ffb0681c53f451badd9d8a17032905.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "stattrak_swap", + "usage_capabilities": { + "can_stattrack_swap": true + } + } + }, + { + "name": "Community Case Key 7", + "defindex": 1325, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_7", + "item_description": "#CSGO_community_crate_key_7_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_7", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_7.c3ad0bf7a20424e64b9eca91bd908c004d5ed3fc.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_7", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Community Season Six 2015", + "defindex": 1326, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonSix2015", + "item_description": "#CSGO_Ticket_CommunitySeasonSix2015_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_6_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_pass.6c266208675ae8c4ad41b9ecd09502f7bf0fd97e.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "Community Season Six 2015 Coin 1", + "defindex": 1327, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonSix2015_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonSix2015_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_6_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_bronze.aa55ae15c60cc0d687e8e66f925a092b1c64d845.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_bronze_large.c8ad11b3ca16d8f261febe8f80834fe8f3788f4a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "quest id", + "class": "quest_id", + "value": 0 + }, + { + "name": "campaign 5 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 5 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + }, + { + "name": "campaign 6 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 6 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "Community Season Six 2015 Coin 2", + "defindex": 1328, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonSix2015_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonSix2015_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_6_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_silver.66218f52f6ca823fbc65c0169e203a1f71e63101.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_silver_large.42451df217bac9066549ca4f113065c4d281d086.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "quest id", + "class": "quest_id", + "value": 0 + }, + { + "name": "campaign 5 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 5 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + }, + { + "name": "campaign 6 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 6 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "Community Season Six 2015 Coin 3", + "defindex": 1329, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonSix2015_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonSix2015_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_6_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_gold.7d00062b0df6eb146f938d8d76833447b453ea07.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_6_gold_large.5d677e66b4a7d3d15d9b5d82cc5496f537756836.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "quest id", + "class": "quest_id", + "value": 0 + }, + { + "name": "campaign 5 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 5 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + }, + { + "name": "campaign 6 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 6 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "Falchion Case Key", + "defindex": 1330, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_8", + "item_description": "#CSGO_community_crate_key_8_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_8", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_8.2f80c7209bd0853385326d4a6712e407981a77aa.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_8", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "prestige coin 2015", + "defindex": 1331, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2015", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2015", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2015", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015.3ca7bf6f40edbae511a8ea595a0054736b397140.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015_large.3b8d6cddfd113b0b20bafa2bbee76a976c198e55.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2015 level 2", + "defindex": 1332, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2015", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2015", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2015_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015_2.b5b68c527a14fb4c8d60eb619da7dd521675bd78.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2015_2_large.e6ece70c2561d90a73d5f5eb418921973a0b4aa1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Community Case Key 9", + "defindex": 1333, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_community_crate_key_9", + "item_description": "#CSGO_community_crate_key_9_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_9.c908521108c5cf99bdc5162c6c9ba8d46529a6a5.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "community_case_9", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_community_10 Key", + "defindex": 1334, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_community_10_key", + "item_description": "#CSGO_crate_community_10_key_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_10.4d149d87b12b269d791362e2529cbfafd295f1ca.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_10", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "CommunitySeasonSeven2016", + "defindex": 1335, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonSeven2016", + "item_description": "#CSGO_Ticket_CommunitySeasonSeven2016_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_7_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_7_pass.b32f61c6e309f3a7e65af16b69b247909fcd0c0b.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonSeven2016 Coin 1", + "defindex": 1336, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonSeven2016_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonSeven2016_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_7_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_7_bronze.7a8f1b65dc14c4ca034a731367051e2d1adb021b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_7_bronze_large.51ae9b04cb166973332b33c6e059d78df30e99c4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "quest id", + "class": "quest_id", + "value": 0 + }, + { + "name": "campaign 7 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 7 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + }, + { + "name": "campaign 8 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 8 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "CommunitySeasonSeven2016 Coin 2", + "defindex": 1337, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonSeven2016_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonSeven2016_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_7_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_7_silver.94b4ec936252f9a4259b8f105554a42782ba9567.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_7_silver_large.cdcaefceda56aac0f72634df357627169ade3ce7.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "quest id", + "class": "quest_id", + "value": 0 + }, + { + "name": "campaign 7 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 7 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + }, + { + "name": "campaign 8 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 8 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "CommunitySeasonSeven2016 Coin 3", + "defindex": 1338, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonSeven2016_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonSeven2016_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_7_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_7_gold.0708781909989b690f6adda0b750d9d5294f90c6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_7_gold_large.f1e8938c5782c84cd0dde19cbcce05536b6d9d90.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "quest id", + "class": "quest_id", + "value": 0 + }, + { + "name": "campaign 7 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 7 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + }, + { + "name": "campaign 8 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 8 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "prestige coin 2016", + "defindex": 1339, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2016", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2016", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2016_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl1.c67ca0c2bca3a6f193f940284ac2b8fe6979311c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl1_large.2dabe9584a18a843e8e64a5b5ae6e78b792f2823.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2016 level 2", + "defindex": 1340, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2016", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2016", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2016_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl2.fca2045bdf9cc1b6d6a2dbc2e4fa5e53b81added.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl2_large.113667efbc19c5f236527ed91490680a55a42952.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2016 level 3", + "defindex": 1341, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2016", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2016", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2016_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl3.bbf3997a9ff432201b9ce1a5f07dfbc8aad12bb9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl3_large.0cf4db6649dcea51f472dac87d9cb5f45e2425a4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2016 level 4", + "defindex": 1342, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2016", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2016", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2016_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl4.1a8b2059cc23cfbc2e27f90be52197cd9b7aec8d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl4_large.f5e3278c684d420867b39c421af42f122642f2de.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2016 level 5", + "defindex": 1343, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2016", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2016", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2016_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl5.04402d35378599a7116139a684bf6e7a4b539e91.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl5_large.06fe1268f07b0c6ad65fcdc2cd600a722229f0a6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2016 level 6", + "defindex": 1344, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2016", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2016", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2016_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl6.a66e0f6d73f4a14fbf91b9838e6cc88741ddda08.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2016_lvl6_large.fc26832c27b8c798b289cf72478abf4769d02feb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "community_12 Key", + "defindex": 1347, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_12", + "item_description": "#CSGO_crate_key_community_12_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_12", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_12.89e026230580ed4b9ad7e64590105df3476d6714.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_12", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "spray", + "defindex": 1348, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Spray", + "item_name": "#CSGO_Tool_Spray", + "item_description": "#CSGO_Tool_Spray_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "spray", + "use_string": "#ConsumeItem" + } + }, + { + "name": "spraypaint", + "defindex": 1349, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Spray", + "item_name": "#CSGO_Tool_SprayPaint", + "item_description": "#CSGO_Tool_SprayPaint_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "can_delete": true + }, + "tool": { + "type": "spraypaint" + }, + "attributes": [ + + ] + + }, + { + "name": "community_13 Key", + "defindex": 1350, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_13", + "item_description": "#CSGO_crate_key_community_13_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_13", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_13.7d24fd2e7d65e034b4b35d61cde00c7dfc025a66.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_13", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "gamma_2 Key", + "defindex": 1351, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_gamma_2", + "item_description": "#CSGO_crate_key_gamma_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_gamma_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_gamma_2.e82ffcea6be229d0d163d84725cced587d22b666.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_gamma_2", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "CommunitySeasonEight2017", + "defindex": 1352, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonEight2017", + "item_description": "#CSGO_Ticket_CommunitySeasonEight2017_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_8_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_pass.618082f7f809d4e09d021d535bc2aac25c58cffd.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "Game License", + "defindex": 1353, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Purchasable_Game_License", + "item_description": "#CSGO_Purchasable_Game_License_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "community_15 Key", + "defindex": 1356, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_15", + "item_description": "#CSGO_crate_key_community_15_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_15", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_15.39e77f7c6d1140f7b2cb65011f0edc1e861176d1.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_15", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "prestige coin 2017", + "defindex": 1357, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2017", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2017", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2017_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl1.abeafe76a6a5573580fac9b96303691074b9d2bd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl1_large.a857870b68c9e1ad98b38b8b7311db377928f2c6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2017 level 2", + "defindex": 1358, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2017", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2017", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2017_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl2.4ee26ba545540c1cc0f13f4a6aa2364f991217e8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl2_large.1b4e9254286bb10937bb92b8f25d9acaaf44be60.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2017 level 3", + "defindex": 1359, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2017", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2017", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2017_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl3.728bdc4a5dee0638c4484ae42b656ad1c65c7d5b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl3_large.5bc164fc0237c90012ed0cade13580a04b5d5bfe.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2017 level 4", + "defindex": 1360, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2017", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2017", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2017_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl4.86eb1e7a604e2e7b88aa0746d1323f36e530879b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl4_large.a304e00bb3ac29d43b8b03fe987ad652f3e01628.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2017 level 5", + "defindex": 1361, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2017", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2017", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2017_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl5.e2ea3e770fc4d3cbef82060bf40ca1eb60adff23.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl5_large.3f3b089312b67944edc5f0bc08514377e6c50ba4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2017 level 6", + "defindex": 1362, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2017", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2017", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2017_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl6.ca2ab400e3390e002e37f45829d7dd012a881403.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl6_large.119dd398088b2159598c15dee6245e68d9fa4157.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2017 level 7", + "defindex": 1363, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2017", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2017", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2017_lvl7", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl7.8fcae8b788696daedd6bb616449489f6c9cb5ac2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2017_lvl7_large.d4b2714d10d6bf20537906644ca0c2e0ca23f58e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "community_16 Key", + "defindex": 1364, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_16", + "item_description": "#CSGO_crate_key_community_16_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_16", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_16.42f16533e06837b72df3b8a467f544c3e0670a95.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_16", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_17 Key", + "defindex": 1365, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_17", + "item_description": "#CSGO_crate_key_community_17_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_17", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_17.17e2ff687cea9d51d46b5deaf6ea1e3a598e82f6.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_17", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_18 Key", + "defindex": 1366, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_18", + "item_description": "#CSGO_crate_key_community_18_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_18", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_18.0d08136cd38dca412e831d79252e196748bbe3ad.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_18", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "prestige coin 2018", + "defindex": 1367, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2018", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2018", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2018_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl1.8c64443124bd2dec11878ac669875ed4b4f1af85.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl1_large.bbb2fcec2728e991779de755cf0de2afd000d8cb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2018 level 2", + "defindex": 1368, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2018", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2018", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2018_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl2.f345a7925299b3aebdbce3e6a0106b2550943803.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl2_large.adc2457c32062e14fc77530d84665f1e6dd7b848.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2018 level 3", + "defindex": 1369, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2018", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2018", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2018_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl3.c5c205359636c13ea1d1fea46c285a6a6a6cf9a9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl3_large.9fef68459355ee1ef47c9726e7daaabee08b2610.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2018 level 4", + "defindex": 1370, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2018", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2018", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2018_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl4.ac9d10b214be029ed9a979facf950382b5cf728f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl4_large.fc78723c79ebc66fa884fa2026519288ede3bab5.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2018 level 5", + "defindex": 1371, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2018", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2018", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2018_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl5.8bc25fbe9a8c1c3f830eb8b6c154109f602c52ad.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl5_large.f46bee958c9154c0392a21c731608bf154dfb029.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2018 level 6", + "defindex": 1372, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2018", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2018", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2018_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl6.9fba01b5f6b39ecb33e70d0b7bfc1eac519f5b0d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2018_lvl6_large.a0bf9629fa622f74198aa1ac19ece56a22e8b801.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "community_19 Key", + "defindex": 1373, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_19", + "item_description": "#CSGO_crate_key_community_19_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_19", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_19.c7c8308a5f6d97485064e6cd1b3cf45fb9eb633c.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_19", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_20 Key", + "defindex": 1374, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_20", + "item_description": "#CSGO_crate_key_community_20_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_20", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_20.0a6d3621bf5daa2ed67e691208366ca8c96e8944.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_20", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_21 Key", + "defindex": 1375, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_21", + "item_description": "#CSGO_crate_key_community_21_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_21", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_21.46f17e4ce1494997204bc5335d4175eb8eb0dfbe.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_21", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "prestige coin 2019", + "defindex": 1376, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2019", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2019", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2019_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl1.79e2fa57e910f9b9f76fd9fbc292d4566acd296e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl1_large.07a13702ce91379b6606d9cd8beeb4938247dc65.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2019 level 2", + "defindex": 1377, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2019", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2019", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2019_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl2.713048933090b2c772847bed8229333b5b8f4d4f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl2_large.e08905a53d514213eac951ec0a7466847f47af05.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2019 level 3", + "defindex": 1378, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2019", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2019", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2019_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl3.d650f6b1625dbae71d7695f6a3ead237f2f774c4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl3_large.07891b86f3c682700d5032cf7d6b526555f34b24.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2019 level 4", + "defindex": 1379, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2019", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2019", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2019_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl4.ed07b1f1b1051c94ed428c554d23cdbfab016007.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl4_large.d5e3a18a39729b54b82a0687d6c72c4aaa9b42ad.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2019 level 5", + "defindex": 1380, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2019", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2019", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2019_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl5.8a240142732e7766e27b78c969773b17f6bae30b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl5_large.e61872785bc574cdb1b4c3dab99883cd397e0dcb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2019 level 6", + "defindex": 1381, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2019", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2019", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2019_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl6.525e8a85c76048517fa5b6df84db035844fb7ed4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2019_lvl6_large.a478521e09798334c36f6f0bd78a6e0c47ff8932.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "community_22 Key", + "defindex": 1383, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_22", + "item_description": "#CSGO_crate_key_community_22_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_22", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_22.b45a93ebac18b0379488f6ff74d271d3b3df8c59.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_22", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_23 Key", + "defindex": 1384, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_23", + "item_description": "#CSGO_crate_key_community_23_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_23", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_23.3cee767d650d99117317816fe485211de904e96b.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_23", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_24 Key", + "defindex": 1385, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_24", + "item_description": "#CSGO_crate_key_community_24_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_24", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_24.3b12bdea44202cddb02dd3acd3ddabf27c232a30.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_24", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_25 Key", + "defindex": 1386, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_25", + "item_description": "#CSGO_crate_key_community_25_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_25", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_25.10fa50527bc460dab06f0d7e719b9161b99bcfb4.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_25", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_26 Key", + "defindex": 1387, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_26", + "item_description": "#CSGO_crate_key_community_26_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_26", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_26.c1f340ba8d20e88ffeb84e49dff5ccf347b4f9fd.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_26", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_27 Key", + "defindex": 1388, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_27", + "item_description": "#CSGO_crate_key_community_27_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_27", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_27.cd7f0dab941fe64c7b7e6fd96f29609e4569016a.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_27", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_28 Key", + "defindex": 1389, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_28", + "item_description": "#CSGO_crate_key_community_28_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_28", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_28.aec3b08b1751f1f06389fed61f489eb1ac418fff.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_28", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_29 Key", + "defindex": 1390, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_29", + "item_description": "#CSGO_crate_key_community_29_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_29", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_29.e99ba5ac51552cb18672968e388957c48d884e66.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_29", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_30 Key", + "defindex": 1391, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30", + "item_description": "#CSGO_crate_key_community_30_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_30", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "community_31 Key", + "defindex": 1392, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_31", + "item_description": "#CSGO_crate_key_community_31_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_31", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_31.52815f7f63fa935a0bdec2533215f75b05f6748a.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_31", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_valve_1", + "defindex": 4001, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_valve_1", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_valve_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "generic_valve_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 1 + } + ] + + }, + { + "name": "crate_esports_2013", + "defindex": 4002, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esports_2013", + "item_description": "#CSGO_crate_esports_2013_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esports_2013", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "esports_crate_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 2 + } + ] + + }, + { + "name": "crate_operation_ii", + "defindex": 4003, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_operation_ii", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_operation_ii", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "generic_valve_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 3 + } + ] + + }, + { + "name": "crate_valve_2", + "defindex": 4004, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_valve_2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_valve_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "generic_valve_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 4 + } + ] + + }, + { + "name": "crate_esports_2013_winter", + "defindex": 4005, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esports_2013_winter", + "item_description": "#CSGO_crate_esports_2013_winter_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esports_2013_14", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "esports_crate_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw13_promo", + "defindex": 4006, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw13_promo", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw13_promo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 6 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 1 + } + ] + + }, + { + "name": "crate_sticker_pack01", + "defindex": 4007, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack01.050d07ce442dc326f33bbb10ade6df941136b479.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "restriction": "sticker_crate_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 9 + } + ] + + }, + { + "name": "crate_community_1", + "defindex": 4009, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_1", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_1", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 7 + } + ] + + }, + { + "name": "crate_valve_3", + "defindex": 4010, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_valve_3", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_valve_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "generic_valve_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 10 + } + ] + + }, + { + "name": "crate_community_2", + "defindex": 4011, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_2", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack02", + "defindex": 4012, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack02", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack02.49c83ded1d25de8cc486de43797b260361bdeff7.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "restriction": "sticker_crate_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 12 + } + ] + + }, + { + "name": "crate_ems14_promo", + "defindex": 4013, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_ems14_promo", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_ems14_promo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 13 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 3 + } + ] + + }, + { + "name": "crate_sticker_pack_kat2014_01", + "defindex": 4014, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_kat2014_01", + "item_description": "#CSGO_crate_sticker_pack_kat2014_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_kat2014_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_kat2014_01.217983bfc1c97317903a25beab668565ad417ef8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 14 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 3 + } + ] + + }, + { + "name": "crate_sticker_pack_kat2014_02", + "defindex": 4015, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_kat2014_02", + "item_description": "#CSGO_crate_sticker_pack_kat2014_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_kat2014_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_kat2014_02.71f2e9a0cb0e3f5ffea795f381058ecb84152d80.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 15 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 3 + } + ] + + }, + { + "name": "crate_sticker_pack_community01", + "defindex": 4016, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_community01", + "item_description": "CSGO_crate_sticker_pack_community01_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_community01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_community01.86463c48a690c9df0853510aeb9f43275baa2d49.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "restriction": "sticker_pack_community01_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 16 + } + ] + + }, + { + "name": "crate_community_3", + "defindex": 4017, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_3", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_3", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 17 + } + ] + + }, + { + "name": "crate_community_4", + "defindex": 4018, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_4", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_4", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 18 + } + ] + + }, + { + "name": "crate_esports_2014_summer", + "defindex": 4019, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esports_2014_summer", + "item_description": "#CSGO_crate_esports_2014_summer_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esports_2014_summer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "esports_crate_key", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 19 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2014_01", + "defindex": 4020, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_cologne2014_01", + "item_description": "#CSGO_crate_sticker_pack_cologne2014_desc01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cologne2014_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2014_01.27044753909c23b3e57bf4c92d0d8f11b1c661c2.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 20 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2014_02", + "defindex": 4021, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_cologne2014_02", + "item_description": "#CSGO_crate_sticker_pack_cologne2014_desc02", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cologne2014_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2014_02.2c82e9044648e96f8ad8e905a97d89fb86cad100.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 21 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_esl14_promo_de_dust2", + "defindex": 4022, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esl14_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esl14_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 22 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_esl14_promo_de_inferno", + "defindex": 4023, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esl14_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esl14_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 23 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_esl14_promo_de_mirage", + "defindex": 4024, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esl14_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esl14_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 24 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_esl14_promo_de_nuke", + "defindex": 4025, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esl14_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esl14_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 25 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_esl14_promo_de_cache", + "defindex": 4026, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esl14_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esl14_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 26 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_esl14_promo_de_cbble", + "defindex": 4027, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esl14_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esl14_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 27 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_esl14_promo_de_overpass", + "defindex": 4028, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_esl14_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_esl14_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 28 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 4 + } + ] + + }, + { + "name": "crate_operation_vanguard", + "defindex": 4029, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_operation_vanguard", + "item_description": "#CSGO_crate_operation_vanguard_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_5", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 29 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_01", + "defindex": 4030, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_dhw2014_01", + "item_description": "#CSGO_crate_sticker_pack_dhw2014_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_dhw2014_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_dhw2014_01.610021432846e2e95053b2efe732e02f84cb824d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_dhw2014_01_large.d239e0adad463ff845b55fd4864543db5c058ef6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 30 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw14_promo_de_dust2", + "defindex": 4031, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw14_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw14_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 31 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw14_promo_de_inferno", + "defindex": 4032, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw14_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw14_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 32 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw14_promo_de_mirage", + "defindex": 4033, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw14_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw14_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 33 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw14_promo_de_nuke", + "defindex": 4034, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw14_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw14_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 34 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw14_promo_de_cache", + "defindex": 4035, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw14_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw14_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 35 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw14_promo_de_cbble", + "defindex": 4036, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw14_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw14_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 36 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_dhw14_promo_de_overpass", + "defindex": 4037, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_dhw14_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_dhw14_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 37 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_fnatic", + "defindex": 4038, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_fnatic", + "item_description": "#StickerKit_desc_dhw2014_fnatic", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/fnatic", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/fnatic.0c11f7179e706d9f544da50b23c9d88f06c15314.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/fnatic_large.341e4130694509f10480111791ff42cdef73b585.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_cloud9", + "defindex": 4039, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_cloud9", + "item_description": "#StickerKit_desc_dhw2014_cloud9", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/cloud9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/cloud9.493d0f432ff1ad6086cbef662735e078125d519c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/cloud9_large.09729c21f58cf48dc8cbd2ea25cb9c938211d587.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_ninjasinpyjamas", + "defindex": 4041, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_ninjasinpyjamas", + "item_description": "#StickerKit_desc_dhw2014_ninjasinpyjamas", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/ninjasinpyjamas", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ninjasinpyjamas.3a11cdb981fd4b9ad3775f67c06f18d95bc934ef.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ninjasinpyjamas_large.aaa876adaee626de2c090d2eaefd7a102ea3e21d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_virtuspro", + "defindex": 4042, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_virtuspro", + "item_description": "#StickerKit_desc_dhw2014_virtuspro", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/virtuspro", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/virtuspro.d09e01ff7eaefdf26330c6bf2036cfda0dcb4c35.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/virtuspro_large.3f54f2b45ab69b3830f2941855b37362a7c756c7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_navi", + "defindex": 4043, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_navi", + "item_description": "#StickerKit_desc_dhw2014_navi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/navi.ba10531a835b688b607bfdc63f9db0e2827d5640.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/navi_large.3f406c283c73c0e394f859a7c9fe82b125b0b0e6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_dignitas", + "defindex": 4045, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_teamdignitas", + "item_description": "#StickerKit_desc_dhw2014_dignitas", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/dignitas", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dignitas.b13f62307e3babc9936b2064f3f01887e0a9be5c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dignitas_large.bc7c4602e33c314a2c5336d197a393edf250e8e7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_bravadogaming", + "defindex": 4046, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_bravadogaming", + "item_description": "#StickerKit_desc_dhw2014_bravadogaming", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/bravadogaming", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/bravadogaming.4680bd06cf3be1dd80fb1839dfd2df90d1eee339.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/bravadogaming_large.502768f3a37eabc8e227f35300ebe4f50e30acd1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_escgaming", + "defindex": 4047, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_escgaming", + "item_description": "#StickerKit_desc_dhw2014_escgaming", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/escgaming", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/escgaming.183e636597f9e5f922a1d6bf570333c02179ec8d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/escgaming_large.ce8418ad193e27b867b5ebcad15b131e37db4491.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_hellraisers", + "defindex": 4048, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_hellraisers", + "item_description": "#StickerKit_desc_dhw2014_hellraisers", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/hellraisers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/hellraisers.706e9a1c7a967b490730442b31b39dbfe341e31d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/hellraisers_large.909a85109977d63ffc2c46a05409026657fdde6e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_myxmg", + "defindex": 4049, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_myxmg", + "item_description": "#StickerKit_desc_dhw2014_myxmg", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/myxmg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/myxmg.c36ff3c2ae77e84861c5d6222554a64dfec7b7cb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/myxmg_large.64006519d172306cf1bbb404b446351241fdaec6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_ibuypower", + "defindex": 4050, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_ibuypower", + "item_description": "#StickerKit_desc_dhw2014_ibuypower", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/ibuypower", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ibuypower.9df10e3019f74586265d2f22f9c3f99664308e6c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/ibuypower_large.436eab1f9a65109c260b2b718e57d3028a00ba83.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_teamldlc", + "defindex": 4051, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_teamldlc", + "item_description": "#StickerKit_desc_dhw2014_teamldlc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/teamldlc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/teamldlc.c42985cc18855e89a2689ca3b11a1139bdf89f3f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/teamldlc_large.e07013d978d6f91f8e20b2401085dfdd73032ff8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_pentasports", + "defindex": 4052, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_pentasports", + "item_description": "#StickerKit_desc_dhw2014_pentasports", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/pentasports", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/pentasports.98d46c99ca7f2209837a864b246c52000ca98cdb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/pentasports_large.e1056a880b5071e5ef6ac74b307edf93041065ed.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_planetkeydynamics", + "defindex": 4053, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_planetkeydynamics", + "item_description": "#StickerKit_desc_dhw2014_planetkeydynamics", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/planetkeydynamics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/planetkeydynamics.b178643926f0fbc94a35ee041050270323a250f3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/planetkeydynamics_large.33f51a8cb0edd49ee5d8411191037685b4832320.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_dhw", + "defindex": 4054, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_dhw", + "item_description": "#StickerKit_desc_dhw2014_dhw", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/dreamhackwinter2014", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dreamhackwinter2014.7f9f7b4710147b77727273055f57445092f86348.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/dreamhackwinter2014_large.44a3ae4ec611d0cc81bba7a6368cd26257cc5288.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_3dmax", + "defindex": 4055, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_3dmax", + "item_description": "#StickerKit_desc_dhw2014_3dmax", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/3dmax", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/3dmax.7af1311baffa42963099806bba2ea62da8ad7182.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/3dmax_large.fa11e39140200f3c441fc7e0fb0b9ce893918169.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_copenhagenwolves", + "defindex": 4056, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_copenhagenwolves", + "item_description": "#StickerKit_desc_dhw2014_copenhagenwolves", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/copenhagenwolves", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/copenhagenwolves.c49723911bc0ee349196fb0acf01bd7fabfdea63.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/copenhagenwolves_large.32935def21beead765167a528d65137bc4fabc82.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_datteam", + "defindex": 4057, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_datteam", + "item_description": "#StickerKit_desc_dhw2014_datteam", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/datteam", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/datteam.e0c3d9f5b448ded43d1fcf53730ea2457c308281.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/datteam_large.d2a656a7d09c14a4a6e67e524aed0c3d194c20fb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_londonconspiracy", + "defindex": 4058, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_londonconspiracy", + "item_description": "#StickerKit_desc_dhw2014_londonconspiracy", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/londonconspiracy", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/londonconspiracy.eed671703979052cda8884bbd07263051280222d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/londonconspiracy_large.39b6be0a1f1605efc103975636b064290715fff5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_mousesports", + "defindex": 4059, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_mousesports", + "item_description": "#StickerKit_desc_dhw2014_mousesports", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/mousesports", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/mousesports.c509123c89fcb404e9fed4f379702fd0f388c626.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/mousesports_large.c344d7ad5338f077af1923efce5f78fd8de3013b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_sticker_pack_dhw2014_flipsid3", + "defindex": 4060, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_dhw2014_flipsid3", + "item_description": "#StickerKit_desc_dhw2014_flipsid3", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/dhw2014/flipsid3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/flipsid3.cdce4e5bf6b4ce418ea8369a13587097b6e62095.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/dhw2014/flipsid3_large.c221f04f9e5019b0d604d103438ec7002b5d8d43.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 5 + } + ] + + }, + { + "name": "crate_community_6", + "defindex": 4061, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_6", + "item_description": "#CSGO_crate_community_6_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_6", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 38 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_3dmax", + "defindex": 4062, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_3dmax", + "item_description": "#StickerKit_desc_eslkatowice2015_3dmax", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/3dmax", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/3dmax.bfb723831b03d2e12de9f1d1b551c93634fe49cd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/3dmax_large.6dd94c5043a00ba0116d9cba6f632f93254637f5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_cloud9", + "defindex": 4063, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_cloud9", + "item_description": "#StickerKit_desc_eslkatowice2015_cloud9", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/cloud9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/cloud9.3c51c6174cef500c61d547c42dc952cdd4ab7611.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/cloud9_large.cbcc87fdb71be8e2f62f6a54fd063c229d3b4e82.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_counterlogic", + "defindex": 4064, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_counterlogic", + "item_description": "#StickerKit_desc_eslkatowice2015_counterlogic", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/counterlogic", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/counterlogic.f49adabd6052a558bff3fe09f5a09e0675737936.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/counterlogic_large.03c5c9314466ac62842ca18f2928be56fd76647d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_flipsid3", + "defindex": 4065, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_flipsid3", + "item_description": "#StickerKit_desc_eslkatowice2015_flipsid3", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/flipsid3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/flipsid3.34ca10bd00eb1e307a4b2465927015270b338e4c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/flipsid3_large.84f5a0408e732c3405580c211050a916195e5b9b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_fnatic", + "defindex": 4066, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_fnatic", + "item_description": "#StickerKit_desc_eslkatowice2015_fnatic", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/fnatic", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/fnatic.933f108d8414959c6ccb902fdad3330ca8eb8310.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/fnatic_large.65da8ea42ccaa373812e4a3d08d70b3fc6b92ef8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_hellraisers", + "defindex": 4067, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_hellraisers", + "item_description": "#StickerKit_desc_eslkatowice2015_hellraisers", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/hellraisers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/hellraisers.889f1377314658a29861f2a9ab106f9e941abb63.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/hellraisers_large.791b11a91b2a12c5cc56018056ac6ef4a4cd7bc2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_keyd", + "defindex": 4068, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_keyd", + "item_description": "#StickerKit_desc_eslkatowice2015_keyd", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/keyd", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/keyd.8757d7756845e9c7c04c26fd71e1fe38af3f2829.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/keyd_large.1371381a6ac4c1a9275ed55285f93658f844fc05.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_lgb", + "defindex": 4069, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_lgb", + "item_description": "#StickerKit_desc_eslkatowice2015_lgb", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/lgb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/lgb.e0683db5ccf434f75469f4a9f7b2f49822e89264.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/lgb_large.e2433db63170f333355ec88914b901efa6e002fc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_navi", + "defindex": 4070, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_navi", + "item_description": "#StickerKit_desc_eslkatowice2015_navi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/navi.2a907bfdb5eaf77c42f30c7f374ff29d0f79dfe2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/navi_large.ead83ccce5bb308db55d2eb92b2e4d511adf6307.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_ninjasinpyjamas", + "defindex": 4071, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_ninjasinpyjamas", + "item_description": "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/ninjasinpyjamas", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/ninjasinpyjamas.1850936680a25413d93dc240d76366a9088f51ed.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/ninjasinpyjamas_large.b651b80e8c58f443bd1b24c5de146931ff380992.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_pentasports", + "defindex": 4072, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_pentasports", + "item_description": "#StickerKit_desc_eslkatowice2015_pentasports", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/pentasports", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/pentasports.a6b0ddffefb5507453456c0d2c35b6a57821c171.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/pentasports_large.8fdf2611c611d48069b2bbc1d580d457ab7e3a5f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_teamenvyus", + "defindex": 4073, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_teamenvyus", + "item_description": "#StickerKit_desc_eslkatowice2015_teamenvyus", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/teamenvyus", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamenvyus.7055375c2c2682e9ed46e8b6db514814ee7db6a1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamenvyus_large.ecd0526e2cf238b0425e98c4f7bd3c9779f9647b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_teamsolomid", + "defindex": 4074, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_teamsolomid", + "item_description": "#StickerKit_desc_eslkatowice2015_teamsolomid", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/teamsolomid", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamsolomid.c133bd18f8edaaf4c13703cdfad293c29d962412.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/teamsolomid_large.be234b9678c6c4b3116f72e24efd9347e4e2f50d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_titan", + "defindex": 4075, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_titan", + "item_description": "#StickerKit_desc_eslkatowice2015_titan", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/titan", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/titan.fe5f4085cd69484463b529908b351ec066c01e5f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/titan_large.ec5f872517c77762c74f1461867c76f929d0a620.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_virtuspro", + "defindex": 4076, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_virtuspro", + "item_description": "#StickerKit_desc_eslkatowice2015_virtuspro", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/virtuspro", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/virtuspro.f439f2e8088229af10a9340a593eb2095a876bbd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/virtuspro_large.aacafa7a15b4d315ac8b6c2d873af56824100a62.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_voxeminor", + "defindex": 4077, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_voxeminor", + "item_description": "#StickerKit_desc_eslkatowice2015_voxeminor", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/voxeminor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/voxeminor.d013b4a6b538881f7467120d147acfbffb242460.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/voxeminor_large.283cf0be32bf62f205be77bfaa8afc5641a86167.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_esl_a", + "defindex": 4078, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslkatowice2015_esl_a", + "item_description": "#StickerKit_desc_eslkatowice2015_esl_a", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/eslkatowice2015/esl_a", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/esl_a.fc2e4e24ecbf198f3f9736c051ff22feeb0e4ae3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/eslkatowice2015/esl_a_large.b6e94be2643e41e1db192c0794c0cf18101106de.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_eslkatowice2015_promo_de_dust2", + "defindex": 4079, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslkatowice2015_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 39 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_eslkatowice2015_promo_de_inferno", + "defindex": 4080, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslkatowice2015_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 40 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_eslkatowice2015_promo_de_mirage", + "defindex": 4081, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslkatowice2015_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 41 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_eslkatowice2015_promo_de_nuke", + "defindex": 4082, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslkatowice2015_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 42 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_eslkatowice2015_promo_de_cache", + "defindex": 4083, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslkatowice2015_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslkatowice2015_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 43 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_eslkatowice2015_promo_de_cbble", + "defindex": 4084, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslkatowice2015_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 44 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_eslkatowice2015_promo_de_overpass", + "defindex": 4085, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslkatowice2015_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 45 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_01", + "defindex": 4086, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_eslkatowice2015_01", + "item_description": "#CSGO_crate_sticker_pack_eslkatowice2015_desc01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01.5c7057fb4d6e20a98ac073aeb54b6d8497d1b43a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 46 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_sticker_pack_eslkatowice2015_02", + "defindex": 4087, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_eslkatowice2015_02", + "item_description": "#CSGO_crate_sticker_pack_eslkatowice2015_desc02", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02.762617e39f9d6545c44623a27178d7a192fe87cc.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 47 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 6 + } + ] + + }, + { + "name": "crate_stattrak_swap_tool", + "defindex": 4088, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_tool_stattrak_swap", + "item_description": "#CSGO_desc_crate_tool_stattrak_swap", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/stattrak_swap_tool_bundle", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/stattrak_swap_tool_bundle.cc65eb839230ac929686bacb6cb8ecd2f3c48f8a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "crate_community_7", + "defindex": 4089, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_7", + "item_description": "#CSGO_crate_community_7_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_7", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_7", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 48 + } + ] + + }, + { + "name": "crate_sticker_pack_enfu_capsule", + "defindex": 4090, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_enfu_capsule", + "item_description": "#CSGO_crate_sticker_pack_enfu_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_enfu_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_enfu_capsule.df12c9dd6709ccfedae7991da85770b8b64b2bbb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_enfu_capsule_large.026b42943ccc8cab651ebcbb6e0ad35fb3d53cdf.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 49 + } + ] + + }, + { + "name": "crate_community_8", + "defindex": 4091, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_8", + "item_description": "#CSGO_crate_community_8_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_8", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_8", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 50 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_fnatic", + "defindex": 4092, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_fnatic", + "item_description": "#StickerKit_desc_eslcologne2015_team_fnatic", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/fnatic", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/fnatic.d3d7096212ae149d70d077ddab7f4e2ce13af3ea.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/fnatic_large.5f6803ac084a927d453022c16ff67052cc144021.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_virtuspro", + "defindex": 4093, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_virtuspro", + "item_description": "#StickerKit_desc_eslcologne2015_team_virtuspro", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/virtuspro", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/virtuspro.1907301b9e226a7e9d049219745627aaaab71688.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/virtuspro_large.a290bf9f9422982da08fd9b6c3544df1965667f3.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_mousesports", + "defindex": 4094, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_mousesports", + "item_description": "#StickerKit_desc_eslcologne2015_team_mousesports", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/mousesports", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/mousesports.3e75da497d9f75fa56f463c22db25f29992561ce.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/mousesports_large.54488625d33c89870c8331e1f45bad59331667cc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_navi", + "defindex": 4095, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_navi", + "item_description": "#StickerKit_desc_eslcologne2015_team_navi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/navi.38eaac16dd03c9491c37e400a65380b9d8112735.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/navi_large.2afcea86a9066e5cfc6e8430bad366cdf7e5becc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_renegades", + "defindex": 4096, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_renegades", + "item_description": "#StickerKit_desc_eslcologne2015_team_renegades", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/renegades", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/renegades.f423ae9e2da9445eb5eccabf89ad7229d9fdefcc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/renegades_large.1835cf469efad2dbb3ef7ac5ead0f2c757363e8d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_kinguin", + "defindex": 4097, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_kinguin", + "item_description": "#StickerKit_desc_eslcologne2015_team_kinguin", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/kinguin", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/kinguin.8ac2845fdef90419820256cee06c634a0f25c95f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/kinguin_large.181c1613682020d27f0cfd90924ebdc5a88960cb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_ebettle", + "defindex": 4098, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_ebettle", + "item_description": "#StickerKit_desc_eslcologne2015_team_ebettle", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/ebettle", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ebettle.004edab3669e4ffba2304385fd4abdd827a56145.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ebettle_large.610f9297822c9f88522d691a56d9b0c51cbe2e0d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_cloud9", + "defindex": 4099, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_cloud9", + "item_description": "#StickerKit_desc_eslcologne2015_team_cloud9", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/cloud9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/cloud9.5bbc7086b3c2c528546452a32b50a2a769942066.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/cloud9_large.1dc18f936c3860f2c8a781fc6da37256cad7720d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_ninjasinpyjamas", + "defindex": 4100, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_ninjasinpyjamas", + "item_description": "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/ninjasinpyjamas", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ninjasinpyjamas.688fe5ef66bbf1e61cbdfeff495666091f9b01ee.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/ninjasinpyjamas_large.0fdbd3a405937e33ace895250ee9cb2659784edf.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_envyus", + "defindex": 4101, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_envyus", + "item_description": "#StickerKit_desc_eslcologne2015_team_envyus", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/envyus", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/envyus.89a88946df01bd6eb9a7e9dc02885ec043671702.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/envyus_large.d784e189d585254bf8bf4d617d73a3944bf9aa8a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_luminositygaming", + "defindex": 4102, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_luminositygaming", + "item_description": "#StickerKit_desc_eslcologne2015_team_luminositygaming", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/luminositygaming", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/luminositygaming.8f72e622a54c32d3f706e73de0be2f9a44bb86f9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/luminositygaming_large.54fe6da5a2e6c438c3d5b22d66509d27426deb16.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_solomid", + "defindex": 4103, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_solomid", + "item_description": "#StickerKit_desc_eslcologne2015_team_solomid", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/solomid", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/solomid.eb9fe3cd2d2d377f065973f6c05d2e92ff37cc10.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/solomid_large.8b69bbb85d51887dd0e83a68581ddbf3c78e3f8f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_teamimmunity", + "defindex": 4104, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_teamimmunity", + "item_description": "#StickerKit_desc_eslcologne2015_team_teamimmunity", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/teamimmunity", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/teamimmunity.161950e378400ecc695cf42f45f30dd3e647560f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/teamimmunity_large.b828628533c691ce5a8ba6efc5da876bf0bee974.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_flipside", + "defindex": 4105, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_flipside", + "item_description": "#StickerKit_desc_eslcologne2015_team_flipside", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/flipside", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/flipside.8d441e7ab7fae15a36b261c9fbc8ea4d66be352b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/flipside_large.b1c24dd5a42f192a4f07e63398eb662de8580da3.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_titan", + "defindex": 4106, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_titan", + "item_description": "#StickerKit_desc_eslcologne2015_team_titan", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/titan", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/titan.5059cc4785d26ba50eb5abd39a7c6f35fa4e0ab9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/titan_large.b0e0885602d786d4f0763541a303d45b16fcf194.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_clg", + "defindex": 4107, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_clg", + "item_description": "#StickerKit_desc_eslcologne2015_team_clg", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/clg.dd63e11b139ad10c965fa7fbec9a5d5d34bead78.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/clg_large.716d4b3d442f088ccf9987607d3eb63f07bc799c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_esl", + "defindex": 4108, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_eslcologne2015_team_esl", + "item_description": "#StickerKit_desc_eslcologne2015_team_esl", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2015/esl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/esl.39ca47899dbbe67d8ed074d37a4551ce525abfb1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2015/esl_large.5e2c2a30caee9d5a14c714671e6cd935d17615ca.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_legends", + "defindex": 4109, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_eslcologne2015_legends", + "item_description": "#CSGO_crate_sticker_pack_eslcologne2015_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslcologne2015_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_01.37874785affc9556f9985f26a8d28dcb23795130.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 51 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_sticker_pack_eslcologne2015_challengers", + "defindex": 4110, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_eslcologne2015_challengers", + "item_description": "#CSGO_crate_sticker_pack_eslcologne2015_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslcologne2015_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_02.1912c6b817b404791c8a3d1b4a90acebe003b0b5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 52 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_group_1", + "defindex": 4111, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_group_1", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_group_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_1.ef77b4921d3213981ea7c21866a59e33bd2cf755.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 53 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_group_2", + "defindex": 4112, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_group_2", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_group_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_2.9a96ebf86e6600672545512b35281213e610a466.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 54 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_group_3", + "defindex": 4113, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_group_3", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_group_3_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_3.a427cd0396dadefccbb8f3f3180efbfa32af86e0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 55 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_group_4", + "defindex": 4114, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_group_4", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_group_4_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_4.7ca048d7415dfabe2012e743d7aa150b5d0f57fd.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 56 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_fnatic", + "defindex": 4115, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_fnatic", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_fnatic_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_fnatic", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_fnatic.131fb6a9a7430729425c723e70a85fe05a790509.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 57 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 6 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_luminositygaming", + "defindex": 4116, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_luminositygaming", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_luminositygaming.a3153f54ff1ce257e1b8e5271476c55852d3e0c0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 58 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 57 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_navi", + "defindex": 4117, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_navi", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_navi_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_navi.a455c3031fe2ed9e26ff976fd0e4729e58747997.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 59 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 12 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_ninjasinpyjamas", + "defindex": 4118, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_ninjasinpyjamas", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_ninjasinpyjamas.08186b200f886664121acc544115020f4e7274b9.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 60 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 1 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_envyus", + "defindex": 4119, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_envyus", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_envyus_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_envyus", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_envyus.86e41aa7099e2c68982d1d997a9f1578e535969f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 61 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 46 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_titan", + "defindex": 4120, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_titan", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_titan_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_titan", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_titan.2f4f27af898409a628153ffbc991d3581c3a89e2.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 62 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 27 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_solomid", + "defindex": 4121, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_solomid", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_solomid_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_solomid", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_solomid.0cf93bb22c101d93f96584ee1ac875766cd7f731.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 63 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 58 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_virtuspro", + "defindex": 4122, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_virtuspro", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_virtuspro_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_virtuspro", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_virtuspro.fd1d9f7a7f03458b317d0b4e39351c5a60da0519.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 64 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 31 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_mousesports", + "defindex": 4123, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_mousesports", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_mousesports_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_mousesports", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_mousesports.8c95e4941107ce30cbeb51f52c1861f726278d2f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 65 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 29 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_renegades", + "defindex": 4124, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_renegades", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_renegades_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_renegades", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_renegades.8ac632d013c90cd6f29c6efc9093ea93840858db.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 66 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 53 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_teamimmunity", + "defindex": 4125, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_teamimmunity", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_teamimmunity.0130e27679add9a8ab9c959c770312d76a394bc1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 67 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 54 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_ebettle", + "defindex": 4126, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_ebettle", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_ebettle_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_ebettle", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_ebettle.eb534ef07f786022c07609deffe293450e759d2d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 68 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 56 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_kinguin", + "defindex": 4127, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_kinguin", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_kinguin_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_kinguin", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_kinguin.2b65e6cc0d8dba62d677aa25895ccf80b030b2aa.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 69 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 55 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_flipside", + "defindex": 4128, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_flipside", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_flipside_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_flipside", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_flipside.01a3a5bfb385f3e1d5ebfd4b233436c8b0788538.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 70 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 43 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_clg", + "defindex": 4129, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_clg", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_clg_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_clg.40faf67598c471ef0db25cb039755631ff14fb4f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 71 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 49 + } + ] + + }, + { + "name": "crate_signature_pack_eslcologne2015_cloud9", + "defindex": 4130, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_eslcologne2015_cloud9", + "item_description": "#CSGO_crate_signature_pack_eslcologne2015_cloud9_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2015_cloud9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2015_cloud9.1ae20ce78cf35bc6e8d16d22c936bfe50a3d9e33.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 72 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 52 + } + ] + + }, + { + "name": "crate_eslcologne2015_promo_de_dust2", + "defindex": 4131, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslcologne2015_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslcologne2015_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 73 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_eslcologne2015_promo_de_mirage", + "defindex": 4132, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslcologne2015_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslcologne2015_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 74 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_eslcologne2015_promo_de_inferno", + "defindex": 4133, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslcologne2015_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslcologne2015_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 75 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_eslcologne2015_promo_de_cbble", + "defindex": 4134, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslcologne2015_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslcologne2015_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 76 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_eslcologne2015_promo_de_overpass", + "defindex": 4135, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslcologne2015_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslcologne2015_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 77 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_eslcologne2015_promo_de_cache", + "defindex": 4136, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslcologne2015_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslcologne2015_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 78 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_eslcologne2015_promo_de_train", + "defindex": 4137, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_eslcologne2015_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_eslcologne2015_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 79 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 7 + } + ] + + }, + { + "name": "crate_community_9", + "defindex": 4138, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_9", + "item_description": "#CSGO_crate_community_9_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "community_case_9", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 80 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_nip", + "defindex": 4139, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_nip", + "item_description": "#StickerKit_desc_cluj2015_team_nip", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nip.64c93c7613ab0aba6dae1e4014a00a35290ca662.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nip_large.c7139b2b1884d10c3f6942052f57a4f79161f330.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_dig", + "defindex": 4140, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_dig", + "item_description": "#StickerKit_desc_cluj2015_team_dig", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/dig", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dig.1962ee7e35fb4d40fb85823e337dac4de8ce9420.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dig_large.b4f5b32b362b3d1915d2486d1d24ed1964a420e3.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_clg", + "defindex": 4141, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_clg", + "item_description": "#StickerKit_desc_cluj2015_team_clg", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/clg.c97564d529827bdc2cd35805747c02c5989ac5c1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/clg_large.0fc6bd1548095c909679116b6c622c8b727266bf.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_vex", + "defindex": 4142, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_vex", + "item_description": "#StickerKit_desc_cluj2015_team_vex", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/vex", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vex.9a296b43202ffc3b76e6b3f950d2c6570127293e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vex_large.20f48097153b223651684f514c7f789bcfd353f6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_flip", + "defindex": 4143, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_flip", + "item_description": "#StickerKit_desc_cluj2015_team_flip", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/flip.6b2232daafea4cd9f6229f8dba0688a4f5dded3d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/flip_large.2fd3fdcdba22f17a0d095327588049014ea33ba1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_liq", + "defindex": 4144, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_liq", + "item_description": "#StickerKit_desc_cluj2015_team_liq", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/liq.ff2545d70836f6090039cbd3f6c7101745a0d05d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/liq_large.531e73c4595f371f3a00f41bb6820db3c975b4bc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_mss", + "defindex": 4145, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_mss", + "item_description": "#StickerKit_desc_cluj2015_team_mss", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/mss.ad4a651b0e3e2687d96f37747d5cc0a7bebf4708.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/mss_large.4b6073a2d10053bc471f20b8ffa528f9d9e5586b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_navi", + "defindex": 4146, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_navi", + "item_description": "#StickerKit_desc_cluj2015_team_navi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/navi.a15b4e8be3f693ba5be157161c3c627bc7e8bd59.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/navi_large.3ca2ae32dc950ca6d842c30037fdda3321c83e4a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_vp", + "defindex": 4147, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_vp", + "item_description": "#StickerKit_desc_cluj2015_team_vp", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vp.5cc950372e0c448d2ff958b7ce13fd907bcd2ace.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/vp_large.b6a2d1867b93bd87d04a5ccf41c614547522ee61.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_c9", + "defindex": 4148, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_c9", + "item_description": "#StickerKit_desc_cluj2015_team_c9", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/c9.53b4aa06864914b295514b83087bb389c2006476.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/c9_large.dbf10a8d74d47818baaf4fb7b75f051627d5e145.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_g2", + "defindex": 4149, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_g2", + "item_description": "#StickerKit_desc_cluj2015_team_g2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/g2.27f296d878deab672fc965d48bf61350ff279e55.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/g2_large.3b3ca07a23e22e3c2d1ccc5ce8e4037accc686d9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_tit", + "defindex": 4150, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_tit", + "item_description": "#StickerKit_desc_cluj2015_team_tit", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/tit", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tit.5023eda322ecb248d0b034624aa4f92a6328483d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tit_large.79f53164d6c3d0833ae1597f6a495e51907bce15.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_tsolo", + "defindex": 4151, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_tsolo", + "item_description": "#StickerKit_desc_cluj2015_team_tsolo", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/tsolo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tsolo.4e3f0cf2735b8dca2ec59655a35e0247552ad8c3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/tsolo_large.2a9ab26f578980660d4bc439d6f057cddf67e3a3.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_nv", + "defindex": 4152, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_nv", + "item_description": "#StickerKit_desc_cluj2015_team_nv", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nv.619e0887480edb39725f97ea6252a279eb91ad52.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/nv_large.63cb2f608bd4ed2ce4f5ce47172d921bb1f6308d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_fntc", + "defindex": 4153, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_fntc", + "item_description": "#StickerKit_desc_cluj2015_team_fntc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/fntc.ff9b4d3f298c3618e3ec9f5830ac654426a96dcd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/fntc_large.d4a03e2044bd4776cfdd8ff0e7761cdd1a5937c0.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_lumi", + "defindex": 4154, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_lumi", + "item_description": "#StickerKit_desc_cluj2015_team_lumi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/lumi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/lumi.741ce5b5f01c75a3aadb484b860323e2282d5324.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/lumi_large.1186f851d507701fde008ff0e9b9e0800255f3d5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_dhc", + "defindex": 4155, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cluj2015_team_dhc", + "item_description": "#StickerKit_desc_cluj2015_team_dhc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cluj2015/dhc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dhc.6ec0924518bdc2d4c74afd8418a61e39beecb9e8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cluj2015/dhc_large.9a2b556dd0ae1001ec0798f7d183e7f6432d692a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_legends", + "defindex": 4156, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_cluj2015_legends", + "item_description": "#CSGO_crate_sticker_pack_cluj2015_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cluj2015_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_01.b5aa0f4b99dc4dcab141fa6dcd4582314028d883.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 81 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_cluj2015_challengers", + "defindex": 4157, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_cluj2015_challengers", + "item_description": "#CSGO_crate_sticker_pack_cluj2015_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cluj2015_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_02.373ff0ba71289d874326b91b2ff7d75a2414de32.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 82 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_group_1", + "defindex": 4158, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_group_1", + "item_description": "#CSGO_crate_signature_pack_cluj2015_group_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cluj2015_group_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_group_1.6a6b90fb30454859a255ca3d1888a9158ffbf180.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 83 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_group_2", + "defindex": 4159, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_group_2", + "item_description": "#CSGO_crate_signature_pack_cluj2015_group_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cluj2015_group_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cluj2015_group_2.f22b59610aa0e88cb0447ab0599d62bb620a4b18.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 84 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_nip", + "defindex": 4160, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_nip", + "item_description": "#CSGO_crate_signature_pack_cluj2015_nip_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_nip.3bb19dec2710b66a829fe41a42f37da1e4cb60e7.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 85 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 1 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_dig", + "defindex": 4161, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_dig", + "item_description": "#CSGO_crate_signature_pack_cluj2015_dig_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_dig", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_dig.10f7d28aa9bfa89b01f96ef9bbdacd1486947601.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 86 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 24 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_clg", + "defindex": 4162, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_clg", + "item_description": "#CSGO_crate_signature_pack_cluj2015_clg_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_clg.c53d8a771295de390b35a96d9d3bdcfbb419c9ee.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 87 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 49 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_vex", + "defindex": 4163, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_vex", + "item_description": "#CSGO_crate_signature_pack_cluj2015_vex_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_vex", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_vex.e2a706220041111bb27daedeafe736b308d5461d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 88 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 47 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_flip", + "defindex": 4164, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_flip", + "item_description": "#CSGO_crate_signature_pack_cluj2015_flip_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_flip.3087331179c290515f2598a63142e2629454fdf5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 89 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 43 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_liq", + "defindex": 4165, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_liq", + "item_description": "#CSGO_crate_signature_pack_cluj2015_liq_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_liq.1c92555032b1607fe8fa4b4b3d62b52db35c1c60.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 90 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 48 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_mss", + "defindex": 4166, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_mss", + "item_description": "#CSGO_crate_signature_pack_cluj2015_mss_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_mss.c6e7c8a04e08608c2094945b97b14c6522416420.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 91 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 29 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_navi", + "defindex": 4167, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_navi", + "item_description": "#CSGO_crate_signature_pack_cluj2015_navi_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_navi.98a2ef643af64a98a84879e82461392c7041f764.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 92 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 12 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_vp", + "defindex": 4168, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_vp", + "item_description": "#CSGO_crate_signature_pack_cluj2015_vp_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_vp.cd7c632e7aeb440e304f61b838a84cdf12b73289.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 93 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 31 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_c9", + "defindex": 4169, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_c9", + "item_description": "#CSGO_crate_signature_pack_cluj2015_c9_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_c9.a2e53b4ba75a1eaeb9c213dbaf916795ba281fea.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 94 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 33 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_g2", + "defindex": 4170, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_g2", + "item_description": "#CSGO_crate_signature_pack_cluj2015_g2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_g2.6918e2ed3b276f3acc35467e3e2e83af7769f3ef.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 95 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 59 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_tit", + "defindex": 4171, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_tit", + "item_description": "#CSGO_crate_signature_pack_cluj2015_tit_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_tit", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_tit.c1eaa565d4b1be3bfb3a073adb77869ead9f45bd.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 96 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 27 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_tsolo", + "defindex": 4172, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_tsolo", + "item_description": "#CSGO_crate_signature_pack_cluj2015_tsolo_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_tsolo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_tsolo.d1d03f71a9ebe37999606a37100ee076392121eb.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 97 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 58 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_nv", + "defindex": 4173, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_nv", + "item_description": "#CSGO_crate_signature_pack_cluj2015_nv_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_nv.fdd5a3e7baa7073d3cafa3b748063db8ca013330.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 98 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 46 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_fntc", + "defindex": 4174, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_fntc", + "item_description": "#CSGO_crate_signature_pack_cluj2015_fntc_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_fntc.f0ea756017aa5c9ca85a720cd632d6b5c5a2bb6a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 99 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 6 + } + ] + + }, + { + "name": "crate_signature_pack_cluj2015_lumi", + "defindex": 4175, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cluj2015_lumi", + "item_description": "#CSGO_crate_signature_pack_cluj2015_lumi_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cluj2015_lumi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cluj2015_lumi.5c0d1b790a0a6717c7a073f3814c34f38544f8ff.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 100 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 57 + } + ] + + }, + { + "name": "crate_cluj2015_promo_de_dust2", + "defindex": 4176, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cluj2015_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cluj2015_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 101 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_cluj2015_promo_de_mirage", + "defindex": 4177, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cluj2015_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cluj2015_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 102 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_cluj2015_promo_de_inferno", + "defindex": 4178, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cluj2015_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cluj2015_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 103 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_cluj2015_promo_de_cbble", + "defindex": 4179, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cluj2015_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cluj2015_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 104 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_cluj2015_promo_de_overpass", + "defindex": 4180, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cluj2015_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cluj2015_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 105 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_cluj2015_promo_de_cache", + "defindex": 4181, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cluj2015_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cluj2015_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 106 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_cluj2015_promo_de_train", + "defindex": 4182, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cluj2015_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cluj2015_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 107 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 8 + } + ] + + }, + { + "name": "crate_sticker_pack_pinups_capsule", + "defindex": 4183, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_pinups_capsule", + "item_description": "#CSGO_crate_sticker_pack_pinups_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_pinups_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_pinups_capsule.b8080e5d6a2f220c2368d3c5c3763e7d399100e6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_pinups_capsule_large.3dd0aa6684b34b332007f8df73512025d14d6d41.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 108 + } + ] + + }, + { + "name": "crate_sticker_pack_slid3_capsule", + "defindex": 4184, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_slid3_capsule", + "item_description": "#CSGO_crate_sticker_pack_slid3_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_slid3_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_slid3_capsule.4c3991f1994da6808ec91a11a3d7a0dc05708162.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_slid3_capsule_large.0cb0af67a4ff36762ce3d53f3939acdd74dab309.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 109 + } + ] + + }, + { + "name": "crate_sticker_pack_team_roles_capsule", + "defindex": 4185, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_team_roles_capsule", + "item_description": "#CSGO_crate_sticker_pack_team_roles_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_team_roles_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_team_roles_capsule.7dde27f9efad39f5ff1ce3bae18bfadfdeb88aec.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_team_roles_capsule_large.ba4b30e89e45d0c4a7311da8e0e0448cc91af7ad.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 110 + } + ] + + }, + { + "name": "crate_community_10", + "defindex": 4186, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_10", + "item_description": "#CSGO_crate_community_10_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_10", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 111 + } + ] + + }, + { + "name": "crate_community_11", + "defindex": 4187, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_11", + "item_description": "#CSGO_crate_community_11_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_11", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_11", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 112 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_nip", + "defindex": 4188, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_nip", + "item_description": "#StickerKit_desc_columbus2016_team_nip", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/nip.261a2bb3b7b7b3f97efb6dbe6625023627596426.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/nip_large.95f63fd87e0143562f129b010dbb9d3c2eb79327.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_splc", + "defindex": 4189, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_splc", + "item_description": "#StickerKit_desc_columbus2016_team_splc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/splc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/splc.42538f4c8cab8272527bce4ae0f4b5ba65b424e7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/splc_large.5fb439a52d1eea4026eaab03d48d4c36faf497d5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_clg", + "defindex": 4190, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_clg", + "item_description": "#StickerKit_desc_columbus2016_team_clg", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/clg.fccb2b53001c53c0f4bc67d6dfa238319a9a0b18.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/clg_large.450e51a3c8182571fdd2b371b117445fa710767c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_gamb", + "defindex": 4191, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_gamb", + "item_description": "#StickerKit_desc_columbus2016_team_gamb", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/gamb.14e5bc88b316154518c9efe8b3e0b8f540c25001.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/gamb_large.21c521cfac01917916ccfd68755ceb24d5a90135.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_flip", + "defindex": 4192, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_flip", + "item_description": "#StickerKit_desc_columbus2016_team_flip", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/flip.a096a88cb3e00d8b3b02ab1249645772229e986e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/flip_large.1641f21389abcd1dfe54e3ff5d078ad4f8d877d1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_liq", + "defindex": 4193, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_liq", + "item_description": "#StickerKit_desc_columbus2016_team_liq", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/liq.953501365e87ad0a86adb07570be8373c5564ca5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/liq_large.cd10b1b4cf08b333df8733d689cc933ea9678f0b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_mss", + "defindex": 4194, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_mss", + "item_description": "#StickerKit_desc_columbus2016_team_mss", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/mss.3120fb68a15541fb3afbad8c8429d3b36527af0e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/mss_large.a8e967297297c0c759844ac61973bcae4e203af4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_navi", + "defindex": 4195, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_navi", + "item_description": "#StickerKit_desc_columbus2016_team_navi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/navi.bb362bb12484254d2f7a9c48c78d4deddde7a4bc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/navi_large.6f7a09b08e070ce1bc24076f21921d156d6ffb0d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_vp", + "defindex": 4196, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_vp", + "item_description": "#StickerKit_desc_columbus2016_team_vp", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/vp.341d845546e9c2cabe3d77aa8efeb03db512fd56.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/vp_large.6feea5b273142103a559d52d9cc8b6ef62037a5d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_c9", + "defindex": 4197, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_c9", + "item_description": "#StickerKit_desc_columbus2016_team_c9", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/c9.ea1325d3fb903f97e2eadb52c6df1cf4b11e0813.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/c9_large.7dff0f0ec35687844916caad605badfa5dc33bce.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_g2", + "defindex": 4198, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_g2", + "item_description": "#StickerKit_desc_columbus2016_team_g2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/g2.0a631786138510558ec1ec8c43135c4378ba7b99.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/g2_large.16d45988ff3d97210848ccd04bc3e3f777d18d22.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_faze", + "defindex": 4199, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_faze", + "item_description": "#StickerKit_desc_columbus2016_team_faze", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/faze.66d73b786570726737840c2e6e0c0f0b6f02a658.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/faze_large.e13327ddc12744e0c2e1e63b6379f0d614a50511.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_astr", + "defindex": 4200, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_astr", + "item_description": "#StickerKit_desc_columbus2016_team_astr", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/astr.158cb69ccab9a42bbab8cea853d7656232012708.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/astr_large.242898dba12ecc079eeb375582dbb5329235fb44.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_nv", + "defindex": 4201, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_nv", + "item_description": "#StickerKit_desc_columbus2016_team_nv", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/nv.ee941bf2907ef7f6176eec9aebce8c4362740f8c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/nv_large.027e54cf4c2a1c3c8f865d013518e8474fc347d5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_fntc", + "defindex": 4202, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_fntc", + "item_description": "#StickerKit_desc_columbus2016_team_fntc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/fntc.e3d5f4b8d6d98344d769ebc0d7790e928db7d5ed.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/fntc_large.e0c25fd0d0c4f0c1935e7a6aa792db3da6637af2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_lumi", + "defindex": 4203, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_lumi", + "item_description": "#StickerKit_desc_columbus2016_team_lumi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/lumi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/lumi.2b4b6363528203dfb075646915fee89507baad8e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/lumi_large.2595b7be8085a7d3c07bd8f2eda73f254576f341.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_mlg", + "defindex": 4204, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_columbus2016_team_mlg", + "item_description": "#StickerKit_desc_columbus2016_team_mlg", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/columbus2016/mlg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/mlg.ecad863d15a7ea6d36b33c1032563faed7651a34.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/columbus2016/mlg_large.d59553e8ded237f4e5f2d0ab6dcbff0601119d85.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_legends", + "defindex": 4205, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_columbus2016_legends", + "item_description": "#CSGO_crate_sticker_pack_columbus2016_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_columbus2016_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_columbus2016_01.9a3d8c702c1c05adfa8b633dd57ba79b851a39d9.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 113 + } + ] + + }, + { + "name": "crate_sticker_pack_columbus2016_challengers", + "defindex": 4206, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_columbus2016_challengers", + "item_description": "#CSGO_crate_sticker_pack_columbus2016_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_columbus2016_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_columbus2016_02.822df8d98ea9f5048de0574b4fd7e907e747571b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 114 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_group_1", + "defindex": 4207, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_group_1", + "item_description": "#CSGO_crate_signature_pack_columbus2016_group_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_columbus2016_group_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_columbus2016_group_1.b3e54b10a7346b5457a7ab82c5e1898891f7dd8d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 115 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_group_2", + "defindex": 4208, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_group_2", + "item_description": "#CSGO_crate_signature_pack_columbus2016_group_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_columbus2016_group_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_columbus2016_group_2.ef0c6ef8c057f22ee214e0d32cf63cf360ec7729.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 116 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_nip", + "defindex": 4209, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_nip", + "item_description": "#CSGO_crate_signature_pack_columbus2016_nip_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_nip.5355d35ce7cb88e5b0aa9c929b344f459a3bd649.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 117 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 1 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_splc", + "defindex": 4210, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_splc", + "item_description": "#CSGO_crate_signature_pack_columbus2016_splc_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_splc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_splc.034f419b549e5f2601135ea3030b131e4ba4633d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 118 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 62 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_clg", + "defindex": 4211, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_clg", + "item_description": "#CSGO_crate_signature_pack_columbus2016_clg_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_clg.b2befae2db0ecbf152c79d90a917e9564a817558.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 119 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 49 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_gamb", + "defindex": 4212, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_gamb", + "item_description": "#CSGO_crate_signature_pack_columbus2016_gamb_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_gamb.9afb2fa1b24a9212eb0608b18f9200f599df319b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 120 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 63 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_flip", + "defindex": 4213, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_flip", + "item_description": "#CSGO_crate_signature_pack_columbus2016_flip_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_flip.abf234fc0485da1b09ad5c1a83cedca2329cf2be.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 121 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 43 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_liq", + "defindex": 4214, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_liq", + "item_description": "#CSGO_crate_signature_pack_columbus2016_liq_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_liq.01701629d90a71b7d4c96c71d270abe505dcede1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 122 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 48 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_mss", + "defindex": 4215, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_mss", + "item_description": "#CSGO_crate_signature_pack_columbus2016_mss_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_mss.abdca3c1e639578f73e16c145be969f6842973d3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 123 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 29 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_navi", + "defindex": 4216, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_navi", + "item_description": "#CSGO_crate_signature_pack_columbus2016_navi_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_navi.c98941582ee0c1ce2731a33f4daa305db8dbd917.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 124 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 12 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_vp", + "defindex": 4217, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_vp", + "item_description": "#CSGO_crate_signature_pack_columbus2016_vp_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_vp.14c1aafd758c46057a6ec0342b92423a2047f294.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 125 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 31 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_c9", + "defindex": 4218, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_c9", + "item_description": "#CSGO_crate_signature_pack_columbus2016_c9_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_c9.9a6ee4530bf96c42ef88abfc8f16765dd3b55a59.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 126 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 33 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_g2", + "defindex": 4219, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_g2", + "item_description": "#CSGO_crate_signature_pack_columbus2016_g2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_g2.94e48e24d614cab100400843df68646d1d4e8032.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 127 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 59 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_faze", + "defindex": 4220, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_faze", + "item_description": "#CSGO_crate_signature_pack_columbus2016_faze_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_faze.e105d8ad0c4641546883a1a7e36e64cba0a8a4ce.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 128 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 61 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_astr", + "defindex": 4221, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_astr", + "item_description": "#CSGO_crate_signature_pack_columbus2016_astr_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_astr.7f0c56ba2656bb0213161078e0fddb07735eecda.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 129 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 60 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_nv", + "defindex": 4222, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_nv", + "item_description": "#CSGO_crate_signature_pack_columbus2016_nv_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_nv.7c69465530e3dccf46564d2ca6bc8ede59edf808.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 130 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 46 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_fntc", + "defindex": 4223, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_fntc", + "item_description": "#CSGO_crate_signature_pack_columbus2016_fntc_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_fntc.1a6a5f5b2831807369a271056dfc0841bf429a00.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 131 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 6 + } + ] + + }, + { + "name": "crate_signature_pack_columbus2016_lumi", + "defindex": 4224, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_columbus2016_lumi", + "item_description": "#CSGO_crate_signature_pack_columbus2016_lumi_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/columbus2016_lumi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/columbus2016_lumi.50bf958d88c38fffe2650c9680d0b6f0a8174303.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 132 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 57 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_dust2", + "defindex": 4225, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 133 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_mirage", + "defindex": 4226, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 134 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_inferno", + "defindex": 4227, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_inferno.bc1ef2fd8a91d14c6c2e7e2a444e2c05feb4956e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 135 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_cbble", + "defindex": 4228, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 136 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_overpass", + "defindex": 4229, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 137 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_cache", + "defindex": 4230, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 138 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_train", + "defindex": 4231, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 139 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_columbus2016_promo_de_nuke", + "defindex": 4232, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_columbus2016_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_columbus2016_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 140 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 9 + } + ] + + }, + { + "name": "crate_community_12", + "defindex": 4233, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_12", + "item_description": "#CSGO_crate_community_12_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_12", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_12", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 141 + } + ] + + }, + { + "name": "crate_sprays_community_1", + "defindex": 4234, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sprays_community_1", + "item_description": "#CSGO_crate_sprays_community_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_spray_pack_community_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_spray_pack_community_1.9901d4df438f7ab1df3b493a063d80ca82711550.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 142 + } + ] + + }, + { + "name": "crate_pins_series_1", + "defindex": 4235, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_pins_series_1", + "item_description": "#CSGO_crate_pins_series_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_pins_series_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_pins_series_1.d43d773dc49e91152169d79cfca70a76a7ef7c06.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 143 + } + ] + + }, + { + "name": "crate_community_13", + "defindex": 4236, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_13", + "item_description": "#CSGO_crate_community_13_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_13", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_13", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 144 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_nip", + "defindex": 4237, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_nip", + "item_description": "#StickerKit_desc_cologne2016_team_nip", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/nip.6619d8ef602064766cdf8505cc73aadff01daf1c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/nip_large.200c635d839ad294c88b8115e03dcbe5000a6eec.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_optc", + "defindex": 4238, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_optc", + "item_description": "#StickerKit_desc_cologne2016_team_optc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/optc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/optc.a3687d719fac4e3be78d7c7f9a59cf64cbd39e3f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/optc_large.25ccf4fa4303f8d22486347950fc1a61d251abe5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_clg", + "defindex": 4239, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_clg", + "item_description": "#StickerKit_desc_cologne2016_team_clg", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/clg.64bf4e5b8924f06f9ffdacb3146ca375f2eb8975.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/clg_large.b0f2c60ff41b20957b00dc1a1b3bc60eaaeecfda.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_gamb", + "defindex": 4240, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_gamb", + "item_description": "#StickerKit_desc_cologne2016_team_gamb", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/gamb.d8c1255ae169265ebaeba92dce751b23de631ea6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/gamb_large.df542e11fdb2f464c95230e6259e2e2b1f9b0429.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_flip", + "defindex": 4241, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_flip", + "item_description": "#StickerKit_desc_cologne2016_team_flip", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/flip.5bcbfce40a5cb3fbb69754214f839b547167507e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/flip_large.38b6723bbf830ba79dd7c777e5349b64a9eb23f7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_liq", + "defindex": 4242, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_liq", + "item_description": "#StickerKit_desc_cologne2016_team_liq", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/liq.8927803e223ea5b1ca71c96c8f0a774231ec001a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/liq_large.83914e804013fedfda4a477196a97dad5a909337.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_mss", + "defindex": 4243, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_mss", + "item_description": "#StickerKit_desc_cologne2016_team_mss", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/mss.717504ee0792b0074f1554507244e54992be9614.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/mss_large.e306b7efa9e3e92a8142def7e33d8176235c910e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_navi", + "defindex": 4244, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_navi", + "item_description": "#StickerKit_desc_cologne2016_team_navi", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/navi.9a1c6fc5ccfd7030f7c1b5a06d4ba166ad2696cf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/navi_large.27a0fde230a21da1a21c86acc3ffd729cbf499c5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_vp", + "defindex": 4245, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_vp", + "item_description": "#StickerKit_desc_cologne2016_team_vp", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/vp.aba1125b9892cbf198b713e684c1382aa093aac7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/vp_large.870c68cff17bbd16b6b5555169a8f9eeed51b083.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_sk", + "defindex": 4246, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_sk", + "item_description": "#StickerKit_desc_cologne2016_team_sk", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/sk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/sk.9d420bf857ab438293291d8126fe5d9e05e4cc2c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/sk_large.7edbf52c9589d3a73ac667c6a8af594c418abfc0.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_g2", + "defindex": 4247, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_g2", + "item_description": "#StickerKit_desc_cologne2016_team_g2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/g2.a2c2867adfd70ab2be7a0eb63237e00c9d741463.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/g2_large.845d69de1140f080f15a12446999070f88ba390e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_faze", + "defindex": 4248, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_faze", + "item_description": "#StickerKit_desc_cologne2016_team_faze", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/faze.87f1c13d61a40482fd0471446a7b25c7beea0510.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/faze_large.20e12e924a1362d20586b9fd402559c1e3f3f4c2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_astr", + "defindex": 4249, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_astr", + "item_description": "#StickerKit_desc_cologne2016_team_astr", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/astr.9f2e414a6d55df9edc89575d73093c5051a385b2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/astr_large.169c7a8869c0415cfdaf955ffd350af237fb8f6a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_nv", + "defindex": 4250, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_nv", + "item_description": "#StickerKit_desc_cologne2016_team_nv", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/nv.e3fabc1deacb0969c704dfe728a1a30d0f9f4b17.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/nv_large.d81a927a5c1293abd58240fb58fce9526106c00a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_fntc", + "defindex": 4251, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_fntc", + "item_description": "#StickerKit_desc_cologne2016_team_fntc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/fntc.a2f7808481f24ed9433a0e1b5acc71be1e7bca1e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/fntc_large.8bbbfa9d7e71645897b0fd2e77ca6e1552e8c42b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_dig", + "defindex": 4252, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_dig", + "item_description": "#StickerKit_desc_cologne2016_team_dig", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/dig", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/dig.aaf4312af92c29bfe4296af9c30bcfaf22ff1064.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/dig_large.f89bccfec7b23d19145f85f3796d02dd92a5deac.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_esl", + "defindex": 4253, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StickerKit_cologne2016_team_esl", + "item_description": "#StickerKit_desc_cologne2016_team_esl", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/cologne2016/esl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/esl.d5ff0d9cf1c3405f943946bbd52d9392bfc60901.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/cologne2016/esl_large.18a7387619866f77d2543c8917767cacbf19d639.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_legends", + "defindex": 4254, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_cologne2016_legends", + "item_description": "#CSGO_crate_sticker_pack_cologne2016_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cologne2016_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2016_01.71341854f197beb8edddb3ade5f4ec8ea25bf15e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 145 + } + ] + + }, + { + "name": "crate_sticker_pack_cologne2016_challengers", + "defindex": 4255, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_cologne2016_challengers", + "item_description": "#CSGO_crate_sticker_pack_cologne2016_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cologne2016_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2016_02.9e66c2b505b4dc9334d78246217463bf1e142466.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 146 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_group_1", + "defindex": 4256, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_group_1", + "item_description": "#CSGO_crate_signature_pack_cologne2016_group_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cologne2016_group_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2016_group_1.b78f6f450d7b907ec4fc0b4f9d5e507a87aabc72.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 147 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_group_2", + "defindex": 4257, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_group_2", + "item_description": "#CSGO_crate_signature_pack_cologne2016_group_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cologne2016_group_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cologne2016_group_2.4a338f28ae9afd677c419ac1d1a58682110cce98.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 148 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_nip", + "defindex": 4258, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_nip", + "item_description": "#CSGO_crate_signature_pack_cologne2016_nip_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_nip.63e1d81498dca7394ac1faeb20abb2147ba9cfd2.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 149 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 1 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_optc", + "defindex": 4259, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_optc", + "item_description": "#CSGO_crate_signature_pack_cologne2016_optc_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_optc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_optc.9b0e05e02ea6f10d4a5a576c32a9fbb3dc958a61.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 150 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 66 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_clg", + "defindex": 4260, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_clg", + "item_description": "#CSGO_crate_signature_pack_cologne2016_clg_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_clg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_clg.d221ba021e476941bcc89f037546a48164189f72.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 151 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 49 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_gamb", + "defindex": 4261, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_gamb", + "item_description": "#CSGO_crate_signature_pack_cologne2016_gamb_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_gamb.5b2df6827ae0134d934bdde49596b057c733fa66.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 152 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 63 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_flip", + "defindex": 4262, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_flip", + "item_description": "#CSGO_crate_signature_pack_cologne2016_flip_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_flip.e31fe35e7e681fe457e8c9318c1e9ac44d9056ef.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 153 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 43 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_liq", + "defindex": 4263, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_liq", + "item_description": "#CSGO_crate_signature_pack_cologne2016_liq_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_liq.118986b0210f9622870a9922f714b65396b39e31.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 154 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 48 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_mss", + "defindex": 4264, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_mss", + "item_description": "#CSGO_crate_signature_pack_cologne2016_mss_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_mss.43d5e0d301c0476670c4a0a8d9626e85a6361225.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 155 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 29 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_navi", + "defindex": 4265, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_navi", + "item_description": "#CSGO_crate_signature_pack_cologne2016_navi_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_navi.f67abac618d43ebd006228ba6a2aee76ce5cf039.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 156 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 12 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_vp", + "defindex": 4266, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_vp", + "item_description": "#CSGO_crate_signature_pack_cologne2016_vp_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_vp.a9b6677351c16227e4733dec91f44a4cb70df317.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 157 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 31 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_sk", + "defindex": 4267, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_sk", + "item_description": "#CSGO_crate_signature_pack_cologne2016_sk_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_sk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_sk.525516163e4356efa09cd4c9d5629ef635a06ee6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 158 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 14 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_g2", + "defindex": 4268, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_g2", + "item_description": "#CSGO_crate_signature_pack_cologne2016_g2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_g2.cb1335f4ebbd2314d775b4b30279a57005a98aea.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 159 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 59 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_faze", + "defindex": 4269, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_faze", + "item_description": "#CSGO_crate_signature_pack_cologne2016_faze_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_faze.b97ae3f45b193d7ae06fcca524cf3c9d3378d72a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 160 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 61 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_astr", + "defindex": 4270, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_astr", + "item_description": "#CSGO_crate_signature_pack_cologne2016_astr_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_astr.924017dc668ef0387a9be84140691a59bc7b17bc.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 161 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 60 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_nv", + "defindex": 4271, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_nv", + "item_description": "#CSGO_crate_signature_pack_cologne2016_nv_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_nv.ac991dfd8e1c2788b18a011291ab4f82eaa2895b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 162 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 46 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_fntc", + "defindex": 4272, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_fntc", + "item_description": "#CSGO_crate_signature_pack_cologne2016_fntc_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_fntc.35cb5119431222cf3f15ad2d1f7d273766ff0c37.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 163 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 6 + } + ] + + }, + { + "name": "crate_signature_pack_cologne2016_dig", + "defindex": 4273, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_cologne2016_dig", + "item_description": "#CSGO_crate_signature_pack_cologne2016_dig_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/cologne2016_dig", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/cologne2016_dig.3fb1cfd4022f5bd4b83ad8a109d450b2bd45c831.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 164 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 24 + } + ] + + }, + { + "name": "crate_cologne2016_promo_de_dust2", + "defindex": 4274, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cologne2016_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cologne2016_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 165 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_cologne2016_promo_de_mirage", + "defindex": 4275, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cologne2016_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cologne2016_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 166 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_cologne2016_promo_de_cbble", + "defindex": 4276, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cologne2016_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cologne2016_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 167 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_cologne2016_promo_de_overpass", + "defindex": 4277, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cologne2016_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cologne2016_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 168 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_cologne2016_promo_de_cache", + "defindex": 4278, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cologne2016_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cologne2016_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 169 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_cologne2016_promo_de_train", + "defindex": 4279, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cologne2016_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cologne2016_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 170 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_cologne2016_promo_de_nuke", + "defindex": 4280, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_cologne2016_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_cologne2016_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 171 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 10 + } + ] + + }, + { + "name": "crate_gamma_2", + "defindex": 4281, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_gamma_2", + "item_description": "#CSGO_crate_gamma_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_gamma_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_gamma_2", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 172 + } + ] + + }, + { + "name": "crate_sticker_pack_sugarface_capsule", + "defindex": 4282, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_sugarface_capsule", + "item_description": "#CSGO_crate_sticker_pack_sugarface_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_sugarface_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_sugarface_capsule.0a658d24ff6a050b4a5a2b984a1d7d2267490f43.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_sugarface_capsule_large.14ba73790cd932b194a64aee6561eb7fd1e28db4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 173 + } + ] + + }, + { + "name": "crate_sticker_pack_bestiary_capsule", + "defindex": 4283, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_bestiary_capsule", + "item_description": "#CSGO_crate_sticker_pack_bestiary_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_bestiary_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_bestiary_capsule.2eba3b5ca58a06e25373db61fc842a7e79b1a22e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_bestiary_capsule_large.c3be1505399ba4671257bbfc04490909b9a515ce.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 174 + } + ] + + }, + { + "name": "crate_pins_series_2", + "defindex": 4284, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_pins_series_2", + "item_description": "#CSGO_crate_pins_series_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_pins_series_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_pins_series_2.96ecd6ea95f24366ca9b41f185cd2bff3a00ab00.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 175 + } + ] + + }, + { + "name": "crate_sprays_vcap1", + "defindex": 4285, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sprays_vcap1", + "item_description": "#CSGO_crate_sprays_vcap1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_spray_pack_valve_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_spray_pack_valve_1.631e40631e3129ac3dd15adf2eeccd964b531498.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 176 + } + ] + + }, + { + "name": "crate_sprays_illuminate1", + "defindex": 4286, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sprays_illuminate1", + "item_description": "#CSGO_crate_sprays_illuminate1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_spray_pack_illuminate_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_spray_pack_illuminate_1.fa3f92860ca0a6c2b23a1301a289bf683ba5ddee.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 223 + } + ] + + }, + { + "name": "crate_musickit_radicals_stattrak_capsule", + "defindex": 4287, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_musickit_radicals_stattrak_capsule", + "item_description": "#CSGO_crate_musickit_radicals_stattrak_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_musickit_radicals_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_musickit_radicals_capsule.862fad702656aa677a0a02fc56b032f300fcd48a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 178 + } + ] + + }, + { + "name": "crate_community_15", + "defindex": 4288, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_15", + "item_description": "#CSGO_crate_community_15_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_15", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_15", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 179 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_astr", + "defindex": 4289, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_astr_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/astr.930104157790935ec95447f28feb85b0978f9ec2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/astr_large.b6e4c54dc6d6ddc6dfcd61af4fafd24e8aab5d50.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_nv", + "defindex": 4290, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_nv_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nv.ef513c6cc3f1b234eaae5c25478174134f4a4043.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nv_large.17f841b7a988cd434d5465aa6fce5759efce7df9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_faze", + "defindex": 4291, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_faze_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/faze.2069a3bdf2e940d0ae73fcdcf6c946280502b90a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/faze_large.229044c7179e4b3e4be481427b7b577cba199be4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_flip", + "defindex": 4292, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_flip_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/flip.9266c05ccfaa72e2067b3d907e496faacdc83620.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/flip_large.02680669ddae1b321b1306b6c128ac70c5179c95.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_fntc", + "defindex": 4293, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_fntc_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/fntc.0f3a50e79a17027e7944a9799ace266b509142e0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/fntc_large.6a36c7f91925ce76d30334c7552859abd860284c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_g2", + "defindex": 4294, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_g2_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/g2.de31e74fdd95d71be31ec84bfc01d7dcd343819a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/g2_large.069a3904eac68b00c4cc9bb40351f7038cf2d3bd.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_gamb", + "defindex": 4295, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_gamb_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/gamb.280ce4ae2889e86b90596ac8b3516177ddecd467.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/gamb_large.b83655cc4114bbc18f659161258b601be37f1d21.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_god", + "defindex": 4296, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_god_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/god", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/god.e30d3601b1adb00bab624a034c1ab2945fb86c20.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/god_large.588064b42c2b47b3dbdca497fc136d1ba40c1fa9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_hlr", + "defindex": 4297, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_hlr_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/hlr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/hlr.d3ba669e5d00dba577eed5c92f6b10197aabe2ee.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/hlr_large.389cb3f3b08a3a66f2a2d3921d0292f585347975.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_mss", + "defindex": 4298, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_mss_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/mss.263ab8d579da5b0ac8210bfe0e1a95a3306c33c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/mss_large.7003da843031dee02443409b38008b808775e4c6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_navi", + "defindex": 4299, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_navi_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/navi.bea23483b027ed211fd2cb131bd4eef465950b43.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/navi_large.30191c8b177e78767056eee44474a3c5af1e363d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_nor", + "defindex": 4300, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_nor_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/nor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nor.7586044f39ecf401378191203b1682d29473e897.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nor_large.c7e29a367aa048474a04a5c9294379ea62486904.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_optc", + "defindex": 4301, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_optc_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/optc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/optc.ca35bf12d4a50e4b1b82293f8981ab2f8251984d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/optc_large.3f3e4ff62f6d279407ac35081add1163a5947077.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_sk", + "defindex": 4302, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_sk_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/sk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/sk.8aea97f9f5d185d249ddee95a6ab7cab5754e06f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/sk_large.96fc7e7a0b4ce1f94186f1ac1a48ed144e3fdf64.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_liq", + "defindex": 4303, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_liq_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/liq.32dd73a8bbe0a3e2929fa310c7532f5894d5113d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/liq_large.449a8e58dc322cbbddfaa1d161906c99680a8524.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_vp", + "defindex": 4304, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_vp_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/vp.4cc5e6800c1d8f08d0465ad37f1a46ad85051aef.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/vp_large.5c25c19149fb7ba5f0077cc08e122ac65c3325b4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_eleague", + "defindex": 4305, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_eleague_sticker", + "item_description": "#EventItemDesc_atlanta2017_sticker_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/eleague", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/eleague.c6e6ae5e23e9a630b19809d6147ac6dc81f6d849.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/eleague_large.6db7d808a843cf524ec0348677816f3d07974670.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_astr", + "defindex": 4306, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_astr_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/astr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/astr_graffiti.8462403df3fc71681a35a2a5f1cdddde350e104a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/astr_graffiti_large.a5f7aa2421ac49f911a946c040f77b5735830c3e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_nv", + "defindex": 4307, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_nv_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/nv_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nv_graffiti.84e0a126e6a706421cf9da00fda2d53b580f677c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nv_graffiti_large.1894dabd6ddd60151145b3001c6cbc2ad9061de5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_faze", + "defindex": 4308, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_faze_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/faze_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/faze_graffiti.e4f2dcb0bb7899b31bda39b124d9711f67c4f746.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/faze_graffiti_large.b3a6dc79c8c31dd905fd587a941b0cf0d459dec1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_flip", + "defindex": 4309, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_flip_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/flip_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/flip_graffiti.45967a306f266c65c4da3ed39aefed9154d4e312.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/flip_graffiti_large.c3b5e7840d5cf19a7ed0ad4ba99b701355c6f570.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_fntc", + "defindex": 4310, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_fntc_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/fntc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/fntc_graffiti.c3d8a880e63271f9c1a53cbf1ea037399871ccf5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/fntc_graffiti_large.b109cfc4c0a56b0f35cde1f1b5e1b5cd7bb57eec.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_g2", + "defindex": 4311, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_g2_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/g2_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/g2_graffiti.24cf532f42ea4b46570f4afcb5905376a39f31f2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/g2_graffiti_large.3026d27c6f962ea0d8f3b14d20ea760b45c0fc06.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_gamb", + "defindex": 4312, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_gamb_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/gamb_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/gamb_graffiti.b6e3ceb35e370e0658b7aaf735e6c395dc0701d2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/gamb_graffiti_large.71d8916a0f899cda7600a8faa2f01e4d73086089.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_god", + "defindex": 4313, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_god_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/god_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/god_graffiti.58aababca6beab006c53e704c9fdddf2f696a275.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/god_graffiti_large.ef5caf56522fe5653c5c440520e7783f341ade56.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_hlr", + "defindex": 4314, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_hlr_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/hlr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/hlr_graffiti.a7b4955398a07d0faf3097f76326c616d5b35d3a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/hlr_graffiti_large.3dbeccb9a7e8f09e845a308971a24d4922f14fdb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_mss", + "defindex": 4315, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_mss_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/mss_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/mss_graffiti.45e5bd7fbfcde61e28d3235e7d1123eed91aa381.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/mss_graffiti_large.3371ad544e6ee2b069994e0aeb1a1c0d83348412.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_navi", + "defindex": 4316, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_navi_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/navi_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/navi_graffiti.5970dc58ab5afd633ec380f41db244c5cd8bc327.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/navi_graffiti_large.447dcd121ecb93fe284c141387c73991fa71251d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_nor", + "defindex": 4317, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_nor_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/nor_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nor_graffiti.33bd60851c8c35c051a48321d12fa1829c655669.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/nor_graffiti_large.a3316fc34bd3093d83a5ba2c06b8db4e9481c8d2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_optc", + "defindex": 4318, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_optc_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/optc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/optc_graffiti.74c48e5822763bf5346dea5360c11b8c50544569.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/optc_graffiti_large.0bf781248eb85b8cdd08e3859364ffd58baea37c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_sk", + "defindex": 4319, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_sk_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/sk_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/sk_graffiti.9bc3d906deda602128f331021b902bad7d1448f4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/sk_graffiti_large.b4ca7d3c5ddc72b9a3742d1976cdaf0df3a76259.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_liq", + "defindex": 4320, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_liq_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/liq_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/liq_graffiti.f16fb0eaa5255a42c3292e8def7458e3687cda42.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/liq_graffiti_large.f9e63efa37d518b05ef9cb669f455d105f54f8e4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_vp", + "defindex": 4321, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_vp_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/vp_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/vp_graffiti.941bf15c0a86e27effc2ec8dc9220997478699bd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/vp_graffiti_large.b50e799e4518c5df7fff0bdb5767cedf49b83dac.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_graffiti_pack_atlanta2017_eleague", + "defindex": 4322, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_atlanta2017_team_eleague_graffiti", + "item_description": "#EventItemDesc_atlanta2017_graffiti_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/atlanta2017/eleague_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/eleague_graffiti.f3681a14c8296c819e0c1a95ce0ba2d133b17dcc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/atlanta2017/eleague_graffiti_large.4098b132c971a28340f964da2ff1b5a427f23297.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_legends", + "defindex": 4323, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_atlanta2017_legends", + "item_description": "#CSGO_crate_sticker_pack_atlanta2017_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_atlanta2017_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_atlanta2017_01.14a2f83cc56fb41c5ebcdeb18e26e8f6aa2c1743.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 180 + } + ] + + }, + { + "name": "crate_sticker_pack_atlanta2017_challengers", + "defindex": 4324, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_atlanta2017_challengers", + "item_description": "#CSGO_crate_sticker_pack_atlanta2017_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_atlanta2017_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_atlanta2017_02.e2e18e8dc0cbde9dddd5e59142013ed18fa18774.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 181 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_group_1", + "defindex": 4325, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_group_1", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_group_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_atlanta2017_group_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_atlanta2017_group_1.84141099188776461673333c1f16ff3c0ad5b58d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 182 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_group_2", + "defindex": 4326, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_group_2", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_group_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_atlanta2017_group_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_atlanta2017_group_2.d551499c2c71556543a8e91db710ccc68fdd7d95.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 183 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_astr", + "defindex": 4327, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_astr", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_astr_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_astr.bd41de184fab6aff4cadb47216e3935bfa0d930b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 184 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 60 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_nv", + "defindex": 4328, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_nv", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_nv_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_nv.95c966a1562c5a017e7ed2c52a40576ab8c4d5f9.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 185 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 46 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_faze", + "defindex": 4329, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_faze", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_faze_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_faze.4084f544fbb6201356945008d956e80a3374e45b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 186 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 61 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_flip", + "defindex": 4330, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_flip", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_flip_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_flip.a6ecf623037def62f941e6ae88308d42cf8c2a13.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 187 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 43 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_fntc", + "defindex": 4331, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_fntc", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_fntc_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_fntc.b7d3f634e0f279eb3daeeba50f65d68639b7ec43.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 188 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 6 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_g2", + "defindex": 4332, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_g2", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_g2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_g2.c97eae96487fb35e73a66e40a2367f73b5911e62.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 189 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 59 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_gamb", + "defindex": 4333, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_gamb", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_gamb_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_gamb.fea5aaf5b7d32af687c90957c5c11eadf18c2c1f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 190 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 63 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_god", + "defindex": 4334, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_god", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_god_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_god", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_god.fedf3b0e675bce2346331f7491ec5f2836a3ddb7.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 191 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 67 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_hlr", + "defindex": 4335, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_hlr", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_hlr_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_hlr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_hlr.641a0e5506d0aa0164330276a2294a702cd99673.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 192 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 25 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_mss", + "defindex": 4336, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_mss", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_mss_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_mss.b6268ba3978a902ec85e7d5af1edfcac97e458c0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 193 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 29 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_navi", + "defindex": 4337, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_navi", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_navi_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_navi.507a836451db57852eebce66c2750db8e190de64.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 194 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 12 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_nor", + "defindex": 4338, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_nor", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_nor_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_nor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_nor.e2a3763aafb068fd8589edce115b8009f12a753b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 195 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 68 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_optc", + "defindex": 4339, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_optc", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_optc_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_optc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_optc.c5c6218f2edea852e45d4090e94abc2809d9cbb6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 196 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 66 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_sk", + "defindex": 4340, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_sk", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_sk_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_sk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_sk.41575fa2f025f387044f4716e0d0feb6588c79fa.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 197 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 14 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_liq", + "defindex": 4341, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_liq", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_liq_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_liq.82cdc922b6c62fcd70c4a6b6c0dccc4bd4b77332.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 198 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 48 + } + ] + + }, + { + "name": "crate_signature_pack_atlanta2017_vp", + "defindex": 4342, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_atlanta2017_vp", + "item_description": "#CSGO_crate_signature_pack_atlanta2017_vp_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_vp.99cbe3bb60c1012036c2e2e3027706f2c73ce7c3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 199 + }, + { + "name": "tournament event team0 id", + "class": "tournament_event_team_id", + "value": 31 + } + ] + + }, + { + "name": "crate_atlanta2017_bundle_of_all", + "defindex": 4343, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_bundle_of_all", + "item_description": "#CSGO_crate_atlanta2017_bundle_of_all_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/atlanta2017_bundleofall", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/atlanta2017_bundleofall.49534e4fd80ab0aa07ceb9331c51ff4bb745ebe5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_atlanta2017_promo_de_dust2", + "defindex": 4344, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_atlanta2017_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 200 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_atlanta2017_promo_de_mirage", + "defindex": 4345, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_atlanta2017_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 201 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_atlanta2017_promo_de_cbble", + "defindex": 4346, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_atlanta2017_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 202 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_atlanta2017_promo_de_overpass", + "defindex": 4347, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_atlanta2017_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 203 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_atlanta2017_promo_de_cache", + "defindex": 4348, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_atlanta2017_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 204 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_atlanta2017_promo_de_train", + "defindex": 4349, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_atlanta2017_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 205 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_atlanta2017_promo_de_nuke", + "defindex": 4350, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_atlanta2017_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_atlanta2017_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 206 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 11 + } + ] + + }, + { + "name": "crate_community_16", + "defindex": 4351, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_16", + "item_description": "#CSGO_crate_community_16_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_16", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_16", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 207 + } + ] + + }, + { + "name": "crate_community_17", + "defindex": 4352, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_17", + "item_description": "#CSGO_crate_community_17_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_17", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_17", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 208 + } + ] + + }, + { + "name": "CommunitySeasonEight2017 Coin 1", + "defindex": 4353, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEight2017_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonEight2017_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_8_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_bronze.4666168ad1de99009e62342d3d9fe7cc015be885.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_bronze_large.48b39774867299771186e907b52d07627231d56a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "operation xp awarded 0", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation xp awarded 1", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "campaign 9 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 9 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "CommunitySeasonEight2017 Coin 2", + "defindex": 4354, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEight2017_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonEight2017_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_8_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_silver.d5b58650cce99f5cc4db468bbc0f4df56b70eb4e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_silver_large.0745a5448eef484c8a63b568f586d578e3a0a28e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "operation xp awarded 0", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation xp awarded 1", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "campaign 9 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 9 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "CommunitySeasonEight2017 Coin 3", + "defindex": 4355, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEight2017_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonEight2017_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_8_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_gold.ce36f2573b26ef0b4dbba9e5375c9854a3d16b13.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_gold_large.3fc3df385dd5404ef56f6468fda45a96a24c7b33.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "operation xp awarded 0", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation xp awarded 1", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "campaign 9 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 9 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "CommunitySeasonEight2017 Coin 4", + "defindex": 4356, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEight2017_Coin4", + "item_description": "#CSGO_Collectible_CommunitySeasonEight2017_Coin4_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_8_platinum", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_platinum.2cccf62013f2d3ab01f72c4339da4fb2e957b5ce.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_8_platinum_large.bc4e1c9cc18c999b6e73b99bb4724854f7200565.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + }, + { + "name": "operation minutes played", + "class": "operation_minutes_played", + "value": 0 + }, + { + "name": "operation wins", + "class": "operation_wins", + "value": 0 + }, + { + "name": "operation kills", + "class": "operation_kills", + "value": 0 + }, + { + "name": "operation 3k", + "class": "operation_3k", + "value": 0 + }, + { + "name": "operation 4k", + "class": "operation_4k", + "value": 0 + }, + { + "name": "operation 5k", + "class": "operation_5k", + "value": 0 + }, + { + "name": "operation hsp", + "class": "operation_hsp", + "value": 0 + }, + { + "name": "operation mvps", + "class": "operation_mvps", + "value": 0 + }, + { + "name": "competitive minutes played", + "class": "competitive_minutes_played", + "value": 0 + }, + { + "name": "competitive wins", + "class": "competitive_wins", + "value": 0 + }, + { + "name": "competitive kills", + "class": "competitive_kills", + "value": 0 + }, + { + "name": "competitive 3k", + "class": "competitive_3k", + "value": 0 + }, + { + "name": "competitive 4k", + "class": "competitive_4k", + "value": 0 + }, + { + "name": "competitive 5k", + "class": "competitive_5k", + "value": 0 + }, + { + "name": "competitive hsp", + "class": "competitive_hsp", + "value": 0 + }, + { + "name": "competitive mvps", + "class": "competitive_mvps", + "value": 0 + }, + { + "name": "quests complete", + "class": "quests_complete", + "value": 0 + }, + { + "name": "operation points", + "class": "operation_points", + "value": 0 + }, + { + "name": "operation xp awarded 0", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation xp awarded 1", + "class": "operation_xp_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "campaign 9 completion bitfield", + "class": "campaign_completion_bitfield", + "value": 0 + }, + { + "name": "campaign 9 last completed quest", + "class": "campaign_last_completed_quest", + "value": 0 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_astr", + "defindex": 4357, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_astr_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/astr.98ec07973aaf462f628ff3fa9af9105fd73eed20.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/astr_large.d29be644cd381c6fa19f20fec025eb73ac07f5d4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_vp", + "defindex": 4358, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_vp_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vp.6bc351d3499a175482ce1e3443a66415f0d859dc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vp_large.1c886178722f551467621f514c38d7ba85207aa5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_fntc", + "defindex": 4359, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_fntc_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/fntc.133e796501f9f8588aaf21bd7db995982161590f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/fntc_large.abb6b18ba9075f321bb23c8b6760e6ac30cac243.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_sk", + "defindex": 4360, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_sk_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/sk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/sk.e69f8d383ffdc82a1f5d3ad4521b285a88cffcc5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/sk_large.e5c95d7c22067a29fe231d4e852ee980c23310c2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_navi", + "defindex": 4361, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_navi_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/navi.b49cc542efd0ff039ead975d55f5ecc3779728a0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/navi_large.b173092f8c0552174eebf86d7871180ca68d3f68.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_gamb", + "defindex": 4362, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_gamb_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/gamb.afd43be782c451eadc7ae2d0d950877d4d8a9371.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/gamb_large.af6e04d2d91732fa54dd5d4de6bf590b74f5c489.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_nor", + "defindex": 4363, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_nor_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/nor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/nor.80e06b818641fb0b7289f63fd0a77433f0b44bf2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/nor_large.81ea7c0cd7a53906789891df717209204e38d216.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_faze", + "defindex": 4364, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_faze_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/faze.3e447b71c9db56991508b4253c23e2e43a02168a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/faze_large.ffefc690da3329959055f71669ae789ce482820f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_mss", + "defindex": 4365, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_mss_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/mss.c3d2c832a0f23fe0070bb0d91b41a053bbaedb72.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/mss_large.e2cfa498f4a774119f49c2ec9051b74e74a01695.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_g2", + "defindex": 4366, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_g2_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/g2.3cb9f7378814832db2e14d0c905f8ad253368e46.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/g2_large.d52c719a57008aa42d0b5b0e495754f88e5b9b19.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_big", + "defindex": 4367, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_big_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/big", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/big.26b5474a9fd89069abb915bd38f47b2335525d19.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/big_large.a51b441608946152edfb112e3f3ab8bf3bcd07ad.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_c9", + "defindex": 4368, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_c9_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/c9.c47eac322b1d14bda99cbd52a6fc99f7993e9baf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/c9_large.32ec80c3911e35d9777d134a46017568e28b066f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_penta", + "defindex": 4369, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_penta_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/penta", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/penta.b0ee93cff19295beb05a826ddd03787682122bcd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/penta_large.c1bfc45cd3e036d837c691ffea47a564a61dedaa.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_flip", + "defindex": 4370, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_flip_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/flip.91eff3677b212d87bf4f74c9aef5cf457a34e6f4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/flip_large.f2a5e24240687a9066f59bdb617ada356a4e07d6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_imt", + "defindex": 4371, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_imt_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/imt", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/imt.92b40da5cc81e3fbf66189f8ae31f461cc5e866d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/imt_large.8690707cce10e8a9220d856ab1b4a3781f369023.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_vega", + "defindex": 4372, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_vega_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/vega", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vega.a3e31cd66fc75fca55985291c9c7ab55bed9d026.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vega_large.5e1c86d33a170edc23763d504b9816fa7425e901.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_pgl", + "defindex": 4373, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_pgl_sticker", + "item_description": "#EventItemDesc_krakow2017_sticker_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/pgl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/pgl.f3455f141f89d0e3d682e78c3f964c36e31cb7a4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/pgl_large.ac4ea580e67e1eeb05f35bec66a7c3c66d37d606.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_astr", + "defindex": 4374, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_astr_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/astr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/astr_graffiti.ad3e31fe42cbac009eab60680770f09a2bf5bb88.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/astr_graffiti_large.80350007a4b0e938f349721bf520136011d41762.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_vp", + "defindex": 4375, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_vp_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/vp_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vp_graffiti.34778f27130ec2a9ff10f373f49aed46a9ff50c4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vp_graffiti_large.ddfce6a38e20c480ca012589b7479473c00c21ac.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_fntc", + "defindex": 4376, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_fntc_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/fntc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/fntc_graffiti.42d99a5de03b0c462a09579876247d6f379a3009.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/fntc_graffiti_large.0ede0c168a27411a2523a15b65dc7dc459ca7aa1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_sk", + "defindex": 4377, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_sk_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/sk_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/sk_graffiti.f32c1fb8ef605db0d69902f9bd4e1bf2c08931f2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/sk_graffiti_large.332c4d376b9c55204000d2a5428121d434aaf35a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_navi", + "defindex": 4378, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_navi_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/navi_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/navi_graffiti.24ca29c06b65b7c136ae6e608a3ad8f9931c23a3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/navi_graffiti_large.308f927e4033128b02300de8e36f2bf327871589.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_gamb", + "defindex": 4379, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_gamb_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/gamb_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/gamb_graffiti.3771520aff5ba203ecb549c717c0b4e2d971dc9f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/gamb_graffiti_large.b74017bc7c5aa54c62733d6aee248860edb5e817.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_nor", + "defindex": 4380, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_nor_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/nor_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/nor_graffiti.f59dcf4a3a02b6c8859964630270f101b40c2699.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/nor_graffiti_large.51a90c1ed785382e4a408d48402f32149668da5f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_faze", + "defindex": 4381, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_faze_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/faze_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/faze_graffiti.2bb9da7513bff7b3674149e9782bc6fbdd64b2ad.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/faze_graffiti_large.ac4f474c4a9a3511acdb9ec03747613a9d240eec.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_mss", + "defindex": 4382, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_mss_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/mss_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/mss_graffiti.8c7ff03e6f17a083fa98059e80dd881537206452.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/mss_graffiti_large.1ca8fd5cf47beae672e50a8fb0316f019bd0f109.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_g2", + "defindex": 4383, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_g2_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/g2_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/g2_graffiti.0db813bb8c27a500d1b77560b7623bb009fd1627.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/g2_graffiti_large.6f1e9a9f5eab2bdf6f3a9f8e849c8f4ce01dd507.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_big", + "defindex": 4384, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_big_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/big_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/big_graffiti.d46b0a3217530eee9652f499a3a83aca155b2f62.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/big_graffiti_large.e1f5048789c6864d9ec1d3df877622da421c24c9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_c9", + "defindex": 4385, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_c9_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/c9_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/c9_graffiti.594bb96d4ba06c0c92c6e825a2d01333d5274102.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/c9_graffiti_large.aae03b4e2aa2f316102bf108e76a009f37740d04.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_penta", + "defindex": 4386, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_penta_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/penta_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/penta_graffiti.457bbfbfe1870e7fb8e4d3d3f2415d6ad02f0477.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/penta_graffiti_large.a6db3d94c8527a3fb606e4ca446794ae5d07ddb8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_flip", + "defindex": 4387, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_flip_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/flip_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/flip_graffiti.06175326630633de1d7035e720ca45270691ca3e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/flip_graffiti_large.d555e2e99c231372fd3add480b79d6cea4459bb2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_imt", + "defindex": 4388, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_imt_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/imt_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/imt_graffiti.b3b3e5ab3e2065bb12159b52935a256f1648fd5f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/imt_graffiti_large.20754472c90ac4bcb1ed04fe5c390eb3ea72f04f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_vega", + "defindex": 4389, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_vega_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/vega_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vega_graffiti.d6b182c4fc178e973ce6f73a956b25add9668abb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/vega_graffiti_large.d89cc07d0823434c0b4b180239e437e7016cd587.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_graffiti_pack_krakow2017_pgl", + "defindex": 4390, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_krakow2017_team_pgl_graffiti", + "item_description": "#EventItemDesc_krakow2017_graffiti_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/krakow2017/pgl_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/pgl_graffiti.087df4702c9ff127761fd6ec84f49ab7a9bddacc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/krakow2017/pgl_graffiti_large.e0268e53af491b4f1fa5ab059feaf9c05e10f14c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_legends", + "defindex": 4391, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_krakow2017_legends", + "item_description": "#CSGO_crate_sticker_pack_krakow2017_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_krakow2017_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_krakow2017_01.d34bb806f9d310176f53b6be1d16ea1e8f6c479c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 209 + } + ] + + }, + { + "name": "crate_sticker_pack_krakow2017_challengers", + "defindex": 4392, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_krakow2017_challengers", + "item_description": "#CSGO_crate_sticker_pack_krakow2017_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_krakow2017_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_krakow2017_02.a5145e5c333ca9b735d8a0705b13a7bce1639338.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 210 + } + ] + + }, + { + "name": "crate_signature_pack_krakow2017_group_1", + "defindex": 4393, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_krakow2017_group_1", + "item_description": "#CSGO_crate_signature_pack_krakow2017_group_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_krakow2017_group_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_krakow2017_group_1.cda4d9140412eff2a01339e500373dba54eb3e99.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 211 + } + ] + + }, + { + "name": "crate_signature_pack_krakow2017_group_2", + "defindex": 4394, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_krakow2017_group_2", + "item_description": "#CSGO_crate_signature_pack_krakow2017_group_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_krakow2017_group_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_krakow2017_group_2.ed07ffcf72927ffbf05b5cb72c9f4eedddf17c6d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 212 + } + ] + + }, + { + "name": "crate_krakow2017_bundle_of_all", + "defindex": 4395, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_bundle_of_all", + "item_description": "#CSGO_crate_krakow2017_bundle_of_all_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/krakow2017_bundleofall", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/krakow2017_bundleofall.cc38b44d2b567bd41c2e402683d6ca0ed6967b03.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_krakow2017_promo_de_inferno", + "defindex": 4396, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_krakow2017_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_inferno.740191615458fa81ee37a4f374220e5dd3ad91ea.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 213 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_krakow2017_promo_de_mirage", + "defindex": 4397, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_krakow2017_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 214 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_krakow2017_promo_de_cbble", + "defindex": 4398, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_krakow2017_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 215 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_krakow2017_promo_de_overpass", + "defindex": 4399, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_krakow2017_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 216 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_krakow2017_promo_de_cache", + "defindex": 4400, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_krakow2017_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 217 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_krakow2017_promo_de_train", + "defindex": 4401, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_krakow2017_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 218 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_krakow2017_promo_de_nuke", + "defindex": 4402, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_krakow2017_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_krakow2017_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 219 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 12 + } + ] + + }, + { + "name": "crate_community_18", + "defindex": 4403, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_18", + "item_description": "#CSGO_crate_community_18_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_18", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_18", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 220 + } + ] + + }, + { + "name": "crate_sticker_pack_illuminate_capsule_01", + "defindex": 4404, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_illuminate_capsule_01", + "item_description": "#CSGO_crate_sticker_pack_illuminate_capsule_01_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_illuminate_capsule_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_01.1af7f10fbceb78f80a1c37ce33500384d907eb6d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_01_large.3851b294710c4ebf9eef2f163d61b314ba53762d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 221 + } + ] + + }, + { + "name": "crate_sticker_pack_illuminate_capsule_02", + "defindex": 4405, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_illuminate_capsule_02", + "item_description": "#CSGO_crate_sticker_pack_illuminate_capsule_02_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_illuminate_capsule_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_02.beee2148bc8779aa434211f31d1fb1bfd609699f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_02_large.9c8c5dcaddf29f023473a9fc2d31da18f1a4950e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 222 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_gamb", + "defindex": 4406, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_gamb_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/gamb.e6cc2e037641b00b0922516acb00adf695768302.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/gamb_large.a659b81d52247bf8631687d4e33e11a147496310.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_thv", + "defindex": 4407, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_thv_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/thv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/thv.03d73682905ef165f9a1c8c8877223369377e6a9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/thv_large.d8c14c475396dea5fd4b165dfff7555c56e2db7a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_astr", + "defindex": 4408, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_astr_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/astr.0c37306a9fff015b8de4337d3ae76a7e52a99ab5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/astr_large.c3c969f2780133becf8fee972ea68520a87487e8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_vp", + "defindex": 4409, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_vp_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vp.0cee468317c3943bd2130f9d47815f6ceb360d15.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vp_large.057abae73d4ce728343bb867668eb408e1e9c221.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_fntc", + "defindex": 4410, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_fntc_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/fntc.37cb3966a405519d0942a9797b4ea7fb3b098b34.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/fntc_large.1c4138ecac792e58ae232fb47554fecf925a3bdb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_sk", + "defindex": 4411, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_sk_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/sk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/sk.c59250e1cc05496613d9252b6435ec2c26e7c99a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/sk_large.1ea101483180128af33a77eb9a8ff9b7ee046a92.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_big", + "defindex": 4412, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_big_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/big", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/big.b8dfde586ed410b689039646463b410bbb4fdf8c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/big_large.c3c2167c50d1cc5b553dc959aa9c68e4f5f4bfce.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_nor", + "defindex": 4413, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_nor_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/nor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nor.87a1eb4e0c79ec10be398d6332d7cea7c0767cf8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nor_large.d4ca861b1f12d525f4dafa0c06149ab202497ba5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_g2", + "defindex": 4414, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_g2_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/g2.47290cbcd0c7fb6374ae8178a678a02209631fc8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/g2_large.0a2d28a7c2724d7b28c2539b28ebc3e24a856725.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_c9", + "defindex": 4415, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_c9_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/c9.ecf30fff112d0ccfa504650150d6a5c8efb7028c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/c9_large.2c7d8bab407598cac26a102ef27bbfdd7a4fc703.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_flip", + "defindex": 4416, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_flip_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/flip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flip.7f6aecd0615eebe4af52884d9e1a91d02d64f520.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flip_large.bfc45ed35a60123084af18c4d2b6a55637d54dcb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_navi", + "defindex": 4417, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_navi_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/navi.e636fe3ae951e5ec13cfb1db45c7077ad16a10ec.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/navi_large.21c4674a5b2fa9bf6f5eb8620042bb1d2dff175c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_mss", + "defindex": 4418, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_mss_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mss.771d3c6fe3fa678ce2c0ad6c076651ad16874ad0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mss_large.a4317d8dfec89b1cf3f1185c989fc6867f39f5a8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_spr", + "defindex": 4419, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_spr_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/spr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spr.ef99284117007b3f22f78757a768e85d760b9300.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spr_large.acbc205f7c746c67338ff512631ddd042ebfea21.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_faze", + "defindex": 4420, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_faze_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/faze.0fec6bdccd7e138561607d4cf06d95d4ebbbca61.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/faze_large.447ff91da6b9c8632b71ff94d50750a8bea78c84.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_vega", + "defindex": 4421, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_vega_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/vega", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vega.630af9992adfcd3a2c59863f3d2e350d1ffdf0e6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vega_large.74d1bbfcaad7b1ed8aaed77ddbdb1565d112f02e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_spc", + "defindex": 4422, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_spc_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/spc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spc.dffba243d1ec294eb64b17f2f5be16b06f17b192.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spc_large.b0ba6a4a3aa730a4414841da7e4241bcd5e8d5a9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_liq", + "defindex": 4423, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_liq_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/liq.66d43ab8eb05def5d2306e9916e614bfe4358f2c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/liq_large.8fb4c9b938a2e4045e42b5bdbeb148a9112af3e3.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_avg", + "defindex": 4424, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_avg_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/avg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/avg.8012aaa2b0cf77a8d34935c7f910fd18b67e6a77.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/avg_large.adec81e0f52004f5aa0bc55a8d0fcf375f3f5a1c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_ren", + "defindex": 4425, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_ren_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/ren", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/ren.0eeff6d6ed16e82911ab1309f9a33e8ddc36c0d1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/ren_large.97609053b588a1371632ac2f00002b81db0518f7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_nv", + "defindex": 4426, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_nv_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/nv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nv.2f277435864f19beca97d2592f5b1182864a1f42.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nv_large.0c75c71dfd1775a96342f506cb5f6fe7dcc2284c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_mfg", + "defindex": 4427, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_mfg_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/mfg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mfg.a67a238c3b021c411530cac892da7d37303883e7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mfg_large.a474ea0fd6b3d9e18e8a42e37f0fb83270a1353d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_qb", + "defindex": 4428, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_qb_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/qb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/qb.fe050e1c8b0a5aaf013af03b30bf8fd1538428a1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/qb_large.b2fec59a4f0673f6b1dcb5aea26cd6941148ef1f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_tyl", + "defindex": 4429, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_tyl_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/tyl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/tyl.ce4f8e7e7b94cbca8be95a0879e1783c4bd0e33f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/tyl_large.db01a5b661d760143eb791f31e42d122cc183c3f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_eleague", + "defindex": 4430, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_eleague_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/eleague", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/eleague.8206b52a5e552217a9b25badb02c21f51fc9edaa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/eleague_large.d4d7ad5b5e11477db5281ab1d639c36f92061111.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_gamb", + "defindex": 4431, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_gamb_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/gamb_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/gamb_graffiti.d939ea756b1ceb16c8e7b1f66024ceb57d63bc45.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/gamb_graffiti_large.228d6e7ccfab3b1786de22a550b31006a16833c6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_thv", + "defindex": 4432, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_thv_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/thv_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/thv_graffiti.6e3b92bc3c816eca61114ebc08c968f0ee3b5ffe.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/thv_graffiti_large.4d18f1a75b5d9697aae5ee6811a777f96ce38f3a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_astr", + "defindex": 4433, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_astr_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/astr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/astr_graffiti.8914c24274556425b282d54c633b363f05fcf0ef.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/astr_graffiti_large.2723dcfd939e5de25f8e1eab863b9821b01aff86.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_vp", + "defindex": 4434, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_vp_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/vp_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vp_graffiti.071efa877bac4caed26304062ebd92276f337504.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vp_graffiti_large.a8bfd0f78f523b85e567e071af1360327f3d6b8d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_fntc", + "defindex": 4435, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_fntc_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/fntc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/fntc_graffiti.54861b147cdddf70458da127d8b0b873411197e1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/fntc_graffiti_large.e259e9bde65bb09d18e48f7d1f9e823d589c707f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_sk", + "defindex": 4436, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_sk_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/sk_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/sk_graffiti.7dc73c7903a1b73f955ca0aa3ea6471caeeda11a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/sk_graffiti_large.2c15f0fd2ccf51f6c6e8355e9ef9e3c85ed58bcc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_big", + "defindex": 4437, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_big_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/big_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/big_graffiti.b4cfaeddcff22c24af7343876005665817a9bc4b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/big_graffiti_large.6103795b658017117b43d2a46a79661f98d30584.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_nor", + "defindex": 4438, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_nor_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/nor_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nor_graffiti.e7c474b6ed3affa65c2d17f52183d59f92826756.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nor_graffiti_large.d662f7dbecd1c0c20e0c5cb11bf595ef5c8d39c5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_g2", + "defindex": 4439, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_g2_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/g2_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/g2_graffiti.52fd3421edcc5bf627aecbbb633b411108f53957.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/g2_graffiti_large.9681f856cc18240381b422cd7604887869fdfce7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_c9", + "defindex": 4440, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_c9_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/c9_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/c9_graffiti.a811e6bb01850d712975769783ff1c41ad783696.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/c9_graffiti_large.b4b96b3344365da01d395a3fc138c57e7b9634de.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_flip", + "defindex": 4441, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_flip_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/flip_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flip_graffiti.f06a806f8f1d7937ed721f71994ea455b3714ab7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flip_graffiti_large.5e9458c9d67b4abe02dc5c0f6fafa1e92b105ea2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_navi", + "defindex": 4442, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_navi_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/navi_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/navi_graffiti.4b1a8c8beba25b0eb5072ea1b02fa6e8d8cbb6db.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/navi_graffiti_large.89abad2546621cd2e5db6331e49892e09d66d8cf.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_mss", + "defindex": 4443, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_mss_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/mss_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mss_graffiti.0bf9d154b11eaa4b2efd16f9090e9a1bf643cda3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mss_graffiti_large.d5452457addd98610d4fcd751ca8236ffc901cdf.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_spr", + "defindex": 4444, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_spr_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/spr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spr_graffiti.ac00883c142abd94bf34566f7ff1e1ef9dbe6fe4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spr_graffiti_large.d7b02350341cdb2db405527a7e90813cd390cc6b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_faze", + "defindex": 4445, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_faze_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/faze_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/faze_graffiti.72777ed5b68d563bb31adad02d8508180ddebd03.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/faze_graffiti_large.8d5ca7617e82b2f3791e6cabc107ea3fa52574ee.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_vega", + "defindex": 4446, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_vega_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/vega_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vega_graffiti.b49ee03f470b1d809f3c1f519c3bdf0d1ecfce62.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/vega_graffiti_large.625de93a8509e227d839a67fd77b793badcebcb5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_spc", + "defindex": 4447, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_spc_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/spc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spc_graffiti.d2696fb108db1796a42c8034906392c220183e5d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/spc_graffiti_large.fb778c4deecd9a9db3fe93c5d2697fa6ce057628.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_liq", + "defindex": 4448, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_liq_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/liq_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/liq_graffiti.6286391f36e9ca7f6bbc7e84899471818d3f83f5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/liq_graffiti_large.a5f69fecb51d546b70ac0dca88e96c5d30da788a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_avg", + "defindex": 4449, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_avg_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/avg_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/avg_graffiti.776f3f94e97840d87e57e860d569dbb77e4551e6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/avg_graffiti_large.9df8b0b9fbbd6fc7424d18da8f5279ec58aea9d1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_ren", + "defindex": 4450, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_ren_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/ren_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/ren_graffiti.be6f35a95563a43407f61e823cb705100515887a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/ren_graffiti_large.cc8468d5a045dc5518bff644fb616cf4578a5446.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_nv", + "defindex": 4451, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_nv_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/nv_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nv_graffiti.c931afa925b7426823c2fd33da5efd4794d3b8d0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/nv_graffiti_large.7936c21d96f77a756bd38c935a2246205dbbd805.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_mfg", + "defindex": 4452, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_mfg_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/mfg_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mfg_graffiti.5f4c298066997f68e0878938ad01e4a278b543a8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/mfg_graffiti_large.74be47c2f07cec2feeb1c37e042c41514a457194.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_qb", + "defindex": 4453, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_qb_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/qb_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/qb_graffiti.edfbef2d5161e2f9d6e0ccfd56b0cf373391a243.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/qb_graffiti_large.77ad36ec845291aac2edd99bf4bc4cc7c14c2993.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_tyl", + "defindex": 4454, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_tyl_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/tyl_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/tyl_graffiti.999bcbc3c41ccf608ba80d99174dc376dbac0cbc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/tyl_graffiti_large.bfae0c8fdf315ac1792ae198fe46923dd0afa853.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_eleague", + "defindex": 4455, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_eleague_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/eleague_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/eleague_graffiti.3d88174d483494daa8dd19654ea4492ebf2f84f2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/eleague_graffiti_large.2e1c6e933cf1eb2d7894a1ba286d0ee0b97f776a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_legends", + "defindex": 4456, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_boston2018_legends", + "item_description": "#CSGO_crate_sticker_pack_boston2018_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_legends.2ffa8c551ee85627d3d4dfbff65a00d0d65e0813.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 224 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_challengers", + "defindex": 4457, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_boston2018_challengers", + "item_description": "#CSGO_crate_sticker_pack_boston2018_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_challengers.f3dbdf71c9a09c7c219f0f503437151dde1d75d5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 225 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_contenders", + "defindex": 4458, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_boston2018_contenders", + "item_description": "#CSGO_crate_sticker_pack_boston2018_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_contenders.f131562450932d78b4510f2caa024938941a2fc4.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 226 + } + ] + + }, + { + "name": "crate_signature_pack_boston2018_group_legends", + "defindex": 4459, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_boston2018_group_legends", + "item_description": "#CSGO_crate_signature_pack_boston2018_group_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_group_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_group_legends.513fe6c5136df2435d18c7a4756c7979c4328727.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 227 + } + ] + + }, + { + "name": "crate_signature_pack_boston2018_group_challengers", + "defindex": 4460, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_boston2018_group_challengers", + "item_description": "#CSGO_crate_signature_pack_boston2018_group_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_group_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_group_challengers.0e7dd79057e8b55259715dae0704c5c9c7f5d875.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 228 + } + ] + + }, + { + "name": "crate_signature_pack_boston2018_group_contenders", + "defindex": 4461, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_boston2018_group_contenders", + "item_description": "#CSGO_crate_signature_pack_boston2018_group_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_group_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_group_contenders.1eff64c5a1edfc30d6dad13d440c1073d6280f2f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 229 + } + ] + + }, + { + "name": "crate_boston2018_bundle_of_all", + "defindex": 4462, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_bundle_of_all", + "item_description": "#CSGO_crate_boston2018_bundle_of_all_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/boston2018_bundleofall", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/boston2018_bundleofall.cc5a31363d3d70735c12478fcf4f05b03c452854.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_boston2018_promo_de_inferno", + "defindex": 4463, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_boston2018_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_inferno.ebe33e799b076d3842b02bdddc98b783ea0f5ce4.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 230 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_boston2018_promo_de_mirage", + "defindex": 4464, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_boston2018_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 231 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_boston2018_promo_de_cbble", + "defindex": 4465, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_promo_de_cbble", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_boston2018_promo_de_cbble", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 232 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_boston2018_promo_de_overpass", + "defindex": 4466, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_boston2018_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 233 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_boston2018_promo_de_cache", + "defindex": 4467, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_boston2018_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 234 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_boston2018_promo_de_train", + "defindex": 4468, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_boston2018_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 235 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_boston2018_promo_de_nuke", + "defindex": 4469, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_boston2018_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 236 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_comm2018_01_capsule", + "defindex": 4470, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_comm2018_01_capsule", + "item_description": "#CSGO_crate_sticker_pack_comm2018_01_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_comm2018_01_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_comm2018_01_capsule.e606d5907375ab074e963cb4eb516af6faa62ac9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_comm2018_01_capsule_large.caf02818fe407928e3ec173476ed34dda1e600bb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 237 + } + ] + + }, + { + "name": "crate_community_19", + "defindex": 4471, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_19", + "item_description": "#CSGO_crate_community_19_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_19", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_19", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 238 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_flg", + "defindex": 4472, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_flg_sticker", + "item_description": "#EventItemDesc_boston2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/flg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flg.1dc34ae57566f1fa5928cf6bd54dd3213d5a13f7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flg_large.390d1abd733511bd7d12eea45e7f2c4da2293020.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_graffiti_pack_boston2018_flg", + "defindex": 4473, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_boston2018_team_flg_graffiti", + "item_description": "#EventItemDesc_boston2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/boston2018/flg_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flg_graffiti.41979b2e0c95ec8a1743f1fec1d7b714dc3c91db.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/boston2018/flg_graffiti_large.0f799ba37e7a875b318dff5130309f2cbfd225d7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_contenders_flg", + "defindex": 4474, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_boston2018_contenders_flg", + "item_description": "#CSGO_crate_sticker_pack_boston2018_contenders_flg_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_contenders_flg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_contenders_flg.bd143afdab76e2390f52296d910e38a0fec9a46e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 239 + } + ] + + }, + { + "name": "crate_signature_pack_boston2018_group_contenders_flg", + "defindex": 4475, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_boston2018_group_contenders_flg", + "item_description": "#CSGO_crate_signature_pack_boston2018_group_contenders_flg_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_group_contenders_flg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_group_contenders_flg.72014e2265074dddfeb02c77cf631149ed819fff.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 240 + } + ] + + }, + { + "name": "crate_boston2018_bundle_of_all_flg", + "defindex": 4476, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_bundle_of_all", + "item_description": "#CSGO_crate_boston2018_bundle_of_all_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/boston2018_bundleofall", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/boston2018_bundleofall.cc5a31363d3d70735c12478fcf4f05b03c452854.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_sticker_pack_chicken_capsule", + "defindex": 4477, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_chicken_capsule", + "item_description": "#CSGO_crate_sticker_pack_chicken_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_chicken_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_chicken_capsule.60dd98fcd25d46584667f532e0fb9f88fb55a116.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 276 + } + ] + + }, + { + "name": "crate_sticker_pack_boston2018_legends_ntv", + "defindex": 4478, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_boston2018_legends_ntv", + "item_description": "#CSGO_crate_sticker_pack_boston2018_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_legends_ntv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_legends_ntv.f6849e658f14aa28d99f37b9d4a722647ba6a33b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 241 + } + ] + + }, + { + "name": "crate_signature_pack_boston2018_group_legends_ntv", + "defindex": 4479, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_boston2018_group_legends_ntv", + "item_description": "#CSGO_crate_signature_pack_boston2018_group_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_boston2018_group_legends_ntv", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_boston2018_group_legends_ntv.05488be734f895c6217b670a5f61c7b199ee0633.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 242 + } + ] + + }, + { + "name": "crate_boston2018_bundle_of_all_ntv", + "defindex": 4480, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_boston2018_bundle_of_all", + "item_description": "#CSGO_crate_boston2018_bundle_of_all_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/boston2018_bundleofall", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/boston2018_bundleofall.cc5a31363d3d70735c12478fcf4f05b03c452854.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 13 + } + ] + + }, + { + "name": "crate_pins_series_3", + "defindex": 4481, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_pins_series_3", + "item_description": "#CSGO_crate_pins_series_3_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_pins_series_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_pins_series_3.2c42778f1c923b58c5c96012846fbeca39a29625.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 243 + } + ] + + }, + { + "name": "crate_community_20", + "defindex": 4482, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_20", + "item_description": "#CSGO_crate_community_20_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_20", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_20", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 244 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_c9", + "defindex": 4483, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_c9_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/c9.59c21c5689d86ccf6d1a1efad9e4cebaf8506c68.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/c9_large.047242804d609bfa60a81b64f19e66fae9d6b1fc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_faze", + "defindex": 4484, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_faze_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faze.4fcdb7062ce1d556204c89058ff45adbf8973caa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faze_large.8eaa40a20e53898ad86fd18dc3305cf75e38edad.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_navi", + "defindex": 4485, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_navi_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/navi.5904e7ed4b470a5f995a26d4de351c97409a9ad3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/navi_large.6be7c8ec28e14cc9a1ba973ba7f7b7462577dc68.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_mibr", + "defindex": 4486, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_mibr_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/mibr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mibr.d350223d535281a80f6215a050c3a86408b39748.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mibr_large.a454db45176aaf4da03c41f8da78a78c2b618ec4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_mss", + "defindex": 4487, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_mss_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mss.14e6beed46cbdfe8bb30af1617f347b48bf268a4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mss_large.ac2d2c6e2d7c064c765e5ac2eb527350af7ab11f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_wins", + "defindex": 4488, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_wins_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/wins", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/wins.2d4f62e4f8ac67d81df2a859c7adb2a1f6c2e4fa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/wins_large.ea5ae61fd1f9ea7cbf5b54d57840bc66b799d8bc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_g2", + "defindex": 4489, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_g2_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/g2.5e5210368d1539650445aed3631ef8d96e5c85d6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/g2_large.0ba8988ebe4facfc3b5b192403e35ad3a692d066.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_fntc", + "defindex": 4490, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_fntc_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/fntc.ab1243342cbfd64eb1131029e9bf1e94b05c6679.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/fntc_large.90d7a85a025784e555f8419a309e8e1c473cd75a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_gamb", + "defindex": 4491, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_gamb_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/gamb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/gamb.8c40016c67fe6a90b7b0f785eec53e071d3a6214.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/gamb_large.75e7ce1ece43c68068470611deee1191ed858e4f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_vega", + "defindex": 4492, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_vega_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/vega", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vega.3d7ca620b617feb19f683b52fc36d7320d9d8e39.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vega_large.86ca12b9d1e4d5e89ba550c18b4b225390111cb0.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_spc", + "defindex": 4493, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_spc_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/spc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spc.ec83add261c5ca26180583f3f02f86eb7c0fdbfe.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spc_large.134509ed99500fcc082f36fd512e3cec9f9a0ec2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_big", + "defindex": 4494, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_big_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/big", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/big.3b73c4bd3f8822850bd9e3489649a587a05b0a92.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/big_large.bbcc04ff02f43b7bf9e35879c3bab81254db49d8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_astr", + "defindex": 4495, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_astr_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/astr.e64f62bcbf8ecc1ac3f38e7a26ca109ea42f8667.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/astr_large.ab7e7dae4e2aabcc45fd524dcb2bd863d106dcaa.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_liq", + "defindex": 4496, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_liq_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/liq.c3cbebfb3dda9701eb8d3e27646933b17a677db2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/liq_large.a32def5434de9750308dcd999ac104f5769b3f0f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_nor", + "defindex": 4497, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_nor_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/nor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nor.d847931e868cf320325fedf91e7644aa670a85f8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nor_large.2ff72f8f84202a5471891a77bf0165e9bcd2a746.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_vp", + "defindex": 4498, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_vp_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/vp", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vp.f6efb809fea73aa7230733ba08ab37f7746a41bb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vp_large.33f299eb80a9aa36af75b40a1866338009be50a0.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_nip", + "defindex": 4499, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_nip_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nip.e861ede3724ef4fc5d1a1d4984c2e3fd0b5adf68.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nip_large.68a93680d5f9886f18a255248ecb643c3c39e8d2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_col", + "defindex": 4500, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_col_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/col", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/col.ef066d357145c8a7a580a801dc889ab1e134d679.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/col_large.ac38947f0bbb6359f11398808475d7b5e79c6a3a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_hlr", + "defindex": 4501, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_hlr_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/hlr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/hlr.e9cb949d9af32e65ab553f640bb66fc9e4f12b61.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/hlr_large.8c25d3986a2357921a8e14472dc8cde836eb3283.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_ren", + "defindex": 4502, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_ren_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/ren", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/ren.057dae9a833fac8d0af58d2f79bef1c73986e99b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/ren_large.0f07d7caa2b9cfeda91d016797c7dcb0267a6ae1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_optc", + "defindex": 4503, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_optc_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/optc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/optc.37e1d39e9799315ce1b1525d9374e6415cb344e7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/optc_large.d3de7c1235447c9963aef6040ac78548a0132f23.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_rog", + "defindex": 4504, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_rog_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/rog", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/rog.f2fd5638963e45c9152db10cad2b4c241cfb1408.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/rog_large.5ca7a20a0d2adf18458b00494e5926303c970def.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_spir", + "defindex": 4505, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_spir_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/spir", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spir.d3b73646be3b384e78347b561657d9ace19fb116.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spir_large.c82fd1e2482448d319369adf860bca5e2ab8e160.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_tyl", + "defindex": 4506, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_tyl_sticker", + "item_description": "#EventItemDesc_london2018_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/tyl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/tyl.473952c40dc91c40b51c8b7a71fa4f84a22081c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/tyl_large.5bfd48b52082e290d36364085b3a924434033d34.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_faceit", + "defindex": 4507, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_faceit_sticker", + "item_description": "#EventItemDesc_london2018_sticker_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/faceit", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faceit.0635831eb749266ef493eb1df132e0b1d312400a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faceit_large.d4cb89fe985e13aee4fb0591dcf2886048338d24.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_c9", + "defindex": 4508, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_c9_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/c9_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/c9_graffiti.1e40c2f2ce87170856bda0aa42511551fb6fe938.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/c9_graffiti_large.f131eaf33ceeb6ccc3e81dc50a83995214c3cb55.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_faze", + "defindex": 4509, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_faze_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/faze_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faze_graffiti.70b2f07be46272c4e17f6df7fab284045f89ce87.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faze_graffiti_large.6f29621751ea4fb441574002dbe0c067c7762784.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_navi", + "defindex": 4510, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_navi_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/navi_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/navi_graffiti.2d83a825a265cca6d9ce0732279a49dd4e8d27c5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/navi_graffiti_large.5712cc697619acf2ccb8c3f5151f5d647992a253.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_mibr", + "defindex": 4511, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_mibr_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/mibr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mibr_graffiti.b845682d0d5dfd2d4e11e97cd40e2874cd944fd1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mibr_graffiti_large.1b4212edd1269a7f0e7582f4c541101343e7735a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_mss", + "defindex": 4512, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_mss_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/mss_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mss_graffiti.217dd62776ad283c361140c1f988b9cdbfee829b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/mss_graffiti_large.e6dddb1fa46e21e1440ce2e759fa17bd2216b20c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_wins", + "defindex": 4513, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_wins_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/wins_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/wins_graffiti.68cf763b3f21dba93a7f3a8c78703ae78b586370.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/wins_graffiti_large.a976c592100acbb69bbe163c88aeda0262395a64.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_g2", + "defindex": 4514, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_g2_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/g2_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/g2_graffiti.4d477dab9f1777b3273e6b9212a88aa5a857c4ba.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/g2_graffiti_large.f5f2c5f9c5d411b30a164e9f4a55f524ac236009.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_fntc", + "defindex": 4515, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_fntc_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/fntc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/fntc_graffiti.eb3d83c69b12bc38b2b7629ee4fac3b919c051a3.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/fntc_graffiti_large.d21f4ae2929160c633dd44955ca3fffb1edd41ea.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_gamb", + "defindex": 4516, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_gamb_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/gamb_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/gamb_graffiti.5c967f9f25766d4faec6980684dd50c1afb41cf0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/gamb_graffiti_large.a20a60be1bcbb33590e02d324053c3de44f12f16.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_vega", + "defindex": 4517, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_vega_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/vega_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vega_graffiti.294051e8483152fa074c4ad7f1121f16ef20a9b0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vega_graffiti_large.fd3101e686f7ad24b89243e299a3409611817431.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_spc", + "defindex": 4518, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_spc_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/spc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spc_graffiti.c6af33ddb2d4e8bde124941aeac782017bd34a23.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spc_graffiti_large.1660a2bf08d846decdad94be572b5a355b7481d1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_big", + "defindex": 4519, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_big_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/big_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/big_graffiti.cf8407d8d98b1f18786aedb924741f09830e9ac8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/big_graffiti_large.4674c5db4ebb1bd2771cf223738f72958fc84ab2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_astr", + "defindex": 4520, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_astr_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/astr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/astr_graffiti.f3cf0751702e8d8c072a3e8c562af6e0358198e1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/astr_graffiti_large.171d6a438ca8e50f41e95b7f08aae62d4dcf22ba.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_liq", + "defindex": 4521, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_liq_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/liq_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/liq_graffiti.39cde05a0b4e616b1dd84ba70d543e014f944757.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/liq_graffiti_large.ea28a810c0e1acc280449295e9aac418725efa8c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_nor", + "defindex": 4522, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_nor_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/nor_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nor_graffiti.7e28242306a5114212742689048d14d22a3b5aef.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nor_graffiti_large.914093abc5cf5f1540621d074aaf706d56a58cf0.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_vp", + "defindex": 4523, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_vp_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/vp_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vp_graffiti.938b1438fb61239bb824ece35ff5e32dafb2fc32.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/vp_graffiti_large.016ef751276a5b0ab367faec96969b6eea5ec573.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_nip", + "defindex": 4524, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_nip_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/nip_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nip_graffiti.41d09f90775a971ef79c90266786e92dd7cb1d0c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/nip_graffiti_large.1a35e6387f9b9e274809b66dd588700a02a8d8b7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_col", + "defindex": 4525, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_col_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/col_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/col_graffiti.e9b8ffe324e9d2c1c9f37c7c8861349ba99bad4c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/col_graffiti_large.3ea36d25fad1390e3f5a515ee2056c51b5d60ddc.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_hlr", + "defindex": 4526, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_hlr_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/hlr_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/hlr_graffiti.5b0839963ea70bc28f8d411cb465febe80518908.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/hlr_graffiti_large.94d827b7ece85be2794fccf632669b9afe831eb8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_ren", + "defindex": 4527, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_ren_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/ren_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/ren_graffiti.bd555b0989e001445133fc71c5ea91ed699b8871.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/ren_graffiti_large.87b075ff07a05f8a6746fc8295994cf0f9577d51.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_optc", + "defindex": 4528, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_optc_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/optc_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/optc_graffiti.d3754dfb4a7d306580d1beafa2663dc817a570f6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/optc_graffiti_large.3b987988f1de01ff6b568d49c09ee9cfa9362eae.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_rog", + "defindex": 4529, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_rog_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/rog_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/rog_graffiti.7812873b78379aaa33ce18d28ba178b97059a576.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/rog_graffiti_large.43fb509f01f8792aac5033503d261c0ba429ee29.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_spir", + "defindex": 4530, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_spir_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/spir_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spir_graffiti.5a3396c3682cca62a9a70b8165ac10aff17c1efa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/spir_graffiti_large.f6c50512106ebb78efaf9d4e5818e76c489ccc40.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_tyl", + "defindex": 4531, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_tyl_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/tyl_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/tyl_graffiti.c3b08747ce7e08a9d0bba177990fefd183260501.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/tyl_graffiti_large.2f77fcaf9d2ebda61fa409e4ed25d9e406a676be.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_graffiti_pack_london2018_faceit", + "defindex": 4532, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_london2018_team_faceit_graffiti", + "item_description": "#EventItemDesc_london2018_graffiti_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/london2018/faceit_graffiti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faceit_graffiti.5755e0d99fba7fffdeb7972f4b814a6659db6ec5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/london2018/faceit_graffiti_large.4732c064f1e51021fc746da243783835baed7416.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_legends", + "defindex": 4533, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_london2018_legends", + "item_description": "#CSGO_crate_sticker_pack_london2018_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_london2018_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_london2018_legends.9e8e2157844b3e42b411ce0d0072aedf07f7baf9.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 245 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_challengers", + "defindex": 4534, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_london2018_challengers", + "item_description": "#CSGO_crate_sticker_pack_london2018_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_london2018_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_london2018_challengers.5339600902219c7ef0a9fe572e1649b8c274bf8b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 246 + } + ] + + }, + { + "name": "crate_sticker_pack_london2018_contenders", + "defindex": 4535, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_london2018_contenders", + "item_description": "#CSGO_crate_sticker_pack_london2018_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_london2018_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_london2018_contenders.8e388b01c611c901539e1e93899ce9dead590c8d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 247 + } + ] + + }, + { + "name": "crate_signature_pack_london2018_group_legends", + "defindex": 4536, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_london2018_group_legends", + "item_description": "#CSGO_crate_signature_pack_london2018_group_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_london2018_group_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_london2018_group_legends.b889974dcc0e7f6c0a8923fcf6c7b714ee86a365.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 248 + } + ] + + }, + { + "name": "crate_signature_pack_london2018_group_challengers", + "defindex": 4537, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_london2018_group_challengers", + "item_description": "#CSGO_crate_signature_pack_london2018_group_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_london2018_group_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_london2018_group_challengers.eb7250f35ba7f06ac248a4e2c92fca67f4d6095c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 249 + } + ] + + }, + { + "name": "crate_signature_pack_london2018_group_contenders", + "defindex": 4538, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_london2018_group_contenders", + "item_description": "#CSGO_crate_signature_pack_london2018_group_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_london2018_group_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_london2018_group_contenders.bd2bedb9889fca46e2077635934412c719d2763c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 250 + } + ] + + }, + { + "name": "crate_london2018_bundle_of_all", + "defindex": 4539, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_bundle_of_all", + "item_description": "#CSGO_crate_london2018_bundle_of_all_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/london2018_bundleofall", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/london2018_bundleofall.cd4169fe1e53c31d6bc0adcf621ffc838e014979.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_london2018_promo_de_inferno", + "defindex": 4540, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_london2018_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 251 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_london2018_promo_de_mirage", + "defindex": 4541, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_london2018_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 252 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_london2018_promo_de_dust2", + "defindex": 4542, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_london2018_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 253 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_london2018_promo_de_overpass", + "defindex": 4543, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_london2018_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 254 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_london2018_promo_de_cache", + "defindex": 4544, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_london2018_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 255 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_london2018_promo_de_train", + "defindex": 4545, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_london2018_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 256 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_london2018_promo_de_nuke", + "defindex": 4546, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_london2018_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_london2018_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 257 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 14 + } + ] + + }, + { + "name": "crate_sticker_pack_skillgroup_capsule", + "defindex": 4547, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_skillgroup_capsule", + "item_description": "#CSGO_crate_sticker_pack_skillgroup_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_skillgroup_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_skillgroup_capsule.5de4e4787a1234ab538588dc56c7c4ae7e1627d2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_skillgroup_capsule_large.3f895157c8a3d90e8b90b0b4b08361252273f5bd.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 258 + } + ] + + }, + { + "name": "crate_community_21", + "defindex": 4548, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_21", + "item_description": "#CSGO_crate_community_21_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_21", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_21", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 259 + } + ] + + }, + { + "name": "CommunitySeasonNine2019", + "defindex": 4549, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonNine2019", + "item_description": "#CSGO_Ticket_CommunitySeasonNine2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_pass.d5d295b3cc8f44e27d007be7adff692bee8f0e0d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_pass_large.09a6d02fd76845eb208ae2175a3967f53dedeb57.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonNine2019 Coin 1", + "defindex": 4550, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonNine2019_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonNine2019_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_bronze.86e2513cd92bef339ca4b2f6ce944ebe33afef60.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_bronze_large.c62562775579ad9295e967d3e98144d2786348af.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonNine2019 Coin 2", + "defindex": 4551, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonNine2019_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonNine2019_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_silver.61e921f761fe616f98bd236a45fb29a629c7a37f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_silver_large.4697e21f351569768d9930e757b956fefaf28947.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonNine2019 Coin 3", + "defindex": 4552, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonNine2019_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonNine2019_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_gold.ae63fc7658d403dbab7ae1e184b116dc059a0a6e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_gold_large.900ac40f49a1780494f22be4237e39093d6715a8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonNine2019 Coin 4", + "defindex": 4553, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonNine2019_Coin4", + "item_description": "#CSGO_Collectible_CommunitySeasonNine2019_Coin4_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_platinum", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_platinum.50d86231bb374a2ca06f3d0f63e3e008431ee760.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_platinum_large.e94a99cdf778bb1c9cd14a0ca3f5a318bd04f3a9.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "tournament_pass_katowice2019", + "defindex": 4554, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_katowice2019", + "item_description": "#CSGO_TournamentPass_katowice2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_pickem_2019_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_pass.2b63979f1a6caf93b69ec243c005150f4f10a1d9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_pass_large.781a7032e3991b233a3c8312ed6addb63b1d0dca.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "tournament_journal_katowice2019", + "defindex": 4555, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_katowice2019", + "item_description": "#CSGO_TournamentJournal_katowice2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_pickem_2019_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_bronze.33ab7bd140bbf0bdb1c648992dab50ae72a8ea3f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_bronze_large.c519d77e3a2a87efd9ba5e493d05ff9a376c3bd8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 10 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 3584 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_katowice2019_silver", + "defindex": 4556, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_katowice2019_Silver", + "item_description": "#CSGO_TournamentJournal_katowice2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_pickem_2019_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_silver.2002f4d0d3447db7c70dc0ad1b65e329ab111c6e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_silver_large.606ecad86c1904214f963a559e884627183fcba2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 10 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 3584 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_katowice2019_gold", + "defindex": 4557, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_katowice2019_Gold", + "item_description": "#CSGO_TournamentJournal_katowice2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_pickem_2019_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_gold.ac87fccb268a0b0d4bf8013c033a042cda2a969d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_gold_large.f67e0bf9aadcf912bd7533279629b8ec44ea58fd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 10 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 3584 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_katowice2019_crystal", + "defindex": 4558, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_katowice2019_Crystal", + "item_description": "#CSGO_TournamentJournal_katowice2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/katowice_pickem_2019_crystal", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_crystal.0a50560f8552e88c6b3c8a5d639d6d4e94825f59.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/katowice_pickem_2019_crystal_large.a82047843de4473ce1792ffa0e7b98a6041aa773.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 10 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 3584 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_astr", + "defindex": 4559, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_astr_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/astr.6aeb1c2300366bdcc89a0730ab6f31340807d71d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/astr_large.51f9edfc875874bcd85c4c8ae45eb7915dbe2e7c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_avg", + "defindex": 4560, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_avg_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/avg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/avg.b858e5de7139499ff88ccff7efdba61c74b0ede8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/avg_large.4e3a42efcda04db4039293575debcfa18cb69507.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_big", + "defindex": 4561, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_big_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/big", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/big.5c1f415cf9805d66cc0fd04334e52da729545eb2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/big_large.e785a634132d0091e2d805152d2783de19575c50.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_c9", + "defindex": 4562, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_c9_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/c9", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/c9.9136177d8809518937b88631a34baa7122dcf6a1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/c9_large.b1c71f5663c5489f61962b39da4bf6b2cec4eff1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_col", + "defindex": 4563, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_col_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/col", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/col.b1772813441f051073f49f3f1fb6814ab0495f48.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/col_large.dd098185877848826a6ddda433dacd0ce8af88c9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_ence", + "defindex": 4564, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_ence_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/ence", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/ence.89e2d674cf898c084497d3bc39b8335ec64987cd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/ence_large.8e7629011b407c2057350e27564b5019ece3527b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_faze", + "defindex": 4565, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_faze_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/faze.9c27bcb6be9c407e0a6bf9ca27ce084d9b066d31.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/faze_large.9883b325d14d4ef4795b6b54f511e66d8133d940.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_fntc", + "defindex": 4566, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_fntc_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/fntc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/fntc.dd58ef93c7e7a467027962c4ecebd81c133fce46.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/fntc_large.65ff2a5c92f7ccb068c0ee0c78656e52b33a3b3a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_furi", + "defindex": 4567, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_furi_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/furi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/furi.783d410ea0977794d5f66d5ecbc8c173f8b7e999.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/furi_large.19f72dcc54ae21c43f2783cec23e0b932c7595c2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_g2", + "defindex": 4568, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_g2_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/g2.df001afe72248d34ad0d072f5e8bec26ba476267.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/g2_large.d5f23208d44d074f1d7f5f42e04e69928dee5850.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_gray", + "defindex": 4569, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_gray_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/gray", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/gray.8435292cf4533003730fcb00d7172ebc14f6aeff.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/gray_large.3472ac9cab35d4a09f784f3bdd5e17434a0606b9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_hlr", + "defindex": 4570, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_hlr_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/hlr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/hlr.9cfda83e66b8d89e1602240a45d197bee39b5dca.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/hlr_large.b3ff190509b937cae8d9441305fb798e71c6c052.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_mibr", + "defindex": 4571, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_mibr_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/mibr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/mibr.1a36cb1e82860b538f46ffd8d75170779ff38432.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/mibr_large.5d4fe79fe31a1824eeabaac67837f610d647cfb4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_navi", + "defindex": 4572, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_navi_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/navi.ee156b7dfc5c6ba6fd3776941a41478ade34a3bb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/navi_large.b2eef6479d1f24f03f6d051080760453366bb824.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_nip", + "defindex": 4573, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_nip_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/nip.cf4075cb0bc9a6d3bf0eade6c11c92026d9ec432.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/nip_large.1d36df66c7462d84974ad33094fa64dd17156192.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_nrg", + "defindex": 4574, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_nrg_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/nrg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/nrg.62f61978b2be73d610a1266a8275f9710b9f05b6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/nrg_large.09d5311d25fe02915e40518250e27a39030d3b1c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_ren", + "defindex": 4575, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_ren_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/ren", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/ren.18ccad5ffbc7aea7658d68420c35a296b94e3141.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/ren_large.34d16e710b7277bba2ef5e7f93f0e7b7e584e3af.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_liq", + "defindex": 4576, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_liq_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/liq.86d3a26ad2ea2c31670b31e1111a553feb180c34.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/liq_large.0c8481504f117a3d17af09438f79b9aaa2f3a526.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_spir", + "defindex": 4577, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_spir_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/spir", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/spir.a1ac0246c463cdcbc02ea35cc7c410c73e60ccca.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/spir_large.c7adc8fed89ed9ca7951e6cb09c5a7df35d4e168.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_tyl", + "defindex": 4578, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_tyl_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/tyl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/tyl.6ee81edce5496963067a4dfdaa39251ea1f5b502.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/tyl_large.2bf7ee728d5bc054d10dc2b19e29b9a0516ccee2.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_vega", + "defindex": 4579, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_vega_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/vega", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/vega.b7668d47180b13f6697c41bdd3b07184207ecedf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/vega_large.c611c2a81e8db85f69f3ed9053ef2cb80f5fb513.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_vici", + "defindex": 4580, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_vici_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/vici", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/vici.7b02e98b3211742285c324af3a54ccd72ca6faa8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/vici_large.4f49b0ad9697cac40251dc5f44469e8db4edb569.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_vita", + "defindex": 4581, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_vita_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/vita", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/vita.567c8b0f31d8ab806c99d7b7f369e5a48baa200b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/vita_large.d01225bd1b76cf8b36e23a4067f48737e153c85a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_wins", + "defindex": 4582, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_wins_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/wins", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/wins.f6f5a3f920b616e1d3c4acfab8ee893c8a0e7c9b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/wins_large.c1088f07f394cbbc00c79ca7b3662bdb3d521c1b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_iem", + "defindex": 4583, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_katowice2019_team_iem_sticker", + "item_description": "#EventItemDesc_katowice2019_sticker_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/katowice2019/iem", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/iem.bdf9ad873208ccf76baa6731fecd2dce7a03b9ae.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/katowice2019/iem_large.03e16e14f33406c4ba7e4d31c6b9a395a18cc307.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_legends", + "defindex": 4584, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_katowice2019_legends", + "item_description": "#CSGO_crate_sticker_pack_katowice2019_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_katowice2019_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_legends.65c7ed15fd0f9e1fa09b636cc68adb91e34cb542.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_legends_large.bc3a8c4c454cb1715e30ce13d787faacdea093ad.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 260 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_challengers", + "defindex": 4585, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_katowice2019_challengers", + "item_description": "#CSGO_crate_sticker_pack_katowice2019_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_katowice2019_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_challengers.29c9f5083c1fc1607508a2ccefa561503489d152.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_challengers_large.3d5a3cb4e3135c46292d43bf0f139752bb79990f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 261 + } + ] + + }, + { + "name": "crate_sticker_pack_katowice2019_contenders", + "defindex": 4586, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_katowice2019_contenders", + "item_description": "#CSGO_crate_sticker_pack_katowice2019_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_katowice2019_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_contenders.f1d82d10bba70ac7a61137bc0483dfb89b9267b2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_contenders_large.379e6e7cec490706b6a0e0278dd4d6aeb1b51f2d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 262 + } + ] + + }, + { + "name": "crate_signature_pack_katowice2019_group_legends", + "defindex": 4587, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_katowice2019_group_legends", + "item_description": "#CSGO_crate_signature_pack_katowice2019_group_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_katowice2019_group_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_group_legends.406bef19af386297ed02cbf4723aa8ff0258235f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_group_legends_large.0553ef74d11be82819266ebd8b2e7277ad33f1c3.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 263 + } + ] + + }, + { + "name": "crate_signature_pack_katowice2019_group_challengers", + "defindex": 4588, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_katowice2019_group_challengers", + "item_description": "#CSGO_crate_signature_pack_katowice2019_group_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_katowice2019_group_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_group_challengers.23e179ff999d05cc04cd5dbd0083e84ff63a3523.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_group_challengers_large.5b416d27949826651365713e35d812421fe3b154.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 264 + } + ] + + }, + { + "name": "crate_signature_pack_katowice2019_group_contenders", + "defindex": 4589, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_katowice2019_group_contenders", + "item_description": "#CSGO_crate_signature_pack_katowice2019_group_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_katowice2019_group_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_group_contenders.d9710d90476606b1998d9502039c3b66b257237f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_katowice2019_group_contenders_large.29258485a078bce52ec1f7be97248e074a5c7d78.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 265 + } + ] + + }, + { + "name": "crate_katowice2019_promo_de_inferno", + "defindex": 4590, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_katowice2019_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_katowice2019_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 266 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_katowice2019_promo_de_mirage", + "defindex": 4591, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_katowice2019_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_katowice2019_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 267 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_katowice2019_promo_de_dust2", + "defindex": 4592, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_katowice2019_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_katowice2019_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 268 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_katowice2019_promo_de_overpass", + "defindex": 4593, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_katowice2019_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_katowice2019_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 269 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_katowice2019_promo_de_cache", + "defindex": 4594, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_katowice2019_promo_de_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_katowice2019_promo_de_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 270 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_katowice2019_promo_de_train", + "defindex": 4595, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_katowice2019_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_katowice2019_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 271 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_katowice2019_promo_de_nuke", + "defindex": 4596, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_katowice2019_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_katowice2019_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 272 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 15 + } + ] + + }, + { + "name": "crate_sticker_pack_halo_capsule", + "defindex": 4597, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_halo_capsule", + "item_description": "#CSGO_crate_sticker_pack_halo_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_halo_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_halo_capsule.d86d35e5de93900f6f37332d9a6a73df5b6ac1ea.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_halo_capsule_large.b5f1d178592cc43db708dc09735d63cd46c0e55c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 295 + } + ] + + }, + { + "name": "crate_community_22", + "defindex": 4598, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_22", + "item_description": "#CSGO_crate_community_22_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_22", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_22", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 274 + } + ] + + }, + { + "name": "crate_sticker_pack_feral_predators_capsule", + "defindex": 4599, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_feral_predators_capsule", + "item_description": "#CSGO_crate_sticker_pack_feral_predators_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_feral_predators_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_feral_predators_capsule.ce2e8363eec844faa6a86444ce5d3f2cf86e0ece.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 275 + } + ] + + }, + { + "name": "crate_sticker_pack_shattered_web", + "defindex": 4600, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_shattered_web", + "item_description": "#CSGO_crate_sticker_pack_shattered_web_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_shattered_web_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_shattered_web_capsule.f80ef75b7761dc78254bfe65d6641c526f0fd69f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 291 + } + ] + + }, + { + "name": "selfopeningitem_set_overpass", + "defindex": 4601, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_overpass.3b85a46ee2d4424367831a3f5994bf59f19f08bd.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_cobblestone", + "defindex": 4602, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_cobblestone", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_cobblestone", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_cobblestone.7f470f4ad76920182d29cafc4a7fcbbb5de0e3ec.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_cache", + "defindex": 4603, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_cache", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_cache.1bdc24f9fbd7532a2eb3e26d6ac33e52fc4a0efc.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_gods_and_monsters", + "defindex": 4604, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_gods_and_monsters", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_gods_and_monsters", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_gods_and_monsters.c66f30b18e90e05e6a727c5cda23912ffe49ffaf.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_chopshop", + "defindex": 4605, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_chopshop", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_chopshop", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_chopshop.b6ed206d7164f48594212559a70312123a12f9b5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_kimono", + "defindex": 4606, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_kimono", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_kimono", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_kimono.eec9d131eed8efec7910f137cf0cadb710e576c8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "xpgrant", + "defindex": 4607, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_tool_xpgrant", + "item_description": "#CSGO_tool_xpgrant_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/xpgrant", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/xpgrant.fe553d2590945a85d9077142d5c5036ea4193ebc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/xpgrant_large.708c4022d4bfe2b5b9a6fd8418422b6d1a69dc18.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "xpgrant", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "selfopeningitem_set_canals", + "defindex": 4608, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_canals", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_canals", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_canals.56ae4549ece13ec63d017e7fa24dc0283572670f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "patch", + "defindex": 4609, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_Patch", + "item_name": "#CSGO_Tool_Patch", + "item_description": "#CSGO_Tool_Patch_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "patch", + "usage_capabilities": { + "usable_out_of_game": true, + "can_patch": true + } + } + }, + { + "name": "crate_patch_pack01", + "defindex": 4610, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_patch_pack01", + "item_description": "#CSGO_crate_patch_pack01_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_patch_pack01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack01.1617d1419f05d0ac0b7c33d853f344890f400300.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 296 + } + ] + + }, + { + "name": "selfopeningitem_set_norse", + "defindex": 4611, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_norse", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_norse", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_norse.d91172d71b95efb4e334d194cf6b0a5ab9621e8c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_stmarc", + "defindex": 4612, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_stmarc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_stmarc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_stmarc.00c570e3e140452c95e68bfa4868c9ce1c5dc1c4.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "customplayer_tm_professional_varf5", + "defindex": 4613, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varf5", + "item_description": "#CSGO_CustomPlayer_tm_professional_varf5_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varf5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varf5.c9006bae9b53250aa882a379045e93c9014e32f1.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_patch_pack02", + "defindex": 4614, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_patch_pack02", + "item_description": "#CSGO_crate_patch_pack02_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_patch_pack02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack02.e1ff53ee1a43f372db76d5863f4bf4fb23de7405.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 298 + } + ] + + }, + { + "name": "crate_patch_pack_hlalyx", + "defindex": 4615, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_patch_pack_hlalyx", + "item_description": "#CSGO_crate_patch_pack_hlalyx_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_patch_pack_hlalyx", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack_hlalyx.539db06bc58e507973c133ff3e3dbf8aa2418f1f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 302 + } + ] + + }, + { + "name": "crate_sticker_pack_warhammer", + "defindex": 4616, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_warhammer", + "item_description": "#CSGO_crate_sticker_pack_warhammer_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_warhammer_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_warhammer_capsule.b6234d0371c486d1614bfdd4c4d954d92720c79f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_warhammer_capsule_large.1c3b33263d09c8910bacdf0830b43da910f360ee.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 306 + } + ] + + }, + { + "name": "selfopeningitem_crate_spray_std3", + "defindex": 4617, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_spray_std3", + "item_description": "#CSGO_crate_spray_std3_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_spray_std3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_spray_std3.4e2b25f8f736db88e56a905c4df1e6444c8b180e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_crate_spray_std2_2", + "defindex": 4618, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_spray_std2_2", + "item_description": "#CSGO_crate_spray_std2_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_spray_std2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_spray_std2.c55a072f05762521cc1bdcf2fb0441f4846ae961.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "customplayer_ctm_st6_variantj", + "defindex": 4619, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantj", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantj_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_variantj", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_variantj.3c18cd72acf110c25116e79bde452cff0bd9b65d.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_community_23", + "defindex": 4620, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_23", + "item_description": "#CSGO_crate_community_23_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_23", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_23", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 277 + } + ] + + }, + { + "name": "selfopeningitem_crate_spray_std2_1", + "defindex": 4621, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_spray_std2_1", + "item_description": "#CSGO_crate_spray_std2_1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_spray_std2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_spray_std2.c55a072f05762521cc1bdcf2fb0441f4846ae961.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "tournament_pass_berlin2019", + "defindex": 4622, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_berlin2019", + "item_description": "#CSGO_TournamentPass_berlin2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/starladder_pickem_2019_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_pass.8a63bbee862f043138d1aa899d33e0cf882193fc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_pass_large.0fb237032a1b434d0c5aa0e6653948d187336568.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "tournament_journal_berlin2019", + "defindex": 4623, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_berlin2019", + "item_description": "#CSGO_TournamentJournal_berlin2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/starladder_pickem_2019_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_bronze.9c048310d6fe8240b4cff902abb60c006069dd89.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_bronze_large.c080c73cfc9eaf9a22f532467d4a2aa7182dfbbb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 11 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 4143 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_berlin2019_silver", + "defindex": 4624, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_berlin2019_Silver", + "item_description": "#CSGO_TournamentJournal_berlin2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/starladder_pickem_2019_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_silver.99597eae0238462d30b02165efa6cce77cd80445.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_silver_large.fca34e7e88189074e591aa3d5154fddbb5ae2e55.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 11 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 4143 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_berlin2019_gold", + "defindex": 4625, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_berlin2019_Gold", + "item_description": "#CSGO_TournamentJournal_berlin2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/starladder_pickem_2019_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_gold.4b1f77c73421f371600b9b94b81fff64e824678a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_gold_large.e349a336b0ac17753dc76c39ae2d6a1401ce80d0.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 11 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 4143 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_berlin2019_crystal", + "defindex": 4626, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_berlin2019_Crystal", + "item_description": "#CSGO_TournamentJournal_berlin2019_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/starladder_pickem_2019_crystal", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_crystal.f13341402a41d69ba4c86872be2bb01c5d4f22fe.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_crystal_large.2070516b17670f6b93a1a35fc7c4fcc393ab8fc8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 11 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 4143 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_pass_berlin2019_pack", + "defindex": 4627, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_berlin2019_pack", + "item_description": "#CSGO_TournamentPass_berlin2019_pack_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/starladder_pickem_2019_pass_pack", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_pass_pack.7159a5b62593a5a3331126fd9cc76b60b5645565.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_pass_pack_large.2d3fa17c8ce411f22ddfe18fd27afd18b8645a37.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "tournament_pass_berlin2019_charge", + "defindex": 4628, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_berlin2019_charge", + "item_description": "#CSGO_TournamentPass_berlin2019_charge_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/starladder_pickem_2019_pass_charge", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_pass_charge.d6ea82480149ddbea247c4617e5175b684177eed.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/starladder_pickem_2019_pass_charge_large.767dda9572f597e6ce4af1f73073e844eb6aae2b.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_astr", + "defindex": 4629, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_astr_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/astr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/astr.ffb0c3882a702c29a60faf13fcfada38e1724aea.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/astr_large.e6aaa37330fb4089479a2e834329c0fdbe5acef4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_ence", + "defindex": 4630, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_ence_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/ence", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/ence.8d85c19ecda8a4f22ae1ca979362af4a3c6bd5bd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/ence_large.edee8098d5184f4af44b332c209d38af14e1ca1b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_mibr", + "defindex": 4631, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_mibr_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/mibr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/mibr.1189e40b71ffd4742a0c7fc0e8bd2b3ba9aa7cd8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/mibr_large.978228a5508370a284615df7744873d2253d516f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_navi", + "defindex": 4632, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_navi_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/navi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/navi.038842f7a24a85b49393b6703d8d3471692c0cd8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/navi_large.8d9565b3606244777f22e4faea8d72f12aeeca4b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_nip", + "defindex": 4633, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_nip_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/nip", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/nip.565357f9cc12af9e82e0f0bc0b122b7b23e3d374.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/nip_large.2f1a131ea847a489dcdad90ac97f9e139ac0cf2a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_faze", + "defindex": 4634, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_faze_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/faze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/faze.a2bc3ec0afe226bced6a819e12756747b06f9ed4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/faze_large.f49aa5930a3d65d0e732f716cc0eee3e2863d677.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_liq", + "defindex": 4635, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_liq_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/liq", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/liq.37cc31fd8c05e847488410273a2a188aa41dc053.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/liq_large.d0ab8c978ec6b36d843930dd8c8c0f07d7d2dc0e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_ren", + "defindex": 4636, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_ren_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/ren", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/ren.06c6fbd6530606df75f197e46c1685d4e8f5bbd9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/ren_large.fd72dfa54c874ae64bee6523f0cc5808f97bb226.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_col", + "defindex": 4637, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_col_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/col", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/col.adb73169a6814681fdc313c559e3a5dd1d963bf2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/col_large.c5bf2cbd905d1a46beccb59a56f27dca82cc0001.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_hlr", + "defindex": 4638, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_hlr_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/hlr", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/hlr.3d2c346fd09ad58b8b399b50885fb0e4b8b6b859.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/hlr_large.092964d7000ef41954f82a74bf1501939ca21440.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_avg", + "defindex": 4639, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_avg_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/avg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/avg.e3ae899cdab3ae127433e37f5ad0457ba9ffd0c2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/avg_large.6c0e9c46f4d9c17f3f4d3d5c301a1d542d2a7c14.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_g2", + "defindex": 4640, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_g2_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/g2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/g2.d2baacd724eae863a7dc4349a521bef2cccde67f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/g2_large.9a87bce2adbc5cd52bd384253788fec6ec03ad7a.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_vita", + "defindex": 4641, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_vita_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/vita", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/vita.f857eb1e84ddfe28a0b12e98f2adbd9d52e83a9e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/vita_large.41bac6b06dc92d8bcd752c75ed0ee6a1783fbcd4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_gray", + "defindex": 4642, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_gray_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/gray", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/gray.7a7d02815acff8e738ef43d4a7199bcfcfcf0f82.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/gray_large.d6e044b5958b65cd3513154f9cb5d055662931a6.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_mss", + "defindex": 4643, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_mss_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/mss", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/mss.57bf491014de69b8ce4a92c7637079947962639a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/mss_large.1cf75f238d3eec1c500cedadaf329ddb75053220.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_forz", + "defindex": 4644, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_forz_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/forz", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/forz.2c85d25d3a93e98f13f4fc13ef11ad632bd191e2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/forz_large.33981f536ba15aa4450b27d9a3db96fb1fa45a99.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_nrg", + "defindex": 4645, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_nrg_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/nrg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/nrg.3b5869ddf1bd15fc4abfac5c4bde877a4c37f9c5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/nrg_large.83eb30d625686ec579bd2a70c47074ccd053cddf.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_tyl", + "defindex": 4646, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_tyl_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/tyl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/tyl.67c66399dc4c0c39f5e900d03d5f946ff9feea8c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/tyl_large.5e7fc2204325426476ca64141715261941c75d3e.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_furi", + "defindex": 4647, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_furi_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/furi", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/furi.668646b92dfc7b6e213cba069843bf2c705fef39.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/furi_large.484d60c69d7be11d02c4da9686dea9cb5082b3c5.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_cr4z", + "defindex": 4648, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_cr4z_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/cr4z", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/cr4z.c4ce3d17cb976765f5d3c4e2e49bd429ec6d734e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/cr4z_large.daaba8bb3e67da577016ba6fcc2b27b569b75baa.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_syma", + "defindex": 4649, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_syma_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/syma", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/syma.60789c1f99815d513e524ef158308a6735edc936.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/syma_large.78a10cf42297882ca2acf2dcc5561833279299f7.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_nor", + "defindex": 4650, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_nor_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/nor", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/nor.60716cff44f7ea257a1bb7c319fffbe3dd852b98.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/nor_large.47451ff6bdbc11b0dc71793c22fa1267655a3bba.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_drea", + "defindex": 4651, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_drea_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/drea", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/drea.c72df2b52f17cb435af300452793756b64392c6e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/drea_large.04f0e3311de05687f88dff493b36a4985cd8323c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_intz", + "defindex": 4652, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_intz_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_team", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/intz", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/intz.25a8297bb613c1e5aea52bbcecebd4a59dde682d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/intz_large.4e362c60d8e27d73029ea1b85c935501d8f6569b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_star", + "defindex": 4653, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#StoreItem_berlin2019_team_star_sticker", + "item_description": "#EventItemDesc_berlin2019_sticker_org", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/stickers/berlin2019/star", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/star.f166f32e89c214705a46e92f09e9434b77355830.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/berlin2019/star_large.4e35395bac0ec09abba16fb00ab48f6a3c9ad61d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_legends", + "defindex": 4654, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_berlin2019_legends", + "item_description": "#CSGO_crate_sticker_pack_berlin2019_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_berlin2019_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_legends.652bbad840183663325c2ac7a8cefca7ee31cd9d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_legends_large.332032ccea7310200093ef13fc6cd21a970a5476.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 278 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_challengers", + "defindex": 4655, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_berlin2019_challengers", + "item_description": "#CSGO_crate_sticker_pack_berlin2019_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_berlin2019_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_challengers.1155bb3e099b3dc9dbe30e8d0b8ab3537216021c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_challengers_large.1155bb3e099b3dc9dbe30e8d0b8ab3537216021c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 279 + } + ] + + }, + { + "name": "crate_sticker_pack_berlin2019_contenders", + "defindex": 4656, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_berlin2019_contenders", + "item_description": "#CSGO_crate_sticker_pack_berlin2019_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_berlin2019_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_contenders.971b13179fe1f6edb8a919d6cd7b72b3062df2ea.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_contenders_large.971b13179fe1f6edb8a919d6cd7b72b3062df2ea.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 280 + } + ] + + }, + { + "name": "crate_signature_pack_berlin2019_group_legends", + "defindex": 4657, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_berlin2019_group_legends", + "item_description": "#CSGO_crate_signature_pack_berlin2019_group_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_berlin2019_group_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_group_legends.dbb9df28a6ec1bbe72e7b67d8cea2f0ba7cfd335.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_group_legends_large.dbb9df28a6ec1bbe72e7b67d8cea2f0ba7cfd335.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 281 + } + ] + + }, + { + "name": "crate_signature_pack_berlin2019_group_challengers", + "defindex": 4658, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_berlin2019_group_challengers", + "item_description": "#CSGO_crate_signature_pack_berlin2019_group_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_berlin2019_group_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_group_challengers.7c7e6ff6e4a1ca64573104c792fe718b2a8a470d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_group_challengers_large.7c7e6ff6e4a1ca64573104c792fe718b2a8a470d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 282 + } + ] + + }, + { + "name": "crate_signature_pack_berlin2019_group_contenders", + "defindex": 4659, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_berlin2019_group_contenders", + "item_description": "#CSGO_crate_signature_pack_berlin2019_group_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_berlin2019_group_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_group_contenders.baeec79437e93922562bda3fdcd13991199c115b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_berlin2019_group_contenders_large.baeec79437e93922562bda3fdcd13991199c115b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 283 + } + ] + + }, + { + "name": "crate_berlin2019_promo_de_inferno", + "defindex": 4660, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_berlin2019_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_berlin2019_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 284 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_berlin2019_promo_de_mirage", + "defindex": 4661, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_berlin2019_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_berlin2019_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 285 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_berlin2019_promo_de_dust2", + "defindex": 4662, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_berlin2019_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_berlin2019_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 286 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_berlin2019_promo_de_overpass", + "defindex": 4663, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_berlin2019_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_berlin2019_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 287 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_berlin2019_promo_de_train", + "defindex": 4664, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_berlin2019_promo_de_train", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_berlin2019_promo_de_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 288 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_berlin2019_promo_de_nuke", + "defindex": 4665, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_berlin2019_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_berlin2019_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 289 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "crate_berlin2019_promo_de_vertigo", + "defindex": 4666, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_berlin2019_promo_de_vertigo", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_berlin2019_promo_de_vertigo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_vertigo.764d7a1f455a32f6f28561dc22cbf835def7b481.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 290 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 16 + } + ] + + }, + { + "name": "selfopeningitem_crate_sticker_pack_shattered_web", + "defindex": 4667, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_shattered_web", + "item_description": "#CSGO_crate_sticker_pack_shattered_web_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_shattered_web_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_shattered_web_capsule.f80ef75b7761dc78254bfe65d6641c526f0fd69f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "crate_xray_p250", + "defindex": 4668, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_xray_p250", + "item_description": "#CSGO_crate_xray_p250_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_xray_p250", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_xray_p250.a25f07aef78944efdd2ad4bca2a009749b3346e8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_xray_p250_large.4125e9a6a5e6efce90954d3e9050a73f2daaa244.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 292 + } + ] + + }, + { + "name": "crate_community_24", + "defindex": 4669, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_24", + "item_description": "#CSGO_crate_community_24_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_24", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_24", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 293 + } + ] + + }, + { + "name": "crate_sticker_pack_cs20_capsule", + "defindex": 4670, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_cs20_capsule", + "item_description": "#CSGO_crate_sticker_pack_cs20_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_cs20_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_cs20_capsule.af9b77c3a7b2e373c1afbbc9609eb6570bbe3123.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 294 + } + ] + + }, + { + "name": "CommunitySeasonNine2019_PlusStars1", + "defindex": 4671, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars1", + "item_description": "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_plusstars1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_plusstars1.4380cb5cc6dc9073a60e63199ee9c41a480cdc65.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_plusstars1_large.f51d184b258d5087dfe16993c945d20aaa0ce2b6.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonNine2019_PlusStars10", + "defindex": 4672, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars10", + "item_description": "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars10_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_plusstars10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_plusstars10.946fd6ba7db2e6d027c85fe0001c0874de7d2749.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_plusstars10_large.62009cee8e90e5db45b557189d0984542fa85369.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonNine2019_PlusStars100", + "defindex": 4673, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars100", + "item_description": "#CSGO_Collectible_CommunitySeasonNine2019_PlusStars100_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_9_plusstars100", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_plusstars100.a6b053ce4cb59a3784edb1207ca7906299d45c98.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_9_plusstars100_large.8875736d46373218bdee2fa1d8071d73d877c83d.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2020", + "defindex": 4674, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2020", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2020", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2020_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl1.5d186bc6c565f877ecda25a8b241991d2a89bccb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl1_large.2abefa62a5bb1ece31ceac70e089e6f311d7bf56.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2020 level 2", + "defindex": 4675, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2020", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2020", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2020_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl2.23fc6ceb6d95ba8d1a36e10892ce27a1a46b2667.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl2_large.2b1866862f24e93fc1917f605ee83f233ec49366.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2020 level 3", + "defindex": 4676, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2020", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2020", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2020_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl3.82c61b1fabace8ae82d549c33a8beee597d12dad.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl3_large.666467110874af3ea865a6b6097a465310e33784.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ - } - "item_levels" - { - "0" - { - "name" "KillEaterRank" - "levels" - { - "0" - { - "level" "0" - "required_score" "2" - "name" "KillEaterRank0" - } - "1" - { - "level" "1" - "required_score" "4" - "name" "KillEaterRank1" - } - "2" - { - "level" "2" - "required_score" "6" - "name" "KillEaterRank2" - } - "3" - { - "level" "3" - "required_score" "8" - "name" "KillEaterRank3" - } - "4" - { - "level" "4" - "required_score" "10" - "name" "KillEaterRank4" - } - "5" - { - "level" "5" - "required_score" "12" - "name" "KillEaterRank5" - } - "6" - { - "level" "6" - "required_score" "14" - "name" "KillEaterRank6" - } - "7" - { - "level" "7" - "required_score" "16" - "name" "KillEaterRank7" - } - "8" - { - "level" "8" - "required_score" "18" - "name" "KillEaterRank8" - } - "9" - { - "level" "9" - "required_score" "20" - "name" "KillEaterRank9" - } - "10" - { - "level" "10" - "required_score" "22" - "name" "KillEaterRank10" - } - "11" - { - "level" "11" - "required_score" "24" - "name" "KillEaterRank11" - } - "12" - { - "level" "12" - "required_score" "26" - "name" "KillEaterRank12" - } - } - } - } - "kill_eater_ranks" - { - "0" - { - "level" "0" - "required_score" "2" - "name" "KillEaterRank0" - } - "1" - { - "level" "1" - "required_score" "4" - "name" "KillEaterRank1" - } - "2" - { - "level" "2" - "required_score" "6" - "name" "KillEaterRank2" - } - "3" - { - "level" "3" - "required_score" "8" - "name" "KillEaterRank3" - } - "4" - { - "level" "4" - "required_score" "10" - "name" "KillEaterRank4" - } - "5" - { - "level" "5" - "required_score" "12" - "name" "KillEaterRank5" - } - "6" - { - "level" "6" - "required_score" "14" - "name" "KillEaterRank6" - } - "7" - { - "level" "7" - "required_score" "16" - "name" "KillEaterRank7" - } - "8" - { - "level" "8" - "required_score" "18" - "name" "KillEaterRank8" - } - "9" - { - "level" "9" - "required_score" "20" - "name" "KillEaterRank9" - } - "10" - { - "level" "10" - "required_score" "22" - "name" "KillEaterRank10" - } - "11" - { - "level" "11" - "required_score" "24" - "name" "KillEaterRank11" - } - "12" - { - "level" "12" - "required_score" "26" - "name" "KillEaterRank12" - } - } - "kill_eater_score_types" - { - "0" - { - "type" "0" - "type_name" "Kills" - } - "1" - { - "type" "1" - "type_name" "OCMVPs" - } + ] + + }, + { + "name": "prestige coin 2020 level 4", + "defindex": 4677, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2020", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2020", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2020_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl4.4946abc3e7e483c215e0a01de9378f4330a54a7a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl4_large.0a079a1057e221eb6a41ebf9cea3bc8d2241d453.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2020 level 5", + "defindex": 4678, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2020", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2020", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2020_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl5.3decb92bf644a065843059a56b8f3f98a50c0385.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl5_large.d30e81cd95534627a150225a96f8ac80f7e91f33.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2020 level 6", + "defindex": 4679, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2020", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2020", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2020_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl6.ff5d539bad1feea62f562aa2ef51628b9d403b61.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2020_lvl6_large.d126b941f0c86ad66522c791a4a3a7d7490d76fa.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_st6_variantl", + "defindex": 4680, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantl", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantl_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_variantl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_variantl.2ac01794a0d73bfe4868d32af41c531fc259dbfa.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_04", + "defindex": 4682, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_04", + "item_description": "#CSGO_Collectible_Pin_alyx_04_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_04", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_04.5566d59dc0664540217c82cfbc1983e6c6f6d848.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_04_large.dbf162193bf566cf7bd58a8f2568032eee57e91f.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_07", + "defindex": 4683, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_07", + "item_description": "#CSGO_Collectible_Pin_alyx_07_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_07", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_07.f64c4e588f3d6521980f1eca308fc11b12104db0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_07_large.4838e2700ecdcee50ed6fc63b4e256ca9dfea0c6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_09", + "defindex": 4684, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_09", + "item_description": "#CSGO_Collectible_Pin_alyx_09_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_09", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_09.102cfb104b4575eca9dbf9474fcce5484280b3c5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_09_large.388086a40d903be6a619537e590abe045e251f6b.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_05", + "defindex": 4685, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_05", + "item_description": "#CSGO_Collectible_Pin_alyx_05_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_05", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_05.205192823afaa824b2c82dc1ca72ce475441ca6f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_05_large.a6d1d7ea523251b325e9404a2abdab41daaf2e0a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_12", + "defindex": 4686, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_12", + "item_description": "#CSGO_Collectible_Pin_alyx_12_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_12", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_12.b45776d62dc8e3d6be8f3af8fcf4ac021340df33.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_12_large.0a6ec0c756a8f028330a62ff8e2896359086aaeb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_01", + "defindex": 4687, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_01", + "item_description": "#CSGO_Collectible_Pin_alyx_01_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_01.733de7d9c34331dd4d77294773057338b8e8d7ff.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_01_large.acaf92f298ff89c8348e9ff8a9a0da0e79f1fc34.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_02", + "defindex": 4688, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_02", + "item_description": "#CSGO_Collectible_Pin_alyx_02_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_02.fcdb69e33eac3d473272dd537cd3027d6a06d026.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_02_large.7fc961f70ed57d2e4ee9bb4f54191dcc6cb44b83.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_03", + "defindex": 4689, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_03", + "item_description": "#CSGO_Collectible_Pin_alyx_03_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_03", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_03.3cb84310e7aa69fb95f31f8791df02435d226ae8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_03_large.4acbd16b76c36d815bfd00494b8e8659928705ae.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_06", + "defindex": 4690, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_06", + "item_description": "#CSGO_Collectible_Pin_alyx_06_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_06", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_06.1c637637e6d86fb59ae2d5c9e9c630c5e2897ef9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_06_large.42ec2b5ab516b19db2dd99877aa9f8ec34fb3df8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_08", + "defindex": 4691, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_08", + "item_description": "#CSGO_Collectible_Pin_alyx_08_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_08", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_08.0a8b104df73c8b150c7b8c055291b8e179bec85a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_08_large.016473ad936d9a17607a22f1441c0ad073607c43.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_11", + "defindex": 4692, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_11", + "item_description": "#CSGO_Collectible_Pin_alyx_11_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_11", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_11.59c86a37bd8b7ff296ab4c8761477478b3487750.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_11_large.9ef21098f19e55401066f8c2ece2c7279150274a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "crate_pins_hlalyx", + "defindex": 4693, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_pins_hlalyx", + "item_description": "#CSGO_crate_pins_hlalyx_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_pins_hlalyx", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_pins_hlalyx.eb16a18634b793404efe1002106906ac64e1c3f2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_pins_hlalyx_large.db49e5cfceeebd11707940af4b72ce210697019c.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 300 + } + ] + + }, + { + "name": "crate_sticker_pack_hlalyx_capsule", + "defindex": 4694, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_hlalyx_capsule", + "item_description": "#CSGO_crate_sticker_pack_hlalyx_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_hlalyx_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_hlalyx_capsule.49437ebc428ffe7a1fe15cf5e68fed6c0c541ec2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_hlalyx_capsule_large.2878c8df79f8190523fbd253967085256c74bc2f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 301 + } + ] + + }, + { + "name": "crate_community_25", + "defindex": 4695, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_25", + "item_description": "#CSGO_crate_community_25_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_25", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_25", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 303 + } + ] + + }, + { + "name": "crate_musickit_masterminds_capsule", + "defindex": 4696, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_musickit_masterminds_capsule", + "item_description": "#CSGO_crate_musickit_masterminds_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_musickit_masterminds_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_musickit_masterminds_capsule.eab61e73ff3f910b040b5b5bd7feb8aaf8509063.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 304 + } + ] + + }, + { + "name": "crate_musickit_masterminds_stattrak_capsule", + "defindex": 4697, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_musickit_masterminds_stattrak_capsule", + "item_description": "#CSGO_crate_musickit_masterminds_stattrak_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_musickit_masterminds_stattrak_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_musickit_masterminds_stattrak_capsule.ba6e38b7eda91b8fb661b32494f2113fe560e512.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 305 + } + ] + + }, + { + "name": "crate_community_26", + "defindex": 4698, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_26", + "item_description": "#CSGO_crate_community_26_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_26", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_26", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 307 + } + ] + + }, + { + "name": "CommunitySeasonTen2020", + "defindex": 4699, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonTen2020", + "item_description": "#CSGO_Ticket_CommunitySeasonTen2020_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_pass.01c15c3af790fac8b2e3834f9cc6b4bb18805e8d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_pass_large.5b8acab093492d571a2c2a9f74af7102dc52f409.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonTen2020 Coin 1", + "defindex": 4700, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonTen2020_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonTen2020_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_bronze.f42a5b7146219e9f220f93b879e8823370559578.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_bronze_large.6e9645fee1d758866103311a04dabd1b48ab90ce.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonTen2020 Coin 2", + "defindex": 4701, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonTen2020_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonTen2020_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_silver.83015de0a3d20b7e628f90338180c3fd0885f4ad.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_silver_large.55dfdab97e6e1972f409096f564958603c172926.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonTen2020 Coin 3", + "defindex": 4702, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonTen2020_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonTen2020_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_gold.1e78e5b77c0fa991bdea96bcb61eb0f62cc5d07a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_gold_large.03161e837bc3ce0e3332dd83de4746014804d88a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonTen2020 Coin 4", + "defindex": 4703, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonTen2020_Coin4", + "item_description": "#CSGO_Collectible_CommunitySeasonTen2020_Coin4_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_platinum", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_platinum.a44857f087b7e2763b7b6cddbffef5c93faaf44e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_platinum_large.8e94472998756c6cd0a08307cadefa18e78d0068.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonTen2020_PlusStars1", + "defindex": 4704, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars1", + "item_description": "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_plusstars1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_plusstars1.66986401900c73fe1ff0fe10fe476d95be7ce295.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_plusstars1_large.64bd00870a1e0595e63062c3da4adf4e1cbe7519.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonTen2020_PlusStars10", + "defindex": 4705, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars10", + "item_description": "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars10_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_plusstars10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_plusstars10.ba3a583ed3b98143f45aef04882c8967a78ea685.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_plusstars10_large.a0cd543bdeb15052377e88527eabadfe2a125a57.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonTen2020_PlusStars100", + "defindex": 4706, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars100", + "item_description": "#CSGO_Collectible_CommunitySeasonTen2020_PlusStars100_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_10_plusstars100", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_plusstars100.5e36eb5e0bfcaa12e832a22f211d0c04189cf724.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_10_plusstars100_large.5b0ac9bbc809d742fc02c353ac2403e598c9aa4f.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "character_operator_dossier_op10_rare", + "defindex": 4707, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_rare", + "item_description": "#CSGO_character_operator_dossier_op09_rare_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op10_mythical", + "defindex": 4708, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_mythical", + "item_description": "#CSGO_character_operator_dossier_op09_mythical_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op10_legendary", + "defindex": 4709, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_legendary", + "item_description": "#CSGO_character_operator_dossier_op09_legendary_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op10_ancient1", + "defindex": 4710, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op10_ancient1", + "item_description": "#CSGO_character_operator_dossier_op09_ancient_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "customplayer_ctm_swat_variante", + "defindex": 4711, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variante", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variante_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_swat_variante", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_swat_variante.02681dc883960ff22bd64ce806670b30e565ea6f.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_swat_variantf", + "defindex": 4712, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variantf", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variantf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_swat_variantf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_swat_variantf.842ec2ac84c979a11eb8208de9adaf3a74248787.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_swat_variantg", + "defindex": 4713, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variantg", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variantg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_swat_variantg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_swat_variantg.83e6e8ec495455a877e5951e485ebd63e7842c67.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_swat_varianth", + "defindex": 4714, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_varianth", + "item_description": "#CSGO_CustomPlayer_ctm_swat_varianth_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_swat_varianth", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_swat_varianth.b4cffbe2629de2e5840f8833a1d5aaadfef09283.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_swat_varianti", + "defindex": 4715, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_varianti", + "item_description": "#CSGO_CustomPlayer_ctm_swat_varianti_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_swat_varianti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_swat_varianti.dd87f52c5ecaff1d8aa96cca70ead42f9cfd3e7e.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_swat_variantj", + "defindex": 4716, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variantj", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variantj_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_swat_variantj", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_swat_variantj.676d63bbfa8e0c5ec4cb0b1b7a223356f05c4faf.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_community_27", + "defindex": 4717, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_27", + "item_description": "#CSGO_crate_community_27_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_27", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_27", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 308 + } + ] + + }, + { + "name": "customplayer_tm_balkan_variantk", + "defindex": 4718, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantk", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantk_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_balkan_variantk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_balkan_variantk.257a1ba0142799887e287b90f12dbbffcac4878a.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_sticker_pack_recoil", + "defindex": 4719, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_recoil", + "item_description": "#CSGO_crate_sticker_pack_recoil_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_recoil_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_recoil_capsule.ede8313833fcb0a9bc57ff924ffcc9be522b5b88.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 309 + } + ] + + }, + { + "name": "selfopeningitem_set_op10_ct", + "defindex": 4720, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_op10_ct", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_op10_ct", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_op10_ct.aaf2dd57a339a610de6f4514a76eb1e846647cc0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_op10_t", + "defindex": 4721, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_op10_t", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_op10_t", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_op10_t.18b6dd49906d15a5f44f1477ca6139c7ab491197.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_op10_ancient", + "defindex": 4722, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_op10_ancient", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_op10_ancient", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_op10_ancient.e90a2018381216be882d96c9e6c314d99f5097fa.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_crate_sticker_pack_recoil", + "defindex": 4723, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_recoil", + "item_description": "#CSGO_crate_sticker_pack_recoil_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_recoil_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_recoil_capsule.ede8313833fcb0a9bc57ff924ffcc9be522b5b88.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op10_ancient2", + "defindex": 4724, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op10_ancient2", + "item_description": "#CSGO_character_operator_dossier_op09_ancient_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "studded_brokenfang_gloves", + "defindex": 4725, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_t_studded_brokenfang_gloves", + "item_description": "#CSGO_Wearable_t_studded_brokenfang_gloves_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_professional_varf", + "defindex": 4726, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varf", + "item_description": "#CSGO_CustomPlayer_tm_professional_varf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varf.2b97106a469e226aa8b4a815a4072356f49a7fef.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_professional_varg", + "defindex": 4727, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varg", + "item_description": "#CSGO_CustomPlayer_tm_professional_varg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varg.75b9d6673b5ce645a689aaa53f8000326fa47156.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_professional_varh", + "defindex": 4728, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varh", + "item_description": "#CSGO_CustomPlayer_tm_professional_varh_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varh", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varh.4e07f94a4154f5f4043a24d46f477f58c9a2e584.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_sticker_pack_broken_fang", + "defindex": 4729, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_broken_fang", + "item_description": "#CSGO_crate_sticker_pack_broken_fang_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_broken_fang_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_broken_fang_capsule.cafcb236da14b8d740931b1d270a38ebb586b1a0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 310 + } + ] + + }, + { + "name": "customplayer_tm_professional_varj", + "defindex": 4730, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varj", + "item_description": "#CSGO_CustomPlayer_tm_professional_varj_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varj", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varj.d62719720e21b91ff7a92e8d610e6f5074f4f4cf.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "selfopeningitem_crate_sticker_pack_broken_fang", + "defindex": 4731, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_broken_fang", + "item_description": "#CSGO_crate_sticker_pack_broken_fang_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_broken_fang_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_broken_fang_capsule.cafcb236da14b8d740931b1d270a38ebb586b1a0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "customplayer_tm_professional_vari", + "defindex": 4732, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_vari", + "item_description": "#CSGO_CustomPlayer_tm_professional_vari_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_vari", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_vari.7986c97699dc8c72a334f961a4071b4292e3f482.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_professional_varf1", + "defindex": 4733, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varf1", + "item_description": "#CSGO_CustomPlayer_tm_professional_varf1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varf1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varf1.17ff15e28772c2c93a2ea90fc0f2fa6ee3b8bd50.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_professional_varf2", + "defindex": 4734, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varf2", + "item_description": "#CSGO_CustomPlayer_tm_professional_varf2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varf2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varf2.8a18897fabcef470243a5d229ded42911a8272f5.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_professional_varf3", + "defindex": 4735, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varf3", + "item_description": "#CSGO_CustomPlayer_tm_professional_varf3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varf3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varf3.68e2ce3e71df780d7189f62b2c613633d1afeb28.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_professional_varf4", + "defindex": 4736, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_varf4", + "item_description": "#CSGO_CustomPlayer_tm_professional_varf4_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_professional_varf4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_professional_varf4.f3e13e05bd26941f22cb92cfa81b01a5e618639a.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2021", + "defindex": 4737, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2021", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2021_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl1.8abe5d77963aee42c7029706ae7bdc7a042136eb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl1_large.0a03b242d4a0ce078566192ce3f1df32e02a0a49.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2021 level 2", + "defindex": 4738, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2021", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2021_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl2.11241aea9979a72fd05ce10cc976518d208ea80c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl2_large.303480f5169e587d8e7fcfa798228846586c07f6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2021 level 3", + "defindex": 4739, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2021", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2021_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl3.88db8ae743e0e494a56a523ae001eba66b611543.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl3_large.bfd2c8e8eaea4f9d62dc944c99269b1e1e886871.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2021 level 4", + "defindex": 4740, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2021", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2021_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl4.0d07751ab5a140e083fb71941bb3286af44b1aec.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl4_large.d6f3b3098e82e39e9f037d2cc4935fe3bc802441.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2021 level 5", + "defindex": 4741, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2021", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2021_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl5.6167a5e6071f3b2644e7591cbf66fc19fa72f84f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl5_large.47ed2bf5e88b8d32935213c4ef4230a0acfa2424.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2021 level 6", + "defindex": 4742, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2021", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2021_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl6.4477e1af8cbdecd458f60b8d3c1b59b130461ffa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2021_lvl6_large.56ec2d9a040e59d3b1fe904e8344b9545848f3b4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "crate_sticker_pack_rmr2020_legends", + "defindex": 4743, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_rmr2020_legends", + "item_description": "#CSGO_crate_sticker_pack_rmr2020_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rmr2020_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rmr2020_legends.e8dfe0f57efbd90cf9bad504d1b9cec3d9a857f1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rmr2020_legends_large.e8dfe0f57efbd90cf9bad504d1b9cec3d9a857f1.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 17 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 311 + } + ] + + }, + { + "name": "crate_sticker_pack_rmr2020_challengers", + "defindex": 4744, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_rmr2020_challengers", + "item_description": "#CSGO_crate_sticker_pack_rmr2020_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rmr2020_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rmr2020_challengers.1413e5019928add744d80bf73c21cedcba0a0553.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rmr2020_challengers_large.1413e5019928add744d80bf73c21cedcba0a0553.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 17 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 312 + } + ] + + }, + { + "name": "crate_sticker_pack_rmr2020_contenders", + "defindex": 4745, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_rmr2020_contenders", + "item_description": "#CSGO_crate_sticker_pack_rmr2020_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rmr2020_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rmr2020_contenders.49b1cf7a66621accf5a81f0f11045759990e1269.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rmr2020_contenders_large.49b1cf7a66621accf5a81f0f11045759990e1269.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 17 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 313 + } + ] + + }, + { + "name": "crate_sticker_pack_poorly_drawn", + "defindex": 4746, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_poorly_drawn_capsule", + "item_description": "#CSGO_crate_sticker_pack_poorly_drawn_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_poorly_drawn_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_poorly_drawn_capsule.bfdd2d01ea418ca65c61e12e8010845ba83572a8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_poorly_drawn_capsule_large.a4ec666eb23aaee2d9818505b4c08e95d054a881.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 314 + } + ] + + }, + { + "name": "crate_community_28", + "defindex": 4747, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_28", + "item_description": "#CSGO_crate_community_28_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_28", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_28", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 315 + } + ] + + }, + { + "name": "subscription1", + "defindex": 4748, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_tool_subscription1", + "item_description": "#CSGO_tool_subscription1_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/subscription1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/subscription1.f00d94cf28377667f383ccb80efe1e39c2b3911b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/subscription1_large.332042a72cca755dec14a032146134f6b78e723b.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_gendarmerie_varianta", + "defindex": 4749, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gendarmerie_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_gendarmerie_varianta_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_gendarmerie_varianta", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_gendarmerie_varianta.f0c5636c9994367d4efca9a121e18412406f727a.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_gendarmerie_variantb", + "defindex": 4750, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gendarmerie_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_gendarmerie_variantb_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_gendarmerie_variantb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_gendarmerie_variantb.4ce3a656228179e85d16897b9041ba7f2a8a1526.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_gendarmerie_variantc", + "defindex": 4751, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gendarmerie_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_gendarmerie_variantc_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_gendarmerie_variantc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_gendarmerie_variantc.6b84c6a02e5404eb8ade8943370a9a9551314747.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_gendarmerie_variantd", + "defindex": 4752, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gendarmerie_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_gendarmerie_variantd_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_gendarmerie_variantd", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_gendarmerie_variantd.fcb84aa2b937ea3d4cefb15229fd17193704f10a.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_gendarmerie_variante", + "defindex": 4753, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gendarmerie_variante", + "item_description": "#CSGO_CustomPlayer_ctm_gendarmerie_variante_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_gendarmerie_variante", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_gendarmerie_variante.bb4d1165ad5dc2f9e01f3987089cf04ba75c3692.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_musickit_tacticians_capsule", + "defindex": 4754, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_musickit_tacticians_capsule", + "item_description": "#CSGO_crate_musickit_tacticians_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_musickit_tacticians_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_musickit_tacticians_capsule.7fac9d3dfefe0affbd4ba6f9db43daed02860990.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 316 + } + ] + + }, + { + "name": "crate_musickit_tacticians_stattrak_capsule", + "defindex": 4755, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_musickit_tacticians_stattrak_capsule", + "item_description": "#CSGO_crate_musickit_tacticians_stattrak_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_musickit_tacticians_stattrak_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_musickit_tacticians_stattrak_capsule.694310b1d018effc8bac1af684f8c63ec4993939.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 317 + } + ] + + }, + { + "name": "customplayer_ctm_swat_variantk", + "defindex": 4756, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variantk", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variantk_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_swat_variantk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_swat_variantk.cb9306570d06169fffd3cfe54803bc678abc5b64.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_diver_varianta", + "defindex": 4757, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_diver_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_diver_varianta_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_diver_varianta", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_diver_varianta.6937f9b1e5c71d650eeede9b93ee0d7d4462dae5.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonEleven2021", + "defindex": 4758, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Ticket_CommunitySeasonEleven2021", + "item_description": "#CSGO_Ticket_CommunitySeasonEleven2021_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_pass.2f9518117457d2500452254f1971dcc00771e1df.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_pass_large.0859c77850bb9b1524661455338c0c948db7406f.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "season_pass", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonEleven2021 Coin 1", + "defindex": 4759, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin1", + "item_description": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_bronze.fe2f64ba52e7be6793d1436122d542012a37b792.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_bronze_large.756dfe794ff517efbc4e91956c4875247ca5b30e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonEleven2021 Coin 2", + "defindex": 4760, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin2", + "item_description": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_silver", + "min_ilevel": 2, + "max_ilevel": 2, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_silver.3912a69904e0325b3236d9ed9093ecbddf06294e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_silver_large.46709592ccec382480b28fe5565d28e22cae68ba.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonEleven2021 Coin 3", + "defindex": 4761, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin3", + "item_description": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin3_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_gold", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_gold.df29d247c2becb48aedf6b276288f10b5bffb7e6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_gold_large.8dff9bcd488cc62457e5beb2daedf4e4d89dc868.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonEleven2021 Coin 4", + "defindex": 4762, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin4", + "item_description": "#CSGO_Collectible_CommunitySeasonEleven2021_Coin4_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_platinum", + "min_ilevel": 3, + "max_ilevel": 3, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_platinum.1862df4bfa89d559fc89d6c5f974ae1a987ceb64.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_platinum_large.bf2cee2dcfab4b2df45bb0fc222e628c7c3e8612.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "minutes played", + "class": "minutes_played", + "value": 1 + } + ] + + }, + { + "name": "CommunitySeasonEleven2021_PlusStars1", + "defindex": 4763, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars1", + "item_description": "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars1_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_plusstars1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_plusstars1.12ea5a8465016766738046623cc00078ca0de879.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_plusstars1_large.721d6a1b559240e5db934d7fd8cbe7adba370bb4.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonEleven2021_PlusStars10", + "defindex": 4764, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars10", + "item_description": "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars10_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_plusstars10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_plusstars10.6266607a7ce23ed0d3e741a657685693cd3635cf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_plusstars10_large.c28849501791a7c9f73d211870e212868e5e2559.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "CommunitySeasonEleven2021_PlusStars100", + "defindex": 4765, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars100", + "item_description": "#CSGO_Collectible_CommunitySeasonEleven2021_PlusStars100_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/operation_11_plusstars100", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_plusstars100.3c9a2e84c231ac8ed58d3e3989fa423c4fcf83b8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/operation_11_plusstars100_large.ad3aaffed8ab2fbe1c222ff4a8120bd8d54e57f9.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "seasontiers", + "use_string": "#ConsumeItem" + }, + "attributes": [ + + ] + + }, + { + "name": "character_operator_dossier_op11_rare", + "defindex": 4766, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_rare", + "item_description": "#CSGO_character_operator_dossier_op09_rare_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op11_mythical", + "defindex": 4767, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_mythical", + "item_description": "#CSGO_character_operator_dossier_op09_mythical_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op11_legendary", + "defindex": 4768, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_legendary", + "item_description": "#CSGO_character_operator_dossier_op09_legendary_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op11_ancient1", + "defindex": 4769, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op11_ancient1", + "item_description": "#CSGO_character_operator_dossier_op09_ancient_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op11_ancient2", + "defindex": 4770, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op11_ancient2", + "item_description": "#CSGO_character_operator_dossier_op09_ancient_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "customplayer_ctm_diver_variantb", + "defindex": 4771, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_diver_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_diver_variantb_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_diver_variantb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_diver_variantb.8991b3d936d3b2577e842d07038cc86381046b7f.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_diver_variantc", + "defindex": 4772, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_diver_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_diver_variantc_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_diver_variantc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_diver_variantc.35246779c8cefbea23246097d4ab9eb6b658ce8a.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_jungle_raider_varianta", + "defindex": 4773, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_varianta", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_varianta_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_varianta", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_varianta.1222c1924b44977ab22826516acbbd19f4e579fd.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_jungle_raider_variantb", + "defindex": 4774, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_variantb", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_variantb_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_variantb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_variantb.4246cb30b54f0984104f71ea255c1f135d9cf36e.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_jungle_raider_variantc", + "defindex": 4775, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_variantc", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_variantc_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_variantc", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_variantc.8696d403ba22df1c4d107336470991a90e1ce0e8.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_jungle_raider_variantd", + "defindex": 4776, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_variantd", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_variantd_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_variantd", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_variantd.89b081ae639fa4bec73f876b1ea6c1d35c9aa2d3.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_jungle_raider_variante", + "defindex": 4777, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_variante", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_variante_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_variante", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_variante.8881288abce42ecdb8fa08e971e520ebdec6053d.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_jungle_raider_variantf", + "defindex": 4778, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_variantf", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_variantf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_variantf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_variantf.e60dcd68d7ef7afb9dae801fe893a936d4d95718.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_sticker_pack_riptide_surfshop", + "defindex": 4779, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_riptide_surfshop", + "item_description": "#CSGO_crate_sticker_pack_riptide_surfshop_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule.1688f85e2f6dd1d4cb623b5c4aaabbbdd21f9f16.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule_large.f1fa803f62b761850de84a27e2145648ea07c091.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 318 + } + ] + + }, + { + "name": "customplayer_tm_jungle_raider_variantb2", + "defindex": 4780, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_variantb2", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_variantb2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_variantb2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_variantb2.2186f0cbfa9b5583b702694b350b2fe947963fdd.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_jungle_raider_variantf2", + "defindex": 4781, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jungle_raider_variantf2", + "item_description": "#CSGO_CustomPlayer_tm_jungle_raider_variantf2_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_jungle_raider_variantf2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_jungle_raider_variantf2.ed369570f6a2c9d80426adc23af6b6cafa8d4489.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "crate_sticker_pack_community2021_capsule", + "defindex": 4782, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_community2021_capsule", + "item_description": "#CSGO_crate_sticker_pack_community2021_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_community2021_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_community2021_capsule.15790ce6786a0fa2ae7ea98b90bed663a7a508d7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_community2021_capsule_large.fde32bf5e7ba90d1a0be1bce2235f89509b5fd20.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 319 + } + ] + + }, + { + "name": "crate_sticker_pack_op_riptide_capsule", + "defindex": 4783, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_op_riptide_capsule", + "item_description": "#CSGO_crate_sticker_pack_op_riptide_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_op_riptide_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_op_riptide_capsule.3ef1a58f026f023dd980e9e3619e86b5b018e96b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_op_riptide_capsule_large.67fd73ae623ea83bc7f75991fa69b2dee8feca49.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 322 + } + ] + + }, + { + "name": "crate_sticker_pack_spring2022_capsule", + "defindex": 4784, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_spring2022_capsule", + "item_description": "#CSGO_crate_sticker_pack_spring2022_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_spring2022_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_spring2022_capsule.0a0c220fb99efb7cf0b725903fe5bd6b22d6547f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_spring2022_capsule_large.89e1f482d34382a36df7a8079225b5fd9efb78c0.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 340 + } + ] + + }, + { + "name": "selfopeningitem_set_train_2021_rare_standalone", + "defindex": 4785, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_train_2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_train_2021", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_train_2021.a000b6d4ae1978aeced8ec31aa8ef5a0014dae29.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_train_2021_mythical_standalone", + "defindex": 4786, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_train_2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_train_2021", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_train_2021.a000b6d4ae1978aeced8ec31aa8ef5a0014dae29.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_train_2021_legendary_standalone", + "defindex": 4787, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_train_2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_train_2021", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_train_2021.a000b6d4ae1978aeced8ec31aa8ef5a0014dae29.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_train_2021_ancient_standalone", + "defindex": 4788, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_train_2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_train_2021", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_train_2021.a000b6d4ae1978aeced8ec31aa8ef5a0014dae29.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "crate_sticker_pack_bf2042_capsule", + "defindex": 4789, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_bf2042_capsule", + "item_description": "#CSGO_crate_sticker_pack_bf2042_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_bf2042_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_bf2042_capsule.d2fd49838428fa5f30241219d430a97b307a93d4.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_bf2042_capsule_large.a42747de8c7d1dc78f83a98603308768f611ceed.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 320 + } + ] + + }, + { + "name": "crate_community_29", + "defindex": 4790, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_29", + "item_description": "#CSGO_crate_community_29_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_29", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_29", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 321 + } + ] + + }, + { + "name": "selfopeningitem_crate_sticker_pack_riptide_surfshop", + "defindex": 4791, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_riptide_surfshop", + "item_description": "#CSGO_crate_sticker_pack_riptide_surfshop_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule.1688f85e2f6dd1d4cb623b5c4aaabbbdd21f9f16.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_riptide_surfshop_capsule_large.f1fa803f62b761850de84a27e2145648ea07c091.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_vertigo_2021", + "defindex": 4792, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_vertigo_2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_vertigo_2021", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_vertigo_2021.611413bf4d18e0c888054707dff98c612049f097.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_dust_2_2021", + "defindex": 4793, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_dust_2_2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_dust_2_2021", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_dust_2_2021.318944ebb9e3dae51cd87d38b5d3584a2fa9425f.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "selfopeningitem_set_mirage_2021", + "defindex": 4794, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_set_mirage_2021", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/set_icons/set_mirage_2021", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/set_icons/set_mirage_2021.f1c9b5169b9fb9d6e0933baba0514dd34d6c9e19.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "crate_patch_pack03", + "defindex": 4795, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_patch_pack03", + "item_description": "#CSGO_crate_patch_pack03_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_patch_pack03", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack03.e3c82f4119dc4319f24f7c646874e0d75b66c098.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 323 + } + ] + + }, + { + "name": "tournament_pass_stockh2021", + "defindex": 4796, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_stockh2021", + "item_description": "#CSGO_TournamentPass_stockh2021_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2021_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_pass.25767e921bb2df976a5466b261b546b3d350432f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_pass_large.c75a3588ea64f775407bdebb9bf4aa2638fbf6ec.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "tournament_journal_stockh2021", + "defindex": 4797, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_stockh2021", + "item_description": "#CSGO_TournamentJournal_stockh2021_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2021_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_bronze.0c7e0bb5c396607cb106399f1006eb2670186ce0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_bronze_large.6fa94b8d0104298d1c78535e63d8a0a475221c4e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 12 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5078 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_stockh2021_silver", + "defindex": 4798, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_stockh2021_Silver", + "item_description": "#CSGO_TournamentJournal_stockh2021_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2021_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_silver.08ff75a3c6b5f247b1f374dfd923af51d4754795.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_silver_large.c5f4e2d28301eeecef652d415a38661eee755ef2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 12 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5078 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_stockh2021_gold", + "defindex": 4799, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_stockh2021_Gold", + "item_description": "#CSGO_TournamentJournal_stockh2021_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2021_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_gold.1f0f7a20e996c4775ddc8a96e307aa6f1822dac8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_gold_large.1cac9b6e7c7203ba5c1ec559983992b6762d350c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 12 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5078 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_stockh2021_crystal", + "defindex": 4800, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_stockh2021_Crystal", + "item_description": "#CSGO_TournamentJournal_stockh2021_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2021_crystal", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_crystal.ab79f1728610c20d848761e24d7d44e3957d3622.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_crystal_large.3a262047483b99a2922537f57df161d14d6b6ef5.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 12 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5078 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_pass_stockh2021_pack", + "defindex": 4801, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_stockh2021_pack", + "item_description": "#CSGO_TournamentPass_stockh2021_pack_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2021_pass_pack", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_pass_pack.b2d758e4b7d2aabcc5d78034d6ae935628e6629a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_pass_pack_large.2485979c8bff16544b45356a5b24aa970f24c593.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "tournament_pass_stockh2021_charge", + "defindex": 4802, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_stockh2021_charge", + "item_description": "#CSGO_TournamentPass_stockh2021_charge_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2021_pass_charge", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_pass_charge.d6ea82480149ddbea247c4617e5175b684177eed.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2021_pass_charge_large.767dda9572f597e6ce4af1f73073e844eb6aae2b.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_sticker_pack_stockh2021_legends", + "defindex": 4803, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_stockh2021_legends", + "item_description": "#CSGO_crate_sticker_pack_stockh2021_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_stockh2021_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_legends.020ad7335d0d6e886517115133c18a5fcdec0d02.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_legends_large.f18e643b97e592ab3cb4f38f53131d98c9418dfd.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 324 + } + ] + + }, + { + "name": "crate_sticker_pack_stockh2021_challengers", + "defindex": 4804, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_stockh2021_challengers", + "item_description": "#CSGO_crate_sticker_pack_stockh2021_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_stockh2021_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_challengers.d076258edaf3c5b46ded34ef41a302c382e5aa8a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_challengers_large.b12835aa0dd4cf53197cd3af944919ade5bd8218.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 325 + } + ] + + }, + { + "name": "crate_sticker_pack_stockh2021_contenders", + "defindex": 4805, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_stockh2021_contenders", + "item_description": "#CSGO_crate_sticker_pack_stockh2021_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_stockh2021_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_contenders.1c3d256ea9e18a1408a10e6dd02075a7a12343c7.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_contenders_large.827bcefd4b0dd2955c28651cd24d53f60c222313.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 326 + } + ] + + }, + { + "name": "crate_patch_pack_stockh2021_legends", + "defindex": 4806, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_patch_pack_stockh2021_legends", + "item_description": "#CSGO_crate_patch_pack_stockh2021_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_patch_pack_stockh2021_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack_stockh2021_legends.022c83f6246a76e184bd79a089d008ec2ddea126.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack_stockh2021_legends_large.f573914b26b8389621e5231db95d256486ce4f7d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 327 + } + ] + + }, + { + "name": "crate_patch_pack_stockh2021_challengers", + "defindex": 4807, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_patch_pack_stockh2021_challengers", + "item_description": "#CSGO_crate_patch_pack_stockh2021_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_patch_pack_stockh2021_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack_stockh2021_challengers.4ddb354da12bf5b1f2b31e090f6d0174fcba3036.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack_stockh2021_challengers_large.843097a991147aa3522fd6b7b06e3533ab5e9698.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 328 + } + ] + + }, + { + "name": "crate_patch_pack_stockh2021_contenders", + "defindex": 4808, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_patch_pack_stockh2021_contenders", + "item_description": "#CSGO_crate_patch_pack_stockh2021_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_patch_pack_stockh2021_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack_stockh2021_contenders.d162d511719648b68313bb19c8eca4c2cacb9292.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_patch_pack_stockh2021_contenders_large.09df1245c8bdb1f14b5de2bddf799cf34274b4f8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 329 + } + ] + + }, + { + "name": "crate_stockh2021_promo_de_inferno", + "defindex": 4809, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_stockh2021_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_stockh2021_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 330 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_stockh2021_promo_de_mirage", + "defindex": 4810, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_stockh2021_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_stockh2021_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 331 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_stockh2021_promo_de_dust2", + "defindex": 4811, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_stockh2021_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_stockh2021_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 332 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_stockh2021_promo_de_overpass", + "defindex": 4812, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_stockh2021_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_stockh2021_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 333 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_stockh2021_promo_de_ancient", + "defindex": 4813, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_stockh2021_promo_de_ancient", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_stockh2021_promo_de_ancient", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 334 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_stockh2021_promo_de_nuke", + "defindex": 4814, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_stockh2021_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_stockh2021_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 335 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_stockh2021_promo_de_vertigo", + "defindex": 4815, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_stockh2021_promo_de_vertigo", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_stockh2021_promo_de_vertigo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 336 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + } + ] + + }, + { + "name": "crate_signature_pack_stockh2021_group_champions", + "defindex": 4816, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_stockh2021_group_champions", + "item_description": "#CSGO_crate_signature_pack_stockh2021_group_champions_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_stockh2021_group_champions", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_group_champions.31ad1e9e673d6e6c406ea18c8446aeec3bab77c9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_group_champions_large.2c38f70373b36ed28f4c55b38be8c1ac0851a6ae.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 337 + } + ] + + }, + { + "name": "crate_signature_pack_stockh2021_group_finalists", + "defindex": 4817, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_stockh2021_group_finalists", + "item_description": "#CSGO_crate_signature_pack_stockh2021_group_finalists_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_stockh2021_group_finalists", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_group_finalists.a220b889c505e94d1fea3aeb171c646d1e374502.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_stockh2021_group_finalists_large.e8abb3180b0a01748c321114f6d6967b7386e029.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 18 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 338 + } + ] + + }, + { + "name": "crate_community_30", + "defindex": 4818, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_30", + "item_description": "#CSGO_crate_community_30_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_30", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 339 + } + ] + + }, + { + "name": "prestige coin 2022", + "defindex": 4819, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2022", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2022", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2022_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl1.42aa0ec2179a3711a2ee0d331c5a3370f63dcdfb.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl1_large.c57571f1e7603fec451ecfb1834726ed6806c793.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2022 level 2", + "defindex": 4820, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2022", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2022", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2022_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl2.b192387e035f0f8bf7d976c7660d0281b3e2de05.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl2_large.42ed935ae23c63d8a08d8f64056cab504c3548ea.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2022 level 3", + "defindex": 4821, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2022", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2022", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2022_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl3.c3558933bf59624a27c1a56537ef3562f37a9e68.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl3_large.1aa4a3f38dc5f37236741566802ec3fef348480a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2022 level 4", + "defindex": 4822, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2022", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2022", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2022_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl4.f06cf5d6c94a1974aa4abcf0c0029bf930234836.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl4_large.44ad6e9e27a1e6eb112014ed38ca24f8faf63ef1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2022 level 5", + "defindex": 4823, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2022", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2022", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2022_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl5.f3462dd29ab49352b20844ceb8951adcbdfb8e12.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl5_large.e227ef7894ef6a7135b044461232409d7c190c16.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2022 level 6", + "defindex": 4824, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2022", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2022", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2022_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl6.b2542a3365a16b10ee063a074b922f9770ca3fbd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2022_lvl6_large.9d26e169a1d810a1bf2d273f5ccac060a78288e6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "tournament_pass_antwerp2022", + "defindex": 4825, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_antwerp2022", + "item_description": "#CSGO_TournamentPass_antwerp2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2022_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_pass.9657f475496fbf853d15fc294d163beaf5ec4369.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_pass_large.1a83bb154dad72832132e99658db0e816cd09cdb.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "tournament_journal_antwerp2022", + "defindex": 4826, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_antwerp2022", + "item_description": "#CSGO_TournamentJournal_antwerp2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2022_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_bronze.5ae4d2715c1c268f525cdc96e069ddb09bc78bd1.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_bronze_large.d6b0ef1ed0794418b1927604ba5b2e9596bc21ee.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 13 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5395 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_antwerp2022_silver", + "defindex": 4827, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_antwerp2022_Silver", + "item_description": "#CSGO_TournamentJournal_antwerp2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2022_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_silver.fbbd6039bb7c426a2bc94260fef724a7afa41686.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_silver_large.fbc32111a4101f2c88d44df70bbd005c671fd010.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 13 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5395 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_antwerp2022_gold", + "defindex": 4828, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_antwerp2022_Gold", + "item_description": "#CSGO_TournamentJournal_antwerp2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2022_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_gold.4e42cefcb36534f913f9fecdcfb10dd2632be50a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_gold_large.903526b76658c80bf954bee326a24999e5b3c057.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 13 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5395 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_antwerp2022_crystal", + "defindex": 4829, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_antwerp2022_Crystal", + "item_description": "#CSGO_TournamentJournal_antwerp2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2022_crystal", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_crystal.4f8bbc057bddd674969549fedf89ce6df6e34a9f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_crystal_large.621b3bb82b76d1b61523b715222fd12ddcc68ccd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 13 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 5395 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_pass_antwerp2022_pack", + "defindex": 4830, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_antwerp2022_pack", + "item_description": "#CSGO_TournamentPass_antwerp2022_pack_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2022_pass_pack", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_pass_pack.8275d589d582bb3c525951c098a8020fcbd4e7fd.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_pass_pack_large.cc1894fc1fafb6b159346764f92e5b6b0ff9e2c8.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "tournament_pass_antwerp2022_charge", + "defindex": 4831, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_antwerp2022_charge", + "item_description": "#CSGO_TournamentPass_antwerp2022_charge_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/pgl_pickem_2022_pass_charge", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_pass_charge.d6ea82480149ddbea247c4617e5175b684177eed.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/pgl_pickem_2022_pass_charge_large.767dda9572f597e6ce4af1f73073e844eb6aae2b.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_sticker_pack_antwerp2022_legends", + "defindex": 4832, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_antwerp2022_legends", + "item_description": "#CSGO_crate_sticker_pack_antwerp2022_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_antwerp2022_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_legends.739658b85d1bf64fa382df956e4b06ee03517c8f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_legends_large.dab77e71d69ef32c80ecc110c2b48b52d729bb9b.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 341 + } + ] + + }, + { + "name": "crate_sticker_pack_antwerp2022_challengers", + "defindex": 4833, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_antwerp2022_challengers", + "item_description": "#CSGO_crate_sticker_pack_antwerp2022_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_antwerp2022_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_challengers.2a8bbe701212a71f6aafa66eefe4e5882d466d29.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_challengers_large.68fda6920297b5fc358b9ae7e1be15eb14856763.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 342 + } + ] + + }, + { + "name": "crate_sticker_pack_antwerp2022_contenders", + "defindex": 4834, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_antwerp2022_contenders", + "item_description": "#CSGO_crate_sticker_pack_antwerp2022_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_antwerp2022_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_contenders.5de5e408ebbae3c5e27d2d692aad446a515f7112.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_contenders_large.1ee0766acc2cc8fca9ae0ca5059156065f1913d8.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 343 + } + ] + + }, + { + "name": "crate_antwerp2022_promo_de_inferno", + "defindex": 4835, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_antwerp2022_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_antwerp2022_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 344 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_antwerp2022_promo_de_mirage", + "defindex": 4836, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_antwerp2022_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_antwerp2022_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 345 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_antwerp2022_promo_de_dust2", + "defindex": 4837, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_antwerp2022_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_antwerp2022_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 346 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_antwerp2022_promo_de_overpass", + "defindex": 4838, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_antwerp2022_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_antwerp2022_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 347 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_antwerp2022_promo_de_ancient", + "defindex": 4839, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_antwerp2022_promo_de_ancient", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_antwerp2022_promo_de_ancient", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 348 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_antwerp2022_promo_de_nuke", + "defindex": 4840, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_antwerp2022_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_antwerp2022_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 349 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_antwerp2022_promo_de_vertigo", + "defindex": 4841, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_antwerp2022_promo_de_vertigo", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_antwerp2022_promo_de_vertigo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 350 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + } + ] + + }, + { + "name": "crate_signature_pack_antwerp2022_group_legends", + "defindex": 4842, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_antwerp2022_group_legends", + "item_description": "#CSGO_crate_signature_pack_antwerp2022_group_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_legends.04ab14e8417a24ae0b925d8064d95929c0c6b303.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_legends_large.549867e3132b82913a217c14ac8987ba6b0a3c19.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 351 + } + ] + + }, + { + "name": "crate_signature_pack_antwerp2022_group_challengers", + "defindex": 4843, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_antwerp2022_group_challengers", + "item_description": "#CSGO_crate_signature_pack_antwerp2022_group_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_challengers.fa18c4d5778dde2971aee30f10b4f07860169353.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_challengers_large.510dcd1bf2bbe3c2760b6f400a88d636eeabdfa0.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 352 + } + ] + + }, + { + "name": "crate_signature_pack_antwerp2022_group_contenders", + "defindex": 4844, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_antwerp2022_group_contenders", + "item_description": "#CSGO_crate_signature_pack_antwerp2022_group_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_contenders.494683f2789eeade4b00accef3556d2099d52075.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_contenders_large.09cc2f1f9aef89e859975330c8a738d8d26c5343.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 353 + } + ] + + }, + { + "name": "crate_signature_pack_antwerp2022_group_champions", + "defindex": 4845, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_antwerp2022_group_champions", + "item_description": "#CSGO_crate_signature_pack_antwerp2022_group_champions_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_antwerp2022_group_champions", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_champions.db89b34dc09a6c0ecca620329c13b8f2c9cda40c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_antwerp2022_group_champions_large.3e513f03cb89a719b338039948e76983ea7e2fec.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 19 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 354 + } + ] + + }, + { + "name": "crate_community_31", + "defindex": 4846, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_community_31", + "item_description": "#CSGO_crate_community_31_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_community_31", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png", + "image_url_large": "", + "capabilities": { + "decodable": true, + "can_delete": true + }, + "tool": { + "type": "supply_crate", + "restriction": "crate_community_31", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 355 + } + ] + + }, + { + "name": "crate_sticker_pack_csgo10_capsule", + "defindex": 4847, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_csgo10_capsule", + "item_description": "#CSGO_crate_sticker_pack_csgo10_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_csgo10_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_csgo10_capsule.768c19e43ae403fc3ae5789a1e509578895413fa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_csgo10_capsule_large.305c54333ec83a5adac92ae5ac179d1803921338.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 356 + } + ] + + }, + { + "name": "crate_musickit_initiators_capsule", + "defindex": 4848, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_musickit_initiators_capsule", + "item_description": "#CSGO_crate_musickit_initiators_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_musickit_initiators_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_musickit_initiators_capsule.ec8f699c27cca77b7c1caa837d05f8b4d52a3ef6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 357 + } + ] + + }, + { + "name": "crate_musickit_initiators_stattrak_capsule", + "defindex": 4849, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_musickit_initiators_stattrak_capsule", + "item_description": "#CSGO_crate_musickit_initiators_stattrak_capsule_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_musickit_initiators_stattrak_capsule", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_musickit_initiators_stattrak_capsule.d20d2c4030e8c41199e11cec8617f70f1c6f36b0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 358 + } + ] + + }, + { + "name": "tournament_pass_rio2022", + "defindex": 4850, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_rio2022", + "item_description": "#CSGO_TournamentPass_rio2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/iem_pickem_2022_pass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_pass.9efdda295ff5440a793b774fcebb510b2a6f942e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_pass_large.05a9c387addff7eb89b2d1f6acfd22943fb3c4d4.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "tournament_journal_rio2022", + "defindex": 4851, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_rio2022", + "item_description": "#CSGO_TournamentJournal_rio2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/iem_pickem_2022_bronze", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_bronze.cd56e199a51eb0812f578b1f4be0865c85fafdbf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_bronze_large.11a15e829b19306014e5c020aa5c0a41a1acb564.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 14 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 6085 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_rio2022_silver", + "defindex": 4852, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_rio2022_Silver", + "item_description": "#CSGO_TournamentJournal_rio2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/iem_pickem_2022_silver", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_silver.48fc6677a6c45e958a531b62234c1baaa76fa931.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_silver_large.b0fcc69786742d2a4702229f63461d3a4f7a9264.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 14 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 6085 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_rio2022_gold", + "defindex": 4853, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_rio2022_Gold", + "item_description": "#CSGO_TournamentJournal_rio2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/iem_pickem_2022_gold", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_gold.3edcbeebacfb14f87c31e6b77407f6839f25a632.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_gold_large.78a52a96e06fc2cf5448dc5ebb31dd8e670037c7.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 14 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 6085 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_journal_rio2022_crystal", + "defindex": 4854, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_TournamentJournal_rio2022_Crystal", + "item_description": "#CSGO_TournamentJournal_rio2022_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/iem_pickem_2022_crystal", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_crystal.f657de272491131c37b2d7efdb827c96a164cd61.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_crystal_large.d099d1f9271f0e8178222b8c41ae55bbc8290f5a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "campaign id", + "class": "campaign_id", + "value": 14 + }, + { + "name": "sticker slot 0 id", + "class": "sticker_slot_id", + "value": 6085 + }, + { + "name": "campaign completion bitfield", + "class": "campaign_completion_bitfield", + "value": 1 + }, + { + "name": "operation drops awarded 0", + "class": "operation_drops_awarded", + "value": 0 + }, + { + "name": "operation drops awarded 1", + "class": "operation_drops_awarded", + "value": 0 + } + ] + + }, + { + "name": "tournament_pass_rio2022_pack", + "defindex": 4855, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_rio2022_pack", + "item_description": "#CSGO_TournamentPass_rio2022_pack_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/iem_pickem_2022_pass_pack", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_pass_pack.0213e03f695b320c23a47d52e319985a5a38cd1f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_pass_pack_large.2a52ecc96936c635ae83da165a1c27e43e1ebf5f.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "tournament_pass_rio2022_charge", + "defindex": 4856, + "item_class": "tool", + "item_type_name": "#CSGO_Type_Ticket", + "item_name": "#CSGO_TournamentPass_rio2022_charge", + "item_description": "#CSGO_TournamentPass_rio2022_charge_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/iem_pickem_2022_pass_charge", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_pass_charge.d6ea82480149ddbea247c4617e5175b684177eed.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/iem_pickem_2022_pass_charge_large.767dda9572f597e6ce4af1f73073e844eb6aae2b.png", + "craft_class": "tool", + "craft_material_type": "tool", + "capabilities": { + "usable_gc": true, + "usable_out_of_game": true + }, + "tool": { + "type": "fantoken", + "use_string": "#ConsumeItem" + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_sticker_pack_rio2022_legends", + "defindex": 4857, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_rio2022_legends", + "item_description": "#CSGO_crate_sticker_pack_rio2022_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rio2022_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_legends.4610fb44221bcf673e8025574c7169a23028c858.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_legends_large.e66252daea4793d6091577120df20adf7ac8a5f4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 359 + } + ] + + }, + { + "name": "crate_sticker_pack_rio2022_challengers", + "defindex": 4858, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_rio2022_challengers", + "item_description": "#CSGO_crate_sticker_pack_rio2022_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rio2022_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_challengers.b3b052fb2cb4679af2cf5a7faf52dc34ad6cb13d.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_challengers_large.d8279a8e558c7dda21c8fc7deb596dceb9234d3f.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 360 + } + ] + + }, + { + "name": "crate_sticker_pack_rio2022_contenders", + "defindex": 4859, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_sticker_pack_rio2022_contenders", + "item_description": "#CSGO_crate_sticker_pack_rio2022_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rio2022_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_contenders.82d23ccbd52cc3f7af098016bcb641ad2c75f78f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_contenders_large.30e9a7f4a33c99fc14f65eef40976bdbe5883c6d.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 361 + } + ] + + }, + { + "name": "crate_rio2022_promo_de_inferno", + "defindex": 4860, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_rio2022_promo_de_inferno", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_rio2022_promo_de_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 362 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_rio2022_promo_de_mirage", + "defindex": 4861, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_rio2022_promo_de_mirage", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_rio2022_promo_de_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 363 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_rio2022_promo_de_dust2", + "defindex": 4862, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_rio2022_promo_de_dust2", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_rio2022_promo_de_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 364 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_rio2022_promo_de_overpass", + "defindex": 4863, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_rio2022_promo_de_overpass", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_rio2022_promo_de_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 365 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_rio2022_promo_de_ancient", + "defindex": 4864, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_rio2022_promo_de_ancient", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_rio2022_promo_de_ancient", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 366 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_rio2022_promo_de_nuke", + "defindex": 4865, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_rio2022_promo_de_nuke", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_rio2022_promo_de_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 367 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_rio2022_promo_de_vertigo", + "defindex": 4866, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_rio2022_promo_de_vertigo", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_rio2022_promo_de_vertigo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 368 + }, + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + } + ] + + }, + { + "name": "crate_signature_pack_rio2022_group_legends", + "defindex": 4867, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_rio2022_group_legends", + "item_description": "#CSGO_crate_signature_pack_rio2022_group_legends_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rio2022_group_legends", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_legends.82b4e028f2f707afbb92ddf00c4e06228847aca6.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_legends_large.f0417e0e221b31a20ea389e2ec9c8550b76eb862.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 369 + } + ] + + }, + { + "name": "crate_signature_pack_rio2022_group_challengers", + "defindex": 4868, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_rio2022_group_challengers", + "item_description": "#CSGO_crate_signature_pack_rio2022_group_challengers_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rio2022_group_challengers", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_challengers.256edcf2b241619a0260a07e648545469e7b69db.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_challengers_large.96ab0b9e20577d8af5b85eb559d4203a7bfbb4a4.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 370 + } + ] + + }, + { + "name": "crate_signature_pack_rio2022_group_contenders", + "defindex": 4869, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_rio2022_group_contenders", + "item_description": "#CSGO_crate_signature_pack_rio2022_group_contenders_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rio2022_group_contenders", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_contenders.7b85931f94c27bf3047a506e49efb0b61f50294e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_contenders_large.7002e49f129b06c21592d53186e822d2268a27d9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 371 + } + ] + + }, + { + "name": "crate_signature_pack_rio2022_group_champions", + "defindex": 4870, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_crate_signature_pack_rio2022_group_champions", + "item_description": "#CSGO_crate_signature_pack_rio2022_group_champions_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/crate_sticker_pack_rio2022_group_champions", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_champions.64d44365b86e3ad9cc172911e6cb684bf61b67d2.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_sticker_pack_rio2022_group_champions_large.f185ec24c25814035a3edaa8bb8f1f343ecfbcf9.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "tournament event id", + "class": "tournament_event_id", + "value": 20 + }, + { + "name": "set supply crate series", + "class": "supply_crate_series", + "value": 372 + } + ] + + }, + { + "name": "storageunit0_rio2022", + "defindex": 4871, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_storageunit0_rio2022", + "item_description": "#CSGO_storageunit0_rio2022_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/casket_rio2022_0", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/casket_rio2022_0.4ebc70533404b253a925819a91240e5313491f1b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/casket_rio2022_0_large.1f7758a6fea36f8b8801bcb2c3abe04e6c98d6fb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + + ] + + }, + { + "name": "storageunit1_rio2022", + "defindex": 4872, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_storageunit1_rio2022", + "item_description": "#CSGO_storageunit1_rio2022_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/casket_rio2022_1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/casket_rio2022_1.fc1d279e386ce56a3b20c7c449199d89efe58128.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/casket_rio2022_1_large.4884ab38a77eb1047490decdb29164eaffe162eb.png", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2023", + "defindex": 4873, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2023", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2023", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2023_lvl1", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl1.ec49f650b58edee087f3cff03323889a63800f80.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl1_large.1002a902384bc05e8629ea2e187ea850abf8251d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2023 level 2", + "defindex": 4874, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2023", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2023", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2023_lvl2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl2.f0550c389d3663747c1f05887d286dd16b10806f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl2_large.17b9437136fe44cb5394a158530b75d08e36b26d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2023 level 3", + "defindex": 4875, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2023", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2023", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2023_lvl3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl3.7b745dc1ee97fc5ceb818355f14f0d3929931e7c.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl3_large.b6abd3c6c7dcf7ba5df9e726681f5f9dd36486f6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2023 level 4", + "defindex": 4876, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2023", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2023", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2023_lvl4", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl4.d07e9a3660277ab77c3120ff10ebd33520b0a7c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl4_large.fad3eac8f4ebc6165bfce36692a236c316207db5.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2023 level 5", + "defindex": 4877, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2023", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2023", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2023_lvl5", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl5.d6c56dbac1eb45ecff0b2eba88cff950a8c437ab.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl5_large.8482e0b73db7eeb3d749ed7c69c129ae000d7637.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "prestige coin 2023 level 6", + "defindex": 4878, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_GlobalGeneral2023", + "item_description": "#CSGO_Collectible_Desc_GlobalGeneral2023", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/service_medal_2023_lvl6", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl6.3565092b6df4d564f808ac684535614bf0e45d91.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/service_medal_2023_lvl6_large.fcfd9b161cea6beb10daef7efd9ade90320f91e7.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "studded_bloodhound_gloves", + "defindex": 5027, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_t_studdedgloves", + "item_description": "#CSGO_Wearable_t_studdedgloves_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "t_gloves", + "defindex": 5028, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_t_defaultgloves", + "item_description": "#CSGO_Wearable_t_defaultgloves_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/t_gloves", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/t_gloves.5f14eea783ae4af8925568511ce39eb76463b489.png", + "image_url_large": "", + "attributes": [ + + ] + + }, + { + "name": "ct_gloves", + "defindex": 5029, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_ct_defaultgloves", + "item_description": "#CSGO_Wearable_ct_defaultgloves_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/weapons/base_weapons/ct_gloves", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/ct_gloves.eb914fd56263553f7684f564432e61f2fe9dd52a.png", + "image_url_large": "", + "attributes": [ + + ] + + }, + { + "name": "sporty_gloves", + "defindex": 5030, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_v_sporty_glove", + "item_description": "#CSGO_Wearable_v_sporty_glove_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "slick_gloves", + "defindex": 5031, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_v_slick_glove", + "item_description": "#CSGO_Wearable_v_slick_glove_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "leather_handwraps", + "defindex": 5032, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_v_leather_handwrap", + "item_description": "#CSGO_Wearable_v_leather_handwrap_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "motorcycle_gloves", + "defindex": 5033, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_v_motorcycle_glove", + "item_description": "#CSGO_Wearable_v_motorcycle_glove_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "specialist_gloves", + "defindex": 5034, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_v_specialist_glove", + "item_description": "#CSGO_Wearable_v_specialist_glove_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "studded_hydra_gloves", + "defindex": 5035, + "item_class": "wearable_item", + "item_type_name": "#Type_Hands", + "item_name": "#CSGO_Wearable_t_studded_hydra_gloves", + "item_description": "#CSGO_Wearable_t_studded_hydra_gloves_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "capabilities": { + "paintable": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_t_map_based", + "defindex": 5036, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_t_map_based", + "item_description": "#CSGO_CustomPlayer_t_map_based_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/characters/customplayer_t_map_based", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_t_map_based.94d24e2aa6fbf46d59eec77b96f201c92e261c06.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_t_map_based_large.83508603c2f746fbb34280edaac506097b6cf069.png", + "attributes": [ + + ] + + }, + { + "name": "customplayer_ct_map_based", + "defindex": 5037, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ct_map_based", + "item_description": "#CSGO_CustomPlayer_ct_map_based_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": "econ/characters/customplayer_ct_map_based", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ct_map_based.34b3d47d4407c13197ed124f9587511f3d8de15e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ct_map_based_large.b5ad876d409b2c56fa498c01a9fc94947f330114.png", + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_anarchist", + "defindex": 5038, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_anarchist", + "item_description": "#CSGO_CustomPlayer_tm_anarchist_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_anarchist_varianta", + "defindex": 5039, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_anarchist_varianta", + "item_description": "#CSGO_CustomPlayer_tm_anarchist_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_anarchist_variantb", + "defindex": 5040, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_anarchist_variantb", + "item_description": "#CSGO_CustomPlayer_tm_anarchist_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_anarchist_variantc", + "defindex": 5041, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_anarchist_variantc", + "item_description": "#CSGO_CustomPlayer_tm_anarchist_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_anarchist_variantd", + "defindex": 5042, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_anarchist_variantd", + "item_description": "#CSGO_CustomPlayer_tm_anarchist_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_pirate", + "defindex": 5043, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_pirate", + "item_description": "#CSGO_CustomPlayer_tm_pirate_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_pirate_varianta", + "defindex": 5044, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_pirate_varianta", + "item_description": "#CSGO_CustomPlayer_tm_pirate_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_pirate_variantb", + "defindex": 5045, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_pirate_variantb", + "item_description": "#CSGO_CustomPlayer_tm_pirate_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_pirate_variantc", + "defindex": 5046, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_pirate_variantc", + "item_description": "#CSGO_CustomPlayer_tm_pirate_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_pirate_variantd", + "defindex": 5047, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_pirate_variantd", + "item_description": "#CSGO_CustomPlayer_tm_pirate_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_professional", + "defindex": 5048, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional", + "item_description": "#CSGO_CustomPlayer_tm_professional_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_professional_var1", + "defindex": 5049, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_var1", + "item_description": "#CSGO_CustomPlayer_tm_professional_var1_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_professional_var2", + "defindex": 5050, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_var2", + "item_description": "#CSGO_CustomPlayer_tm_professional_var2_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_professional_var3", + "defindex": 5051, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_var3", + "item_description": "#CSGO_CustomPlayer_tm_professional_var3_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_professional_var4", + "defindex": 5052, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_professional_var4", + "item_description": "#CSGO_CustomPlayer_tm_professional_var4_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_separatist", + "defindex": 5053, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_separatist", + "item_description": "#CSGO_CustomPlayer_tm_separatist_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_separatist_varianta", + "defindex": 5054, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_separatist_varianta", + "item_description": "#CSGO_CustomPlayer_tm_separatist_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_separatist_variantb", + "defindex": 5055, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_separatist_variantb", + "item_description": "#CSGO_CustomPlayer_tm_separatist_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_separatist_variantc", + "defindex": 5056, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_separatist_variantc", + "item_description": "#CSGO_CustomPlayer_tm_separatist_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_separatist_variantd", + "defindex": 5057, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_separatist_variantd", + "item_description": "#CSGO_CustomPlayer_tm_separatist_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gign", + "defindex": 5058, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gign", + "item_description": "#CSGO_CustomPlayer_ctm_gign_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gign_varianta", + "defindex": 5059, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gign_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_gign_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gign_variantb", + "defindex": 5060, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gign_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_gign_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gign_variantc", + "defindex": 5061, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gign_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_gign_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gign_variantd", + "defindex": 5062, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gign_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_gign_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gsg9", + "defindex": 5063, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gsg9", + "item_description": "#CSGO_CustomPlayer_ctm_gsg9_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gsg9_varianta", + "defindex": 5064, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gsg9_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_gsg9_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gsg9_variantb", + "defindex": 5065, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gsg9_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_gsg9_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gsg9_variantc", + "defindex": 5066, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gsg9_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_gsg9_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_gsg9_variantd", + "defindex": 5067, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_gsg9_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_gsg9_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_idf", + "defindex": 5068, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_idf", + "item_description": "#CSGO_CustomPlayer_ctm_idf_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_idf_variantb", + "defindex": 5069, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_idf_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_idf_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_idf_variantc", + "defindex": 5070, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_idf_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_idf_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_idf_variantd", + "defindex": 5071, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_idf_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_idf_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_idf_variante", + "defindex": 5072, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_idf_variante", + "item_description": "#CSGO_CustomPlayer_ctm_idf_variante_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_idf_variantf", + "defindex": 5073, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_idf_variantf", + "item_description": "#CSGO_CustomPlayer_ctm_idf_variantf_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_swat", + "defindex": 5074, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat", + "item_description": "#CSGO_CustomPlayer_ctm_swat_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_swat_varianta", + "defindex": 5075, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_swat_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_swat_variantb", + "defindex": 5076, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_swat_variantc", + "defindex": 5077, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_swat_variantd", + "defindex": 5078, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_swat_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_swat_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_sas_varianta", + "defindex": 5079, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_sas_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_sas_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_sas_variantb", + "defindex": 5080, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_sas_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_sas_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_sas_variantc", + "defindex": 5081, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_sas_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_sas_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_sas_variantd", + "defindex": 5082, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_sas_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_sas_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_st6", + "defindex": 5083, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6", + "item_description": "#CSGO_CustomPlayer_ctm_st6_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_st6_varianta", + "defindex": 5084, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_st6_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_st6_variantb", + "defindex": 5085, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_st6_variantc", + "defindex": 5086, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_st6_variantd", + "defindex": 5087, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_balkan_variante", + "defindex": 5088, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variante", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variante_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_balkan_varianta", + "defindex": 5089, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_varianta", + "item_description": "#CSGO_CustomPlayer_tm_balkan_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_balkan_variantb", + "defindex": 5090, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantb", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_balkan_variantc", + "defindex": 5091, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantc", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_balkan_variantd", + "defindex": 5092, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantd", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_jumpsuit_varianta", + "defindex": 5093, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jumpsuit_varianta", + "item_description": "#CSGO_CustomPlayer_tm_jumpsuit_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_jumpsuit_variantb", + "defindex": 5094, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jumpsuit_variantb", + "item_description": "#CSGO_CustomPlayer_tm_jumpsuit_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_jumpsuit_variantc", + "defindex": 5095, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_jumpsuit_variantc", + "item_description": "#CSGO_CustomPlayer_tm_jumpsuit_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_phoenix_heavy", + "defindex": 5096, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_heavy", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_heavy_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_heavy", + "defindex": 5097, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_heavy", + "item_description": "#CSGO_CustomPlayer_ctm_heavy_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_leet_varianta", + "defindex": 5100, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_varianta", + "item_description": "#CSGO_CustomPlayer_tm_leet_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_leet_variantb", + "defindex": 5101, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_variantb", + "item_description": "#CSGO_CustomPlayer_tm_leet_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_leet_variantc", + "defindex": 5102, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_variantc", + "item_description": "#CSGO_CustomPlayer_tm_leet_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_leet_variantd", + "defindex": 5103, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_variantd", + "item_description": "#CSGO_CustomPlayer_tm_leet_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_leet_variante", + "defindex": 5104, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_variante", + "item_description": "#CSGO_CustomPlayer_tm_leet_variante_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_leet_variantg", + "defindex": 5105, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_variantg", + "item_description": "#CSGO_CustomPlayer_tm_leet_variantg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_leet_variantg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_leet_variantg.b276430339e3bb9547c3465aec5f58e40e94b122.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_leet_varianth", + "defindex": 5106, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_varianth", + "item_description": "#CSGO_CustomPlayer_tm_leet_varianth_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_leet_varianth", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_leet_varianth.6f559afcf5e60f1bc2b3d9836dd89e4864a9585c.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_leet_varianti", + "defindex": 5107, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_varianti", + "item_description": "#CSGO_CustomPlayer_tm_leet_varianti_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_leet_varianti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_leet_varianti.a7ae500158e177c6b0aa6d3ae59dfdb1a5a4f0f8.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_leet_variantf", + "defindex": 5108, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_variantf", + "item_description": "#CSGO_CustomPlayer_tm_leet_variantf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_leet_variantf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_leet_variantf.fcc6fba8c4c813cfb9a4aabcef313f46d1a31c92.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_leet_variantj", + "defindex": 5109, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_leet_variantj", + "item_description": "#CSGO_CustomPlayer_tm_leet_variantj_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_leet_variantj", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_leet_variantj.8952c1a2462ed583148d403b6229b0c9eeebf4cf.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_phoenix", + "defindex": 5200, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_phoenix_varianta", + "defindex": 5201, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_varianta", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_phoenix_variantb", + "defindex": 5202, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_variantb", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_variantb_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_phoenix_variantc", + "defindex": 5203, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_variantc", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_phoenix_variantd", + "defindex": 5204, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_variantd", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_tm_phoenix_varianth", + "defindex": 5205, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_varianth", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_varianth_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_phoenix_varianth", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_phoenix_varianth.a632cd3d21411398514f6724ce7575367b1b4001.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_phoenix_variantf", + "defindex": 5206, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_variantf", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_variantf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_phoenix_variantf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_phoenix_variantf.dd156306a82555f744ec688a06e8dd788daeaced.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_phoenix_variantg", + "defindex": 5207, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_variantg", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_variantg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_phoenix_variantg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_phoenix_variantg.bf0d41b8e80fc227b23a576db872f170000788a6.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_phoenix_varianti", + "defindex": 5208, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_phoenix_varianti", + "item_description": "#CSGO_CustomPlayer_tm_phoenix_varianti_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_phoenix_varianti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_phoenix_varianti.592ed5740d844d6af82da5d07576391295b3323a.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_fbi", + "defindex": 5300, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_fbi_varianta", + "defindex": 5301, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_varianta", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_varianta_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_fbi_variantc", + "defindex": 5302, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_variantc", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_variantc_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_fbi_variantd", + "defindex": 5303, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_variantd", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_variantd_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_fbi_variante", + "defindex": 5304, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_variante", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_variante_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_fbi_variantf", + "defindex": 5305, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_variantf", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_variantf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_fbi_variantf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_fbi_variantf.214287ae5d73c4b98e3584dff7ecb5eeca6f7061.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_fbi_variantg", + "defindex": 5306, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_variantg", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_variantg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_fbi_variantg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_fbi_variantg.293297c5e9a62b72967f827b0d110560314ecfab.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_fbi_varianth", + "defindex": 5307, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_varianth", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_varianth_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_fbi_varianth", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_fbi_varianth.8831d91cf291c57e8dfaefd38d9e22f0a458a298.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_fbi_variantb", + "defindex": 5308, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_fbi_variantb", + "item_description": "#CSGO_CustomPlayer_ctm_fbi_variantb_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_fbi_variantb", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_fbi_variantb.9cb40f29278782da1be6eecec5c95d07a74df91c.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_st6_variantk", + "defindex": 5400, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantk", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantk_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_variantk", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_variantk.11e7ee3ab4490c64a086eab1a062e5a23abbe9ff.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_st6_variante", + "defindex": 5401, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variante", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variante_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_variante", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_variante.355f37cac2c7e25a16541eddfbca126f872ec39b.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_st6_variantg", + "defindex": 5402, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantg", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_variantg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_variantg.66095cb33f0ad8049c34c7af80c93770e7367242.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_st6_variantm", + "defindex": 5403, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantm", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantm_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_variantm", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_variantm.dbd362bbf0c8b10715b8051b836f48142325c82f.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_st6_varianti", + "defindex": 5404, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_varianti", + "item_description": "#CSGO_CustomPlayer_ctm_st6_varianti_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_varianti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_varianti.98fc97f23d73353b246fd4263e652a91a1b68f9d.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_st6_variantn", + "defindex": 5405, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_st6_variantn", + "item_description": "#CSGO_CustomPlayer_ctm_st6_variantn_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_st6_variantn", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_st6_variantn.209ad1edde622e01847c917ba501cdac69280002.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_balkan_variantf", + "defindex": 5500, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantf", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_balkan_variantf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_balkan_variantf.74c825883b21f913d71314d2dab7b1155853dd82.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_balkan_varianti", + "defindex": 5501, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_varianti", + "item_description": "#CSGO_CustomPlayer_tm_balkan_varianti_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_balkan_varianti", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_balkan_varianti.60acc61789c103bd81eba50498da3c9804977618.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_balkan_variantg", + "defindex": 5502, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantg", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_balkan_variantg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_balkan_variantg.8f857edd878bf7e878b791994071ff31935d18d2.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_balkan_variantj", + "defindex": 5503, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantj", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantj_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_balkan_variantj", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_balkan_variantj.fa3101370646fa9338f9a315939c76097eaa23a4.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_balkan_varianth", + "defindex": 5504, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_varianth", + "item_description": "#CSGO_CustomPlayer_tm_balkan_varianth_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_balkan_varianth", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_balkan_varianth.8d16a8253cb80f8ade812f5454a8991e5aab68c3.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_tm_balkan_variantl", + "defindex": 5505, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_tm_balkan_variantl", + "item_description": "#CSGO_CustomPlayer_tm_balkan_variantl_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_tm_balkan_variantl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_tm_balkan_variantl.fd91648b6bda8bd1ffb2c1ba44e910cbeaf6e37e.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_sas", + "defindex": 5600, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_sas", + "item_description": "#CSGO_CustomPlayer_ctm_sas_Desc", + "proper_name": false, + "item_quality": 0, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "" + }, + { + "name": "customplayer_ctm_sas_variantf", + "defindex": 5601, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_sas_variantf", + "item_description": "#CSGO_CustomPlayer_ctm_sas_variantf_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_sas_variantf", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_sas_variantf.6a6c9f284f805d44062313762287025c5c91e9aa.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "customplayer_ctm_sas_variantg", + "defindex": 5602, + "item_class": "wearable_item", + "item_type_name": "#Type_CustomPlayer", + "item_name": "#CSGO_CustomPlayer_ctm_sas_variantg", + "item_description": "#CSGO_CustomPlayer_ctm_sas_variantg_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/characters/customplayer_ctm_sas_variantg", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/characters/customplayer_ctm_sas_variantg.8752f81c015194373e87c596a45b8d26c814f2ef.png", + "image_url_large": "", + "capabilities": { + "can_patch": true + }, + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Dust II", + "defindex": 6001, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_DustII", + "item_description": "#CSGO_Collectible_Pin_DustII_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_dust2.21cfa1f8900c3e59fd207dc500ab4287feeccbc0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_dust2_large.619f7e63556591eda38a7982f63dcd686f746371.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Guardian Elite", + "defindex": 6002, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_GuardianElite", + "item_description": "#CSGO_Collectible_Pin_GuardianElite_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_guardianelite", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardianelite.6a9648fd4eba0ccbe729e2173b57ad7502880a70.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardianelite_large.709bd555c8af75e87ee661aaacc5ea4f87ac8f36.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Mirage", + "defindex": 6003, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Mirage", + "item_description": "#CSGO_Collectible_Pin_Mirage_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_mirage.0b6a425a4ee64a014165b49076498de1aaf2d3ea.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_mirage_large.52d568542487696880ef395ef009853cdd88c2e8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Inferno", + "defindex": 6004, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Inferno", + "item_description": "#CSGO_Collectible_Pin_Inferno_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno.790dbd55c964e62eae58eef4228e3b1ba4b45a39.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno_large.082a3bf33e7f6e812a47b11821f477e491f4ad2d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Italy", + "defindex": 6005, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Italy", + "item_description": "#CSGO_Collectible_Pin_Italy_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_italy", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_italy.27b52667dff5127fe2227aee83cb3dce4880f0bf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_italy_large.ebe62876c27f1bd012cb1c3b61b4b8e8ec2d6a9a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Victory", + "defindex": 6006, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Victory", + "item_description": "#CSGO_Collectible_Pin_Victory_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_victory", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_victory.f7bca47001d46f306897c89bae3ab30b86528c4f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_victory_large.64efa85ea1f1241610c21ca355ee60a24430c581.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Militia", + "defindex": 6007, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Militia", + "item_description": "#CSGO_Collectible_Pin_Militia_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_militia", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_militia.96fadc5cc09ab53f30f8a9cb7a5fbb44913f5700.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_militia_large.7c2d05990e80c386018596b4dc45982aa1bf8e4e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Nuke", + "defindex": 6008, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Nuke", + "item_description": "#CSGO_Collectible_Pin_Nuke_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_nuke.775c18ed5f8d424609a8e4d629770be11897f1c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_nuke_large.a523a4fe17b12c42f7a99e12fc6db499ff97d5bb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Train", + "defindex": 6009, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Train", + "item_description": "#CSGO_Collectible_Pin_Train_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_train.c91b16153b969f0e3f6c57fef19b1ef1ad2a8450.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_train_large.86f41b7a5eb7046a720fea36546d71b54ff30200.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Guardian", + "defindex": 6010, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Guardian", + "item_description": "#CSGO_Collectible_Pin_Guardian_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_guardian", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian.df1b403aa0f46e534b00495eae4266c7aea3bd2e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_large.0ec6a8661f634532fbf231a2838c1db57ab6537c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Tactics", + "defindex": 6011, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Tactics", + "item_description": "#CSGO_Collectible_Pin_Tactics_Desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Guardian 2", + "defindex": 6012, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_guardian_2", + "item_description": "#CSGO_Collectible_Pin_guardian_2_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_guardian_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_2.4c44a8f0cd4c3b4f7d4a50db1f1f172b34d92b72.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_2_large.975176792f130495cdcd7f43e01bc8b4a75c96b6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Bravo", + "defindex": 6013, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_bravo", + "item_description": "#CSGO_Collectible_Pin_bravo_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_bravo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bravo.5a81b7204c62282881c33c02bf7922459d95dc20.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bravo_large.29a85b644318ff1f36f07159d8c933ac49bdbcdd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Baggage", + "defindex": 6014, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_baggage", + "item_description": "#CSGO_Collectible_Pin_baggage_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_baggage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_baggage.53d1c74ca084e6c36d3790e78b11e25e4c8226aa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_baggage_large.af148c0aa24af8722ff7bf87031ff7418541fd10.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Phoenix", + "defindex": 6015, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_phoenix", + "item_description": "#CSGO_Collectible_Pin_phoenix_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_phoenix", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_phoenix.360df009154fac490797974b914065d901f61b4e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_phoenix_large.7b2e845e2299be8d4287a4b0082b0b55d206e80f.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Office", + "defindex": 6016, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_office", + "item_description": "#CSGO_Collectible_Pin_office_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_office", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_office.e3fea0d329fab9e57290135a47b608a8d0ad54dc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_office_large.9ab3200bac986bf5bcb548d428dc6f7768474ebd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Cobblestone", + "defindex": 6017, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_cobblestone", + "item_description": "#CSGO_Collectible_Pin_cobblestone_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_cobblestone", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cobblestone.489986643b521d0214ccfd762be19bbb18118b02.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cobblestone_large.2a8f37ee4d3000fe3646c27682ef55fa5e42efd1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Overpass", + "defindex": 6018, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_overpass", + "item_description": "#CSGO_Collectible_Pin_overpass_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_overpass.885df0abba233c96d8b74fc3fad4666545af54a8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_overpass_large.495d2ffee9e506f9ad4d494de711dbd3971525ff.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Bloodhound", + "defindex": 6019, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_bloodhound", + "item_description": "#CSGO_Collectible_Pin_bloodhound_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_bloodhound", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bloodhound.1998fe883080ba180d869907afa7e18cb27b12be.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bloodhound_large.330aeb89c80b499fb85c09431935e50a42b9ed15.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Cache", + "defindex": 6020, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_cache", + "item_description": "#CSGO_Collectible_Pin_cache_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cache.e128797e67d3b39b0d98e82ab24eb46701f01445.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cache_large.d56aa816fea6822bdc63c4ea00f53a00939efa23.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Valeria", + "defindex": 6021, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_valeria", + "item_description": "#CSGO_Collectible_Pin_valeria_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_valeria", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_valeria.402a1dd3e10019a4851db64ab1bd93e61e18fb52.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_valeria_large.4f554818949e92e874881d747b5732dda4b0c075.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Chroma", + "defindex": 6022, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_chroma", + "item_description": "#CSGO_Collectible_Pin_chroma_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_chroma", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_chroma.9e16923b899abe445404979aa27e3bb0c16b605a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_chroma_large.dc3201036a8d97e593612d3821f0ebaaff25c5b4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Guardian 3", + "defindex": 6023, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_guardian_3", + "item_description": "#CSGO_Collectible_Pin_guardian_3_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_guardian_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_3.a04bd61c9fb2d72a597c89969b3f15eed3a7df41.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_3_large.d449ae6cc98e0c75f5f95e97b144e7d70111cded.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Canals", + "defindex": 6024, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_canals", + "item_description": "#CSGO_Collectible_Pin_canals_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_canals", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_canals.2d354c617b184632459c4640316d8b1cb57e5038.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_canals_large.f9c191c770747c2c435f8526ba7aa5737524bafe.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Welcome to the Clutch", + "defindex": 6025, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_welcome_to_the_clutch", + "item_description": "#CSGO_Collectible_Pin_welcome_to_the_clutch_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_welcome_to_the_clutch", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_welcome_to_the_clutch.70e841f1a5cad59bca51fe7f8964a51acaa98673.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_welcome_to_the_clutch_large.662a5bf5a15d477be33b643b88e0e1254b16101d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Death Sentence", + "defindex": 6026, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_death_sentence", + "item_description": "#CSGO_Collectible_Pin_death_sentence_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_death_sentence", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_death_sentence.fce48fff6fbf2ed49f2ccd0ceae9286b5597a3c9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_death_sentence_large.2d37ade206ca6afb2aaaf99ef607816b4a1a8fa2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Inferno 2", + "defindex": 6027, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_inferno_2", + "item_description": "#CSGO_Collectible_Pin_inferno_2_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_inferno_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno_2.08f9189f3671422d9efa6701aa1851c298000073.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno_2_large.9d576c8c26538d5d2b10d5cebfeafb89b09f54cb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Wildfire", + "defindex": 6028, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_wildfire", + "item_description": "#CSGO_Collectible_Pin_wildfire_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_wildfire", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_wildfire.c45d735c8abc55e0e440fae1e3ed120c4b505e13.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_wildfire_large.b461dbbf67ab98a7c6e12f57223edd3c1892cc77.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Easy Peasy", + "defindex": 6029, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_easy_peasy", + "item_description": "#CSGO_Collectible_Pin_easy_peasy_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_easy_peasy", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_easy_peasy.63b459a523e5243c6b227c499760e0d37edae166.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_easy_peasy_large.6d3a26506958fe262928f3be5423d241dd78edab.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Aces High", + "defindex": 6030, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_aces_high", + "item_description": "#CSGO_Collectible_Pin_aces_high_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_aces_high", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_aces_high.b6bca8cc6f6caab1fc251cd8a0e38c26cbda813b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_aces_high_large.5787bd8d31493f6d1abbfbf71b0368920261286e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Hydra", + "defindex": 6031, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_hydra", + "item_description": "#CSGO_Collectible_Pin_hydra_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_hydra", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_hydra.7e20ccdcec68235ce86786aaf23d5720df7a5cb9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_hydra_large.3939e69d36c23599f2712e70db5bc0ab68e6c167.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Howl", + "defindex": 6032, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_howl", + "item_description": "#CSGO_Collectible_Pin_howl_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_howl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_howl.1b6e83b4c02df406523292c507bff79ecd41a216.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_howl_large.3506b6beea04a5bca3e2d48d3f7091990f2c5240.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - Brigadier General", + "defindex": 6033, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_brigadier_general", + "item_description": "#CSGO_Collectible_Pin_brigadier_general_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_brigadier_general", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_brigadier_general.a66cc4b674e07438286606b4fca3e200687c1cb5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_brigadier_general_large.ac36f4a0335246e25cbca477bf8e131bb2b6a771.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Collectible Pin - alyx_10", + "defindex": 6034, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_10", + "item_description": "#CSGO_Collectible_Pin_alyx_10_desc", + "proper_name": false, + "item_quality": 1, + "image_inventory": "econ/status_icons/collectible_pin_alyx_10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_10.f9a02e0cbec83d84057f6fc4467dcf4d9647ce88.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_10_large.47dff8e98927b45ef095ef27837a2ab0fb3ec52d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6035", + "defindex": 6035, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6036", + "defindex": 6036, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6037", + "defindex": 6037, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6038", + "defindex": 6038, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6039", + "defindex": 6039, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6040", + "defindex": 6040, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6041", + "defindex": 6041, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6042", + "defindex": 6042, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6043", + "defindex": 6043, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6044", + "defindex": 6044, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6045", + "defindex": 6045, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6046", + "defindex": 6046, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6047", + "defindex": 6047, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6048", + "defindex": 6048, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6049", + "defindex": 6049, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6050", + "defindex": 6050, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6051", + "defindex": 6051, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6052", + "defindex": 6052, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6053", + "defindex": 6053, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6054", + "defindex": 6054, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6055", + "defindex": 6055, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6056", + "defindex": 6056, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6057", + "defindex": 6057, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6058", + "defindex": 6058, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6059", + "defindex": 6059, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6060", + "defindex": 6060, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6061", + "defindex": 6061, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6062", + "defindex": 6062, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6063", + "defindex": 6063, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6064", + "defindex": 6064, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6065", + "defindex": 6065, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6066", + "defindex": 6066, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6067", + "defindex": 6067, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6068", + "defindex": 6068, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6069", + "defindex": 6069, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6070", + "defindex": 6070, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6071", + "defindex": 6071, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6072", + "defindex": 6072, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6073", + "defindex": 6073, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6074", + "defindex": 6074, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6075", + "defindex": 6075, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6076", + "defindex": 6076, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6077", + "defindex": 6077, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6078", + "defindex": 6078, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6079", + "defindex": 6079, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6080", + "defindex": 6080, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6081", + "defindex": 6081, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6082", + "defindex": 6082, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6083", + "defindex": 6083, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6084", + "defindex": 6084, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6085", + "defindex": 6085, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6086", + "defindex": 6086, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6087", + "defindex": 6087, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "item 6088", + "defindex": 6088, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "", + "proper_name": false, + "item_quality": 4, + "image_inventory": null, + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "", + "image_url_large": "", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Dust II", + "defindex": 6101, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_DustII", + "item_description": "#CSGO_Collectible_Pin_DustII_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_dust2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_dust2.21cfa1f8900c3e59fd207dc500ab4287feeccbc0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_dust2_large.619f7e63556591eda38a7982f63dcd686f746371.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Guardian Elite", + "defindex": 6102, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_GuardianElite", + "item_description": "#CSGO_Collectible_Pin_GuardianElite_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_guardianelite", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardianelite.6a9648fd4eba0ccbe729e2173b57ad7502880a70.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardianelite_large.709bd555c8af75e87ee661aaacc5ea4f87ac8f36.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Mirage", + "defindex": 6103, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Mirage", + "item_description": "#CSGO_Collectible_Pin_Mirage_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_mirage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_mirage.0b6a425a4ee64a014165b49076498de1aaf2d3ea.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_mirage_large.52d568542487696880ef395ef009853cdd88c2e8.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Inferno", + "defindex": 6104, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Inferno", + "item_description": "#CSGO_Collectible_Pin_Inferno_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_inferno", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno.790dbd55c964e62eae58eef4228e3b1ba4b45a39.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno_large.082a3bf33e7f6e812a47b11821f477e491f4ad2d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Italy", + "defindex": 6105, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Italy", + "item_description": "#CSGO_Collectible_Pin_Italy_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_italy", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_italy.27b52667dff5127fe2227aee83cb3dce4880f0bf.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_italy_large.ebe62876c27f1bd012cb1c3b61b4b8e8ec2d6a9a.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Victory", + "defindex": 6106, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Victory", + "item_description": "#CSGO_Collectible_Pin_Victory_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_victory", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_victory.f7bca47001d46f306897c89bae3ab30b86528c4f.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_victory_large.64efa85ea1f1241610c21ca355ee60a24430c581.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Militia", + "defindex": 6107, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Militia", + "item_description": "#CSGO_Collectible_Pin_Militia_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_militia", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_militia.96fadc5cc09ab53f30f8a9cb7a5fbb44913f5700.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_militia_large.7c2d05990e80c386018596b4dc45982aa1bf8e4e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Nuke", + "defindex": 6108, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Nuke", + "item_description": "#CSGO_Collectible_Pin_Nuke_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_nuke", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_nuke.775c18ed5f8d424609a8e4d629770be11897f1c0.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_nuke_large.a523a4fe17b12c42f7a99e12fc6db499ff97d5bb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Train", + "defindex": 6109, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Train", + "item_description": "#CSGO_Collectible_Pin_Train_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_train", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_train.c91b16153b969f0e3f6c57fef19b1ef1ad2a8450.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_train_large.86f41b7a5eb7046a720fea36546d71b54ff30200.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Guardian", + "defindex": 6110, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Guardian", + "item_description": "#CSGO_Collectible_Pin_Guardian_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_guardian", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian.df1b403aa0f46e534b00495eae4266c7aea3bd2e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_large.0ec6a8661f634532fbf231a2838c1db57ab6537c.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Tactics", + "defindex": 6111, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_Tactics", + "item_description": "#CSGO_Collectible_Pin_Tactics_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Guardian 2", + "defindex": 6112, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_guardian_2", + "item_description": "#CSGO_Collectible_Pin_guardian_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_guardian_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_2.4c44a8f0cd4c3b4f7d4a50db1f1f172b34d92b72.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_2_large.975176792f130495cdcd7f43e01bc8b4a75c96b6.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Bravo", + "defindex": 6113, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_bravo", + "item_description": "#CSGO_Collectible_Pin_bravo_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_bravo", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bravo.5a81b7204c62282881c33c02bf7922459d95dc20.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bravo_large.29a85b644318ff1f36f07159d8c933ac49bdbcdd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Baggage", + "defindex": 6114, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_baggage", + "item_description": "#CSGO_Collectible_Pin_baggage_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_baggage", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_baggage.53d1c74ca084e6c36d3790e78b11e25e4c8226aa.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_baggage_large.af148c0aa24af8722ff7bf87031ff7418541fd10.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Phoenix", + "defindex": 6115, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_phoenix", + "item_description": "#CSGO_Collectible_Pin_phoenix_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_phoenix", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_phoenix.360df009154fac490797974b914065d901f61b4e.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_phoenix_large.7b2e845e2299be8d4287a4b0082b0b55d206e80f.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Office", + "defindex": 6116, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_office", + "item_description": "#CSGO_Collectible_Pin_office_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_office", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_office.e3fea0d329fab9e57290135a47b608a8d0ad54dc.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_office_large.9ab3200bac986bf5bcb548d428dc6f7768474ebd.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Cobblestone", + "defindex": 6117, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_cobblestone", + "item_description": "#CSGO_Collectible_Pin_cobblestone_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_cobblestone", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cobblestone.489986643b521d0214ccfd762be19bbb18118b02.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cobblestone_large.2a8f37ee4d3000fe3646c27682ef55fa5e42efd1.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Overpass", + "defindex": 6118, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_overpass", + "item_description": "#CSGO_Collectible_Pin_overpass_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_overpass", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_overpass.885df0abba233c96d8b74fc3fad4666545af54a8.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_overpass_large.495d2ffee9e506f9ad4d494de711dbd3971525ff.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Bloodhound", + "defindex": 6119, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_bloodhound", + "item_description": "#CSGO_Collectible_Pin_bloodhound_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_bloodhound", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bloodhound.1998fe883080ba180d869907afa7e18cb27b12be.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_bloodhound_large.330aeb89c80b499fb85c09431935e50a42b9ed15.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Cache", + "defindex": 6120, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_cache", + "item_description": "#CSGO_Collectible_Pin_cache_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_cache", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cache.e128797e67d3b39b0d98e82ab24eb46701f01445.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_cache_large.d56aa816fea6822bdc63c4ea00f53a00939efa23.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Valeria", + "defindex": 6121, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_valeria", + "item_description": "#CSGO_Collectible_Pin_valeria_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_valeria", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_valeria.402a1dd3e10019a4851db64ab1bd93e61e18fb52.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_valeria_large.4f554818949e92e874881d747b5732dda4b0c075.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Chroma", + "defindex": 6122, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_chroma", + "item_description": "#CSGO_Collectible_Pin_chroma_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_chroma", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_chroma.9e16923b899abe445404979aa27e3bb0c16b605a.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_chroma_large.dc3201036a8d97e593612d3821f0ebaaff25c5b4.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Guardian 3", + "defindex": 6123, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_guardian_3", + "item_description": "#CSGO_Collectible_Pin_guardian_3_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_guardian_3", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_3.a04bd61c9fb2d72a597c89969b3f15eed3a7df41.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_guardian_3_large.d449ae6cc98e0c75f5f95e97b144e7d70111cded.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Canals", + "defindex": 6124, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_canals", + "item_description": "#CSGO_Collectible_Pin_canals_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_canals", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_canals.2d354c617b184632459c4640316d8b1cb57e5038.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_canals_large.f9c191c770747c2c435f8526ba7aa5737524bafe.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Welcome to the Clutch", + "defindex": 6125, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_welcome_to_the_clutch", + "item_description": "#CSGO_Collectible_Pin_welcome_to_the_clutch_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_welcome_to_the_clutch", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_welcome_to_the_clutch.70e841f1a5cad59bca51fe7f8964a51acaa98673.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_welcome_to_the_clutch_large.662a5bf5a15d477be33b643b88e0e1254b16101d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Death Sentence", + "defindex": 6126, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_death_sentence", + "item_description": "#CSGO_Collectible_Pin_death_sentence_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_death_sentence", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_death_sentence.fce48fff6fbf2ed49f2ccd0ceae9286b5597a3c9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_death_sentence_large.2d37ade206ca6afb2aaaf99ef607816b4a1a8fa2.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Inferno 2", + "defindex": 6127, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_inferno_2", + "item_description": "#CSGO_Collectible_Pin_inferno_2_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_inferno_2", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno_2.08f9189f3671422d9efa6701aa1851c298000073.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_inferno_2_large.9d576c8c26538d5d2b10d5cebfeafb89b09f54cb.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Wildfire", + "defindex": 6128, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_wildfire", + "item_description": "#CSGO_Collectible_Pin_wildfire_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_wildfire", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_wildfire.c45d735c8abc55e0e440fae1e3ed120c4b505e13.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_wildfire_large.b461dbbf67ab98a7c6e12f57223edd3c1892cc77.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Easy Peasy", + "defindex": 6129, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_easy_peasy", + "item_description": "#CSGO_Collectible_Pin_easy_peasy_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_easy_peasy", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_easy_peasy.63b459a523e5243c6b227c499760e0d37edae166.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_easy_peasy_large.6d3a26506958fe262928f3be5423d241dd78edab.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Aces High", + "defindex": 6130, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_aces_high", + "item_description": "#CSGO_Collectible_Pin_aces_high_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_aces_high", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_aces_high.b6bca8cc6f6caab1fc251cd8a0e38c26cbda813b.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_aces_high_large.5787bd8d31493f6d1abbfbf71b0368920261286e.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Hydra", + "defindex": 6131, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_hydra", + "item_description": "#CSGO_Collectible_Pin_hydra_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_hydra", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_hydra.7e20ccdcec68235ce86786aaf23d5720df7a5cb9.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_hydra_large.3939e69d36c23599f2712e70db5bc0ab68e6c167.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Howl", + "defindex": 6132, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_howl", + "item_description": "#CSGO_Collectible_Pin_howl_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_howl", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_howl.1b6e83b4c02df406523292c507bff79ecd41a216.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_howl_large.3506b6beea04a5bca3e2d48d3f7091990f2c5240.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - Brigadier General", + "defindex": 6133, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_brigadier_general", + "item_description": "#CSGO_Collectible_Pin_brigadier_general_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_brigadier_general", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_brigadier_general.a66cc4b674e07438286606b4fca3e200687c1cb5.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_brigadier_general_large.ac36f4a0335246e25cbca477bf8e131bb2b6a771.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "Commodity Pin - alyx_10", + "defindex": 6134, + "item_class": "collectible_item", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "#CSGO_Collectible_Pin_alyx_10", + "item_description": "#CSGO_Collectible_Pin_alyx_10_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_alyx_10", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_10.f9a02e0cbec83d84057f6fc4467dcf4d9647ce88.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_alyx_10_large.47dff8e98927b45ef095ef27837a2ab0fb3ec52d.png", + "craft_class": "collectable", + "craft_material_type": "tool", + "attributes": [ + + ] + + }, + { + "name": "character_operator_dossier_op09_rare", + "defindex": 6404, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_rare", + "item_description": "#CSGO_character_operator_dossier_op09_rare_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op09_mythical", + "defindex": 6405, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_mythical", + "item_description": "#CSGO_character_operator_dossier_op09_mythical_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op09_legendary", + "defindex": 6406, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_legendary", + "item_description": "#CSGO_character_operator_dossier_op09_legendary_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "character_operator_dossier_op09_ancient", + "defindex": 6407, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#CSGO_character_operator_dossier_op09_ancient", + "item_description": "#CSGO_character_operator_dossier_op09_ancient_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/weapon_cases/dossier", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/dossier.802f81dd63aa92864d83b45bde7ac3905800c1e8.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + } + }, + { + "name": "community_11 Key", + "defindex": 7000, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_11", + "item_description": "#CSGO_crate_key_community_11_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_11", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_11.1eeb8a813ef7f45d274b8737171a95167fe4cd1d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "restriction": "crate_community_11", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "coupon - bossyburger", + "defindex": 20000, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_bossyburger", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - catcall", + "defindex": 20001, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_catcall", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - chickenstrike", + "defindex": 20002, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_chickenstrike", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - ctbanana", + "defindex": 20003, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_ctbanana", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - dontworryimpro", + "defindex": 20004, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_dontworryimpro", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - fightlikeagirl", + "defindex": 20005, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_fightlikeagirl", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - handmadeflash", + "defindex": 20006, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_handmadeflash", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - kawaiikiller", + "defindex": 20007, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_kawaiikiller", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - neluthebear", + "defindex": 20008, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_neluthebear", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - oneshotonekill", + "defindex": 20009, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_oneshotonekill", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - shootingstar", + "defindex": 20010, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_shootingstar", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - warpenguin", + "defindex": 20012, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_warpenguin", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - windywalking", + "defindex": 20013, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_windywalking", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - blitzkrieg", + "defindex": 20014, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_blitzkrieg", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pigeonmaster", + "defindex": 20015, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pigeonmaster", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - terrorized", + "defindex": 20016, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_terrorized", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - tilldeathdouspart", + "defindex": 20017, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_tilldeathdouspart", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - stayfrosty", + "defindex": 20018, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_stayfrosty", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - toncat", + "defindex": 20019, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_toncat", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - danielsadowski_01", + "defindex": 20020, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_danielsadowski_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/danielsadowski_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_01.a2bf9e2640ea2dbbf5d0179b7669e09f5e7a7408.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - noisia_01", + "defindex": 20021, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_noisia_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/noisia_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/noisia_01.fe525cc5e29525708f4dc07c0a986a110075f796.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - robertallaire_01", + "defindex": 20022, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_robertallaire_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/robertallaire_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/robertallaire_01.61aafd2711f5f4ad260390f546fea72d57929900.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - seanmurray_01", + "defindex": 20023, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_seanmurray_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/seanmurray_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/seanmurray_01.5e8de73cba9c875085372f52f70cbc3404e6dcc1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - feedme_01", + "defindex": 20024, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_feedme_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/feedme_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/feedme_01.8fcf645e3b3b2754bd9c478d1576b20cb3c18fa6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - dren_01", + "defindex": 20025, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_dren_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/dren_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/dren_01.fc2175fa289bd9953dcc7d6c672a75d9e42f6093.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - austinwintory_01", + "defindex": 20026, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_austinwintory_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/austinwintory_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/austinwintory_01.5e3be7d7bd2e123d76969e7d17617545804a6c6b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - sasha_01", + "defindex": 20027, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_sasha_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/sasha_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/sasha_01.8ad1c2aebd178df3dff09c4f190b7064d46d142e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - skog_01", + "defindex": 20028, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_skog_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/skog_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_01.4869cd4270b65135eff75d121012db094bbf4973.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - doomed", + "defindex": 20029, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_doomed", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - queenofpain", + "defindex": 20030, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_queenofpain", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - trickorthreat", + "defindex": 20031, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_trickorthreat", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - trickortreat", + "defindex": 20032, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_trickortreat", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - witch", + "defindex": 20033, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_witch", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - zombielover", + "defindex": 20034, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_zombielover", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - blood_broiler", + "defindex": 20035, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_blood_broiler", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - dinked", + "defindex": 20036, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_dinked", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - drugwarveteran", + "defindex": 20037, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_drugwarveteran", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - hohoho", + "defindex": 20038, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_hohoho", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - massivepear", + "defindex": 20039, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_massivepear", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - mylittlefriend", + "defindex": 20040, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_mylittlefriend", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pandamonium", + "defindex": 20041, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pandamonium", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pieceofcake", + "defindex": 20042, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pieceofcake", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - saschicken", + "defindex": 20043, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_saschicken", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - thuglife", + "defindex": 20044, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_thuglife", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - trekt", + "defindex": 20045, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_trekt", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - warowl", + "defindex": 20046, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_warowl", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - workforfood", + "defindex": 20047, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_workforfood", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - phoenix_foil", + "defindex": 20048, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_phoenix_foil", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - bombsquad_foil", + "defindex": 20049, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_bombsquad_foil", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - midnightriders_01", + "defindex": 20050, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_midnightriders_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/midnightriders_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/midnightriders_01.22ad94b80a058ad3cb1373fcf0f69e6983491765.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - danielsadowski_02", + "defindex": 20051, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_danielsadowski_02", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/danielsadowski_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_02.5a250ef0a92cbe07b1fd5d26afd1fda52d10ee8d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - hotlinemiami_01", + "defindex": 20052, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_hotlinemiami_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/hotlinemiami_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/hotlinemiami_01.df89086218adcaf00b86cffff78191f2f5bcb500.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - mattlange_01", + "defindex": 20053, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_mattlange_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/mattlange_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mattlange_01.a5321f2db9fd84c93e384e28d6048784913af83a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - mateomessina_01", + "defindex": 20054, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_mateomessina_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/mateomessina_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mateomessina_01.94e787b3d227841ea7a3cd48dfb911131a1bb1ef.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - damjanmravunac_01", + "defindex": 20055, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_damjanmravunac_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/damjanmravunac_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/damjanmravunac_01.538b68f26daddde3c83f6ae44de9947ab7e8c2d0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - flickshot", + "defindex": 20056, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_flickshot", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - headshot_guarantee", + "defindex": 20057, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_headshot_guarantee", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - eco_rush", + "defindex": 20058, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_eco_rush", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - just_trolling", + "defindex": 20059, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_just_trolling", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - firestarter_holo", + "defindex": 20061, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_firestarter_holo", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - lucky_cat_foil", + "defindex": 20062, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_lucky_cat_foil", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - robot_head", + "defindex": 20063, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_robot_head", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - witchcraft", + "defindex": 20064, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_witchcraft", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - wanna_fight", + "defindex": 20065, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_wanna_fight", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - hostage_rescue", + "defindex": 20066, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_hostage_rescue", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - hamster_hawk", + "defindex": 20067, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_hamster_hawk", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - headless_chicken", + "defindex": 20068, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_headless_chicken", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - proxy_01", + "defindex": 20069, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_proxy_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/proxy_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/proxy_01.12796e09ff47c1dd25757cff0761bf7b880dfb3b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - kitheory_01", + "defindex": 20070, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_kitheory_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/kitheory_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kitheory_01.00e97bde40259873dfe52ffe809c0a05418d11ff.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - troelsfolmann_01", + "defindex": 20071, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_troelsfolmann_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/troelsfolmann_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/troelsfolmann_01.62c19e1f4ed3c30ec238d088ddc036671e574972.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - kellybailey_01", + "defindex": 20072, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_kellybailey_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/kellybailey_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kellybailey_01.5f62031bbb9d6859db2f1f8a575a6dcd1079c928.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - skog_02", + "defindex": 20073, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_skog_02", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/skog_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_02.eeb9ddb340f8a0b530b097f6a7f37cd922334f53.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - enfu_sticker_capsule", + "defindex": 20074, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_enfu_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - awp_country", + "defindex": 20075, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_awp_country", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - chi_bomb", + "defindex": 20076, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_chi_bomb", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - fox", + "defindex": 20077, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_fox", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - knifeclub", + "defindex": 20078, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_knifeclub", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - cs_on_the_mind", + "defindex": 20079, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_cs_on_the_mind", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - ninja_defuse", + "defindex": 20080, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_ninja_defuse", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pros_dont_fake", + "defindex": 20081, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pros_dont_fake", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - kawaiikiller_t", + "defindex": 20082, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_kawaiikiller_t", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - baackstabber", + "defindex": 20083, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_baackstabber", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - delicious_tears", + "defindex": 20084, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_delicious_tears", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - danielsadowski_03", + "defindex": 20085, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_danielsadowski_03", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/danielsadowski_03", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_03.23f670f86d302907e1965780bf0fc145ab334235.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - awolnation_01", + "defindex": 20086, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_awolnation_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/awolnation_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/awolnation_01.2ffc1650abdea909957237a616b8a85f8ca686e4.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - mordfustang_01", + "defindex": 20087, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_mordfustang_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/mordfustang_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mordfustang_01.19b15e98c183e4cf11f06ee9d59a890d91513a8b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - michaelbross_01", + "defindex": 20088, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_michaelbross_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/michaelbross_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/michaelbross_01.adff3cdea10bca94a92025cc1fd052b5a2327a8d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - ianhultquist_01", + "defindex": 20089, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_ianhultquist_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/ianhultquist_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/ianhultquist_01.3157f761e847ba428bbf82fbfa7f07c792a5d626.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - newbeatfund_01", + "defindex": 20090, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_newbeatfund_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/newbeatfund_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/newbeatfund_01.f711bcd037c0ccc121b3ef4d0d45b7646ba3ccce.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - beartooth_01", + "defindex": 20091, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_beartooth_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/beartooth_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/beartooth_01.7c8272a14a47916ceb4b59bc18b1f2d0036b5523.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - lenniemoore_01", + "defindex": 20092, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_lenniemoore_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/lenniemoore_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/lenniemoore_01.85efce33bf5d30452a8e84e4a55c78c9b44775d3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - darude_01", + "defindex": 20093, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_darude_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/darude_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/darude_01.7c92a500270301ab6883f6a144f59cc28571521d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - proxy_01_stattrak", + "defindex": 20094, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_proxy_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/proxy_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/proxy_01.12796e09ff47c1dd25757cff0761bf7b880dfb3b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - kitheory_01_stattrak", + "defindex": 20095, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_kitheory_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/kitheory_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kitheory_01.00e97bde40259873dfe52ffe809c0a05418d11ff.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - troelsfolmann_01_stattrak", + "defindex": 20096, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_troelsfolmann_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/troelsfolmann_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/troelsfolmann_01.62c19e1f4ed3c30ec238d088ddc036671e574972.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - kellybailey_01_stattrak", + "defindex": 20097, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_kellybailey_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/kellybailey_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/kellybailey_01.5f62031bbb9d6859db2f1f8a575a6dcd1079c928.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - skog_02_stattrak", + "defindex": 20098, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_skog_02_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/skog_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_02.eeb9ddb340f8a0b530b097f6a7f37cd922334f53.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - danielsadowski_03_stattrak", + "defindex": 20099, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_danielsadowski_03_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/danielsadowski_03", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_03.23f670f86d302907e1965780bf0fc145ab334235.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - awolnation_01_stattrak", + "defindex": 20100, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_awolnation_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/awolnation_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/awolnation_01.2ffc1650abdea909957237a616b8a85f8ca686e4.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - mordfustang_01_stattrak", + "defindex": 20101, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_mordfustang_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/mordfustang_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mordfustang_01.19b15e98c183e4cf11f06ee9d59a890d91513a8b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - michaelbross_01_stattrak", + "defindex": 20102, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_michaelbross_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/michaelbross_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/michaelbross_01.adff3cdea10bca94a92025cc1fd052b5a2327a8d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - ianhultquist_01_stattrak", + "defindex": 20103, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_ianhultquist_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/ianhultquist_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/ianhultquist_01.3157f761e847ba428bbf82fbfa7f07c792a5d626.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - newbeatfund_01_stattrak", + "defindex": 20104, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_newbeatfund_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/newbeatfund_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/newbeatfund_01.f711bcd037c0ccc121b3ef4d0d45b7646ba3ccce.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - beartooth_01_stattrak", + "defindex": 20105, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_beartooth_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/beartooth_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/beartooth_01.7c8272a14a47916ceb4b59bc18b1f2d0036b5523.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - lenniemoore_01_stattrak", + "defindex": 20106, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_lenniemoore_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/lenniemoore_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/lenniemoore_01.85efce33bf5d30452a8e84e4a55c78c9b44775d3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - darude_01_stattrak", + "defindex": 20107, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_darude_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/darude_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/darude_01.7c92a500270301ab6883f6a144f59cc28571521d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - danielsadowski_01_stattrak", + "defindex": 20108, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_danielsadowski_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/danielsadowski_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_01.a2bf9e2640ea2dbbf5d0179b7669e09f5e7a7408.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - noisia_01_stattrak", + "defindex": 20109, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_noisia_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/noisia_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/noisia_01.fe525cc5e29525708f4dc07c0a986a110075f796.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - robertallaire_01_stattrak", + "defindex": 20110, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_robertallaire_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/robertallaire_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/robertallaire_01.61aafd2711f5f4ad260390f546fea72d57929900.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - seanmurray_01_stattrak", + "defindex": 20111, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_seanmurray_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/seanmurray_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/seanmurray_01.5e8de73cba9c875085372f52f70cbc3404e6dcc1.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - feedme_01_stattrak", + "defindex": 20112, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_feedme_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/feedme_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/feedme_01.8fcf645e3b3b2754bd9c478d1576b20cb3c18fa6.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - dren_01_stattrak", + "defindex": 20113, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_dren_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/dren_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/dren_01.fc2175fa289bd9953dcc7d6c672a75d9e42f6093.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - austinwintory_01_stattrak", + "defindex": 20114, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_austinwintory_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/austinwintory_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/austinwintory_01.5e3be7d7bd2e123d76969e7d17617545804a6c6b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - sasha_01_stattrak", + "defindex": 20115, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_sasha_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/sasha_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/sasha_01.8ad1c2aebd178df3dff09c4f190b7064d46d142e.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - skog_01_stattrak", + "defindex": 20116, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_skog_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/skog_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/skog_01.4869cd4270b65135eff75d121012db094bbf4973.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - midnightriders_01_stattrak", + "defindex": 20117, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_midnightriders_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/midnightriders_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/midnightriders_01.22ad94b80a058ad3cb1373fcf0f69e6983491765.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - danielsadowski_02_stattrak", + "defindex": 20118, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_danielsadowski_02_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/danielsadowski_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/danielsadowski_02.5a250ef0a92cbe07b1fd5d26afd1fda52d10ee8d.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - hotlinemiami_01_stattrak", + "defindex": 20119, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_hotlinemiami_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/hotlinemiami_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/hotlinemiami_01.df89086218adcaf00b86cffff78191f2f5bcb500.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - mattlange_01_stattrak", + "defindex": 20120, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_mattlange_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/mattlange_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mattlange_01.a5321f2db9fd84c93e384e28d6048784913af83a.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - mateomessina_01_stattrak", + "defindex": 20121, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_mateomessina_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/mateomessina_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/mateomessina_01.94e787b3d227841ea7a3cd48dfb911131a1bb1ef.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - damjanmravunac_01_stattrak", + "defindex": 20122, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_damjanmravunac_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/damjanmravunac_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/damjanmravunac_01.538b68f26daddde3c83f6ae44de9947ab7e8c2d0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pinups_sticker_capsule", + "defindex": 20123, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pinups_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - slid3_sticker_capsule", + "defindex": 20124, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_slid3_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - team_roles_sticker_capsule", + "defindex": 20125, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_team_roles_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pins_series_1", + "defindex": 20126, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pins_series_1", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - sugarface_sticker_capsule", + "defindex": 20127, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_sugarface_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - bestiary_sticker_capsule", + "defindex": 20128, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_bestiary_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - crate_sprays_vcap1", + "defindex": 20129, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_crate_sprays_vcap1", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - crate_sprays_community_1", + "defindex": 20130, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_crate_sprays_community_1", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pins_series_2", + "defindex": 20131, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pins_series_2", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - radicals_stattrak_musickit_capsule", + "defindex": 20133, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_radicals_stattrak_musickit_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - illuminate_capsule_01", + "defindex": 20134, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_illuminate_capsule_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - illuminate_capsule_02", + "defindex": 20135, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_illuminate_capsule_02", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - illuminate_sprays_capsule_01", + "defindex": 20136, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_illuminate_sprays_capsule_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - comm2018_01_sticker_capsule", + "defindex": 20137, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_comm2018_01_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pins_series_3", + "defindex": 20138, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pins_series_3", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - skillgroup_sticker_capsule", + "defindex": 20139, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_skillgroup_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - theverkkars_01", + "defindex": 20140, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_theverkkars_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/theverkkars_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/theverkkars_01.c76969d8c14a9a74c71f0d5efce6453f7b70bf43.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - theverkkars_01_stattrak", + "defindex": 20141, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_theverkkars_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/theverkkars_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/theverkkars_01.c76969d8c14a9a74c71f0d5efce6453f7b70bf43.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - feral_predators_sticker_capsule", + "defindex": 20142, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_feral_predators_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - chicken_sticker_capsule", + "defindex": 20143, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_chicken_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - crate_xray_p250", + "defindex": 20144, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_crate_xray_p250", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - cs20_sticker_capsule", + "defindex": 20145, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_cs20_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - halo_sticker_capsule", + "defindex": 20146, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_halo_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - scarlxrd_01", + "defindex": 20147, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_scarlxrd_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/scarlxrd_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/scarlxrd_01.f1deaed73c132260c8354198bc2f23e939b139b3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - scarlxrd_01_stattrak", + "defindex": 20148, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_scarlxrd_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/scarlxrd_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/scarlxrd_01.f1deaed73c132260c8354198bc2f23e939b139b3.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - crate_patch_pack01", + "defindex": 20149, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_crate_patch_pack01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - pins_hlalyx", + "defindex": 20152, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_pins_hlalyx", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - hlalyx_sticker_capsule", + "defindex": 20153, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_hlalyx_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - crate_patch_pack_hlalyx", + "defindex": 20154, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_crate_patch_pack_hlalyx", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - masterminds_musickit_capsule", + "defindex": 20169, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_masterminds_musickit_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - masterminds_stattrak_musickit_capsule", + "defindex": 20170, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_masterminds_stattrak_musickit_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - warhammer_sticker_capsule", + "defindex": 20171, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_warhammer_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - amontobin_01", + "defindex": 20172, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_amontobin_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/amontobin_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/amontobin_01.2cf4f8b98a111fc847576bb6a8feb3364a2cfa1b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - amontobin_01_stattrak", + "defindex": 20173, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_amontobin_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/amontobin_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/amontobin_01.2cf4f8b98a111fc847576bb6a8feb3364a2cfa1b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - poorly_drawn_sticker_capsule", + "defindex": 20174, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_poorly_drawn_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - neckdeep_02", + "defindex": 20175, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_neckdeep_02", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/neckdeep_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/neckdeep_02.d00e38b24d5ca285fd34411afc34b874ab80cd1b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - neckdeep_02_stattrak", + "defindex": 20176, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_neckdeep_02_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/neckdeep_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/neckdeep_02.d00e38b24d5ca285fd34411afc34b874ab80cd1b.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - scarlxrd_02", + "defindex": 20177, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_scarlxrd_02", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/scarlxrd_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/scarlxrd_02.9d630d5c49841c359e6def0bc2e4e24b62b2f233.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - scarlxrd_02_stattrak", + "defindex": 20178, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_scarlxrd_02_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/scarlxrd_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/scarlxrd_02.9d630d5c49841c359e6def0bc2e4e24b62b2f233.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - tacticians_musickit_capsule", + "defindex": 20179, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_tacticians_musickit_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - tacticians_stattrak_musickit_capsule", + "defindex": 20180, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_tacticians_stattrak_musickit_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - community2021_sticker_capsule", + "defindex": 20181, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_community2021_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - bf2042_sticker_capsule", + "defindex": 20182, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_bf2042_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - bbnos_01", + "defindex": 20183, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_bbnos_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/bbnos_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/bbnos_01.41bea5be0ec1c11d2f9c58cc24d175ab62870b74.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - bbnos_01_stattrak", + "defindex": 20184, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_bbnos_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/bbnos_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/bbnos_01.41bea5be0ec1c11d2f9c58cc24d175ab62870b74.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - theverkkars_02", + "defindex": 20185, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_theverkkars_02", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/theverkkars_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/theverkkars_02.329034c68612e8f00f0f18e20d7a84f7d2b68627.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - theverkkars_02_stattrak", + "defindex": 20186, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_theverkkars_02_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/theverkkars_02", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/theverkkars_02.329034c68612e8f00f0f18e20d7a84f7d2b68627.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - spring2022_sticker_capsule", + "defindex": 20187, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_spring2022_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - csgo10_sticker_capsule", + "defindex": 20188, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_csgo10_sticker_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - initiators_musickit_capsule", + "defindex": 20189, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_initiators_musickit_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - initiators_stattrak_musickit_capsule", + "defindex": 20190, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_initiators_stattrak_musickit_capsule", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/coupon/offer", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/coupon/offer.2833a681e6fed26656302dd5fee013fcaa85d722.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - perfectworld_01", + "defindex": 20191, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_perfectworld_01", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/perfectworld_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/perfectworld_01.4e4e580548f5d81f30640b2b4cdfa9ba8eec09e0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "coupon - perfectworld_01_stattrak", + "defindex": 20192, + "item_class": "supply_crate", + "item_type_name": "#CSGO_Type_WeaponCase", + "item_name": "#coupon_perfectworld_01_stattrak", + "item_description": "#coupon_desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/music_kits/perfectworld_01", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/music_kits/perfectworld_01.4e4e580548f5d81f30640b2b4cdfa9ba8eec09e0.png", + "image_url_large": "", + "capabilities": { + "decodable": true + }, + "tool": { + "type": "supply_crate", + "usage_capabilities": { + "usable_out_of_game": true + } + }, + "attributes": [ + { + "name": "expiration date", + "class": "expiration_date", + "value": 60 + } + ] + + }, + { + "name": "Daily Payment for Map 'de_cache' starting 2018-10-10", + "defindex": 30001, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_cache' starting 2018-10-10", + "item_description": "Daily Payment for Map 'de_cache' starting 2018-10-10", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'cs_agency' starting 2018-10-10", + "defindex": 30002, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'cs_agency' starting 2018-10-10", + "item_description": "Daily Payment for Map 'cs_agency' starting 2018-10-10", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_austria' starting 2018-10-10", + "defindex": 30003, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_austria' starting 2018-10-10", + "item_description": "Daily Payment for Map 'de_austria' starting 2018-10-10", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_subzero' starting 2018-10-10", + "defindex": 30004, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_subzero' starting 2018-10-10", + "item_description": "Daily Payment for Map 'de_subzero' starting 2018-10-10", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_biome' starting 2018-10-10", + "defindex": 30005, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_biome' starting 2018-10-10", + "item_description": "Daily Payment for Map 'de_biome' starting 2018-10-10", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_zoo' starting 2019-01-24", + "defindex": 30006, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_zoo' starting 2019-01-24", + "item_description": "Daily Payment for Map 'de_zoo' starting 2019-01-24", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_abbey' starting 2019-01-24", + "defindex": 30007, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_abbey' starting 2019-01-24", + "item_description": "Daily Payment for Map 'de_abbey' starting 2019-01-24", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_ruby' starting 2019-04-26", + "defindex": 30008, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_ruby' starting 2019-04-26", + "item_description": "Daily Payment for Map 'de_ruby' starting 2019-04-26", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'cs_workout' starting 2019-04-26", + "defindex": 30009, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'cs_workout' starting 2019-04-26", + "item_description": "Daily Payment for Map 'cs_workout' starting 2019-04-26", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_breach' starting 2019-08-01", + "defindex": 30010, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_breach' starting 2019-08-01", + "item_description": "Daily Payment for Map 'de_breach' starting 2019-08-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_seaside' starting 2019-08-01", + "defindex": 30011, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_seaside' starting 2019-08-01", + "item_description": "Daily Payment for Map 'de_seaside' starting 2019-08-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_cache' starting 2019-10-19", + "defindex": 30012, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_cache' starting 2019-10-19", + "item_description": "Daily Payment for Map 'de_cache' starting 2019-10-19", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_studio' starting 2019-11-19", + "defindex": 30013, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_studio' starting 2019-11-19", + "item_description": "Daily Payment for Map 'de_studio' starting 2019-11-19", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'dz_junglety' starting 2019-11-19", + "defindex": 30014, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'dz_junglety' starting 2019-11-19", + "item_description": "Daily Payment for Map 'dz_junglety' starting 2019-11-19", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_anubis' starting 2020-04-01", + "defindex": 30015, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_anubis' starting 2020-04-01", + "item_description": "Daily Payment for Map 'de_anubis' starting 2020-04-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_chlorine' starting 2020-04-01", + "defindex": 30016, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_chlorine' starting 2020-04-01", + "item_description": "Daily Payment for Map 'de_chlorine' starting 2020-04-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_mutiny' starting 2020-07-24", + "defindex": 30017, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_mutiny' starting 2020-07-24", + "item_description": "Daily Payment for Map 'de_mutiny' starting 2020-07-24", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_swamp' starting 2020-07-24", + "defindex": 30018, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_swamp' starting 2020-07-24", + "item_description": "Daily Payment for Map 'de_swamp' starting 2020-07-24", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'dz_frostbite' starting 2020-12-04", + "defindex": 30019, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'dz_frostbite' starting 2020-12-04", + "item_description": "Daily Payment for Map 'dz_frostbite' starting 2020-12-04", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_engage' starting 2020-12-04", + "defindex": 30020, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_engage' starting 2020-12-04", + "item_description": "Daily Payment for Map 'de_engage' starting 2020-12-04", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'cs_apollo' starting 2020-12-04", + "defindex": 30021, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'cs_apollo' starting 2020-12-04", + "item_description": "Daily Payment for Map 'cs_apollo' starting 2020-12-04", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_guard' starting 2020-12-04", + "defindex": 30022, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_guard' starting 2020-12-04", + "item_description": "Daily Payment for Map 'de_guard' starting 2020-12-04", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_elysion' starting 2020-12-04", + "defindex": 30023, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_elysion' starting 2020-12-04", + "item_description": "Daily Payment for Map 'de_elysion' starting 2020-12-04", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_grind' starting 2021-05-03", + "defindex": 30024, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_grind' starting 2021-05-03", + "item_description": "Daily Payment for Map 'de_grind' starting 2021-05-03", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_mocha' starting 2021-05-03", + "defindex": 30025, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_mocha' starting 2021-05-03", + "item_description": "Daily Payment for Map 'de_mocha' starting 2021-05-03", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_calavera' starting 2021-05-03", + "defindex": 30026, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_calavera' starting 2021-05-03", + "item_description": "Daily Payment for Map 'de_calavera' starting 2021-05-03", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_pitstop' starting 2021-05-03", + "defindex": 30027, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_pitstop' starting 2021-05-03", + "item_description": "Daily Payment for Map 'de_pitstop' starting 2021-05-03", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_basalt' starting 2021-09-21", + "defindex": 30028, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_basalt' starting 2021-09-21", + "item_description": "Daily Payment for Map 'de_basalt' starting 2021-09-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'cs_insertion2' starting 2021-09-21", + "defindex": 30029, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'cs_insertion2' starting 2021-09-21", + "item_description": "Daily Payment for Map 'cs_insertion2' starting 2021-09-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_ravine' starting 2021-09-21", + "defindex": 30030, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_ravine' starting 2021-09-21", + "item_description": "Daily Payment for Map 'de_ravine' starting 2021-09-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_extraction' starting 2021-09-21", + "defindex": 30031, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_extraction' starting 2021-09-21", + "item_description": "Daily Payment for Map 'de_extraction' starting 2021-09-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'dz_county' starting 2021-09-21", + "defindex": 30032, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'dz_county' starting 2021-09-21", + "item_description": "Daily Payment for Map 'dz_county' starting 2021-09-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2626590694", + "defindex": 30033, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2633007094", + "defindex": 30034, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2595008565", + "defindex": 30035, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2607226021", + "defindex": 30036, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2632373434", + "defindex": 30037, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2628140608", + "defindex": 30038, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2620534516", + "defindex": 30039, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2589383228", + "defindex": 30040, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2632828963", + "defindex": 30041, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2631297146", + "defindex": 30042, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2632540132", + "defindex": 30043, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2632890381", + "defindex": 30044, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2632971897", + "defindex": 30045, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2628126193", + "defindex": 30046, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2633243684", + "defindex": 30047, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2587239450", + "defindex": 30048, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner - 2565442170", + "defindex": 30049, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "crate_key_community_30 - Item Contest Winner", + "defindex": 30050, + "item_class": "tool", + "item_type_name": "#CSGO_Tool_WeaponCase_KeyTag", + "item_name": "#CSGO_crate_key_community_30_contestwinner", + "item_description": "#CSGO_crate_key_community_30_contestwinner_Desc", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/tools/crate_key_community_30", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/tools/crate_key_community_30.7e43a14a5d6c6d2678de7fdc1d91b4bb599d977d.png", + "image_url_large": "", + "craft_class": "tool", + "craft_material_type": "tool", + "tool": { + "type": "decoder_ring", + "usage_capabilities": { + "decodable": true, + "usable_out_of_game": true + } + } + }, + { + "name": "Daily Payment for Map 'de_iris' starting 2022-02-21", + "defindex": 30051, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_iris' starting 2022-02-21", + "item_description": "Daily Payment for Map 'de_iris' starting 2022-02-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'cs_climb' starting 2022-02-21", + "defindex": 30052, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'cs_climb' starting 2022-02-21", + "item_description": "Daily Payment for Map 'cs_climb' starting 2022-02-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_crete' starting 2022-02-21", + "defindex": 30053, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_crete' starting 2022-02-21", + "item_description": "Daily Payment for Map 'de_crete' starting 2022-02-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_hive' starting 2022-02-21", + "defindex": 30054, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_hive' starting 2022-02-21", + "item_description": "Daily Payment for Map 'de_hive' starting 2022-02-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'dz_vineyard' starting 2022-02-21", + "defindex": 30055, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'dz_vineyard' starting 2022-02-21", + "item_description": "Daily Payment for Map 'dz_vineyard' starting 2022-02-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'dz_ember' starting 2022-02-21", + "defindex": 30056, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'dz_ember' starting 2022-02-21", + "item_description": "Daily Payment for Map 'dz_ember' starting 2022-02-21", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'cs_agency' starting 2022-03-01", + "defindex": 30057, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'cs_agency' starting 2022-03-01", + "item_description": "Daily Payment for Map 'cs_agency' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_cache' starting 2022-03-01", + "defindex": 30058, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_cache' starting 2022-03-01", + "item_description": "Daily Payment for Map 'de_cache' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_iris' starting 2022-03-01", + "defindex": 30059, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_iris' starting 2022-03-01", + "item_description": "Daily Payment for Map 'de_iris' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'cs_climb' starting 2022-03-01", + "defindex": 30060, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'cs_climb' starting 2022-03-01", + "item_description": "Daily Payment for Map 'cs_climb' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_crete' starting 2022-03-01", + "defindex": 30061, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_crete' starting 2022-03-01", + "item_description": "Daily Payment for Map 'de_crete' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_hive' starting 2022-03-01", + "defindex": 30062, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_hive' starting 2022-03-01", + "item_description": "Daily Payment for Map 'de_hive' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'dz_vineyard' starting 2022-03-01", + "defindex": 30063, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'dz_vineyard' starting 2022-03-01", + "item_description": "Daily Payment for Map 'dz_vineyard' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'dz_ember' starting 2022-03-01", + "defindex": 30064, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'dz_ember' starting 2022-03-01", + "item_description": "Daily Payment for Map 'dz_ember' starting 2022-03-01", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_tuscan' starting 2022-08-16", + "defindex": 30065, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_tuscan' starting 2022-08-16", + "item_description": "Daily Payment for Map 'de_tuscan' starting 2022-08-16", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_breach' starting 2022-08-16", + "defindex": 30066, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_breach' starting 2022-08-16", + "item_description": "Daily Payment for Map 'de_breach' starting 2022-08-16", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_prime' starting 2022-08-16", + "defindex": 30067, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_prime' starting 2022-08-16", + "item_description": "Daily Payment for Map 'de_prime' starting 2022-08-16", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_blagai' starting 2022-08-16", + "defindex": 30068, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_blagai' starting 2022-08-16", + "item_description": "Daily Payment for Map 'de_blagai' starting 2022-08-16", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_anubis' starting 2022-08-16", + "defindex": 30069, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_anubis' starting 2022-08-16", + "item_description": "Daily Payment for Map 'de_anubis' starting 2022-08-16", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "One-time Payment for Map 'de_anubis' (USD $150,000.00)", + "defindex": 30070, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "One-time Payment for Map 'de_anubis' (USD $150,000.00)", + "item_description": "One-time Payment for Map 'de_anubis' (USD $150,000.00)", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "One-time Payment for Map 'de_tuscan' (USD $150,000.00)", + "defindex": 30071, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "One-time Payment for Map 'de_tuscan' (USD $150,000.00)", + "item_description": "One-time Payment for Map 'de_tuscan' (USD $150,000.00)", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_boyard' starting 2022-12-13", + "defindex": 30072, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_boyard' starting 2022-12-13", + "item_description": "Daily Payment for Map 'de_boyard' starting 2022-12-13", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + }, + { + "name": "Daily Payment for Map 'de_chalice' starting 2022-12-13", + "defindex": 30073, + "item_class": "map_token", + "item_type_name": "#CSGO_Type_Collectible", + "item_name": "Daily Payment for Map 'de_chalice' starting 2022-12-13", + "item_description": "Daily Payment for Map 'de_chalice' starting 2022-12-13", + "proper_name": false, + "item_quality": 4, + "image_inventory": "econ/status_icons/collectible_pin_tactics", + "min_ilevel": 1, + "max_ilevel": 1, + "image_url": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics.fc68bc1c1ad538846b975d4b118398c9cc4abe79.png", + "image_url_large": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/status_icons/collectible_pin_tactics_large.d90bab9e7a60906d447d8b6663a52cde989a7047.png", + "craft_class": "collectable", + "craft_material_type": "tool" + } + ] + , + "attributes": [ + { + "name": "always tradable", + "defindex": 1, + "attribute_class": "always_tradable", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "cannot trade", + "defindex": 2, + "attribute_class": "cannot_trade", + "effect_type": "negative", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "referenced item id low", + "defindex": 3, + "attribute_class": "referenced_item_id_low", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "referenced item id high", + "defindex": 4, + "attribute_class": "referenced_item_id_high", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "set item texture prefab", + "defindex": 6, + "attribute_class": "set_item_texture_prefab", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "set item texture seed", + "defindex": 7, + "attribute_class": "set_item_texture_seed", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "set item texture wear", + "defindex": 8, + "attribute_class": "set_item_texture_wear", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "has silencer", + "defindex": 10, + "attribute_class": "has_silencer", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "has burst mode", + "defindex": 13, + "attribute_class": "has_burst_mode", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "cycletime when in burst mode", + "defindex": 14, + "attribute_class": "cycletime_when_in_burst_mode", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "time between burst shots", + "defindex": 15, + "attribute_class": "time_between_burst_shots", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "unzoom after shot", + "defindex": 16, + "attribute_class": "unzoom_after_shot", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "cycletime when zoomed", + "defindex": 17, + "attribute_class": "cycletime_when_zoomed", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "cannot shoot underwater", + "defindex": 18, + "attribute_class": "cannot_shoot_underwater", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "in game price", + "defindex": 19, + "attribute_class": "in_game_price", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "primary clip size", + "defindex": 20, + "attribute_class": "primary_clip_size", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "secondary clip size", + "defindex": 21, + "attribute_class": "secondary_clip_size", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "is full auto", + "defindex": 22, + "attribute_class": "is_full_auto", + "description_string": "#Attrib_FullAuto", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": false + }, + { + "name": "heat per shot", + "defindex": 23, + "attribute_class": "heat_per_shot", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "addon scale", + "defindex": 24, + "attribute_class": "addon_scale", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "tracer frequency", + "defindex": 25, + "attribute_class": "tracer_frequency", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "max player speed", + "defindex": 26, + "attribute_class": "max_player_speed", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "max player speed alt", + "defindex": 27, + "attribute_class": "max_player_speed_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "armor ratio", + "defindex": 28, + "attribute_class": "armor_ratio", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "crosshair min distance", + "defindex": 29, + "attribute_class": "crosshair_min_distance", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "crosshair delta distance", + "defindex": 30, + "attribute_class": "crosshair_delta_distance", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "penetration", + "defindex": 31, + "attribute_class": "penetration", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "damage", + "defindex": 32, + "attribute_class": "damage", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "range", + "defindex": 33, + "attribute_class": "range", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "range modifier", + "defindex": 34, + "attribute_class": "range_modifier", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "bullets", + "defindex": 35, + "attribute_class": "bullets", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "cycletime", + "defindex": 36, + "attribute_class": "cycletime", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "time to idle", + "defindex": 37, + "attribute_class": "time_to_idle", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "idle interval", + "defindex": 38, + "attribute_class": "idle interval", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "flinch velocity modifier large", + "defindex": 39, + "attribute_class": "flinch_velocity_modifier_large", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "flinch velocity modifier small", + "defindex": 40, + "attribute_class": "flinch velocity modifier small", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "spread", + "defindex": 41, + "attribute_class": "spread", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy crouch", + "defindex": 42, + "attribute_class": "inaccuracy_crouch", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy stand", + "defindex": 43, + "attribute_class": "inaccuracy_stand", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy jump", + "defindex": 44, + "attribute_class": "inaccuracy_jump", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy land", + "defindex": 45, + "attribute_class": "inaccuracy_land", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy ladder", + "defindex": 46, + "attribute_class": "inaccuracy_ladder", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy fire", + "defindex": 47, + "attribute_class": "inaccuracy_fire", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy move", + "defindex": 48, + "attribute_class": "inaccuracy_move", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "spread alt", + "defindex": 49, + "attribute_class": "spread_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy crouch alt", + "defindex": 50, + "attribute_class": "inaccuracy_crouch_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy stand alt", + "defindex": 51, + "attribute_class": "inaccuracy_stand_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy jump alt", + "defindex": 52, + "attribute_class": "inaccuracy_jump_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy land alt", + "defindex": 53, + "attribute_class": "inaccuracy_land_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy ladder alt", + "defindex": 54, + "attribute_class": "inaccuracy_ladder_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy fire alt", + "defindex": 55, + "attribute_class": "inaccuracy_fire_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy move alt", + "defindex": 56, + "attribute_class": "inaccuracy_move_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recovery time crouch", + "defindex": 57, + "attribute_class": "recovery_time_crouch", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recovery time stand", + "defindex": 58, + "attribute_class": "recovery_time_stand", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil seed", + "defindex": 59, + "attribute_class": "recoil_seed", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil angle", + "defindex": 60, + "attribute_class": "recoil_angle", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil angle variance", + "defindex": 61, + "attribute_class": "recoil_angle_variance", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil magnitude", + "defindex": 62, + "attribute_class": "recoil_magnitude", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil magnitude variance", + "defindex": 63, + "attribute_class": "recoil_magnitude_variance", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil angle alt", + "defindex": 64, + "attribute_class": "recoil_angle_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil angle variance alt", + "defindex": 65, + "attribute_class": "recoil_angle_variance_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil magnitude alt", + "defindex": 66, + "attribute_class": "recoil_magnitude_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recoil magnitude variance alt", + "defindex": 67, + "attribute_class": "recoil_magnitude_variance_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "set supply crate series", + "defindex": 68, + "attribute_class": "supply_crate_series", + "description_string": "#Attrib_SupplyCrateSeries", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "minutes played", + "defindex": 69, + "attribute_class": "minutes_played", + "description_string": "#Attrib_MinutesPlayedAsHrs", + "description_format": "value_is_mins_as_hours", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": false + }, + { + "name": "alternate icon", + "defindex": 70, + "attribute_class": "alternate_icon", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "season access", + "defindex": 71, + "attribute_class": "season_access", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "disallow recycling", + "defindex": 72, + "attribute_class": "disallow_recycling", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "upgrade threshold", + "defindex": 73, + "attribute_class": "upgrade_threshold", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "tradable after date", + "defindex": 75, + "attribute_class": "tradable_after_date", + "effect_type": "negative", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "is revolver", + "defindex": 76, + "attribute_class": "is_revolver", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "scope dot model", + "defindex": 77, + "attribute_class": "scope_dot_model", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "elevate quality", + "defindex": 78, + "attribute_class": "set_elevated_quality", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "cycletime alt", + "defindex": 79, + "attribute_class": "cycletime_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "kill eater", + "defindex": 80, + "attribute_class": "kill_eater", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "kill eater score type", + "defindex": 81, + "attribute_class": "kill_eater_score_type", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "kill eater user 1", + "defindex": 82, + "attribute_class": "kill_eater_user_1", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "kill eater user score type 1", + "defindex": 83, + "attribute_class": "kill_eater_user_score_type_1", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "kill eater user 2", + "defindex": 84, + "attribute_class": "kill_eater_user_2", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "kill eater user score type 2", + "defindex": 85, + "attribute_class": "kill_eater_user_score_type_2", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "kill eater user 3", + "defindex": 86, + "attribute_class": "kill_eater_user_3", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "kill eater user score type 3", + "defindex": 87, + "attribute_class": "kill_eater_user_score_type_3", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "kill eater 2", + "defindex": 88, + "attribute_class": "kill_eater_2", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "kill eater score type 2", + "defindex": 89, + "attribute_class": "kill_eater_score_type_2", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "tracer frequency alt", + "defindex": 92, + "attribute_class": "tracer_frequency_alt", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "primary default clip size", + "defindex": 93, + "attribute_class": "primary_default_clip_size", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "secondary default clip size", + "defindex": 94, + "attribute_class": "secondary_default_clip_size", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recipe filter", + "defindex": 95, + "attribute_class": "recipe_filter", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "competitive kills", + "defindex": 97, + "attribute_class": "competitive_kills", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "competitive 3k", + "defindex": 98, + "attribute_class": "competitive_3k", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "competitive 4k", + "defindex": 99, + "attribute_class": "competitive_4k", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "competitive 5k", + "defindex": 101, + "attribute_class": "competitive_5k", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "competitive wins", + "defindex": 103, + "attribute_class": "competitive_wins", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "competitive mvps", + "defindex": 104, + "attribute_class": "competitive_mvps", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "match wins", + "defindex": 106, + "attribute_class": "match_wins", + "description_string": "#Attrib_MatchWins", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "preferred sort", + "defindex": 107, + "attribute_class": "preferred_sort", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "custom name attr", + "defindex": 111, + "attribute_class": "custom_name_attr", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "custom desc attr", + "defindex": 112, + "attribute_class": "custom_desc_attr", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 0 id", + "defindex": 113, + "attribute_class": "sticker_slot_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "sticker slot 0 wear", + "defindex": 114, + "attribute_class": "sticker_slot_wear", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 0 scale", + "defindex": 115, + "attribute_class": "sticker_slot_scale", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 0 rotation", + "defindex": 116, + "attribute_class": "sticker_slot_rotation", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 1 id", + "defindex": 117, + "attribute_class": "sticker_slot_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "sticker slot 1 wear", + "defindex": 118, + "attribute_class": "sticker_slot_wear", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 1 scale", + "defindex": 119, + "attribute_class": "sticker_slot_scale", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 1 rotation", + "defindex": 120, + "attribute_class": "sticker_slot_rotation", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 2 id", + "defindex": 121, + "attribute_class": "sticker_slot_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "sticker slot 2 wear", + "defindex": 122, + "attribute_class": "sticker_slot_wear", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 2 scale", + "defindex": 123, + "attribute_class": "sticker_slot_scale", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 2 rotation", + "defindex": 124, + "attribute_class": "sticker_slot_rotation", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 3 id", + "defindex": 125, + "attribute_class": "sticker_slot_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "sticker slot 3 wear", + "defindex": 126, + "attribute_class": "sticker_slot_wear", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 3 scale", + "defindex": 127, + "attribute_class": "sticker_slot_scale", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 3 rotation", + "defindex": 128, + "attribute_class": "sticker_slot_rotation", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 4 id", + "defindex": 129, + "attribute_class": "sticker_slot_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "sticker slot 4 wear", + "defindex": 130, + "attribute_class": "sticker_slot_wear", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 4 scale", + "defindex": 131, + "attribute_class": "sticker_slot_scale", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 4 rotation", + "defindex": 132, + "attribute_class": "sticker_slot_rotation", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 5 id", + "defindex": 133, + "attribute_class": "sticker_slot_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "sticker slot 5 wear", + "defindex": 134, + "attribute_class": "sticker_slot_wear", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 5 scale", + "defindex": 135, + "attribute_class": "sticker_slot_scale", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "sticker slot 5 rotation", + "defindex": 136, + "attribute_class": "sticker_slot_rotation", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "tournament event id", + "defindex": 137, + "attribute_class": "tournament_event_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "tournament event stage id", + "defindex": 138, + "attribute_class": "tournament_event_stage_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "tournament event team0 id", + "defindex": 139, + "attribute_class": "tournament_event_team_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "tournament event team1 id", + "defindex": 140, + "attribute_class": "tournament_event_team_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "icon display model", + "defindex": 142, + "attribute_class": "icon_display_model", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "buymenu display model", + "defindex": 143, + "attribute_class": "buymenu_display_model", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "pedestal display model", + "defindex": 144, + "attribute_class": "pedestal_display_model", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "magazine model", + "defindex": 145, + "attribute_class": "magazine_model", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "uid model", + "defindex": 146, + "attribute_class": "uid_model", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "stattrak model", + "defindex": 147, + "attribute_class": "stattrak_model", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight capable", + "defindex": 150, + "attribute_class": "aimsight_capable", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "aimsight eye pos", + "defindex": 151, + "attribute_class": "aimsight_eye_pos", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight pivot angle", + "defindex": 154, + "attribute_class": "aimsight_pivot_angle", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight speed up", + "defindex": 157, + "attribute_class": "aimsight_speed_up", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight speed down", + "defindex": 158, + "attribute_class": "aimsight_speed_down", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight looseness", + "defindex": 159, + "attribute_class": "aimsight_looseness", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight fov", + "defindex": 160, + "attribute_class": "aimsight_fov", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight pivot forward", + "defindex": 161, + "attribute_class": "aimsight_pivot_forward", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "radio use sound", + "defindex": 163, + "attribute_class": "radio_use_sound", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "radio use subtitle", + "defindex": 164, + "attribute_class": "radio_use_subtitle", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "aimsight lens mask", + "defindex": 165, + "attribute_class": "aimsight_lens_mask", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "music id", + "defindex": 166, + "attribute_class": "music_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "quests complete", + "defindex": 171, + "attribute_class": "quests_complete", + "description_string": "#Attrib_QuestsComplete", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "operation kills", + "defindex": 172, + "attribute_class": "operation_kills", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "operation 3k", + "defindex": 173, + "attribute_class": "operation_3k", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "operation 4k", + "defindex": 174, + "attribute_class": "operation_4k", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "operation 5k", + "defindex": 175, + "attribute_class": "operation_5k", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "operation mvps", + "defindex": 177, + "attribute_class": "operation_mvps", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "operation wins", + "defindex": 179, + "attribute_class": "operation_wins", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "deployment date", + "defindex": 180, + "attribute_class": "deployment_date", + "description_string": "#Attrib_DeploymentDate", + "description_format": "value_is_date", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "use after date", + "defindex": 182, + "attribute_class": "use_after_date", + "effect_type": "negative", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "zoom time 0", + "defindex": 190, + "attribute_class": "zoom_time_0", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "zoom time 1", + "defindex": 191, + "attribute_class": "zoom_time_1", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "zoom time 2", + "defindex": 192, + "attribute_class": "zoom_time_2", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "zoom fov 1", + "defindex": 193, + "attribute_class": "zoom_fov_1", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "zoom fov 2", + "defindex": 194, + "attribute_class": "zoom_fov_2", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "hide view model zoomed", + "defindex": 195, + "attribute_class": "zoom_fov_1", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "zoom levels", + "defindex": 196, + "attribute_class": "zoom_levels", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "kill award", + "defindex": 197, + "attribute_class": "kill_award", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": false + }, + { + "name": "primary reserve ammo max", + "defindex": 199, + "attribute_class": "primary_reserve_ammo_max", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "secondary reserve ammo max", + "defindex": 200, + "attribute_class": "secondary_reserve_ammo_max", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "operation bonus points", + "defindex": 220, + "attribute_class": "operation_bonus_points", + "description_string": "#Attrib_OperationBonusXP", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "prestige year", + "defindex": 221, + "attribute_class": "prestige_year", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "issue date", + "defindex": 222, + "attribute_class": "issue_date", + "description_string": "#Attrib_IssueDate", + "description_format": "value_is_date", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "tournament mvp account id", + "defindex": 223, + "attribute_class": "tournament_mvp_account_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "recovery time crouch final", + "defindex": 228, + "attribute_class": "recovery_time_crouch_final", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recovery time stand final", + "defindex": 229, + "attribute_class": "recovery_time_stand_final", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "recovery transition start bullet", + "defindex": 230, + "attribute_class": "recovery_transition_start_bullet", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "recovery transition end bullet", + "defindex": 231, + "attribute_class": "recovery_transition_end_bullet", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "spray tint id", + "defindex": 233, + "attribute_class": "spray_tint_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "inaccuracy jump initial", + "defindex": 234, + "attribute_class": "inaccuracy_jump_initial", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "attack movespeed factor", + "defindex": 242, + "attribute_class": "attack_movespeed_factor", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "allow hand flipping", + "defindex": 243, + "attribute_class": "allow_hand_flipping", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "is melee weapon", + "defindex": 245, + "attribute_class": "is_melee_weapon", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "model right handed", + "defindex": 246, + "attribute_class": "model_right_handed", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "weapon weight", + "defindex": 247, + "attribute_class": "weapon_weight", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "wrong team msg", + "defindex": 248, + "attribute_class": "wrong_team_msg", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "itemflag select on empty", + "defindex": 249, + "attribute_class": "itemflag_select_on_empty", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "itemflag no auto reload", + "defindex": 250, + "attribute_class": "itemflag_no_auto_reload", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "itemflag no auto switch empty", + "defindex": 251, + "attribute_class": "itemflag_no_auto_switch_empty", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "itemflag limit in world", + "defindex": 252, + "attribute_class": "itemflag_limit_in_world", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "itemflag exhaustible", + "defindex": 253, + "attribute_class": "itemflag_exhaustible", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "itemflag do hit location dmg", + "defindex": 254, + "attribute_class": "itemflag_do_hit_location_dmg", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "itemflag no ammo pickups", + "defindex": 255, + "attribute_class": "itemflag_no_ammo_pickups", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "itemflag no item pickup", + "defindex": 256, + "attribute_class": "itemflag_no_item_pickup", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "inaccuracy reload", + "defindex": 257, + "attribute_class": "inaccuracy_reload", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "throw velocity", + "defindex": 259, + "attribute_class": "throw_velocity", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "bot audible range", + "defindex": 261, + "attribute_class": "bot_audible_range", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "rumble effect", + "defindex": 262, + "attribute_class": "rumble_effect", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "inaccuracy pitch shift", + "defindex": 263, + "attribute_class": "inaccuracy_pitch_shift", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "inaccuracy alt sound threshold", + "defindex": 264, + "attribute_class": "inaccuracy_alt_sound_threshold", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "silencer model", + "defindex": 265, + "attribute_class": "silencer_model", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "spread seed", + "defindex": 266, + "attribute_class": "spread_seed", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "special event id", + "defindex": 267, + "attribute_class": "special_event_id", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "upgrade level", + "defindex": 268, + "attribute_class": "upgrade_level", + "effect_type": "positive", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "items count", + "defindex": 270, + "attribute_class": "items_count", + "description_string": "#Attrib_ItemsCount", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "modification date", + "defindex": 271, + "attribute_class": "modification_date", + "description_string": "#Attrib_ModificationDate", + "description_format": "value_is_date", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "casket item id low", + "defindex": 272, + "attribute_class": "casket_item_id", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "casket item id high", + "defindex": 273, + "attribute_class": "casket_item_id", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": true + }, + { + "name": "stars attained", + "defindex": 274, + "attribute_class": "stars_attained", + "description_string": "#Attrib_StarsAttained", + "description_format": "value_is_additive", + "effect_type": "positive", + "hidden": false, + "stored_as_integer": true + }, + { + "name": "inaccuracy jump apex", + "defindex": 275, + "attribute_class": "inaccuracy_jump_apex", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + }, + { + "name": "headshot multiplier", + "defindex": 276, + "attribute_class": "headshot_multiplier", + "effect_type": "neutral", + "hidden": true, + "stored_as_integer": false + } + ] + , + "item_sets": [ + { + "item_set": "set_assault", + "name": "#CSGO_set_assault", + "items": [ + "weapon_ump45", + "weapon_sg556", + "weapon_fiveseven", + "weapon_negev", + "weapon_aug", + "weapon_glock", + "weapon_mp9" + ] + + }, + { + "item_set": "set_aztec", + "name": "#CSGO_set_aztec", + "items": [ + "weapon_nova", + "weapon_ssg08", + "weapon_fiveseven", + "weapon_m4a1", + "weapon_ak47", + "weapon_tec9" + ] + + }, + { + "item_set": "set_baggage", + "name": "#CSGO_set_baggage", + "items": [ + "weapon_g3sg1", + "weapon_ssg08", + "weapon_mp7", + "weapon_mp9", + "weapon_cz75a", + "weapon_p90", + "weapon_mac10", + "weapon_hkp2000", + "weapon_sg556", + "weapon_sawedoff", + "weapon_xm1014", + "weapon_usp_silencer", + "weapon_ak47", + "weapon_deagle", + "weapon_ak47" + ] + + }, + { + "item_set": "set_bank", + "name": "#CSGO_set_bank", + "items": [ + "weapon_mp7", + "weapon_sawedoff", + "weapon_tec9", + "weapon_revolver", + "weapon_negev", + "weapon_sg556", + "weapon_mac10", + "weapon_ump45", + "weapon_glock", + "weapon_g3sg1", + "weapon_nova", + "weapon_deagle", + "weapon_galilar", + "weapon_cz75a", + "weapon_ak47", + "weapon_p250" + ] + + }, + { + "item_set": "set_blacksite", + "name": "#CSGO_set_blacksite", + "items": [ + "weapon_mp5sd" + ] + + }, + { + "item_set": "set_bravo_i", + "name": "#CSGO_set_bravo_i", + "items": [ + "weapon_sg556", + "weapon_elite", + "weapon_nova", + "weapon_galilar", + "weapon_ump45", + "weapon_g3sg1", + "weapon_usp_silencer", + "weapon_m4a1", + "weapon_mac10", + "weapon_m4a1_silencer", + "weapon_p90", + "weapon_hkp2000", + "weapon_awp", + "weapon_ak47", + "weapon_deagle" + ] + + }, + { + "item_set": "set_bravo_ii", + "name": "#CSGO_set_bravo_ii", + "items": [ + "weapon_mp9", + "weapon_m249", + "weapon_xm1014", + "weapon_tec9", + "weapon_mp7", + "weapon_fiveseven", + "weapon_ssg08", + "weapon_negev", + "weapon_sawedoff", + "weapon_p250", + "weapon_glock", + "weapon_aug", + "weapon_mag7", + "weapon_bizon", + "weapon_famas", + "weapon_scar20" + ] + + }, + { + "item_set": "set_cache", + "name": "#CSGO_set_cache", + "items": [ + "weapon_negev", + "weapon_p250", + "weapon_aug", + "weapon_bizon", + "weapon_fiveseven", + "weapon_sg556", + "weapon_glock", + "weapon_mp9", + "weapon_xm1014", + "weapon_mac10", + "weapon_tec9", + "weapon_famas", + "weapon_galilar" + ] + + }, + { + "item_set": "set_canals", + "name": "#CSGO_set_canals", + "items": [ + "weapon_aug", + "weapon_scar20", + "weapon_revolver", + "weapon_negev", + "weapon_cz75a", + "weapon_ak47", + "weapon_sg556", + "weapon_p250", + "weapon_tec9", + "weapon_p90", + "weapon_g3sg1", + "weapon_elite", + "weapon_ssg08", + "weapon_mp9", + "weapon_mac10", + "weapon_nova", + "weapon_mag7", + "weapon_awp" + ] + + }, + { + "item_set": "set_chopshop", + "name": "#CSGO_set_chopshop", + "items": [ + "weapon_scar20", + "weapon_cz75a", + "weapon_m249", + "weapon_mag7", + "weapon_deagle", + "weapon_galilar", + "weapon_usp_silencer", + "weapon_mac10", + "weapon_p250", + "weapon_mp7", + "weapon_fiveseven", + "weapon_cz75a", + "weapon_sg556", + "weapon_elite", + "weapon_glock", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_cobblestone", + "name": "#CSGO_set_cobblestone", + "items": [ + "weapon_p90", + "weapon_scar20", + "weapon_elite", + "weapon_mac10", + "weapon_ump45", + "weapon_mag7", + "weapon_nova", + "weapon_sawedoff", + "weapon_usp_silencer", + "weapon_hkp2000", + "weapon_mp9", + "weapon_cz75a", + "weapon_deagle", + "weapon_m4a1_silencer", + "weapon_awp" + ] + + }, + { + "item_set": "set_community_1", + "name": "#CSGO_set_community_1", + "items": [ + "weapon_galilar", + "weapon_fiveseven", + "weapon_m249", + "weapon_bizon", + "weapon_famas", + "weapon_elite", + "weapon_mp9", + "weapon_nova", + "weapon_m4a1_silencer", + "weapon_p250", + "weapon_awp", + "weapon_m4a1", + "weapon_sawedoff" + ] + + }, + { + "item_set": "set_community_10", + "name": "#CSGO_set_community_10", + "items": [ + "weapon_revolver", + "weapon_aug", + "weapon_deagle", + "weapon_hkp2000", + "weapon_sawedoff", + "weapon_scar20", + "weapon_bizon", + "weapon_fiveseven", + "weapon_negev", + "weapon_sg556", + "weapon_tec9", + "weapon_xm1014", + "weapon_ak47", + "weapon_g3sg1", + "weapon_p90", + "weapon_m4a1", + "weapon_revolver" + ] + + }, + { + "item_set": "set_community_11", + "name": "#CSGO_set_community_11", + "items": [ + "weapon_bizon", + "weapon_elite", + "weapon_mac10", + "weapon_ssg08", + "weapon_tec9", + "weapon_usp_silencer", + "weapon_famas", + "weapon_fiveseven", + "weapon_glock", + "weapon_mag7", + "weapon_mp7", + "weapon_awp", + "weapon_deagle", + "weapon_nova", + "weapon_ak47", + "weapon_m4a1" + ] + + }, + { + "item_set": "set_community_12", + "name": "#CSGO_set_community_12", + "items": [ + "weapon_elite", + "weapon_g3sg1", + "weapon_m249", + "weapon_mp9", + "weapon_hkp2000", + "weapon_sawedoff", + "weapon_sg556", + "weapon_cz75a", + "weapon_galilar", + "weapon_ssg08", + "weapon_tec9", + "weapon_xm1014", + "weapon_aug", + "weapon_p250", + "weapon_ump45", + "weapon_bizon", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_community_13", + "name": "#CSGO_set_community_13", + "items": [ + "weapon_fiveseven", + "weapon_mac10", + "weapon_nova", + "weapon_p250", + "weapon_bizon", + "weapon_sg556", + "weapon_tec9", + "weapon_aug", + "weapon_awp", + "weapon_p90", + "weapon_revolver", + "weapon_sawedoff", + "weapon_m4a1", + "weapon_hkp2000", + "weapon_scar20", + "weapon_glock", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_community_15", + "name": "#CSGO_set_community_15", + "items": [ + "weapon_cz75a", + "weapon_glock", + "weapon_mp7", + "weapon_galilar", + "weapon_mp9", + "weapon_mag7", + "weapon_hkp2000", + "weapon_elite", + "weapon_g3sg1", + "weapon_m4a1_silencer", + "weapon_nova", + "weapon_usp_silencer", + "weapon_famas", + "weapon_p90", + "weapon_sawedoff", + "weapon_ssg08", + "weapon_m4a1" + ] + + }, + { + "item_set": "set_community_16", + "name": "#CSGO_set_community_16", + "items": [ + "weapon_bizon", + "weapon_scar20", + "weapon_deagle", + "weapon_fiveseven", + "weapon_mp7", + "weapon_p250", + "weapon_sawedoff", + "weapon_galilar", + "weapon_m249", + "weapon_mac10", + "weapon_ump45", + "weapon_xm1014", + "weapon_awp", + "weapon_cz75a", + "weapon_m4a1_silencer", + "weapon_ak47", + "weapon_usp_silencer" + ] + + }, + { + "item_set": "set_community_17", + "name": "#CSGO_set_community_17", + "items": [ + "weapon_usp_silencer", + "weapon_famas", + "weapon_m4a1_silencer", + "weapon_mac10", + "weapon_mag7", + "weapon_tec9", + "weapon_ump45", + "weapon_ak47", + "weapon_hkp2000", + "weapon_p250", + "weapon_p90", + "weapon_ssg08", + "weapon_elite", + "weapon_galilar", + "weapon_m4a1", + "weapon_fiveseven", + "weapon_awp" + ] + + }, + { + "item_set": "set_community_18", + "name": "#CSGO_set_community_18", + "items": [ + "weapon_sawedoff", + "weapon_aug", + "weapon_g3sg1", + "weapon_glock", + "weapon_mac10", + "weapon_tec9", + "weapon_scar20", + "weapon_mp9", + "weapon_sg556", + "weapon_cz75a", + "weapon_ump45", + "weapon_xm1014", + "weapon_bizon", + "weapon_m4a1_silencer", + "weapon_revolver", + "weapon_ak47", + "weapon_p250" + ] + + }, + { + "item_set": "set_community_19", + "name": "#CSGO_set_community_19", + "items": [ + "weapon_bizon", + "weapon_fiveseven", + "weapon_mp9", + "weapon_hkp2000", + "weapon_revolver", + "weapon_sg556", + "weapon_xm1014", + "weapon_glock", + "weapon_negev", + "weapon_nova", + "weapon_mag7", + "weapon_ump45", + "weapon_aug", + "weapon_awp", + "weapon_usp_silencer", + "weapon_m4a1", + "weapon_mp7" + ] + + }, + { + "item_set": "set_community_2", + "name": "#CSGO_set_community_2", + "items": [ + "weapon_ump45", + "weapon_negev", + "weapon_tec9", + "weapon_mag7", + "weapon_mac10", + "weapon_sg556", + "weapon_famas", + "weapon_usp_silencer", + "weapon_ak47", + "weapon_p90", + "weapon_nova", + "weapon_awp", + "weapon_aug" + ] + + }, + { + "item_set": "set_community_20", + "name": "#CSGO_set_community_20", + "items": [ + "weapon_aug", + "weapon_elite", + "weapon_glock", + "weapon_mp9", + "weapon_p90", + "weapon_revolver", + "weapon_tec9", + "weapon_cz75a", + "weapon_g3sg1", + "weapon_nova", + "weapon_awp", + "weapon_mp7", + "weapon_m4a1_silencer", + "weapon_sawedoff", + "weapon_famas", + "weapon_ak47", + "weapon_deagle" + ] + + }, + { + "item_set": "set_community_21", + "name": "#CSGO_set_community_21", + "items": [ + "weapon_mp9", + "weapon_glock", + "weapon_nova", + "weapon_m4a1", + "weapon_sawedoff", + "weapon_sg556", + "weapon_tec9", + "weapon_g3sg1", + "weapon_galilar", + "weapon_mac10", + "weapon_p250", + "weapon_usp_silencer", + "weapon_ump45", + "weapon_deagle", + "weapon_mp5sd", + "weapon_ak47", + "weapon_awp" + ] + + }, + { + "item_set": "set_community_22", + "name": "#CSGO_set_community_22", + "items": [ + "weapon_famas", + "weapon_ak47", + "weapon_mac10", + "weapon_galilar", + "weapon_mp7", + "weapon_p250", + "weapon_p90", + "weapon_awp", + "weapon_tec9", + "weapon_deagle", + "weapon_mp5sd", + "weapon_ump45", + "weapon_revolver", + "weapon_aug", + "weapon_xm1014", + "weapon_fiveseven", + "weapon_m4a1" + ] + + }, + { + "item_set": "set_community_23", + "name": "#CSGO_set_community_23", + "items": [ + "weapon_mp5sd", + "weapon_nova", + "weapon_g3sg1", + "weapon_revolver", + "weapon_elite", + "weapon_scar20", + "weapon_m249", + "weapon_bizon", + "weapon_ak47", + "weapon_aug", + "weapon_mp7", + "weapon_hkp2000", + "weapon_tec9", + "weapon_sg556", + "weapon_ssg08", + "weapon_awp", + "weapon_mac10" + ] + + }, + { + "item_set": "set_community_24", + "name": "#CSGO_set_community_24", + "items": [ + "weapon_elite", + "weapon_tec9", + "weapon_mac10", + "weapon_mag7", + "weapon_scar20", + "weapon_famas", + "weapon_glock", + "weapon_m249", + "weapon_mp5sd", + "weapon_fiveseven", + "weapon_p250", + "weapon_ump45", + "weapon_mp9", + "weapon_p90", + "weapon_aug", + "weapon_awp", + "weapon_famas" + ] + + }, + { + "item_set": "set_community_25", + "name": "#CSGO_set_community_25", + "items": [ + "weapon_aug", + "weapon_awp", + "weapon_cz75a", + "weapon_deagle", + "weapon_mp5sd", + "weapon_negev", + "weapon_revolver", + "weapon_hkp2000", + "weapon_sawedoff", + "weapon_scar20", + "weapon_sg556", + "weapon_ssg08", + "weapon_ak47", + "weapon_mac10", + "weapon_mag7", + "weapon_m4a1_silencer", + "weapon_glock" + ] + + }, + { + "item_set": "set_community_26", + "name": "#CSGO_set_community_26", + "items": [ + "weapon_negev", + "weapon_hkp2000", + "weapon_sg556", + "weapon_ssg08", + "weapon_p250", + "weapon_p90", + "weapon_bizon", + "weapon_mag7", + "weapon_tec9", + "weapon_mac10", + "weapon_galilar", + "weapon_mp5sd", + "weapon_m4a1", + "weapon_glock", + "weapon_xm1014", + "weapon_deagle", + "weapon_ak47" + ] + + }, + { + "item_set": "set_community_27", + "name": "#CSGO_set_community_27", + "items": [ + "weapon_cz75a", + "weapon_p90", + "weapon_g3sg1", + "weapon_galilar", + "weapon_p250", + "weapon_m249", + "weapon_mp5sd", + "weapon_awp", + "weapon_elite", + "weapon_nova", + "weapon_ssg08", + "weapon_ump45", + "weapon_fiveseven", + "weapon_m4a1", + "weapon_usp_silencer", + "weapon_m4a1_silencer", + "weapon_glock" + ] + + }, + { + "item_set": "set_community_28", + "name": "#CSGO_set_community_28", + "items": [ + "weapon_glock", + "weapon_m249", + "weapon_sg556", + "weapon_revolver", + "weapon_ump45", + "weapon_nova", + "weapon_cz75a", + "weapon_ak47", + "weapon_p250", + "weapon_negev", + "weapon_mac10", + "weapon_deagle", + "weapon_mp9", + "weapon_xm1014", + "weapon_galilar", + "weapon_usp_silencer", + "weapon_m4a1" + ] + + }, + { + "item_set": "set_community_29", + "name": "#CSGO_set_community_29", + "items": [ + "weapon_aug", + "weapon_elite", + "weapon_g3sg1", + "weapon_mp7", + "weapon_bizon", + "weapon_usp_silencer", + "weapon_xm1014", + "weapon_mag7", + "weapon_famas", + "weapon_fiveseven", + "weapon_mp9", + "weapon_m4a1", + "weapon_mac10", + "weapon_glock", + "weapon_ssg08", + "weapon_deagle", + "weapon_ak47" + ] + + }, + { + "item_set": "set_community_3", + "name": "#CSGO_set_community_3", + "items": [ + "weapon_tec9", + "weapon_ssg08", + "weapon_elite", + "weapon_galilar", + "weapon_p90", + "weapon_cz75a", + "weapon_cz75a", + "weapon_p90", + "weapon_hkp2000", + "weapon_aug", + "weapon_bizon", + "weapon_mac10", + "weapon_xm1014", + "weapon_mac10", + "weapon_m4a1_silencer", + "weapon_scar20", + "weapon_usp_silencer", + "weapon_usp_silencer", + "weapon_ak47", + "weapon_m4a1" + ] + + }, + { + "item_set": "set_community_30", + "name": "#CSGO_set_community_30", + "items": [ + "weapon_fiveseven", + "weapon_mac10", + "weapon_mag7", + "weapon_mp5sd", + "weapon_hkp2000", + "weapon_scar20", + "weapon_sawedoff", + "weapon_bizon", + "weapon_g3sg1", + "weapon_m4a1_silencer", + "weapon_xm1014", + "weapon_usp_silencer", + "weapon_elite", + "weapon_famas", + "weapon_mp7", + "weapon_ak47", + "weapon_mp9" + ] + + }, + { + "item_set": "set_community_31", + "name": "#CSGO_set_community_31", + "items": [ + "weapon_famas", + "weapon_galilar", + "weapon_m4a1", + "weapon_mac10", + "weapon_negev", + "weapon_ump45", + "weapon_glock", + "weapon_revolver", + "weapon_m249", + "weapon_sg556", + "weapon_p90", + "weapon_elite", + "weapon_ak47", + "weapon_p250", + "weapon_sawedoff", + "weapon_usp_silencer", + "weapon_awp" + ] + + }, + { + "item_set": "set_community_4", + "name": "#CSGO_set_community_4", + "items": [ + "weapon_mp7", + "weapon_negev", + "weapon_hkp2000", + "weapon_ssg08", + "weapon_ump45", + "weapon_bizon", + "weapon_cz75a", + "weapon_nova", + "weapon_p250", + "weapon_deagle", + "weapon_fiveseven", + "weapon_glock", + "weapon_p90", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_community_5", + "name": "#CSGO_set_community_5", + "items": [ + "weapon_g3sg1", + "weapon_mag7", + "weapon_mp9", + "weapon_fiveseven", + "weapon_ump45", + "weapon_glock", + "weapon_m4a1_silencer", + "weapon_m4a1", + "weapon_sawedoff", + "weapon_p250", + "weapon_scar20", + "weapon_xm1014", + "weapon_ak47", + "weapon_hkp2000" + ] + + }, + { + "item_set": "set_community_6", + "name": "#CSGO_set_community_6", + "items": [ + "weapon_glock", + "weapon_m249", + "weapon_mp9", + "weapon_scar20", + "weapon_xm1014", + "weapon_elite", + "weapon_deagle", + "weapon_mac10", + "weapon_sawedoff", + "weapon_ak47", + "weapon_m4a1", + "weapon_p250", + "weapon_awp", + "weapon_galilar" + ] + + }, + { + "item_set": "set_community_7", + "name": "#CSGO_set_community_7", + "items": [ + "weapon_ak47", + "weapon_mp7", + "weapon_deagle", + "weapon_p250", + "weapon_negev", + "weapon_sawedoff", + "weapon_awp", + "weapon_mag7", + "weapon_cz75a", + "weapon_ump45", + "weapon_fiveseven", + "weapon_galilar", + "weapon_famas", + "weapon_m4a1_silencer", + "weapon_mac10" + ] + + }, + { + "item_set": "set_community_8", + "name": "#CSGO_set_community_8", + "items": [ + "weapon_galilar", + "weapon_glock", + "weapon_nova", + "weapon_p90", + "weapon_ump45", + "weapon_usp_silencer", + "weapon_famas", + "weapon_m4a1", + "weapon_mp9", + "weapon_negev", + "weapon_hkp2000", + "weapon_cz75a", + "weapon_mp7", + "weapon_sg556", + "weapon_ak47", + "weapon_awp" + ] + + }, + { + "item_set": "set_community_9", + "name": "#CSGO_set_community_9", + "items": [ + "weapon_elite", + "weapon_famas", + "weapon_glock", + "weapon_mac10", + "weapon_mag7", + "weapon_scar20", + "weapon_xm1014", + "weapon_galilar", + "weapon_m249", + "weapon_mp7", + "weapon_p250", + "weapon_ak47", + "weapon_g3sg1", + "weapon_ssg08", + "weapon_m4a1_silencer", + "weapon_usp_silencer" + ] + + }, + { + "item_set": "set_dust", + "name": "#CSGO_set_dust", + "items": [ + "weapon_m4a1", + "weapon_scar20", + "weapon_ak47", + "weapon_aug", + "weapon_awp", + "weapon_sawedoff", + "weapon_deagle", + "weapon_hkp2000", + "weapon_glock" + ] + + }, + { + "item_set": "set_dust_2", + "name": "#CSGO_set_dust_2", + "items": [ + "weapon_g3sg1", + "weapon_p250", + "weapon_scar20", + "weapon_p90", + "weapon_mp9", + "weapon_nova", + "weapon_sawedoff", + "weapon_ak47", + "weapon_fiveseven", + "weapon_mac10", + "weapon_tec9", + "weapon_bizon", + "weapon_m4a1_silencer", + "weapon_sg556", + "weapon_hkp2000", + "weapon_revolver" + ] + + }, + { + "item_set": "set_dust_2_2021", + "name": "#CSGO_set_dust_2_2021", + "items": [ + "weapon_revolver", + "weapon_p90", + "weapon_sg556", + "weapon_mp7", + "weapon_sawedoff", + "weapon_aug", + "weapon_mp9", + "weapon_fiveseven", + "weapon_m249", + "weapon_p250", + "weapon_nova", + "weapon_g3sg1", + "weapon_galilar", + "weapon_usp_silencer", + "weapon_m4a1", + "weapon_mac10", + "weapon_ump45", + "weapon_ssg08", + "weapon_ak47" + ] + + }, + { + "item_set": "set_esports", + "name": "#CSGO_set_esports", + "items": [ + "weapon_m4a1", + "weapon_mag7", + "weapon_famas", + "weapon_galilar", + "weapon_sawedoff", + "weapon_p250", + "weapon_ak47", + "weapon_awp", + "weapon_p90" + ] + + }, + { + "item_set": "set_esports_ii", + "name": "#CSGO_set_esports_ii", + "items": [ + "weapon_galilar", + "weapon_fiveseven", + "weapon_bizon", + "weapon_nova", + "weapon_g3sg1", + "weapon_p250", + "weapon_ak47", + "weapon_p90", + "weapon_famas", + "weapon_awp", + "weapon_deagle", + "weapon_m4a1" + ] + + }, + { + "item_set": "set_esports_iii", + "name": "#CSGO_set_esports_iii", + "items": [ + "weapon_ssg08", + "weapon_mac10", + "weapon_usp_silencer", + "weapon_cz75a", + "weapon_negev", + "weapon_xm1014", + "weapon_bizon", + "weapon_p90", + "weapon_mp7", + "weapon_glock", + "weapon_deagle", + "weapon_aug", + "weapon_nova", + "weapon_awp", + "weapon_hkp2000", + "weapon_m4a1", + "weapon_ak47" + ] + + }, + { + "item_set": "set_gamma_2", + "name": "#CSGO_set_gamma_2", + "items": [ + "weapon_cz75a", + "weapon_fiveseven", + "weapon_g3sg1", + "weapon_negev", + "weapon_p90", + "weapon_ump45", + "weapon_xm1014", + "weapon_deagle", + "weapon_glock", + "weapon_mag7", + "weapon_scar20", + "weapon_sg556", + "weapon_aug", + "weapon_mp9", + "weapon_tec9", + "weapon_ak47", + "weapon_famas" + ] + + }, + { + "item_set": "set_gods_and_monsters", + "name": "#CSGO_set_gods_and_monsters", + "items": [ + "weapon_mp7", + "weapon_aug", + "weapon_elite", + "weapon_nova", + "weapon_tec9", + "weapon_hkp2000", + "weapon_awp", + "weapon_m249", + "weapon_ump45", + "weapon_mp9", + "weapon_g3sg1", + "weapon_m4a1_silencer", + "weapon_m4a1", + "weapon_awp" + ] + + }, + { + "item_set": "set_inferno", + "name": "#CSGO_set_inferno", + "items": [ + "weapon_mag7", + "weapon_nova", + "weapon_p250", + "weapon_m4a1", + "weapon_elite", + "weapon_tec9" + ] + + }, + { + "item_set": "set_inferno_2", + "name": "#CSGO_set_inferno_2", + "items": [ + "weapon_ump45", + "weapon_mp5sd", + "weapon_mp9", + "weapon_aug", + "weapon_mag7", + "weapon_bizon", + "weapon_mac10", + "weapon_revolver", + "weapon_glock", + "weapon_ssg08", + "weapon_m4a1", + "weapon_usp_silencer", + "weapon_sawedoff", + "weapon_p250", + "weapon_mp7", + "weapon_ak47", + "weapon_elite", + "weapon_sg556" + ] + + }, + { + "item_set": "set_italy", + "name": "#CSGO_set_italy", + "items": [ + "weapon_tec9", + "weapon_aug", + "weapon_famas", + "weapon_nova", + "weapon_bizon", + "weapon_nova", + "weapon_ump45", + "weapon_hkp2000", + "weapon_elite", + "weapon_m4a1_silencer", + "weapon_xm1014", + "weapon_glock", + "weapon_mp7", + "weapon_sawedoff", + "weapon_awp" + ] + + }, + { + "item_set": "set_kimono", + "name": "#CSGO_set_kimono", + "items": [ + "weapon_bizon", + "weapon_sawedoff", + "weapon_tec9", + "weapon_g3sg1", + "weapon_p250", + "weapon_p250", + "weapon_deagle", + "weapon_galilar", + "weapon_mag7", + "weapon_tec9", + "weapon_fiveseven", + "weapon_deagle", + "weapon_deagle", + "weapon_m4a1", + "weapon_ak47", + "weapon_aug" + ] + + }, + { + "item_set": "set_lake", + "name": "#CSGO_set_lake", + "items": [ + "weapon_p250", + "weapon_xm1014", + "weapon_aug", + "weapon_galilar", + "weapon_sg556", + "weapon_g3sg1", + "weapon_xm1014", + "weapon_awp", + "weapon_deagle", + "weapon_famas", + "weapon_bizon", + "weapon_sg556", + "weapon_usp_silencer", + "weapon_p90", + "weapon_elite" + ] + + }, + { + "item_set": "set_militia", + "name": "#CSGO_set_militia", + "items": [ + "weapon_bizon", + "weapon_xm1014", + "weapon_mac10", + "weapon_hkp2000", + "weapon_bizon", + "weapon_nova", + "weapon_p250", + "weapon_nova", + "weapon_xm1014", + "weapon_m4a1", + "weapon_scar20" + ] + + }, + { + "item_set": "set_mirage", + "name": "#CSGO_set_mirage", + "items": [ + "weapon_p250", + "weapon_fiveseven", + "weapon_aug", + "weapon_g3sg1", + "weapon_p90", + "weapon_galilar", + "weapon_glock", + "weapon_mp7", + "weapon_ssg08", + "weapon_negev", + "weapon_sg556", + "weapon_mp9", + "weapon_ump45", + "weapon_mac10", + "weapon_mag7" + ] + + }, + { + "item_set": "set_mirage_2021", + "name": "#CSGO_set_mirage_2021", + "items": [ + "weapon_p250", + "weapon_bizon", + "weapon_mag7", + "weapon_mac10", + "weapon_ssg08", + "weapon_elite", + "weapon_famas", + "weapon_cz75a", + "weapon_p90", + "weapon_usp_silencer", + "weapon_mp9", + "weapon_m249", + "weapon_sg556", + "weapon_xm1014", + "weapon_glock", + "weapon_aug", + "weapon_mp5sd", + "weapon_deagle", + "weapon_awp" + ] + + }, + { + "item_set": "set_norse", + "name": "#CSGO_set_norse", + "items": [ + "weapon_sg556", + "weapon_galilar", + "weapon_mp7", + "weapon_ssg08", + "weapon_famas", + "weapon_m4a1_silencer", + "weapon_usp_silencer", + "weapon_mag7", + "weapon_elite", + "weapon_scar20", + "weapon_cz75a", + "weapon_xm1014", + "weapon_mac10", + "weapon_aug", + "weapon_deagle", + "weapon_p90", + "weapon_negev", + "weapon_awp" + ] + + }, + { + "item_set": "set_nuke", + "name": "#CSGO_set_nuke", + "items": [ + "weapon_bizon", + "weapon_mag7", + "weapon_sawedoff", + "weapon_p90", + "weapon_ump45", + "weapon_xm1014", + "weapon_m4a1", + "weapon_p250", + "weapon_tec9" + ] + + }, + { + "item_set": "set_nuke_2", + "name": "#CSGO_set_nuke_2", + "items": [ + "weapon_bizon", + "weapon_p250", + "weapon_ump45", + "weapon_fiveseven", + "weapon_nova", + "weapon_m4a1", + "weapon_mp7", + "weapon_negev", + "weapon_galilar", + "weapon_p90", + "weapon_mp5sd", + "weapon_p250", + "weapon_awp", + "weapon_aug", + "weapon_mag7", + "weapon_glock", + "weapon_tec9", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_office", + "name": "#CSGO_set_office", + "items": [ + "weapon_famas", + "weapon_g3sg1", + "weapon_m249", + "weapon_galilar", + "weapon_hkp2000", + "weapon_mp7" + ] + + }, + { + "item_set": "set_op10_ancient", + "name": "#CSGO_set_op10_ancient", + "items": [ + "weapon_p90", + "weapon_sg556", + "weapon_nova", + "weapon_ssg08", + "weapon_revolver", + "weapon_hkp2000", + "weapon_mp7", + "weapon_g3sg1", + "weapon_cz75a", + "weapon_tec9", + "weapon_aug", + "weapon_galilar", + "weapon_famas", + "weapon_xm1014", + "weapon_mac10", + "weapon_usp_silencer", + "weapon_p90", + "weapon_ak47", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_op10_characters", + "name": "#CSGO_set_op10_characters", + "items": [ + "customplayer_ctm_swat_variante", + "customplayer_tm_professional_varf", + "customplayer_tm_professional_varf1", + "customplayer_tm_professional_varf2", + "customplayer_tm_professional_varf3", + "customplayer_tm_professional_varf4", + "customplayer_ctm_swat_variantf", + "customplayer_ctm_st6_variantl", + "customplayer_tm_balkan_variantk", + "customplayer_tm_professional_varg", + "customplayer_tm_professional_vari", + "customplayer_ctm_st6_variantj", + "customplayer_ctm_swat_variantg", + "customplayer_ctm_swat_varianti", + "customplayer_tm_professional_varj", + "customplayer_tm_professional_varh", + "customplayer_ctm_swat_variantj", + "customplayer_ctm_swat_varianth", + "customplayer_tm_balkan_variantl", + "customplayer_tm_phoenix_varianti" + ] + + }, + { + "item_set": "set_op10_ct", + "name": "#CSGO_set_op10_ct", + "items": [ + "weapon_xm1014", + "weapon_aug", + "weapon_mp9", + "weapon_p250", + "weapon_cz75a", + "weapon_deagle", + "weapon_elite", + "weapon_mp5sd", + "weapon_mag7", + "weapon_m4a1", + "weapon_ssg08", + "weapon_hkp2000", + "weapon_scar20", + "weapon_famas", + "weapon_fiveseven", + "weapon_ump45", + "weapon_usp_silencer", + "weapon_m4a1_silencer", + "weapon_awp" + ] + + }, + { + "item_set": "set_op10_t", + "name": "#CSGO_set_op10_t", + "items": [ + "weapon_elite", + "weapon_tec9", + "weapon_sawedoff", + "weapon_bizon", + "weapon_m249", + "weapon_mp7", + "weapon_ump45", + "weapon_revolver", + "weapon_nova", + "weapon_deagle", + "weapon_negev", + "weapon_p90", + "weapon_p250", + "weapon_galilar", + "weapon_sg556", + "weapon_glock", + "weapon_awp", + "weapon_mac10", + "weapon_ak47" + ] + + }, + { + "item_set": "set_op11_characters", + "name": "#CSGO_set_op11_characters", + "items": [ + "customplayer_ctm_gendarmerie_variantc", + "customplayer_ctm_diver_varianta", + "customplayer_ctm_diver_variantb", + "customplayer_tm_jungle_raider_variantb", + "customplayer_tm_jungle_raider_variantb2", + "customplayer_tm_jungle_raider_variante", + "customplayer_ctm_gendarmerie_variantb", + "customplayer_ctm_diver_variantc", + "customplayer_tm_professional_varf5", + "customplayer_tm_jungle_raider_varianta", + "customplayer_tm_jungle_raider_variantc", + "customplayer_ctm_gendarmerie_varianta", + "customplayer_ctm_gendarmerie_variante", + "customplayer_ctm_swat_variantk", + "customplayer_tm_jungle_raider_variantd", + "customplayer_tm_jungle_raider_variantf2", + "customplayer_ctm_gendarmerie_variantd", + "customplayer_ctm_sas_variantg", + "customplayer_ctm_st6_variantn", + "customplayer_tm_leet_variantj", + "customplayer_tm_jungle_raider_variantf" + ] + + }, + { + "item_set": "set_op9_characters", + "name": "#CSGO_set_op9_characters", + "items": [ + "customplayer_ctm_st6_varianti", + "customplayer_ctm_fbi_variantb", + "customplayer_tm_balkan_varianth", + "customplayer_tm_leet_variantf", + "customplayer_ctm_st6_variantm", + "customplayer_ctm_fbi_varianth", + "customplayer_tm_balkan_variantj", + "customplayer_tm_balkan_variantg", + "customplayer_tm_leet_varianti", + "customplayer_ctm_st6_variantg", + "customplayer_ctm_fbi_variantg", + "customplayer_tm_balkan_varianti", + "customplayer_tm_leet_varianth", + "customplayer_tm_phoenix_variantg", + "customplayer_tm_balkan_variantf", + "customplayer_ctm_sas_variantf", + "customplayer_ctm_st6_variantk", + "customplayer_ctm_st6_variante", + "customplayer_ctm_fbi_variantf", + "customplayer_tm_leet_variantg", + "customplayer_tm_phoenix_varianth", + "customplayer_tm_phoenix_variantf" + ] + + }, + { + "item_set": "set_overpass", + "name": "#CSGO_set_overpass", + "items": [ + "weapon_m249", + "weapon_mag7", + "weapon_mp9", + "weapon_sawedoff", + "weapon_ump45", + "weapon_mp7", + "weapon_deagle", + "weapon_glock", + "weapon_hkp2000", + "weapon_xm1014", + "weapon_ssg08", + "weapon_cz75a", + "weapon_awp", + "weapon_usp_silencer", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_safehouse", + "name": "#CSGO_set_safehouse", + "items": [ + "weapon_elite", + "weapon_scar20", + "weapon_ssg08", + "weapon_tec9", + "weapon_mp7", + "weapon_usp_silencer", + "weapon_aug", + "weapon_mp9", + "weapon_g3sg1", + "weapon_galilar", + "weapon_m249", + "weapon_famas", + "weapon_fiveseven", + "weapon_ssg08", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_stmarc", + "name": "#CSGO_set_stmarc", + "items": [ + "weapon_mp5sd", + "weapon_mac10", + "weapon_bizon", + "weapon_sawedoff", + "weapon_m249", + "weapon_p90", + "weapon_m4a1", + "weapon_xm1014", + "weapon_tec9", + "weapon_ump45", + "weapon_fiveseven", + "weapon_mp7", + "weapon_famas", + "weapon_ssg08", + "weapon_glock", + "weapon_aug", + "weapon_mp9", + "weapon_ak47" + ] + + }, + { + "item_set": "set_train", + "name": "#CSGO_set_train", + "items": [ + "weapon_ump45", + "weapon_elite", + "weapon_g3sg1", + "weapon_fiveseven", + "weapon_nova", + "weapon_bizon", + "weapon_mac10", + "weapon_m4a1", + "weapon_mag7", + "weapon_p250", + "weapon_scar20", + "weapon_p90", + "weapon_deagle", + "weapon_sawedoff", + "weapon_tec9" + ] + + }, + { + "item_set": "set_train_2021", + "name": "#CSGO_set_train_2021", + "items": [ + "weapon_deagle", + "weapon_m4a1_silencer", + "weapon_ssg08", + "weapon_aug", + "weapon_ump45", + "weapon_tec9", + "weapon_revolver", + "weapon_cz75a", + "weapon_awp", + "weapon_hkp2000", + "weapon_mp5sd", + "weapon_nova", + "weapon_famas", + "weapon_mac10", + "weapon_usp_silencer", + "weapon_glock", + "weapon_glock", + "weapon_glock", + "weapon_glock", + "weapon_glock", + "weapon_m4a1" + ] + + }, + { + "item_set": "set_vertigo", + "name": "#CSGO_set_vertigo", + "items": [ + "weapon_mac10", + "weapon_xm1014", + "weapon_bizon", + "weapon_p90", + "weapon_ak47", + "weapon_elite" + ] + + }, + { + "item_set": "set_vertigo_2021", + "name": "#CSGO_set_vertigo_2021", + "items": [ + "weapon_mac10", + "weapon_famas", + "weapon_xm1014", + "weapon_cz75a", + "weapon_elite", + "weapon_glock", + "weapon_ump45", + "weapon_ssg08", + "weapon_bizon", + "weapon_ak47", + "weapon_p90", + "weapon_nova", + "weapon_negev", + "weapon_galilar", + "weapon_mag7", + "weapon_p250", + "weapon_fiveseven", + "weapon_sg556", + "weapon_m4a1_silencer" + ] + + }, + { + "item_set": "set_weapons_i", + "name": "#CSGO_set_weapons_i", + "items": [ + "weapon_mp7", + "weapon_aug", + "weapon_sg556", + "weapon_glock", + "weapon_usp_silencer", + "weapon_m4a1_silencer", + "weapon_ak47", + "weapon_deagle", + "weapon_awp" + ] + + }, + { + "item_set": "set_weapons_ii", + "name": "#CSGO_set_weapons_ii", + "items": [ + "weapon_tec9", + "weapon_m4a1_silencer", + "weapon_famas", + "weapon_p250", + "weapon_scar20", + "weapon_fiveseven", + "weapon_mp9", + "weapon_nova", + "weapon_elite", + "weapon_p90", + "weapon_usp_silencer", + "weapon_ssg08" + ] + + }, + { + "item_set": "set_weapons_iii", + "name": "#CSGO_set_weapons_iii", + "items": [ + "weapon_cz75a", + "weapon_hkp2000", + "weapon_elite", + "weapon_usp_silencer", + "weapon_glock", + "weapon_cz75a", + "weapon_tec9", + "weapon_deagle", + "weapon_fiveseven", + "weapon_cz75a", + "weapon_p250", + "weapon_cz75a" + ] + + }, + { + "item_set": "set_xraymachine", + "name": "#CSGO_set_xraymachine", + "items": [ + "weapon_p250" + ] + + } + ] + , + "attribute_controlled_attached_particles": [ + + ] + , + "item_levels": [ + { + "name": "KillEaterRank", + "levels": [ + { + "level": 0, + "required_score": 2, + "name": "KillEaterRank0" + }, + { + "level": 1, + "required_score": 4, + "name": "KillEaterRank1" + }, + { + "level": 2, + "required_score": 6, + "name": "KillEaterRank2" + }, + { + "level": 3, + "required_score": 8, + "name": "KillEaterRank3" + }, + { + "level": 4, + "required_score": 10, + "name": "KillEaterRank4" + }, + { + "level": 5, + "required_score": 12, + "name": "KillEaterRank5" + }, + { + "level": 6, + "required_score": 14, + "name": "KillEaterRank6" + }, + { + "level": 7, + "required_score": 16, + "name": "KillEaterRank7" + }, + { + "level": 8, + "required_score": 18, + "name": "KillEaterRank8" + }, + { + "level": 9, + "required_score": 20, + "name": "KillEaterRank9" + }, + { + "level": 10, + "required_score": 22, + "name": "KillEaterRank10" + }, + { + "level": 11, + "required_score": 24, + "name": "KillEaterRank11" + }, + { + "level": 12, + "required_score": 26, + "name": "KillEaterRank12" + } + ] + + } + ] + , + "kill_eater_ranks": [ + { + "level": 0, + "required_score": 2, + "name": "KillEaterRank0" + }, + { + "level": 1, + "required_score": 4, + "name": "KillEaterRank1" + }, + { + "level": 2, + "required_score": 6, + "name": "KillEaterRank2" + }, + { + "level": 3, + "required_score": 8, + "name": "KillEaterRank3" + }, + { + "level": 4, + "required_score": 10, + "name": "KillEaterRank4" + }, + { + "level": 5, + "required_score": 12, + "name": "KillEaterRank5" + }, + { + "level": 6, + "required_score": 14, + "name": "KillEaterRank6" + }, + { + "level": 7, + "required_score": 16, + "name": "KillEaterRank7" + }, + { + "level": 8, + "required_score": 18, + "name": "KillEaterRank8" + }, + { + "level": 9, + "required_score": 20, + "name": "KillEaterRank9" + }, + { + "level": 10, + "required_score": 22, + "name": "KillEaterRank10" + }, + { + "level": 11, + "required_score": 24, + "name": "KillEaterRank11" + }, + { + "level": 12, + "required_score": 26, + "name": "KillEaterRank12" + } + ] + , + "kill_eater_score_types": [ + { + "type": 0, + "type_name": "Kills" + }, + { + "type": 1, + "type_name": "OCMVPs" + } + ] + } } \ No newline at end of file diff --git a/types/index.d.ts b/types/index.d.ts new file mode 100644 index 0000000..5ccfb97 --- /dev/null +++ b/types/index.d.ts @@ -0,0 +1,50 @@ +export interface Weapon { + name: string + techName: string + type: string + defIndex: string + skins: SkinPaint[] +} + +export interface SkinPaint { + name: string + techName: string + weaponTechName: string + fullName: string + defIndex: string + rarity: string +} + +export interface Sticker { + name: string + techName: string + defIndex: string + rarity: string +} + +export interface Rarity { + techName: string + weaponName: string + miscName: string + defIndex: string + color: string +} + +export interface Prefab { + name: string + techName: string + defIndex: string + type: string +} + +export interface MusicKit { + name: string + techName: string + defIndex: string +} + +export interface Collection { + name: string + techName: string + content: SkinPaint[] +} \ No newline at end of file